diff --git a/www/apps/book/app/learn/fundamentals/module-links/custom-columns/page.mdx b/www/apps/book/app/learn/fundamentals/module-links/custom-columns/page.mdx
index 35a0252442..bd4d5b57b2 100644
--- a/www/apps/book/app/learn/fundamentals/module-links/custom-columns/page.mdx
+++ b/www/apps/book/app/learn/fundamentals/module-links/custom-columns/page.mdx
@@ -1,3 +1,5 @@
+import { CodeTab, CodeTabs } from "docs-ui"
+
export const metadata = {
title: `${pageNumber} Add Columns to a Link Table`,
}
@@ -97,10 +99,13 @@ For example:
-Learn more about Link, how to resolve it, and its methods in [this chapter](../link/page.mdx).
+Refer to the [Link](../link/page.mdx) chapter to learn how to import and use the `link` instance.
+
+
+
```ts
await link.create({
[Modules.PRODUCT]: {
@@ -117,6 +122,50 @@ await link.create({
})
```
+
+
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { BLOG_MODULE } from "../modules/blog"
+import { createRemoteLinksStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "123",
+ },
+ [BLOG_MODULE]: {
+ post_id: "321",
+ },
+ data: {
+ metadata: {
+ test: true,
+ },
+ },
+ },
+ ]
+ })
+ createRemoteLinksStep(linkData)
+ // ...
+ }
+)
+```
+
+
+
+
---
## Retrieve Custom Column with Link
@@ -189,6 +238,9 @@ So, to update the value of a custom column in a created link, use the `create` m
For example:
+
+
+
```ts
await link.create({
[Modules.PRODUCT]: {
@@ -204,3 +256,47 @@ await link.create({
},
})
```
+
+
+
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { BLOG_MODULE } from "../modules/blog"
+import { updateRemoteLinksStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "123",
+ },
+ [BLOG_MODULE]: {
+ post_id: "321",
+ },
+ data: {
+ metadata: {
+ test: false,
+ },
+ },
+ },
+ ]
+ })
+ updateRemoteLinksStep(linkData)
+ // ...
+ }
+)
+```
+
+
+
\ No newline at end of file
diff --git a/www/apps/book/app/learn/fundamentals/module-links/link/page.mdx b/www/apps/book/app/learn/fundamentals/module-links/link/page.mdx
index c984f789f8..3969d6212e 100644
--- a/www/apps/book/app/learn/fundamentals/module-links/link/page.mdx
+++ b/www/apps/book/app/learn/fundamentals/module-links/link/page.mdx
@@ -1,3 +1,5 @@
+import { CodeTab, CodeTabs } from "docs-ui"
+
export const metadata = {
title: `${pageNumber} Link`,
}
@@ -41,6 +43,17 @@ export async function POST(
You can use its methods to manage links, such as create or delete links.
+### Link Usage in Workflows
+
+To perform link operations in a [workflow](../../workflows/page.mdx), Medusa provides the following steps out-of-the-box:
+
+- [createRemoteLinkStep](!resources!/references/helper-steps/createRemoteLinkStep): Creates a link between records of two data models.
+- [dismissRemoteLinkStep](!resources!/references/helper-steps/dismissRemoteLinkStep): Removes a link between records of two data models.
+- [removeRemoteLinkStep](!resources!/references/helper-steps/removeRemoteLinkStep): Deletes all linked records whose links are defined with cascade deletion.
+- [updateRemoteLinksStep](!resources!/references/helper-steps/updateRemoteLinksStep): Updates links between records of two data models.
+
+The rest of this chapter provides examples using the Link class and the workflow steps.
+
---
## Create Link
@@ -49,6 +62,9 @@ To create a link between records of two data models, use the `create` method of
For example:
+
+
+
```ts
import { Modules } from "@medusajs/framework/utils"
@@ -58,12 +74,50 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
```
+
+
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { createRemoteLinkStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ },
+ ]
+ })
+ createRemoteLinkStep(linkData)
+ // ...
+ }
+)
+```
+
+
+
+
The `create` method accepts as a parameter an object. The object’s keys are the names of the linked modules.
@@ -74,7 +128,7 @@ The keys (names of linked modules) must be in the same [direction](../directions
The value of each module’s property is an object, whose keys are of the format `{data_model_snake_name}_id`, and values are the IDs of the linked record.
-So, in the example above, you link a record of the `MyCustom` data model in a `hello` module to a `Product` record in the Product Module.
+So, in the example above, you link a record of the `Post` data model in a `blog` module to a `Product` record in the Product Module.
### Enforced Integrity Constraints on Link Creation
@@ -88,23 +142,23 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
-// throws an error because `prod_123` already has a link to `mc_123`
+// throws an error because `prod_123` already has a link to `post_123`
await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_456",
+ blog: {
+ post_id: "mc_456",
},
})
```
-- If the link is one-to-many and the "one" side already has a link to another record of the same data model. For example, if a product can have many `MyCustom` records, but a `MyCustom` record can only have one product:
+- If the link is one-to-many and the "one" side already has a link to another record of the same data model. For example, if a product can have many `Post` records, but a `Post` record can only have one product:
```ts
// no error
@@ -112,8 +166,8 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
@@ -122,18 +176,18 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_456",
+ blog: {
+ post_id: "mc_456",
},
})
-// throws an error because `mc_123` already has a link to `prod_123`
+// throws an error because `post_123` already has a link to `prod_123`
await link.create({
[Modules.PRODUCT]: {
product_id: "prod_456",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
```
@@ -148,6 +202,9 @@ To remove a link between records of two data models, use the `dismiss` method of
For example:
+
+
+
```ts
import { Modules } from "@medusajs/framework/utils"
@@ -157,12 +214,50 @@ await link.dismiss({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
```
+
+
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { dismissRemoteLinkStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ },
+ ]
+ })
+ dismissRemoteLinkStep(linkData)
+ // ...
+ }
+)
+```
+
+
+
+
The `dismiss` method accepts the same parameter type as the [create method](#create-link).
@@ -179,6 +274,9 @@ If you delete a record using a workflow or its module's service, use the `delete
For example:
+
+
+
```ts
import { Modules } from "@medusajs/framework/utils"
@@ -193,6 +291,41 @@ await link.delete({
})
```
+
+
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { removeRemoteLinkStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ },
+ ]
+ })
+ removeRemoteLinkStep(linkData)
+ // ...
+ }
+)
+```
+
+
+
+
This deletes all records linked to the deleted product.
---
@@ -216,3 +349,83 @@ await link.restore({
},
})
```
+
+---
+
+## Update Links
+
+Links may have [custom columns](../custom-columns/page.mdx) to store additional information, such as a `metadata` column to store JSON data about the link.
+
+You can update the custom columns of existing links by calling the `create` method again with the same linked records and the new values for the custom columns.
+
+For example:
+
+
+
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+
+// ...
+
+await link.create({
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ data: {
+ metadata: {
+ featured: true,
+ },
+ },
+})
+```
+
+
+
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { updateRemoteLinksStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ data: {
+ metadata: {
+ featured: true,
+ },
+ },
+ },
+ ]
+ })
+ updateRemoteLinksStep(linkData)
+ // ...
+ }
+)
+```
+
+
+
+
+The object parameter you pass to the `create` method (or the `updateRemoteLinksStep` step) accepts an optional `data` property. The value of this property is an object whose keys are the names of the custom columns to update, and values are the new values for those columns.
+
+Learn more in the [Custom Columns](../custom-columns/page.mdx) chapter.
\ No newline at end of file
diff --git a/www/apps/book/app/learn/fundamentals/workflows/locks/page.mdx b/www/apps/book/app/learn/fundamentals/workflows/locks/page.mdx
index 84d407332c..019053d957 100644
--- a/www/apps/book/app/learn/fundamentals/workflows/locks/page.mdx
+++ b/www/apps/book/app/learn/fundamentals/workflows/locks/page.mdx
@@ -134,9 +134,15 @@ Refer to the [Locking Module reference](!resources!/references/locking-service)
## Locks in Nested Workflows
-[Nested workflows](../execute-another-workflow/page.mdx) can't acquire locks. So, if you're using a workflow that acquires locks within another workflow, the parent workflow must handle the locking mechanism.
+When a [Nested workflows](../execute-another-workflow/page.mdx) acquires a lock with `acquireLockStep`, the lock is not acquired. So, if you're using a workflow that acquires locks with `acquireLockStep` within another workflow, the parent workflow must handle the locking mechanism.
-For example, consider a custom workflow that executes Medusa's [completeCartWorkflow](!resources!/references/medusa-workflows/completeCartWorkflow). The `completeCartWorkflow` acquires locks on the cart to prevent race conditions.
+
+
+If the nested workflow acquires a lock in a step using the Locking Module's service, the lock will be acquired as expected.
+
+
+
+For example, consider a custom workflow that executes Medusa's [completeCartWorkflow](!resources!/references/medusa-workflows/completeCartWorkflow). The `completeCartWorkflow` acquires locks on the cart with `acquireLockStep` to prevent race conditions.
Therefore, the custom workflow must acquire and release the locks around the `completeCartWorkflow` execution. For example:
diff --git a/www/apps/book/generated/edit-dates.mjs b/www/apps/book/generated/edit-dates.mjs
index 7d75d7bc90..825f8a73ea 100644
--- a/www/apps/book/generated/edit-dates.mjs
+++ b/www/apps/book/generated/edit-dates.mjs
@@ -62,7 +62,7 @@ export const generatedEditDates = {
"app/learn/fundamentals/api-routes/errors/page.mdx": "2025-06-19T16:09:08.563Z",
"app/learn/fundamentals/admin/constraints/page.mdx": "2025-07-21T08:20:43.223Z",
"app/learn/debugging-and-testing/testing-tools/modules-tests/page.mdx": "2025-07-23T15:32:18.008Z",
- "app/learn/fundamentals/module-links/custom-columns/page.mdx": "2025-09-29T16:09:36.116Z",
+ "app/learn/fundamentals/module-links/custom-columns/page.mdx": "2025-12-09T13:27:05.446Z",
"app/learn/fundamentals/module-links/directions/page.mdx": "2025-03-17T12:52:06.161Z",
"app/learn/fundamentals/module-links/page.mdx": "2025-11-28T13:45:06.742Z",
"app/learn/fundamentals/module-links/query/page.mdx": "2025-10-27T09:30:26.957Z",
@@ -98,7 +98,7 @@ export const generatedEditDates = {
"app/learn/fundamentals/workflows/multiple-step-usage/page.mdx": "2025-08-01T14:59:59.501Z",
"app/learn/installation/page.mdx": "2025-12-04T14:30:00.510Z",
"app/learn/fundamentals/data-models/check-constraints/page.mdx": "2025-07-25T13:50:21.065Z",
- "app/learn/fundamentals/module-links/link/page.mdx": "2025-11-28T13:42:03.037Z",
+ "app/learn/fundamentals/module-links/link/page.mdx": "2025-12-09T13:27:05.446Z",
"app/learn/fundamentals/workflows/store-executions/page.mdx": "2025-04-17T08:29:10.166Z",
"app/learn/fundamentals/plugins/create/page.mdx": "2025-04-17T08:29:09.910Z",
"app/learn/fundamentals/plugins/page.mdx": "2025-01-22T10:14:10.433Z",
@@ -132,7 +132,7 @@ export const generatedEditDates = {
"app/learn/fundamentals/scheduled-jobs/interval/page.mdx": "2025-09-02T08:36:12.714Z",
"app/learn/debugging-and-testing/feature-flags/create/page.mdx": "2025-09-02T08:36:12.714Z",
"app/learn/debugging-and-testing/feature-flags/page.mdx": "2025-09-02T08:36:12.714Z",
- "app/learn/fundamentals/workflows/locks/page.mdx": "2025-11-26T11:40:04.279Z",
+ "app/learn/fundamentals/workflows/locks/page.mdx": "2025-12-09T11:20:25.011Z",
"app/learn/codemods/page.mdx": "2025-09-29T15:40:03.620Z",
"app/learn/codemods/replace-imports/page.mdx": "2025-10-09T11:37:44.754Z",
"app/learn/fundamentals/admin/translations/page.mdx": "2025-10-30T11:55:32.221Z",
diff --git a/www/apps/book/public/llms-full.txt b/www/apps/book/public/llms-full.txt
index bb6dafd344..e4b32a6f2e 100644
--- a/www/apps/book/public/llms-full.txt
+++ b/www/apps/book/public/llms-full.txt
@@ -15533,7 +15533,9 @@ The object you pass to Link's `create` method accepts a `data` property. Its val
For example:
-Learn more about Link, how to resolve it, and its methods in [this chapter](https://docs.medusajs.com/learn/fundamentals/module-links/link/index.html.md).
+Refer to the [Link](https://docs.medusajs.com/learn/fundamentals/module-links/link/index.html.md) chapter to learn how to import and use the `link` instance.
+
+### Link
```ts
await link.create({
@@ -15551,6 +15553,46 @@ await link.create({
})
```
+### createRemoteLinksStep
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { BLOG_MODULE } from "../modules/blog"
+import { createRemoteLinksStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "123",
+ },
+ [BLOG_MODULE]: {
+ post_id: "321",
+ },
+ data: {
+ metadata: {
+ test: true,
+ },
+ },
+ },
+ ]
+ })
+ createRemoteLinksStep(linkData)
+ // ...
+ }
+)
+```
+
***
## Retrieve Custom Column with Link
@@ -15611,6 +15653,8 @@ So, to update the value of a custom column in a created link, use the `create` m
For example:
+### Link
+
```ts
await link.create({
[Modules.PRODUCT]: {
@@ -15627,6 +15671,46 @@ await link.create({
})
```
+### updateRemoteLinksStep
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { BLOG_MODULE } from "../modules/blog"
+import { updateRemoteLinksStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "123",
+ },
+ [BLOG_MODULE]: {
+ post_id: "321",
+ },
+ data: {
+ metadata: {
+ test: false,
+ },
+ },
+ },
+ ]
+ })
+ updateRemoteLinksStep(linkData)
+ // ...
+ }
+)
+```
+
# Module Link Direction
@@ -16488,6 +16572,17 @@ export async function POST(
You can use its methods to manage links, such as create or delete links.
+### Link Usage in Workflows
+
+To perform link operations in a [workflow](https://docs.medusajs.com/learn/fundamentals/workflows/index.html.md), Medusa provides the following steps out-of-the-box:
+
+- [createRemoteLinkStep](https://docs.medusajs.com/resources/references/helper-steps/createRemoteLinkStep/index.html.md): Creates a link between records of two data models.
+- [dismissRemoteLinkStep](https://docs.medusajs.com/resources/references/helper-steps/dismissRemoteLinkStep/index.html.md): Removes a link between records of two data models.
+- [removeRemoteLinkStep](https://docs.medusajs.com/resources/references/helper-steps/removeRemoteLinkStep/index.html.md): Deletes all linked records whose links are defined with cascade deletion.
+- [updateRemoteLinksStep](https://docs.medusajs.com/resources/references/helper-steps/updateRemoteLinksStep/index.html.md): Updates links between records of two data models.
+
+The rest of this chapter provides examples using the Link class and the workflow steps.
+
***
## Create Link
@@ -16496,6 +16591,8 @@ To create a link between records of two data models, use the `create` method of
For example:
+### Link
+
```ts
import { Modules } from "@medusajs/framework/utils"
@@ -16505,19 +16602,53 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
```
+### createRemoteLinkStep
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { createRemoteLinkStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ },
+ ]
+ })
+ createRemoteLinkStep(linkData)
+ // ...
+ }
+)
+```
+
The `create` method accepts as a parameter an object. The object’s keys are the names of the linked modules.
The keys (names of linked modules) must be in the same [direction](https://docs.medusajs.com/learn/fundamentals/module-links/directions/index.html.md) of the link definition.
The value of each module’s property is an object, whose keys are of the format `{data_model_snake_name}_id`, and values are the IDs of the linked record.
-So, in the example above, you link a record of the `MyCustom` data model in a `hello` module to a `Product` record in the Product Module.
+So, in the example above, you link a record of the `Post` data model in a `blog` module to a `Product` record in the Product Module.
### Enforced Integrity Constraints on Link Creation
@@ -16531,23 +16662,23 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
-// throws an error because `prod_123` already has a link to `mc_123`
+// throws an error because `prod_123` already has a link to `post_123`
await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_456",
+ blog: {
+ post_id: "mc_456",
},
})
```
-- If the link is one-to-many and the "one" side already has a link to another record of the same data model. For example, if a product can have many `MyCustom` records, but a `MyCustom` record can only have one product:
+- If the link is one-to-many and the "one" side already has a link to another record of the same data model. For example, if a product can have many `Post` records, but a `Post` record can only have one product:
```ts
// no error
@@ -16555,8 +16686,8 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
@@ -16565,18 +16696,18 @@ await link.create({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_456",
+ blog: {
+ post_id: "mc_456",
},
})
-// throws an error because `mc_123` already has a link to `prod_123`
+// throws an error because `post_123` already has a link to `prod_123`
await link.create({
[Modules.PRODUCT]: {
product_id: "prod_456",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
```
@@ -16591,6 +16722,8 @@ To remove a link between records of two data models, use the `dismiss` method of
For example:
+### Link
+
```ts
import { Modules } from "@medusajs/framework/utils"
@@ -16600,12 +16733,46 @@ await link.dismiss({
[Modules.PRODUCT]: {
product_id: "prod_123",
},
- "helloModuleService": {
- my_custom_id: "mc_123",
+ blog: {
+ post_id: "post_123",
},
})
```
+### dismissRemoteLinkStep
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { dismissRemoteLinkStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ },
+ ]
+ })
+ dismissRemoteLinkStep(linkData)
+ // ...
+ }
+)
+```
+
The `dismiss` method accepts the same parameter type as the [create method](#create-link).
The keys (names of linked modules) must be in the same [direction](https://docs.medusajs.com/learn/fundamentals/module-links/directions/index.html.md) of the link definition.
@@ -16618,6 +16785,8 @@ If you delete a record using a workflow or its module's service, use the `delete
For example:
+### Link
+
```ts
import { Modules } from "@medusajs/framework/utils"
@@ -16632,6 +16801,37 @@ await link.delete({
})
```
+### removeRemoteLinkStep
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { removeRemoteLinkStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ },
+ ]
+ })
+ removeRemoteLinkStep(linkData)
+ // ...
+ }
+)
+```
+
This deletes all records linked to the deleted product.
***
@@ -16656,6 +16856,81 @@ await link.restore({
})
```
+***
+
+## Update Links
+
+Links may have [custom columns](https://docs.medusajs.com/learn/fundamentals/module-links/custom-columns/index.html.md) to store additional information, such as a `metadata` column to store JSON data about the link.
+
+You can update the custom columns of existing links by calling the `create` method again with the same linked records and the new values for the custom columns.
+
+For example:
+
+### Link
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+
+// ...
+
+await link.create({
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ data: {
+ metadata: {
+ featured: true,
+ },
+ },
+})
+```
+
+### updateRemoteLinksStep
+
+```ts
+import { Modules } from "@medusajs/framework/utils"
+import { updateRemoteLinksStep } from "@medusajs/medusa/core-flows"
+import {
+ createWorkflow,
+ transform,
+} from "@medusajs/framework/workflows-sdk"
+
+export const myWorkflow = createWorkflow(
+ "my-workflow",
+ () => {
+ // ...
+ const linkData = transform({
+ // TODO pass input data
+ }, () => {
+ return [
+ {
+ [Modules.PRODUCT]: {
+ product_id: "prod_123",
+ },
+ blog: {
+ post_id: "post_123",
+ },
+ data: {
+ metadata: {
+ featured: true,
+ },
+ },
+ },
+ ]
+ })
+ updateRemoteLinksStep(linkData)
+ // ...
+ }
+)
+```
+
+The object parameter you pass to the `create` method (or the `updateRemoteLinksStep` step) accepts an optional `data` property. The value of this property is an object whose keys are the names of the custom columns to update, and values are the new values for those columns.
+
+Learn more in the [Custom Columns](https://docs.medusajs.com/learn/fundamentals/module-links/custom-columns/index.html.md) chapter.
+
# Define Module Link
@@ -23420,9 +23695,11 @@ Refer to the [Locking Module reference](https://docs.medusajs.com/resources/refe
## Locks in Nested Workflows
-[Nested workflows](https://docs.medusajs.com/learn/fundamentals/workflows/execute-another-workflow/index.html.md) can't acquire locks. So, if you're using a workflow that acquires locks within another workflow, the parent workflow must handle the locking mechanism.
+When a [Nested workflows](https://docs.medusajs.com/learn/fundamentals/workflows/execute-another-workflow/index.html.md) acquires a lock with `acquireLockStep`, the lock is not acquired. So, if you're using a workflow that acquires locks with `acquireLockStep` within another workflow, the parent workflow must handle the locking mechanism.
-For example, consider a custom workflow that executes Medusa's [completeCartWorkflow](https://docs.medusajs.com/resources/references/medusa-workflows/completeCartWorkflow/index.html.md). The `completeCartWorkflow` acquires locks on the cart to prevent race conditions.
+If the nested workflow acquires a lock in a step using the Locking Module's service, the lock will be acquired as expected.
+
+For example, consider a custom workflow that executes Medusa's [completeCartWorkflow](https://docs.medusajs.com/resources/references/medusa-workflows/completeCartWorkflow/index.html.md). The `completeCartWorkflow` acquires locks on the cart with `acquireLockStep` to prevent race conditions.
Therefore, the custom workflow must acquire and release the locks around the `completeCartWorkflow` execution. For example:
@@ -35434,7 +35711,7 @@ const totalRefunded = refundTransactions?.reduce((acc, t) => acc + Math.abs(t!.a
In this section of the documentation, you'll find guides and references related to Medusa's Commerce Modules.
-A Commerce Module provides features for a commerce domain within its service. The Medusa application exposes these features in its API routes to clients.
+A Commerce Module provides features for a commerce domain within its service. When you install the Medusa application, all Commerce Modules are available out-of-the-box. The Medusa application exposes their features in its core API routes to clients.
A Commerce Module also defines data models, representing tables in the database. The Medusa Framework and tools allow you to extend these data models to add custom fields.
@@ -35465,7 +35742,7 @@ A Commerce Module also defines data models, representing tables in the database.
The Commerce Modules can be used in many use cases, including:
-- Medusa Application: The Medusa application uses the Commerce Modules to expose commerce features through the REST APIs.
+- Medusa Application: The Medusa application comes with all Commerce Modules pre-installed and configured. Their commerce features are exposed through REST APIs.
- Serverless Application: Use the Commerce Modules in a serverless application, such as a Next.js application, without having to manage a fully-fledged ecommerce system. You can use it by installing it in your Node.js project as an NPM package.
- Node.js Application: Use the Commerce Modules in any Node.js application by installing it with NPM.
@@ -41850,7 +42127,7 @@ Learn more about why modules are isolated in [this documentation](https://docs.m
## Store Features
- [Store Management](https://docs.medusajs.com/references/store/models/Store/index.html.md): Create and manage stores in your application.
-- [Multi-Tenancy Support](https://docs.medusajs.com/references/store/models/Store/index.html.md): Create multiple stores, each having its own configurations.
+- [Multi-Tenancy Support](https://docs.medusajs.com/references/store/models/Store/index.html.md): While Medusa doesn't natively support multi-tenancy, the Store Module allows you to create and manage multiple stores within a single Medusa instance. You can then build customizations to link products, customers, orders, and other resources to specific stores.
***
@@ -46201,8 +46478,8 @@ module.exports = defineConfig({
// keep jobs for 1 hour or up to 1000 jobs
age: 3600,
count: 1000,
- }
- }
+ },
+ },
},
},
],
@@ -95255,7 +95532,7 @@ const StripeSavedPaymentMethodsContainer = ({
await initiatePaymentSession(cart, {
provider_id: method.provider_id,
data: {
- payment_method_id: method.id,
+ payment_method: method.id,
},
}).catch((error) => {
setError(error.message)
diff --git a/www/apps/cloud/app/s3/page.mdx b/www/apps/cloud/app/s3/page.mdx
index 3d77637824..17855a80ba 100644
--- a/www/apps/cloud/app/s3/page.mdx
+++ b/www/apps/cloud/app/s3/page.mdx
@@ -12,8 +12,6 @@ Medusa offers a managed S3 storage service for your project environments on Clou
So, when you create a new project, Medusa creates a production S3 bucket for the production environment. If you create a staging environment, Medusa creates a separate S3 bucket for that environment as well.
-By default, the S3 bucket is private, but the files you upload to the bucket are publicly accessible. This is necessary for serving product images and other assets in your Medusa application.
-

---
@@ -44,4 +42,18 @@ Then, configure the S3 File Module Provider in your `medusa-config.ts` file to c
To set the connection options of your external S3 instance, refer to the [Environments](../environments/environment-variables/page.mdx#add-environment-variables) guide to learn how to add environment variables. You can then use these variables in your `medusa-config.ts` file to connect to your S3 instance.
-
\ No newline at end of file
+
+
+---
+
+## Upload Files to S3 on Cloud
+
+When you upload files through your Medusa application hosted on Cloud, such as product images or other assets, the files are stored in the S3 bucket associated with that application's environment.
+
+You can also upload files using Medusa's [Upload Files API route](!api!/admin#uploads_postuploads), or in a [custom API route that handles file upload](!docs!/learn/fundamentals/api-routes/parse-body#configure-file-uploads).
+
+---
+
+## S3 Bucket Privacy on Cloud
+
+By default, the S3 bucket of your Cloud projects is private, but the files you upload to the bucket are publicly accessible. This is necessary for serving product images and other assets in your Medusa application.
diff --git a/www/apps/resources/app/commerce-modules/page.mdx b/www/apps/resources/app/commerce-modules/page.mdx
index 2064039497..d98e99bd66 100644
--- a/www/apps/resources/app/commerce-modules/page.mdx
+++ b/www/apps/resources/app/commerce-modules/page.mdx
@@ -8,7 +8,7 @@ export const metadata = {
In this section of the documentation, you'll find guides and references related to Medusa's Commerce Modules.
-A Commerce Module provides features for a commerce domain within its service. The Medusa application exposes these features in its API routes to clients.
+A Commerce Module provides features for a commerce domain within its service. When you install the Medusa application, all Commerce Modules are available out-of-the-box. The Medusa application exposes their features in its core API routes to clients.
A Commerce Module also defines data models, representing tables in the database. The Medusa Framework and tools allow you to extend these data models to add custom fields.
@@ -97,6 +97,6 @@ A Commerce Module also defines data models, representing tables in the database.
The Commerce Modules can be used in many use cases, including:
-- Medusa Application: The Medusa application uses the Commerce Modules to expose commerce features through the REST APIs.
+- Medusa Application: The Medusa application comes with all Commerce Modules pre-installed and configured. Their commerce features are exposed through REST APIs.
- Serverless Application: Use the Commerce Modules in a serverless application, such as a Next.js application, without having to manage a fully-fledged ecommerce system. You can use it by installing it in your Node.js project as an NPM package.
- Node.js Application: Use the Commerce Modules in any Node.js application by installing it with NPM.
diff --git a/www/apps/resources/app/commerce-modules/store/page.mdx b/www/apps/resources/app/commerce-modules/store/page.mdx
index ffb81f6219..ff0a768f17 100644
--- a/www/apps/resources/app/commerce-modules/store/page.mdx
+++ b/www/apps/resources/app/commerce-modules/store/page.mdx
@@ -29,7 +29,7 @@ Learn more about why modules are isolated in [this documentation](!docs!/learn/f
## Store Features
- [Store Management](/references/store/models/Store): Create and manage stores in your application.
-- [Multi-Tenancy Support](/references/store/models/Store): Create multiple stores, each having its own configurations.
+- [Multi-Tenancy Support](/references/store/models/Store): While Medusa doesn't natively support multi-tenancy, the Store Module allows you to create and manage multiple stores within a single Medusa instance. You can then build customizations to link products, customers, orders, and other resources to specific stores.
---
diff --git a/www/apps/resources/app/how-to-tutorials/tutorials/saved-payment-methods/page.mdx b/www/apps/resources/app/how-to-tutorials/tutorials/saved-payment-methods/page.mdx
index a5cca26c04..459634e4ae 100644
--- a/www/apps/resources/app/how-to-tutorials/tutorials/saved-payment-methods/page.mdx
+++ b/www/apps/resources/app/how-to-tutorials/tutorials/saved-payment-methods/page.mdx
@@ -628,7 +628,7 @@ const StripeSavedPaymentMethodsContainer = ({
await initiatePaymentSession(cart, {
provider_id: method.provider_id,
data: {
- payment_method_id: method.id,
+ payment_method: method.id,
},
}).catch((error) => {
setError(error.message)
diff --git a/www/apps/resources/app/infrastructure-modules/event/redis/page.mdx b/www/apps/resources/app/infrastructure-modules/event/redis/page.mdx
index d3cae58612..3f5dec3d70 100644
--- a/www/apps/resources/app/infrastructure-modules/event/redis/page.mdx
+++ b/www/apps/resources/app/infrastructure-modules/event/redis/page.mdx
@@ -58,8 +58,8 @@ module.exports = defineConfig({
// keep jobs for 1 hour or up to 1000 jobs
age: 3600,
count: 1000,
- }
- }
+ },
+ },
},
},
],
diff --git a/www/apps/resources/app/storefront-development/page.mdx b/www/apps/resources/app/storefront-development/page.mdx
index b00a016275..15e7773292 100644
--- a/www/apps/resources/app/storefront-development/page.mdx
+++ b/www/apps/resources/app/storefront-development/page.mdx
@@ -29,7 +29,7 @@ These guides are for developers who want to build a storefront for their Medusa
All guides under this documentation section use the [JS SDK](../js-sdk/page.mdx) to interact with the Medusa application's Store API Routes. The JS SDK is a NPM package that facilitates interacting with the backend's REST APIs. You can use it in any JavaScript framework, such as Next.js, React, Vue, or Angular.
-To install and set up the JS SDK, refer to the [JS SDK documentation](../js-sdk/page.mdx).
+Refer to the [Connect to the Medusa Application](./tips/page.mdx) guide to learn how to set up the JS SDK in your storefront application.
### Not Using JavaScript?
diff --git a/www/apps/resources/app/storefront-development/products/list/page.mdx b/www/apps/resources/app/storefront-development/products/list/page.mdx
index 24cbeab2f7..7ca65db390 100644
--- a/www/apps/resources/app/storefront-development/products/list/page.mdx
+++ b/www/apps/resources/app/storefront-development/products/list/page.mdx
@@ -30,7 +30,7 @@ Learn how to install and configure the JS SDK in the [JS SDK documentation](../.
export const highlights = [
- ["17"], ["18"], ["19"], ["20"], ["21"]
+ ["18"], ["19"], ["20"], ["21"], ["22"]
]
```tsx highlights={highlights}
@@ -38,6 +38,7 @@ export const highlights = [
import { useEffect, useState } from "react"
import { HttpTypes } from "@medusajs/types"
+ import { sdk } from "@/lib/sdk"
export default function Products() {
const [loading, setLoading] = useState(true)
diff --git a/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx b/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx
index 84114c553a..ba9c874482 100644
--- a/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx
+++ b/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx
@@ -70,6 +70,17 @@ Make sure to replace `apk_123` with the ID of the publishable API key, and `sc_1
In your storefront, pass the `x-publishable-api-key` in the header of all your requests to the Medusa application.
+For example:
+
+```bash
+curl '{backend_url}/store/products' \
+-H 'x-publishable-api-key: {your_publishable_api_key}'
+```
+
+Where `{your_publishable_api_key}` is the token of your publishable API key.
+
+### Using the JS SDK
+
When using the JS SDK, set the publishable API key as an environment variable and pass it to the JS SDK's configurations.
For example:
@@ -94,6 +105,6 @@ export const sdk = new Medusa({
})
```
-Where `NEXT_PUBLIC_MEDUSA_PUBLISHABLE_KEY` is an environment variable that holds your publishable API key's token.
+Where `NEXT_PUBLIC_MEDUSA_PUBLISHABLE_KEY` is an environment variable that holds your publishable API key's token. Based on your storefront framework, make sure the environment variable is accessible in the browser. For example, in Next.js, prefix the variable name with `NEXT_PUBLIC_`.
The JS SDK will now take care of passing the publishable API key in the header of all requests to the Medusa application.
\ No newline at end of file
diff --git a/www/apps/resources/app/storefront-development/tips/page.mdx b/www/apps/resources/app/storefront-development/tips/page.mdx
index 9874a3d2a7..336ca022ff 100644
--- a/www/apps/resources/app/storefront-development/tips/page.mdx
+++ b/www/apps/resources/app/storefront-development/tips/page.mdx
@@ -4,12 +4,12 @@ tags:
---
export const metadata = {
- title: `Storefront Development Tips`,
+ title: `Connect Your Storefront to Medusa`,
}
# {metadata.title}
-In this document, you’ll find tips useful when building a storefront.
+In this guide, you’ll learn how to send requests from your storefront application to the Medusa application.
## Connect to the Medusa Application
@@ -18,34 +18,68 @@ To send requests from the storefront to the Medusa application’s Store API Rou
- **For JavaScript frameworks**: use Medusa’s [JS SDK](../../js-sdk/page.mdx) in any JavaScript framework. This NPM package facilitates interacting with the backend’s REST APIs. All Storefront Development guides use the JS SDK.
- **For other frontend technologies**: interact directly with the Medusa application by sending requests to its [Store REST APIs](https://docs.medusajs.com/api/store).
----
+### Set Up the JS SDK
-## Install Types Package
-
-The `@medusajs/types` package provide API routes' request and response types.
-
-If you're not using the JS SDK but are building your application with TypeScript, install `@medusajs/types` to use the correct request and response types:
+To set up the JS SDK in your storefront application, install the `@medusajs/js-sdk` package with the types package:
```bash npm2yarn
-npm install @medusajs/types@latest
+npm install @medusajs/js-sdk@latest @medusajs/types@latest
```
+Then, create a file that initializes the JS SDK client. For example, create the file `src/lib/sdk.ts` with the following content:
+
+```ts title="src/lib/sdk.ts"
+import Medusa from "@medusajs/js-sdk"
+
+let MEDUSA_BACKEND_URL = "http://localhost:9000"
+
+if (process.env.NEXT_PUBLIC_MEDUSA_BACKEND_URL) {
+ MEDUSA_BACKEND_URL = process.env.NEXT_PUBLIC_MEDUSA_BACKEND_URL
+}
+
+export const sdk = new Medusa({
+ baseUrl: MEDUSA_BACKEND_URL,
+ debug: process.env.NODE_ENV === "development",
+ publishableKey: process.env.NEXT_PUBLIC_MEDUSA_PUBLISHABLE_KEY,
+})
+```
+
+Where:
+
+- `NEXT_PUBLIC_MEDUSA_BACKEND_URL` is the URL of your Medusa application. Based on your storefront framework, make sure the environment variable is accessible in the browser. For example, in Next.js, prefix the variable name with `NEXT_PUBLIC_`.
+- `NEXT_PUBLIC_MEDUSA_PUBLISHABLE_KEY` is the publishable API key of your storefront. Learn more in the [Publishable API Keys](../publishable-api-keys/page.mdx) guide.
+
+You can then import the `sdk` instance from `src/lib/sdk.ts` and use it to send requests to the Medusa application. For example:
+
+```ts
+import { sdk } from "@/lib/sdk"
+
+sdk.store.product.list()
+.then(({ products }) => {
+ console.log(products)
+})
+```
+
+Refer to the [JS SDK reference](../../js-sdk/page.mdx) to learn more about using the SDK to interact with the Medusa application.
+
---
-## Configure CORS
+## Configure Store CORS in Medusa
The Medusa application’s API routes are guarded by a CORS middleware. Make sure to set the `storeCors` property of the `http` configuration in `medusa-config.ts` to the storefront’s URL.
For example:
-```ts title="medusa-config.ts"
+```ts title="medusa-config.ts" badgeLabel="Medusa Application" badgeColor="green"
module.exports = defineConfig({
projectConfig: {
http: {
- storeCors: "http://localhost:3000",
+ storeCors: "http://localhost:3000,http://localhost:8000",
// ...
},
},
// ...
})
```
+
+Refer to the [Medusa configuration](!docs!/learn/configurations/medusa-config#httpstorecors) guide to learn more about configuring CORS in the Medusa application.
\ No newline at end of file
diff --git a/www/apps/resources/generated/edit-dates.mjs b/www/apps/resources/generated/edit-dates.mjs
index 30425d33bc..3af1600cb4 100644
--- a/www/apps/resources/generated/edit-dates.mjs
+++ b/www/apps/resources/generated/edit-dates.mjs
@@ -85,7 +85,7 @@ export const generatedEditDates = {
"app/commerce-modules/stock-location/page.mdx": "2025-04-17T08:48:26.441Z",
"app/commerce-modules/store/_events/_events-table/page.mdx": "2024-07-03T19:27:13+03:00",
"app/commerce-modules/store/_events/page.mdx": "2024-07-03T19:27:13+03:00",
- "app/commerce-modules/store/page.mdx": "2025-04-17T08:48:34.141Z",
+ "app/commerce-modules/store/page.mdx": "2025-12-09T10:56:06.938Z",
"app/commerce-modules/tax/_events/_events-table/page.mdx": "2024-07-03T19:27:13+03:00",
"app/commerce-modules/tax/_events/page.mdx": "2024-07-03T19:27:13+03:00",
"app/commerce-modules/tax/module-options/page.mdx": "2025-05-20T07:51:40.711Z",
@@ -98,7 +98,7 @@ export const generatedEditDates = {
"app/commerce-modules/user/module-options/page.mdx": "2025-10-31T10:08:14.831Z",
"app/commerce-modules/user/user-creation-flows/page.mdx": "2025-02-26T11:35:54.685Z",
"app/commerce-modules/user/page.mdx": "2025-04-17T08:48:17.980Z",
- "app/commerce-modules/page.mdx": "2025-04-17T08:48:34.855Z",
+ "app/commerce-modules/page.mdx": "2025-12-09T10:58:53.037Z",
"app/create-medusa-app/page.mdx": "2025-07-14T08:51:06.654Z",
"app/deployment/admin/vercel/page.mdx": "2024-10-16T08:10:29.377Z",
"app/deployment/storefront/vercel/page.mdx": "2025-05-20T07:51:40.712Z",
@@ -163,7 +163,7 @@ export const generatedEditDates = {
"app/storefront-development/products/collections/products/page.mdx": "2025-03-27T14:46:51.466Z",
"app/storefront-development/products/collections/retrieve/page.mdx": "2025-03-27T14:46:51.458Z",
"app/storefront-development/products/collections/page.mdx": "2024-06-11T19:55:56+02:00",
- "app/storefront-development/products/list/page.mdx": "2025-03-27T14:46:51.431Z",
+ "app/storefront-development/products/list/page.mdx": "2025-12-09T13:32:29.583Z",
"app/storefront-development/products/price/examples/sale-price/page.mdx": "2025-03-27T14:47:14.308Z",
"app/storefront-development/products/price/examples/show-price/page.mdx": "2025-03-27T14:47:14.292Z",
"app/storefront-development/products/price/examples/tax-price/page.mdx": "2025-03-27T14:47:14.292Z",
@@ -175,8 +175,8 @@ export const generatedEditDates = {
"app/storefront-development/regions/list/page.mdx": "2025-03-27T14:46:52.029Z",
"app/storefront-development/regions/store-retrieve-region/page.mdx": "2025-03-27T13:29:54.041Z",
"app/storefront-development/regions/page.mdx": "2024-06-09T15:19:09+02:00",
- "app/storefront-development/tips/page.mdx": "2025-03-26T10:31:43.816Z",
- "app/storefront-development/page.mdx": "2025-03-27T13:28:22.077Z",
+ "app/storefront-development/tips/page.mdx": "2025-12-09T13:33:33.997Z",
+ "app/storefront-development/page.mdx": "2025-12-09T13:30:25.379Z",
"app/troubleshooting/cors-errors/page.mdx": "2024-05-03T17:36:38+03:00",
"app/troubleshooting/create-medusa-app-errors/page.mdx": "2025-12-04T14:12:21.480Z",
"app/troubleshooting/database-errors/page.mdx": "2025-12-04T14:14:46.745Z",
@@ -203,7 +203,7 @@ export const generatedEditDates = {
"app/commerce-modules/api-key/_events/page.mdx": "2024-07-03T19:27:13+03:00",
"app/commerce-modules/api-key/_events/_events-table/page.mdx": "2024-07-03T19:27:13+03:00",
"app/infrastructure-modules/cache/redis/page.mdx": "2025-06-24T08:50:10.115Z",
- "app/infrastructure-modules/event/redis/page.mdx": "2025-12-04T13:38:38.038Z",
+ "app/infrastructure-modules/event/redis/page.mdx": "2025-12-09T13:29:13.949Z",
"app/infrastructure-modules/event/local/page.mdx": "2025-03-27T14:53:13.309Z",
"app/infrastructure-modules/workflow-engine/in-memory/page.mdx": "2024-11-19T16:37:47.262Z",
"app/infrastructure-modules/cache/in-memory/page.mdx": "2024-11-19T16:37:47.261Z",
@@ -937,7 +937,7 @@ export const generatedEditDates = {
"references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx": "2025-10-21T08:10:49.750Z",
"references/types/ModulesSdkTypes/types/types.ModulesSdkTypes.RemoteQueryFunction/page.mdx": "2025-10-21T08:10:47.957Z",
"references/types/types.CommonTypes/page.mdx": "2025-10-31T09:41:29.372Z",
- "app/storefront-development/publishable-api-keys/page.mdx": "2025-03-26T10:31:43.815Z",
+ "app/storefront-development/publishable-api-keys/page.mdx": "2025-12-09T13:26:27.641Z",
"references/api_key/types/api_key.ExpandScalar/page.mdx": "2024-09-17T00:10:59.563Z",
"references/api_key/types/api_key.FilterQuery/page.mdx": "2024-11-27T16:33:40.706Z",
"references/api_key/types/api_key.FilterValue/page.mdx": "2024-09-17T00:10:59.571Z",
@@ -6227,7 +6227,7 @@ export const generatedEditDates = {
"references/events/events.Region/page.mdx": "2025-05-20T07:51:40.897Z",
"references/events/events.Sales_Channel/page.mdx": "2025-05-20T07:51:40.897Z",
"references/events/events.User/page.mdx": "2025-05-20T07:51:40.897Z",
- "app/how-to-tutorials/tutorials/saved-payment-methods/page.mdx": "2025-09-11T13:03:49.152Z",
+ "app/how-to-tutorials/tutorials/saved-payment-methods/page.mdx": "2025-12-09T10:56:41.512Z",
"references/core_flows/Cart/Workflows_Cart/functions/core_flows.Cart.Workflows_Cart.refundPaymentAndRecreatePaymentSessionWorkflow/page.mdx": "2025-12-03T08:41:35.675Z",
"references/core_flows/Cart/Workflows_Cart/variables/core_flows.Cart.Workflows_Cart.refundPaymentAndRecreatePaymentSessionWorkflowId/page.mdx": "2025-05-20T07:51:40.757Z",
"references/core_flows/Draft_Order/Workflows_Draft_Order/variables/core_flows.Draft_Order.Workflows_Draft_Order.convertDraftOrderWorkflowId/page.mdx": "2025-05-20T07:51:40.768Z",
diff --git a/www/apps/resources/generated/generated-storefront-development-sidebar.mjs b/www/apps/resources/generated/generated-storefront-development-sidebar.mjs
index ee8368c869..5205ba7afb 100644
--- a/www/apps/resources/generated/generated-storefront-development-sidebar.mjs
+++ b/www/apps/resources/generated/generated-storefront-development-sidebar.mjs
@@ -24,7 +24,7 @@ const generatedgeneratedStorefrontDevelopmentSidebarSidebar = {
"isPathHref": true,
"type": "link",
"path": "/storefront-development/tips",
- "title": "Tips",
+ "title": "Connect to Medusa",
"children": []
},
{
diff --git a/www/apps/resources/sidebars/storefront.mjs b/www/apps/resources/sidebars/storefront.mjs
index c38bbd9ffa..e0d50ad33b 100644
--- a/www/apps/resources/sidebars/storefront.mjs
+++ b/www/apps/resources/sidebars/storefront.mjs
@@ -15,7 +15,7 @@ export const storefrontDevelopmentSidebar = [
{
type: "link",
path: "/storefront-development/tips",
- title: "Tips",
+ title: "Connect to Medusa",
},
{
type: "link",
diff --git a/www/packages/tags/src/tags/storefront.ts b/www/packages/tags/src/tags/storefront.ts
index 9ad3a10e34..6686061c0e 100644
--- a/www/packages/tags/src/tags/storefront.ts
+++ b/www/packages/tags/src/tags/storefront.ts
@@ -188,7 +188,7 @@ export const storefront = [
"path": "https://docs.medusajs.com/resources/storefront-development/regions/store-retrieve-region"
},
{
- "title": "Storefront Development Tips",
+ "title": "Connect Your Storefront to Medusa",
"path": "https://docs.medusajs.com/resources/storefront-development/tips"
},
{
diff --git a/www/utils/generated/typedoc-json-output/core-flows.json b/www/utils/generated/typedoc-json-output/core-flows.json
index c1ac83f116..5da3ff6058 100644
--- a/www/utils/generated/typedoc-json-output/core-flows.json
+++ b/www/utils/generated/typedoc-json-output/core-flows.json
@@ -1,26 +1,26 @@
{
- "id": 17295,
+ "id": 0,
"name": "core-flows",
"variant": "project",
"kind": 1,
"flags": {},
"children": [
{
- "id": 17296,
+ "id": 1,
"name": "Api Key",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17297,
+ "id": 2,
"name": "Steps_Api Key",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17398,
+ "id": 106,
"name": "api_keys",
"variant": "declaration",
"kind": 1024,
@@ -38,7 +38,7 @@
"fileName": "core-flows/src/api-key/steps/create-api-keys.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L15"
}
],
"type": {
@@ -55,7 +55,7 @@
}
},
{
- "id": 17399,
+ "id": 107,
"name": "createApiKeysStepId",
"variant": "declaration",
"kind": 32,
@@ -67,7 +67,7 @@
"fileName": "core-flows/src/api-key/steps/create-api-keys.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L18"
}
],
"type": {
@@ -77,7 +77,7 @@
"defaultValue": "\"create-api-keys\""
},
{
- "id": 17400,
+ "id": 108,
"name": "createApiKeysStep",
"variant": "declaration",
"kind": 64,
@@ -112,7 +112,7 @@
},
"children": [
{
- "id": 17409,
+ "id": 117,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -130,7 +130,7 @@
}
},
{
- "id": 17410,
+ "id": 118,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -152,8 +152,8 @@
{
"title": "Properties",
"children": [
- 17409,
- 17410
+ 117,
+ 118
]
}
],
@@ -162,12 +162,12 @@
"fileName": "core-flows/src/api-key/steps/create-api-keys.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L33"
}
],
"signatures": [
{
- "id": 17401,
+ "id": 109,
"name": "createApiKeysStep",
"variant": "signature",
"kind": 4096,
@@ -205,12 +205,12 @@
"fileName": "core-flows/src/api-key/steps/create-api-keys.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/create-api-keys.ts#L33"
}
],
"parameters": [
{
- "id": 17402,
+ "id": 110,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -220,7 +220,7 @@
"types": [
{
"type": "reference",
- "target": 17396,
+ "target": 104,
"name": "CreateApiKeysStepInput",
"package": "@medusajs/core-flows"
},
@@ -233,7 +233,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17396,
+ "target": 104,
"name": "CreateApiKeysStepInput",
"package": "@medusajs/core-flows"
}
@@ -323,14 +323,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17403,
+ "id": 111,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17404,
+ "id": 112,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -344,7 +344,7 @@
],
"signatures": [
{
- "id": 17405,
+ "id": 113,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -358,7 +358,7 @@
],
"parameters": [
{
- "id": 17406,
+ "id": 114,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -369,14 +369,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17407,
+ "id": 115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17408,
+ "id": 116,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -400,7 +400,7 @@
{
"title": "Properties",
"children": [
- 17408
+ 116
]
}
],
@@ -485,7 +485,7 @@
{
"title": "Methods",
"children": [
- 17404
+ 112
]
}
],
@@ -527,7 +527,7 @@
]
},
{
- "id": 17412,
+ "id": 120,
"name": "deleteApiKeysStepId",
"variant": "declaration",
"kind": 32,
@@ -539,7 +539,7 @@
"fileName": "core-flows/src/api-key/steps/delete-api-keys.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/delete-api-keys.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/delete-api-keys.ts#L10"
}
],
"type": {
@@ -549,7 +549,7 @@
"defaultValue": "\"delete-api-keys\""
},
{
- "id": 17413,
+ "id": 121,
"name": "deleteApiKeysStep",
"variant": "declaration",
"kind": 64,
@@ -575,7 +575,7 @@
},
"children": [
{
- "id": 17416,
+ "id": 124,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -593,7 +593,7 @@
}
},
{
- "id": 17417,
+ "id": 125,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -615,8 +615,8 @@
{
"title": "Properties",
"children": [
- 17416,
- 17417
+ 124,
+ 125
]
}
],
@@ -625,12 +625,12 @@
"fileName": "core-flows/src/api-key/steps/delete-api-keys.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/delete-api-keys.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/delete-api-keys.ts#L14"
}
],
"signatures": [
{
- "id": 17414,
+ "id": 122,
"name": "deleteApiKeysStep",
"variant": "signature",
"kind": 4096,
@@ -659,12 +659,12 @@
"fileName": "core-flows/src/api-key/steps/delete-api-keys.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/delete-api-keys.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/delete-api-keys.ts#L14"
}
],
"parameters": [
{
- "id": 17415,
+ "id": 123,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -674,7 +674,7 @@
"types": [
{
"type": "reference",
- "target": 17411,
+ "target": 119,
"name": "DeleteApiKeysStepInput",
"package": "@medusajs/core-flows"
},
@@ -687,7 +687,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17411,
+ "target": 119,
"name": "DeleteApiKeysStepInput",
"package": "@medusajs/core-flows"
}
@@ -707,7 +707,7 @@
]
},
{
- "id": 17419,
+ "id": 127,
"name": "linkSalesChannelsToApiKeyStepId",
"variant": "declaration",
"kind": 32,
@@ -719,7 +719,7 @@
"fileName": "core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts#L18"
}
],
"type": {
@@ -729,7 +729,7 @@
"defaultValue": "\"link-sales-channels-to-api-key\""
},
{
- "id": 17420,
+ "id": 128,
"name": "linkSalesChannelsToApiKeyStep",
"variant": "declaration",
"kind": 64,
@@ -764,7 +764,7 @@
},
"children": [
{
- "id": 17423,
+ "id": 131,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -782,7 +782,7 @@
}
},
{
- "id": 17424,
+ "id": 132,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -804,8 +804,8 @@
{
"title": "Properties",
"children": [
- 17423,
- 17424
+ 131,
+ 132
]
}
],
@@ -814,12 +814,12 @@
"fileName": "core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts#L29"
}
],
"signatures": [
{
- "id": 17421,
+ "id": 129,
"name": "linkSalesChannelsToApiKeyStep",
"variant": "signature",
"kind": 4096,
@@ -857,12 +857,12 @@
"fileName": "core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/link-sales-channels-to-publishable-key.ts#L29"
}
],
"parameters": [
{
- "id": 17422,
+ "id": 130,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -911,7 +911,7 @@
]
},
{
- "id": 17427,
+ "id": 135,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -929,7 +929,7 @@
"fileName": "core-flows/src/api-key/steps/revoke-api-keys.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L16"
}
],
"type": {
@@ -943,7 +943,7 @@
}
},
{
- "id": 17428,
+ "id": 136,
"name": "revoke",
"variant": "declaration",
"kind": 1024,
@@ -961,7 +961,7 @@
"fileName": "core-flows/src/api-key/steps/revoke-api-keys.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L20"
}
],
"type": {
@@ -975,7 +975,7 @@
}
},
{
- "id": 17429,
+ "id": 137,
"name": "revokeApiKeysStepId",
"variant": "declaration",
"kind": 32,
@@ -987,7 +987,7 @@
"fileName": "core-flows/src/api-key/steps/revoke-api-keys.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L23"
}
],
"type": {
@@ -997,7 +997,7 @@
"defaultValue": "\"revoke-api-keys\""
},
{
- "id": 17430,
+ "id": 138,
"name": "revokeApiKeysStep",
"variant": "declaration",
"kind": 64,
@@ -1032,7 +1032,7 @@
},
"children": [
{
- "id": 17439,
+ "id": 147,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -1050,7 +1050,7 @@
}
},
{
- "id": 17440,
+ "id": 148,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -1072,8 +1072,8 @@
{
"title": "Properties",
"children": [
- 17439,
- 17440
+ 147,
+ 148
]
}
],
@@ -1082,12 +1082,12 @@
"fileName": "core-flows/src/api-key/steps/revoke-api-keys.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L37"
}
],
"signatures": [
{
- "id": 17431,
+ "id": 139,
"name": "revokeApiKeysStep",
"variant": "signature",
"kind": 4096,
@@ -1125,12 +1125,12 @@
"fileName": "core-flows/src/api-key/steps/revoke-api-keys.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/revoke-api-keys.ts#L37"
}
],
"parameters": [
{
- "id": 17432,
+ "id": 140,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -1140,7 +1140,7 @@
"types": [
{
"type": "reference",
- "target": 17425,
+ "target": 133,
"name": "RevokeApiKeysStepInput",
"package": "@medusajs/core-flows"
},
@@ -1153,7 +1153,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17425,
+ "target": 133,
"name": "RevokeApiKeysStepInput",
"package": "@medusajs/core-flows"
}
@@ -1243,14 +1243,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17433,
+ "id": 141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17434,
+ "id": 142,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -1264,7 +1264,7 @@
],
"signatures": [
{
- "id": 17435,
+ "id": 143,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -1278,7 +1278,7 @@
],
"parameters": [
{
- "id": 17436,
+ "id": 144,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -1289,14 +1289,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17437,
+ "id": 145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17438,
+ "id": 146,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1320,7 +1320,7 @@
{
"title": "Properties",
"children": [
- 17438
+ 146
]
}
],
@@ -1405,7 +1405,7 @@
{
"title": "Methods",
"children": [
- 17434
+ 142
]
}
],
@@ -1447,7 +1447,7 @@
]
},
{
- "id": 17443,
+ "id": 151,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -1465,7 +1465,7 @@
"fileName": "core-flows/src/api-key/steps/update-api-keys.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L19"
}
],
"type": {
@@ -1479,7 +1479,7 @@
}
},
{
- "id": 17444,
+ "id": 152,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -1497,7 +1497,7 @@
"fileName": "core-flows/src/api-key/steps/update-api-keys.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L23"
}
],
"type": {
@@ -1511,7 +1511,7 @@
}
},
{
- "id": 17445,
+ "id": 153,
"name": "updateApiKeysStepId",
"variant": "declaration",
"kind": 32,
@@ -1523,7 +1523,7 @@
"fileName": "core-flows/src/api-key/steps/update-api-keys.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L26"
}
],
"type": {
@@ -1533,7 +1533,7 @@
"defaultValue": "\"update-api-keys\""
},
{
- "id": 17446,
+ "id": 154,
"name": "updateApiKeysStep",
"variant": "declaration",
"kind": 64,
@@ -1568,7 +1568,7 @@
},
"children": [
{
- "id": 17455,
+ "id": 163,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -1586,7 +1586,7 @@
}
},
{
- "id": 17456,
+ "id": 164,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -1608,8 +1608,8 @@
{
"title": "Properties",
"children": [
- 17455,
- 17456
+ 163,
+ 164
]
}
],
@@ -1618,12 +1618,12 @@
"fileName": "core-flows/src/api-key/steps/update-api-keys.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L40"
}
],
"signatures": [
{
- "id": 17447,
+ "id": 155,
"name": "updateApiKeysStep",
"variant": "signature",
"kind": 4096,
@@ -1661,12 +1661,12 @@
"fileName": "core-flows/src/api-key/steps/update-api-keys.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/update-api-keys.ts#L40"
}
],
"parameters": [
{
- "id": 17448,
+ "id": 156,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -1676,7 +1676,7 @@
"types": [
{
"type": "reference",
- "target": 17441,
+ "target": 149,
"name": "UpdateApiKeysStepInput",
"package": "@medusajs/core-flows"
},
@@ -1689,7 +1689,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17441,
+ "target": 149,
"name": "UpdateApiKeysStepInput",
"package": "@medusajs/core-flows"
}
@@ -1779,14 +1779,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17449,
+ "id": 157,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17450,
+ "id": 158,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -1800,7 +1800,7 @@
],
"signatures": [
{
- "id": 17451,
+ "id": 159,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -1814,7 +1814,7 @@
],
"parameters": [
{
- "id": 17452,
+ "id": 160,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -1825,14 +1825,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17453,
+ "id": 161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17454,
+ "id": 162,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1856,7 +1856,7 @@
{
"title": "Properties",
"children": [
- 17454
+ 162
]
}
],
@@ -1941,7 +1941,7 @@
{
"title": "Methods",
"children": [
- 17450
+ 158
]
}
],
@@ -1983,7 +1983,7 @@
]
},
{
- "id": 17458,
+ "id": 166,
"name": "sales_channel_ids",
"variant": "declaration",
"kind": 1024,
@@ -2001,7 +2001,7 @@
"fileName": "core-flows/src/api-key/steps/validate-sales-channel-exists.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L16"
}
],
"type": {
@@ -2013,7 +2013,7 @@
}
},
{
- "id": 17459,
+ "id": 167,
"name": "validateSalesChannelsExistStepId",
"variant": "declaration",
"kind": 32,
@@ -2025,7 +2025,7 @@
"fileName": "core-flows/src/api-key/steps/validate-sales-channel-exists.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L19"
}
],
"type": {
@@ -2035,7 +2035,7 @@
"defaultValue": "\"validate-sales-channels-exist\""
},
{
- "id": 17460,
+ "id": 168,
"name": "validateSalesChannelsExistStep",
"variant": "declaration",
"kind": 64,
@@ -2061,7 +2061,7 @@
},
"children": [
{
- "id": 17469,
+ "id": 177,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -2079,7 +2079,7 @@
}
},
{
- "id": 17470,
+ "id": 178,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -2101,8 +2101,8 @@
{
"title": "Properties",
"children": [
- 17469,
- 17470
+ 177,
+ 178
]
}
],
@@ -2111,12 +2111,12 @@
"fileName": "core-flows/src/api-key/steps/validate-sales-channel-exists.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L24"
}
],
"signatures": [
{
- "id": 17461,
+ "id": 169,
"name": "validateSalesChannelsExistStep",
"variant": "signature",
"kind": 4096,
@@ -2145,12 +2145,12 @@
"fileName": "core-flows/src/api-key/steps/validate-sales-channel-exists.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/steps/validate-sales-channel-exists.ts#L24"
}
],
"parameters": [
{
- "id": 17462,
+ "id": 170,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -2160,7 +2160,7 @@
"types": [
{
"type": "reference",
- "target": 17457,
+ "target": 165,
"name": "ValidateSalesChannelsExistStepInput",
"package": "@medusajs/core-flows"
},
@@ -2173,7 +2173,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17457,
+ "target": 165,
"name": "ValidateSalesChannelsExistStepInput",
"package": "@medusajs/core-flows"
}
@@ -2243,14 +2243,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17463,
+ "id": 171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17464,
+ "id": 172,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -2264,7 +2264,7 @@
],
"signatures": [
{
- "id": 17465,
+ "id": 173,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -2278,7 +2278,7 @@
],
"parameters": [
{
- "id": 17466,
+ "id": 174,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -2289,14 +2289,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17467,
+ "id": 175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17468,
+ "id": 176,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2320,7 +2320,7 @@
{
"title": "Properties",
"children": [
- 17468
+ 176
]
}
],
@@ -2400,7 +2400,7 @@
{
"title": "Methods",
"children": [
- 17464
+ 172
]
}
],
@@ -2439,14 +2439,14 @@
]
},
{
- "id": 17298,
+ "id": 3,
"name": "Workflows_Api Key",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17473,
+ "id": 181,
"name": "api_keys",
"variant": "declaration",
"kind": 1024,
@@ -2464,7 +2464,7 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L17"
}
],
"type": {
@@ -2481,7 +2481,7 @@
}
},
{
- "id": 17475,
+ "id": 183,
"name": "createApiKeysWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -2493,7 +2493,7 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L25"
}
],
"type": {
@@ -2503,7 +2503,7 @@
"defaultValue": "\"create-api-keys\""
},
{
- "id": 17476,
+ "id": 184,
"name": "createApiKeysWorkflow",
"variant": "declaration",
"kind": 64,
@@ -2547,7 +2547,7 @@
},
"children": [
{
- "id": 17484,
+ "id": 192,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -2570,7 +2570,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17485,
+ "id": 193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2584,7 +2584,7 @@
],
"signatures": [
{
- "id": 17486,
+ "id": 194,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -2612,7 +2612,7 @@
],
"parameters": [
{
- "id": 17487,
+ "id": 195,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -2628,14 +2628,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17488,
+ "id": 196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17489,
+ "id": 197,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -2660,7 +2660,7 @@
"types": [
{
"type": "reference",
- "target": 17471,
+ "target": 179,
"name": "CreateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -2673,7 +2673,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17471,
+ "target": 179,
"name": "CreateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -2689,7 +2689,7 @@
{
"title": "Properties",
"children": [
- 17489
+ 197
]
}
],
@@ -2782,14 +2782,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17490,
+ "id": 198,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17491,
+ "id": 199,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -2803,7 +2803,7 @@
],
"signatures": [
{
- "id": 17492,
+ "id": 200,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -2817,7 +2817,7 @@
],
"parameters": [
{
- "id": 17493,
+ "id": 201,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -2828,14 +2828,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17494,
+ "id": 202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17495,
+ "id": 203,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2859,7 +2859,7 @@
{
"title": "Properties",
"children": [
- 17495
+ 203
]
}
],
@@ -2944,7 +2944,7 @@
{
"title": "Methods",
"children": [
- 17491
+ 199
]
}
],
@@ -2988,7 +2988,7 @@
}
},
{
- "id": 17496,
+ "id": 204,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -3011,7 +3011,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17497,
+ "id": 205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3025,7 +3025,7 @@
],
"signatures": [
{
- "id": 17498,
+ "id": 206,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -3053,7 +3053,7 @@
],
"typeParameters": [
{
- "id": 17499,
+ "id": 207,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -3064,7 +3064,7 @@
}
},
{
- "id": 17500,
+ "id": 208,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -3077,7 +3077,7 @@
],
"parameters": [
{
- "id": 17501,
+ "id": 209,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -3110,7 +3110,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -3121,13 +3121,13 @@
},
"trueType": {
"type": "reference",
- "target": 17471,
+ "target": 179,
"name": "CreateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -3160,7 +3160,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -3183,7 +3183,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -3203,7 +3203,7 @@
}
},
{
- "id": 17502,
+ "id": 210,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -3226,7 +3226,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17503,
+ "id": 211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3240,7 +3240,7 @@
],
"signatures": [
{
- "id": 17504,
+ "id": 212,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -3262,7 +3262,7 @@
}
},
{
- "id": 17505,
+ "id": 213,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -3285,7 +3285,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17506,
+ "id": 214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3299,7 +3299,7 @@
],
"signatures": [
{
- "id": 17507,
+ "id": 215,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -3313,7 +3313,7 @@
],
"parameters": [
{
- "id": 17508,
+ "id": 216,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -3339,7 +3339,7 @@
}
},
{
- "id": 17509,
+ "id": 217,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -3362,14 +3362,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17510,
+ "id": 218,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17511,
+ "id": 219,
"name": "apiKeysCreated",
"variant": "declaration",
"kind": 1024,
@@ -3377,7 +3377,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17512,
+ "id": 220,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3391,7 +3391,7 @@
],
"signatures": [
{
- "id": 17513,
+ "id": 221,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -3405,7 +3405,7 @@
],
"typeParameters": [
{
- "id": 17514,
+ "id": 222,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -3414,7 +3414,7 @@
],
"parameters": [
{
- "id": 17515,
+ "id": 223,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -3429,14 +3429,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17516,
+ "id": 224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17517,
+ "id": 225,
"name": "apiKeys",
"variant": "declaration",
"kind": 1024,
@@ -3446,7 +3446,7 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 57,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L57"
}
],
"type": {
@@ -3527,14 +3527,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17518,
+ "id": 226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17519,
+ "id": 227,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -3548,7 +3548,7 @@
],
"signatures": [
{
- "id": 17520,
+ "id": 228,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -3562,7 +3562,7 @@
],
"parameters": [
{
- "id": 17521,
+ "id": 229,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -3573,14 +3573,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17522,
+ "id": 230,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17523,
+ "id": 231,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3604,7 +3604,7 @@
{
"title": "Properties",
"children": [
- 17523
+ 231
]
}
],
@@ -3689,7 +3689,7 @@
{
"title": "Methods",
"children": [
- 17519
+ 227
]
}
],
@@ -3733,7 +3733,7 @@
{
"title": "Properties",
"children": [
- 17517
+ 225
]
}
],
@@ -3742,7 +3742,7 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 56,
"character": 56,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L56"
}
]
}
@@ -3753,7 +3753,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -3764,7 +3764,7 @@
}
},
{
- "id": 17524,
+ "id": 232,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -3780,7 +3780,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -3801,7 +3801,7 @@
}
},
{
- "id": 42010,
+ "id": 24949,
"name": "apiKeysCreated",
"variant": "declaration",
"kind": 64,
@@ -3836,14 +3836,14 @@
},
"signatures": [
{
- "id": 42011,
+ "id": 24950,
"name": "apiKeysCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42012,
+ "id": 24951,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -3858,7 +3858,7 @@
},
"type": {
"type": "reference",
- "target": 17516,
+ "target": 224,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -3872,13 +3872,13 @@
{
"title": "Properties",
"children": [
- 17511
+ 219
]
},
{
"title": "Functions",
"children": [
- 42010
+ 24949
]
}
],
@@ -3895,7 +3895,7 @@
],
"documents": [
{
- "id": 42009,
+ "id": 24948,
"name": "createApiKeysStep",
"variant": "document",
"kind": 8388608,
@@ -3921,7 +3921,7 @@
"frontmatter": {}
},
{
- "id": 42013,
+ "id": 24952,
"name": "apiKeysCreated",
"variant": "document",
"kind": 8388608,
@@ -3948,21 +3948,21 @@
}
],
"childrenIncludingDocuments": [
- 17484,
- 17496,
- 17502,
- 17505,
- 17509
+ 192,
+ 204,
+ 210,
+ 213,
+ 217
],
"groups": [
{
"title": "Properties",
"children": [
- 17484,
- 17496,
- 17502,
- 17505,
- 17509
+ 192,
+ 204,
+ 210,
+ 213,
+ 217
]
}
],
@@ -3971,12 +3971,12 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L51"
}
],
"signatures": [
{
- "id": 17477,
+ "id": 185,
"name": "createApiKeysWorkflow",
"variant": "signature",
"kind": 4096,
@@ -4023,12 +4023,12 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L51"
}
],
"typeParameters": [
{
- "id": 17478,
+ "id": 186,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -4039,7 +4039,7 @@
}
},
{
- "id": 17479,
+ "id": 187,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -4052,7 +4052,7 @@
],
"parameters": [
{
- "id": 17480,
+ "id": 188,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -4076,14 +4076,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 17481,
+ "id": 189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17482,
+ "id": 190,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -4106,7 +4106,7 @@
}
},
{
- "id": 17483,
+ "id": 191,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -4133,8 +4133,8 @@
{
"title": "Properties",
"children": [
- 17482,
- 17483
+ 190,
+ 191
]
}
],
@@ -4209,7 +4209,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17471,
+ "target": 179,
"name": "CreateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -4227,14 +4227,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -4249,14 +4249,14 @@
]
},
{
- "id": 17516,
+ "id": 224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17517,
+ "id": 225,
"name": "apiKeys",
"variant": "declaration",
"kind": 1024,
@@ -4266,7 +4266,7 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 57,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L57"
}
],
"type": {
@@ -4347,14 +4347,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17518,
+ "id": 226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17519,
+ "id": 227,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -4368,7 +4368,7 @@
],
"signatures": [
{
- "id": 17520,
+ "id": 228,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -4382,7 +4382,7 @@
],
"parameters": [
{
- "id": 17521,
+ "id": 229,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -4393,14 +4393,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17522,
+ "id": 230,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17523,
+ "id": 231,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4424,7 +4424,7 @@
{
"title": "Properties",
"children": [
- 17523
+ 231
]
}
],
@@ -4509,7 +4509,7 @@
{
"title": "Methods",
"children": [
- 17519
+ 227
]
}
],
@@ -4553,7 +4553,7 @@
{
"title": "Properties",
"children": [
- 17517
+ 225
]
}
],
@@ -4562,12 +4562,12 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 56,
"character": 56,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L56"
}
]
},
{
- "id": 17517,
+ "id": 225,
"name": "apiKeys",
"variant": "declaration",
"kind": 1024,
@@ -4577,7 +4577,7 @@
"fileName": "core-flows/src/api-key/workflows/create-api-keys.ts",
"line": 57,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/create-api-keys.ts#L57"
}
],
"type": {
@@ -4658,14 +4658,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17518,
+ "id": 226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17519,
+ "id": 227,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -4679,7 +4679,7 @@
],
"signatures": [
{
- "id": 17520,
+ "id": 228,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -4693,7 +4693,7 @@
],
"parameters": [
{
- "id": 17521,
+ "id": 229,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -4704,14 +4704,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17522,
+ "id": 230,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17523,
+ "id": 231,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4735,7 +4735,7 @@
{
"title": "Properties",
"children": [
- 17523
+ 231
]
}
],
@@ -4820,7 +4820,7 @@
{
"title": "Methods",
"children": [
- 17519
+ 227
]
}
],
@@ -4860,7 +4860,7 @@
}
},
{
- "id": 17527,
+ "id": 235,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -4878,7 +4878,7 @@
"fileName": "core-flows/src/api-key/workflows/delete-api-keys.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L13"
}
],
"type": {
@@ -4890,7 +4890,7 @@
}
},
{
- "id": 17528,
+ "id": 236,
"name": "deleteApiKeysWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -4902,7 +4902,7 @@
"fileName": "core-flows/src/api-key/workflows/delete-api-keys.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L16"
}
],
"type": {
@@ -4912,7 +4912,7 @@
"defaultValue": "\"delete-api-keys\""
},
{
- "id": 17529,
+ "id": 237,
"name": "deleteApiKeysWorkflow",
"variant": "declaration",
"kind": 64,
@@ -4956,7 +4956,7 @@
},
"children": [
{
- "id": 17537,
+ "id": 245,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -4979,7 +4979,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17538,
+ "id": 246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4993,7 +4993,7 @@
],
"signatures": [
{
- "id": 17539,
+ "id": 247,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -5021,7 +5021,7 @@
],
"parameters": [
{
- "id": 17540,
+ "id": 248,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -5037,14 +5037,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17541,
+ "id": 249,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17542,
+ "id": 250,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -5069,7 +5069,7 @@
"types": [
{
"type": "reference",
- "target": 17525,
+ "target": 233,
"name": "DeleteApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -5082,7 +5082,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17525,
+ "target": 233,
"name": "DeleteApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -5098,7 +5098,7 @@
{
"title": "Properties",
"children": [
- 17542
+ 250
]
}
],
@@ -5134,14 +5134,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17543,
+ "id": 251,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17544,
+ "id": 252,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -5155,7 +5155,7 @@
],
"signatures": [
{
- "id": 17545,
+ "id": 253,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -5169,7 +5169,7 @@
],
"parameters": [
{
- "id": 17546,
+ "id": 254,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -5180,14 +5180,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17547,
+ "id": 255,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17548,
+ "id": 256,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -5211,7 +5211,7 @@
{
"title": "Properties",
"children": [
- 17548
+ 256
]
}
],
@@ -5288,7 +5288,7 @@
{
"title": "Methods",
"children": [
- 17544
+ 252
]
}
],
@@ -5324,7 +5324,7 @@
}
},
{
- "id": 17549,
+ "id": 257,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -5347,7 +5347,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17550,
+ "id": 258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -5361,7 +5361,7 @@
],
"signatures": [
{
- "id": 17551,
+ "id": 259,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -5389,7 +5389,7 @@
],
"typeParameters": [
{
- "id": 17552,
+ "id": 260,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -5400,7 +5400,7 @@
}
},
{
- "id": 17553,
+ "id": 261,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -5413,7 +5413,7 @@
],
"parameters": [
{
- "id": 17554,
+ "id": 262,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -5446,7 +5446,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -5457,13 +5457,13 @@
},
"trueType": {
"type": "reference",
- "target": 17525,
+ "target": 233,
"name": "DeleteApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -5496,7 +5496,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -5511,7 +5511,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -5531,7 +5531,7 @@
}
},
{
- "id": 17555,
+ "id": 263,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -5554,7 +5554,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17556,
+ "id": 264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -5568,7 +5568,7 @@
],
"signatures": [
{
- "id": 17557,
+ "id": 265,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -5590,7 +5590,7 @@
}
},
{
- "id": 17558,
+ "id": 266,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -5613,7 +5613,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17559,
+ "id": 267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -5627,7 +5627,7 @@
],
"signatures": [
{
- "id": 17560,
+ "id": 268,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -5641,7 +5641,7 @@
],
"parameters": [
{
- "id": 17561,
+ "id": 269,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -5667,7 +5667,7 @@
}
},
{
- "id": 17562,
+ "id": 270,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -5690,7 +5690,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17563,
+ "id": 271,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -5701,7 +5701,7 @@
],
"documents": [
{
- "id": 42014,
+ "id": 24953,
"name": "deleteApiKeysStep",
"variant": "document",
"kind": 8388608,
@@ -5727,7 +5727,7 @@
"frontmatter": {}
},
{
- "id": 42015,
+ "id": 24954,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -5754,21 +5754,21 @@
}
],
"childrenIncludingDocuments": [
- 17537,
- 17549,
- 17555,
- 17558,
- 17562
+ 245,
+ 257,
+ 263,
+ 266,
+ 270
],
"groups": [
{
"title": "Properties",
"children": [
- 17537,
- 17549,
- 17555,
- 17558,
- 17562
+ 245,
+ 257,
+ 263,
+ 266,
+ 270
]
}
],
@@ -5777,12 +5777,12 @@
"fileName": "core-flows/src/api-key/workflows/delete-api-keys.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L36"
}
],
"signatures": [
{
- "id": 17530,
+ "id": 238,
"name": "deleteApiKeysWorkflow",
"variant": "signature",
"kind": 4096,
@@ -5829,12 +5829,12 @@
"fileName": "core-flows/src/api-key/workflows/delete-api-keys.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/delete-api-keys.ts#L36"
}
],
"typeParameters": [
{
- "id": 17531,
+ "id": 239,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -5845,7 +5845,7 @@
}
},
{
- "id": 17532,
+ "id": 240,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -5858,7 +5858,7 @@
],
"parameters": [
{
- "id": 17533,
+ "id": 241,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -5882,14 +5882,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 17534,
+ "id": 242,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17535,
+ "id": 243,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -5912,7 +5912,7 @@
}
},
{
- "id": 17536,
+ "id": 244,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -5939,8 +5939,8 @@
{
"title": "Properties",
"children": [
- 17535,
- 17536
+ 243,
+ 244
]
}
],
@@ -6015,7 +6015,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17525,
+ "target": 233,
"name": "DeleteApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -6025,14 +6025,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -6047,7 +6047,7 @@
]
},
{
- "id": 17565,
+ "id": 273,
"name": "linkSalesChannelsToApiKeyWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -6059,7 +6059,7 @@
"fileName": "core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts#L17"
}
],
"type": {
@@ -6069,7 +6069,7 @@
"defaultValue": "\"link-sales-channels-to-api-key\""
},
{
- "id": 17566,
+ "id": 274,
"name": "linkSalesChannelsToApiKeyWorkflow",
"variant": "declaration",
"kind": 64,
@@ -6113,7 +6113,7 @@
},
"children": [
{
- "id": 17574,
+ "id": 282,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -6136,7 +6136,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17575,
+ "id": 283,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6150,7 +6150,7 @@
],
"signatures": [
{
- "id": 17576,
+ "id": 284,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -6178,7 +6178,7 @@
],
"parameters": [
{
- "id": 17577,
+ "id": 285,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -6194,14 +6194,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17578,
+ "id": 286,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17579,
+ "id": 287,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -6261,7 +6261,7 @@
{
"title": "Properties",
"children": [
- 17579
+ 287
]
}
],
@@ -6297,14 +6297,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17580,
+ "id": 288,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17581,
+ "id": 289,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -6318,7 +6318,7 @@
],
"signatures": [
{
- "id": 17582,
+ "id": 290,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -6332,7 +6332,7 @@
],
"parameters": [
{
- "id": 17583,
+ "id": 291,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -6343,14 +6343,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17584,
+ "id": 292,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17585,
+ "id": 293,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -6374,7 +6374,7 @@
{
"title": "Properties",
"children": [
- 17585
+ 293
]
}
],
@@ -6451,7 +6451,7 @@
{
"title": "Methods",
"children": [
- 17581
+ 289
]
}
],
@@ -6487,7 +6487,7 @@
}
},
{
- "id": 17586,
+ "id": 294,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -6510,7 +6510,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17587,
+ "id": 295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6524,7 +6524,7 @@
],
"signatures": [
{
- "id": 17588,
+ "id": 296,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -6552,7 +6552,7 @@
],
"typeParameters": [
{
- "id": 17589,
+ "id": 297,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -6563,7 +6563,7 @@
}
},
{
- "id": 17590,
+ "id": 298,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -6576,7 +6576,7 @@
],
"parameters": [
{
- "id": 17591,
+ "id": 299,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -6609,7 +6609,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -6629,7 +6629,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -6662,7 +6662,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -6677,7 +6677,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -6697,7 +6697,7 @@
}
},
{
- "id": 17592,
+ "id": 300,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -6720,7 +6720,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17593,
+ "id": 301,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6734,7 +6734,7 @@
],
"signatures": [
{
- "id": 17594,
+ "id": 302,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -6756,7 +6756,7 @@
}
},
{
- "id": 17595,
+ "id": 303,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -6779,7 +6779,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17596,
+ "id": 304,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6793,7 +6793,7 @@
],
"signatures": [
{
- "id": 17597,
+ "id": 305,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -6807,7 +6807,7 @@
],
"parameters": [
{
- "id": 17598,
+ "id": 306,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -6833,7 +6833,7 @@
}
},
{
- "id": 17599,
+ "id": 307,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -6856,7 +6856,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17600,
+ "id": 308,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6867,7 +6867,7 @@
],
"documents": [
{
- "id": 42016,
+ "id": 24955,
"name": "validateSalesChannelsExistStep",
"variant": "document",
"kind": 8388608,
@@ -6893,7 +6893,7 @@
"frontmatter": {}
},
{
- "id": 42017,
+ "id": 24956,
"name": "linkSalesChannelsToApiKeyStep",
"variant": "document",
"kind": 8388608,
@@ -6920,21 +6920,21 @@
}
],
"childrenIncludingDocuments": [
- 17574,
- 17586,
- 17592,
- 17595,
- 17599
+ 282,
+ 294,
+ 300,
+ 303,
+ 307
],
"groups": [
{
"title": "Properties",
"children": [
- 17574,
- 17586,
- 17592,
- 17595,
- 17599
+ 282,
+ 294,
+ 300,
+ 303,
+ 307
]
}
],
@@ -6943,12 +6943,12 @@
"fileName": "core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts#L39"
}
],
"signatures": [
{
- "id": 17567,
+ "id": 275,
"name": "linkSalesChannelsToApiKeyWorkflow",
"variant": "signature",
"kind": 4096,
@@ -6995,12 +6995,12 @@
"fileName": "core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/link-sales-channels-to-publishable-key.ts#L39"
}
],
"typeParameters": [
{
- "id": 17568,
+ "id": 276,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -7011,7 +7011,7 @@
}
},
{
- "id": 17569,
+ "id": 277,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -7024,7 +7024,7 @@
],
"parameters": [
{
- "id": 17570,
+ "id": 278,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -7048,14 +7048,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 17571,
+ "id": 279,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17572,
+ "id": 280,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -7078,7 +7078,7 @@
}
},
{
- "id": 17573,
+ "id": 281,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -7105,8 +7105,8 @@
{
"title": "Properties",
"children": [
- 17572,
- 17573
+ 280,
+ 281
]
}
],
@@ -7194,14 +7194,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -7216,7 +7216,7 @@
]
},
{
- "id": 17603,
+ "id": 311,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -7234,7 +7234,7 @@
"fileName": "core-flows/src/api-key/workflows/revoke-api-keys.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L20"
}
],
"type": {
@@ -7248,7 +7248,7 @@
}
},
{
- "id": 17604,
+ "id": 312,
"name": "revoke",
"variant": "declaration",
"kind": 1024,
@@ -7266,7 +7266,7 @@
"fileName": "core-flows/src/api-key/workflows/revoke-api-keys.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L24"
}
],
"type": {
@@ -7280,7 +7280,7 @@
}
},
{
- "id": 17606,
+ "id": 314,
"name": "revokeApiKeysWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -7292,7 +7292,7 @@
"fileName": "core-flows/src/api-key/workflows/revoke-api-keys.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L32"
}
],
"type": {
@@ -7302,7 +7302,7 @@
"defaultValue": "\"revoke-api-keys\""
},
{
- "id": 17607,
+ "id": 315,
"name": "revokeApiKeysWorkflow",
"variant": "declaration",
"kind": 64,
@@ -7346,7 +7346,7 @@
},
"children": [
{
- "id": 17615,
+ "id": 323,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -7369,7 +7369,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17616,
+ "id": 324,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -7383,7 +7383,7 @@
],
"signatures": [
{
- "id": 17617,
+ "id": 325,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -7411,7 +7411,7 @@
],
"parameters": [
{
- "id": 17618,
+ "id": 326,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -7427,14 +7427,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17619,
+ "id": 327,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17620,
+ "id": 328,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -7459,7 +7459,7 @@
"types": [
{
"type": "reference",
- "target": 17601,
+ "target": 309,
"name": "RevokeApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -7472,7 +7472,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17601,
+ "target": 309,
"name": "RevokeApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -7488,7 +7488,7 @@
{
"title": "Properties",
"children": [
- 17620
+ 328
]
}
],
@@ -7545,7 +7545,7 @@
},
{
"type": "reference",
- "target": 17605,
+ "target": 313,
"name": "RevokeApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -7558,7 +7558,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17605,
+ "target": 313,
"name": "RevokeApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -7569,14 +7569,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17621,
+ "id": 329,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17622,
+ "id": 330,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -7590,7 +7590,7 @@
],
"signatures": [
{
- "id": 17623,
+ "id": 331,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -7604,7 +7604,7 @@
],
"parameters": [
{
- "id": 17624,
+ "id": 332,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -7615,14 +7615,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17625,
+ "id": 333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17626,
+ "id": 334,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -7646,7 +7646,7 @@
{
"title": "Properties",
"children": [
- 17626
+ 334
]
}
],
@@ -7709,7 +7709,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17605,
+ "target": 313,
"name": "RevokeApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -7725,7 +7725,7 @@
{
"title": "Methods",
"children": [
- 17622
+ 330
]
}
],
@@ -7747,7 +7747,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17605,
+ "target": 313,
"name": "RevokeApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -7763,7 +7763,7 @@
}
},
{
- "id": 17627,
+ "id": 335,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -7786,7 +7786,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17628,
+ "id": 336,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -7800,7 +7800,7 @@
],
"signatures": [
{
- "id": 17629,
+ "id": 337,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -7828,7 +7828,7 @@
],
"typeParameters": [
{
- "id": 17630,
+ "id": 338,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -7839,7 +7839,7 @@
}
},
{
- "id": 17631,
+ "id": 339,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -7852,7 +7852,7 @@
],
"parameters": [
{
- "id": 17632,
+ "id": 340,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -7885,7 +7885,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -7896,13 +7896,13 @@
},
"trueType": {
"type": "reference",
- "target": 17601,
+ "target": 309,
"name": "RevokeApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -7935,7 +7935,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -7946,13 +7946,13 @@
},
"trueType": {
"type": "reference",
- "target": 17605,
+ "target": 313,
"name": "RevokeApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -7972,7 +7972,7 @@
}
},
{
- "id": 17633,
+ "id": 341,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -7995,7 +7995,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17634,
+ "id": 342,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -8009,7 +8009,7 @@
],
"signatures": [
{
- "id": 17635,
+ "id": 343,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -8031,7 +8031,7 @@
}
},
{
- "id": 17636,
+ "id": 344,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -8054,7 +8054,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17637,
+ "id": 345,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -8068,7 +8068,7 @@
],
"signatures": [
{
- "id": 17638,
+ "id": 346,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -8082,7 +8082,7 @@
],
"parameters": [
{
- "id": 17639,
+ "id": 347,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -8108,7 +8108,7 @@
}
},
{
- "id": 17640,
+ "id": 348,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -8131,7 +8131,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17641,
+ "id": 349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -8142,7 +8142,7 @@
],
"documents": [
{
- "id": 42018,
+ "id": 24957,
"name": "revokeApiKeysStep",
"variant": "document",
"kind": 8388608,
@@ -8169,21 +8169,21 @@
}
],
"childrenIncludingDocuments": [
- 17615,
- 17627,
- 17633,
- 17636,
- 17640
+ 323,
+ 335,
+ 341,
+ 344,
+ 348
],
"groups": [
{
"title": "Properties",
"children": [
- 17615,
- 17627,
- 17633,
- 17636,
- 17640
+ 323,
+ 335,
+ 341,
+ 344,
+ 348
]
}
],
@@ -8192,12 +8192,12 @@
"fileName": "core-flows/src/api-key/workflows/revoke-api-keys.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L59"
}
],
"signatures": [
{
- "id": 17608,
+ "id": 316,
"name": "revokeApiKeysWorkflow",
"variant": "signature",
"kind": 4096,
@@ -8244,12 +8244,12 @@
"fileName": "core-flows/src/api-key/workflows/revoke-api-keys.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/revoke-api-keys.ts#L59"
}
],
"typeParameters": [
{
- "id": 17609,
+ "id": 317,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -8260,7 +8260,7 @@
}
},
{
- "id": 17610,
+ "id": 318,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -8273,7 +8273,7 @@
],
"parameters": [
{
- "id": 17611,
+ "id": 319,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -8297,14 +8297,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 17612,
+ "id": 320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17613,
+ "id": 321,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -8327,7 +8327,7 @@
}
},
{
- "id": 17614,
+ "id": 322,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -8354,8 +8354,8 @@
{
"title": "Properties",
"children": [
- 17613,
- 17614
+ 321,
+ 322
]
}
],
@@ -8430,26 +8430,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 17601,
+ "target": 309,
"name": "RevokeApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17605,
+ "target": 313,
"name": "RevokeApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -8464,7 +8464,7 @@
]
},
{
- "id": 17644,
+ "id": 352,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -8482,7 +8482,7 @@
"fileName": "core-flows/src/api-key/workflows/update-api-keys.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L20"
}
],
"type": {
@@ -8496,7 +8496,7 @@
}
},
{
- "id": 17645,
+ "id": 353,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -8514,7 +8514,7 @@
"fileName": "core-flows/src/api-key/workflows/update-api-keys.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L24"
}
],
"type": {
@@ -8528,7 +8528,7 @@
}
},
{
- "id": 17647,
+ "id": 355,
"name": "updateApiKeysWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -8540,7 +8540,7 @@
"fileName": "core-flows/src/api-key/workflows/update-api-keys.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L32"
}
],
"type": {
@@ -8550,7 +8550,7 @@
"defaultValue": "\"update-api-keys\""
},
{
- "id": 17648,
+ "id": 356,
"name": "updateApiKeysWorkflow",
"variant": "declaration",
"kind": 64,
@@ -8594,7 +8594,7 @@
},
"children": [
{
- "id": 17656,
+ "id": 364,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -8617,7 +8617,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17657,
+ "id": 365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -8631,7 +8631,7 @@
],
"signatures": [
{
- "id": 17658,
+ "id": 366,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -8659,7 +8659,7 @@
],
"parameters": [
{
- "id": 17659,
+ "id": 367,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -8675,14 +8675,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17660,
+ "id": 368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17661,
+ "id": 369,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -8707,7 +8707,7 @@
"types": [
{
"type": "reference",
- "target": 17642,
+ "target": 350,
"name": "UpdateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -8720,7 +8720,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17642,
+ "target": 350,
"name": "UpdateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -8736,7 +8736,7 @@
{
"title": "Properties",
"children": [
- 17661
+ 369
]
}
],
@@ -8793,7 +8793,7 @@
},
{
"type": "reference",
- "target": 17646,
+ "target": 354,
"name": "UpdateApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -8806,7 +8806,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17646,
+ "target": 354,
"name": "UpdateApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -8817,14 +8817,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17662,
+ "id": 370,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17663,
+ "id": 371,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -8838,7 +8838,7 @@
],
"signatures": [
{
- "id": 17664,
+ "id": 372,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -8852,7 +8852,7 @@
],
"parameters": [
{
- "id": 17665,
+ "id": 373,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -8863,14 +8863,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17666,
+ "id": 374,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17667,
+ "id": 375,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -8894,7 +8894,7 @@
{
"title": "Properties",
"children": [
- 17667
+ 375
]
}
],
@@ -8957,7 +8957,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17646,
+ "target": 354,
"name": "UpdateApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -8973,7 +8973,7 @@
{
"title": "Methods",
"children": [
- 17663
+ 371
]
}
],
@@ -8995,7 +8995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17646,
+ "target": 354,
"name": "UpdateApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -9011,7 +9011,7 @@
}
},
{
- "id": 17668,
+ "id": 376,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -9034,7 +9034,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17669,
+ "id": 377,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9048,7 +9048,7 @@
],
"signatures": [
{
- "id": 17670,
+ "id": 378,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -9076,7 +9076,7 @@
],
"typeParameters": [
{
- "id": 17671,
+ "id": 379,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -9087,7 +9087,7 @@
}
},
{
- "id": 17672,
+ "id": 380,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -9100,7 +9100,7 @@
],
"parameters": [
{
- "id": 17673,
+ "id": 381,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -9133,7 +9133,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -9144,13 +9144,13 @@
},
"trueType": {
"type": "reference",
- "target": 17642,
+ "target": 350,
"name": "UpdateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -9183,7 +9183,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -9194,13 +9194,13 @@
},
"trueType": {
"type": "reference",
- "target": 17646,
+ "target": 354,
"name": "UpdateApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -9220,7 +9220,7 @@
}
},
{
- "id": 17674,
+ "id": 382,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -9243,7 +9243,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17675,
+ "id": 383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9257,7 +9257,7 @@
],
"signatures": [
{
- "id": 17676,
+ "id": 384,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -9279,7 +9279,7 @@
}
},
{
- "id": 17677,
+ "id": 385,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -9302,7 +9302,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17678,
+ "id": 386,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9316,7 +9316,7 @@
],
"signatures": [
{
- "id": 17679,
+ "id": 387,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -9330,7 +9330,7 @@
],
"parameters": [
{
- "id": 17680,
+ "id": 388,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -9356,7 +9356,7 @@
}
},
{
- "id": 17681,
+ "id": 389,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -9379,7 +9379,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17682,
+ "id": 390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9390,7 +9390,7 @@
],
"documents": [
{
- "id": 42019,
+ "id": 24958,
"name": "updateApiKeysStep",
"variant": "document",
"kind": 8388608,
@@ -9417,21 +9417,21 @@
}
],
"childrenIncludingDocuments": [
- 17656,
- 17668,
- 17674,
- 17677,
- 17681
+ 364,
+ 376,
+ 382,
+ 385,
+ 389
],
"groups": [
{
"title": "Properties",
"children": [
- 17656,
- 17668,
- 17674,
- 17677,
- 17681
+ 364,
+ 376,
+ 382,
+ 385,
+ 389
]
}
],
@@ -9440,12 +9440,12 @@
"fileName": "core-flows/src/api-key/workflows/update-api-keys.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L57"
}
],
"signatures": [
{
- "id": 17649,
+ "id": 357,
"name": "updateApiKeysWorkflow",
"variant": "signature",
"kind": 4096,
@@ -9492,12 +9492,12 @@
"fileName": "core-flows/src/api-key/workflows/update-api-keys.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/api-key/workflows/update-api-keys.ts#L57"
}
],
"typeParameters": [
{
- "id": 17650,
+ "id": 358,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -9508,7 +9508,7 @@
}
},
{
- "id": 17651,
+ "id": 359,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -9521,7 +9521,7 @@
],
"parameters": [
{
- "id": 17652,
+ "id": 360,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -9545,14 +9545,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 17653,
+ "id": 361,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17654,
+ "id": 362,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -9575,7 +9575,7 @@
}
},
{
- "id": 17655,
+ "id": 363,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -9602,8 +9602,8 @@
{
"title": "Properties",
"children": [
- 17654,
- 17655
+ 362,
+ 363
]
}
],
@@ -9678,26 +9678,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 17642,
+ "target": 350,
"name": "UpdateApiKeysWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17646,
+ "target": 354,
"name": "UpdateApiKeysWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -9716,21 +9716,21 @@
]
},
{
- "id": 17299,
+ "id": 4,
"name": "Auth",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17300,
+ "id": 5,
"name": "Steps_Auth",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17685,
+ "id": 393,
"name": "authIdentityId",
"variant": "declaration",
"kind": 1024,
@@ -9740,7 +9740,7 @@
"fileName": "core-flows/src/auth/steps/set-auth-app-metadata.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L7"
}
],
"type": {
@@ -9749,7 +9749,7 @@
}
},
{
- "id": 17686,
+ "id": 394,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -9759,7 +9759,7 @@
"fileName": "core-flows/src/auth/steps/set-auth-app-metadata.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L8"
}
],
"type": {
@@ -9768,7 +9768,7 @@
}
},
{
- "id": 17687,
+ "id": 395,
"name": "value",
"variant": "declaration",
"kind": 1024,
@@ -9778,7 +9778,7 @@
"fileName": "core-flows/src/auth/steps/set-auth-app-metadata.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L9"
}
],
"type": {
@@ -9796,7 +9796,7 @@
}
},
{
- "id": 17688,
+ "id": 396,
"name": "setAuthAppMetadataStepId",
"variant": "declaration",
"kind": 32,
@@ -9808,7 +9808,7 @@
"fileName": "core-flows/src/auth/steps/set-auth-app-metadata.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L12"
}
],
"type": {
@@ -9818,7 +9818,7 @@
"defaultValue": "\"set-auth-app-metadata\""
},
{
- "id": 17689,
+ "id": 397,
"name": "setAuthAppMetadataStep",
"variant": "declaration",
"kind": 64,
@@ -9917,7 +9917,7 @@
},
"children": [
{
- "id": 17702,
+ "id": 410,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -9935,7 +9935,7 @@
}
},
{
- "id": 17703,
+ "id": 411,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -9957,8 +9957,8 @@
{
"title": "Properties",
"children": [
- 17702,
- 17703
+ 410,
+ 411
]
}
],
@@ -9967,12 +9967,12 @@
"fileName": "core-flows/src/auth/steps/set-auth-app-metadata.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L45"
}
],
"signatures": [
{
- "id": 17690,
+ "id": 398,
"name": "setAuthAppMetadataStep",
"variant": "signature",
"kind": 4096,
@@ -10074,12 +10074,12 @@
"fileName": "core-flows/src/auth/steps/set-auth-app-metadata.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/steps/set-auth-app-metadata.ts#L45"
}
],
"parameters": [
{
- "id": 17691,
+ "id": 399,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -10089,7 +10089,7 @@
"types": [
{
"type": "reference",
- "target": 17683,
+ "target": 391,
"name": "SetAuthAppMetadataStepInput",
"package": "@medusajs/core-flows"
},
@@ -10102,7 +10102,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17683,
+ "target": 391,
"name": "SetAuthAppMetadataStepInput",
"package": "@medusajs/core-flows"
}
@@ -10120,14 +10120,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17692,
+ "id": 400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17693,
+ "id": 401,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -10173,7 +10173,7 @@
}
},
{
- "id": 17694,
+ "id": 402,
"name": "provider_identities",
"variant": "declaration",
"kind": 1024,
@@ -10246,7 +10246,7 @@
}
},
{
- "id": 17695,
+ "id": 403,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -10337,9 +10337,9 @@
{
"title": "Properties",
"children": [
- 17693,
- 17694,
- 17695
+ 401,
+ 402,
+ 403
]
}
],
@@ -10384,14 +10384,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17696,
+ "id": 404,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17697,
+ "id": 405,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -10405,7 +10405,7 @@
],
"signatures": [
{
- "id": 17698,
+ "id": 406,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -10419,7 +10419,7 @@
],
"parameters": [
{
- "id": 17699,
+ "id": 407,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -10430,14 +10430,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17700,
+ "id": 408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17701,
+ "id": 409,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -10461,7 +10461,7 @@
{
"title": "Properties",
"children": [
- 17701
+ 409
]
}
],
@@ -10543,7 +10543,7 @@
{
"title": "Methods",
"children": [
- 17697
+ 405
]
}
],
@@ -10584,14 +10584,14 @@
]
},
{
- "id": 17301,
+ "id": 6,
"name": "Workflows_Auth",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17704,
+ "id": 412,
"name": "generateResetPasswordTokenWorkflow",
"variant": "declaration",
"kind": 64,
@@ -10652,7 +10652,7 @@
},
"children": [
{
- "id": 17718,
+ "id": 426,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -10675,7 +10675,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17719,
+ "id": 427,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -10689,7 +10689,7 @@
],
"signatures": [
{
- "id": 17720,
+ "id": 428,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -10717,7 +10717,7 @@
],
"parameters": [
{
- "id": 17721,
+ "id": 429,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -10733,14 +10733,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17722,
+ "id": 430,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17723,
+ "id": 431,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -10766,14 +10766,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17724,
+ "id": 432,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17725,
+ "id": 433,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -10783,7 +10783,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -10792,7 +10792,7 @@
}
},
{
- "id": 17726,
+ "id": 434,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -10802,7 +10802,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -10811,7 +10811,7 @@
}
},
{
- "id": 17727,
+ "id": 435,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -10821,7 +10821,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -10830,7 +10830,7 @@
}
},
{
- "id": 17728,
+ "id": 436,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -10840,7 +10840,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -10863,7 +10863,7 @@
}
},
{
- "id": 17729,
+ "id": 437,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -10875,7 +10875,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -10893,11 +10893,11 @@
{
"title": "Properties",
"children": [
- 17725,
- 17726,
- 17727,
- 17728,
- 17729
+ 433,
+ 434,
+ 435,
+ 436,
+ 437
]
}
],
@@ -10906,7 +10906,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 45,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
}
]
}
@@ -10921,14 +10921,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17730,
+ "id": 438,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17731,
+ "id": 439,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -10938,7 +10938,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -10947,7 +10947,7 @@
}
},
{
- "id": 17732,
+ "id": 440,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -10957,7 +10957,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -10966,7 +10966,7 @@
}
},
{
- "id": 17733,
+ "id": 441,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -10976,7 +10976,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -10985,7 +10985,7 @@
}
},
{
- "id": 17734,
+ "id": 442,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -10995,7 +10995,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -11018,7 +11018,7 @@
}
},
{
- "id": 17735,
+ "id": 443,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -11030,7 +11030,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -11048,11 +11048,11 @@
{
"title": "Properties",
"children": [
- 17731,
- 17732,
- 17733,
- 17734,
- 17735
+ 439,
+ 440,
+ 441,
+ 442,
+ 443
]
}
],
@@ -11061,7 +11061,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 45,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
}
]
}
@@ -11078,7 +11078,7 @@
{
"title": "Properties",
"children": [
- 17723
+ 431
]
}
],
@@ -11118,14 +11118,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17736,
+ "id": 444,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17737,
+ "id": 445,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -11139,7 +11139,7 @@
],
"signatures": [
{
- "id": 17738,
+ "id": 446,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -11153,7 +11153,7 @@
],
"parameters": [
{
- "id": 17739,
+ "id": 447,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -11164,14 +11164,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17740,
+ "id": 448,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17741,
+ "id": 449,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -11195,7 +11195,7 @@
{
"title": "Properties",
"children": [
- 17741
+ 449
]
}
],
@@ -11272,7 +11272,7 @@
{
"title": "Methods",
"children": [
- 17737
+ 445
]
}
],
@@ -11308,7 +11308,7 @@
}
},
{
- "id": 17742,
+ "id": 450,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -11331,7 +11331,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17743,
+ "id": 451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -11345,7 +11345,7 @@
],
"signatures": [
{
- "id": 17744,
+ "id": 452,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -11373,7 +11373,7 @@
],
"typeParameters": [
{
- "id": 17745,
+ "id": 453,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -11384,7 +11384,7 @@
}
},
{
- "id": 17746,
+ "id": 454,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -11397,7 +11397,7 @@
],
"parameters": [
{
- "id": 17747,
+ "id": 455,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -11430,7 +11430,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -11442,14 +11442,14 @@
"trueType": {
"type": "reflection",
"declaration": {
- "id": 17748,
+ "id": 456,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17749,
+ "id": 457,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -11459,7 +11459,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -11468,7 +11468,7 @@
}
},
{
- "id": 17750,
+ "id": 458,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -11478,7 +11478,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -11487,7 +11487,7 @@
}
},
{
- "id": 17751,
+ "id": 459,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -11497,7 +11497,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -11506,7 +11506,7 @@
}
},
{
- "id": 17752,
+ "id": 460,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -11516,7 +11516,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -11539,7 +11539,7 @@
}
},
{
- "id": 17753,
+ "id": 461,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -11551,7 +11551,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -11569,11 +11569,11 @@
{
"title": "Properties",
"children": [
- 17749,
- 17750,
- 17751,
- 17752,
- 17753
+ 457,
+ 458,
+ 459,
+ 460,
+ 461
]
}
],
@@ -11582,14 +11582,14 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 45,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
}
]
}
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -11622,7 +11622,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -11637,7 +11637,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -11657,7 +11657,7 @@
}
},
{
- "id": 17754,
+ "id": 462,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -11680,7 +11680,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17755,
+ "id": 463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -11694,7 +11694,7 @@
],
"signatures": [
{
- "id": 17756,
+ "id": 464,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -11716,7 +11716,7 @@
}
},
{
- "id": 17757,
+ "id": 465,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -11739,7 +11739,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17758,
+ "id": 466,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -11753,7 +11753,7 @@
],
"signatures": [
{
- "id": 17759,
+ "id": 467,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -11767,7 +11767,7 @@
],
"parameters": [
{
- "id": 17760,
+ "id": 468,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -11793,7 +11793,7 @@
}
},
{
- "id": 17761,
+ "id": 469,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -11816,7 +11816,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 17762,
+ "id": 470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -11827,7 +11827,7 @@
],
"documents": [
{
- "id": 42020,
+ "id": 24959,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -11853,7 +11853,7 @@
"frontmatter": {}
},
{
- "id": 42021,
+ "id": 24960,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -11880,21 +11880,21 @@
}
],
"childrenIncludingDocuments": [
- 17718,
- 17742,
- 17754,
- 17757,
- 17761
+ 426,
+ 450,
+ 462,
+ 465,
+ 469
],
"groups": [
{
"title": "Properties",
"children": [
- 17718,
- 17742,
- 17754,
- 17757,
- 17761
+ 426,
+ 450,
+ 462,
+ 465,
+ 469
]
}
],
@@ -11903,12 +11903,12 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L43"
}
],
"signatures": [
{
- "id": 17705,
+ "id": 413,
"name": "generateResetPasswordTokenWorkflow",
"variant": "signature",
"kind": 4096,
@@ -11972,12 +11972,12 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L43"
}
],
"typeParameters": [
{
- "id": 17706,
+ "id": 414,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -11988,7 +11988,7 @@
}
},
{
- "id": 17707,
+ "id": 415,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -12001,7 +12001,7 @@
],
"parameters": [
{
- "id": 17708,
+ "id": 416,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -12025,14 +12025,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 17709,
+ "id": 417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17710,
+ "id": 418,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -12055,7 +12055,7 @@
}
},
{
- "id": 17711,
+ "id": 419,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -12082,8 +12082,8 @@
{
"title": "Properties",
"children": [
- 17710,
- 17711
+ 418,
+ 419
]
}
],
@@ -12159,14 +12159,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17712,
+ "id": 420,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17713,
+ "id": 421,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -12176,7 +12176,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -12185,7 +12185,7 @@
}
},
{
- "id": 17714,
+ "id": 422,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -12195,7 +12195,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -12204,7 +12204,7 @@
}
},
{
- "id": 17715,
+ "id": 423,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -12214,7 +12214,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -12223,7 +12223,7 @@
}
},
{
- "id": 17716,
+ "id": 424,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -12233,7 +12233,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -12256,7 +12256,7 @@
}
},
{
- "id": 17717,
+ "id": 425,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -12268,7 +12268,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -12286,11 +12286,11 @@
{
"title": "Properties",
"children": [
- 17713,
- 17714,
- 17715,
- 17716,
- 17717
+ 421,
+ 422,
+ 423,
+ 424,
+ 425
]
}
],
@@ -12299,7 +12299,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 45,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L45"
}
]
}
@@ -12310,14 +12310,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -12332,7 +12332,7 @@
]
},
{
- "id": 17713,
+ "id": 421,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -12342,7 +12342,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -12351,7 +12351,7 @@
}
},
{
- "id": 17714,
+ "id": 422,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -12361,7 +12361,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -12370,7 +12370,7 @@
}
},
{
- "id": 17715,
+ "id": 423,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -12380,7 +12380,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -12389,7 +12389,7 @@
}
},
{
- "id": 17716,
+ "id": 424,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -12399,7 +12399,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -12422,7 +12422,7 @@
}
},
{
- "id": 17717,
+ "id": 425,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -12434,7 +12434,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -12448,7 +12448,7 @@
}
},
{
- "id": 17725,
+ "id": 433,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -12458,7 +12458,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -12467,7 +12467,7 @@
}
},
{
- "id": 17726,
+ "id": 434,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -12477,7 +12477,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -12486,7 +12486,7 @@
}
},
{
- "id": 17727,
+ "id": 435,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -12496,7 +12496,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -12505,7 +12505,7 @@
}
},
{
- "id": 17728,
+ "id": 436,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -12515,7 +12515,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -12538,7 +12538,7 @@
}
},
{
- "id": 17729,
+ "id": 437,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -12550,7 +12550,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -12564,7 +12564,7 @@
}
},
{
- "id": 17731,
+ "id": 439,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -12574,7 +12574,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -12583,7 +12583,7 @@
}
},
{
- "id": 17732,
+ "id": 440,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -12593,7 +12593,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -12602,7 +12602,7 @@
}
},
{
- "id": 17733,
+ "id": 441,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -12612,7 +12612,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -12621,7 +12621,7 @@
}
},
{
- "id": 17734,
+ "id": 442,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -12631,7 +12631,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -12654,7 +12654,7 @@
}
},
{
- "id": 17735,
+ "id": 443,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -12666,7 +12666,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -12680,7 +12680,7 @@
}
},
{
- "id": 17749,
+ "id": 457,
"name": "entityId",
"variant": "declaration",
"kind": 1024,
@@ -12690,7 +12690,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L46"
}
],
"type": {
@@ -12699,7 +12699,7 @@
}
},
{
- "id": 17750,
+ "id": 458,
"name": "actorType",
"variant": "declaration",
"kind": 1024,
@@ -12709,7 +12709,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L47"
}
],
"type": {
@@ -12718,7 +12718,7 @@
}
},
{
- "id": 17751,
+ "id": 459,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -12728,7 +12728,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L48"
}
],
"type": {
@@ -12737,7 +12737,7 @@
}
},
{
- "id": 17752,
+ "id": 460,
"name": "secret",
"variant": "declaration",
"kind": 1024,
@@ -12747,7 +12747,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L49"
}
],
"type": {
@@ -12770,7 +12770,7 @@
}
},
{
- "id": 17753,
+ "id": 461,
"name": "jwtOptions",
"variant": "declaration",
"kind": 1024,
@@ -12782,7 +12782,7 @@
"fileName": "core-flows/src/auth/workflows/generate-reset-password-token.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/auth/workflows/generate-reset-password-token.ts#L50"
}
],
"type": {
@@ -12800,21 +12800,21 @@
]
},
{
- "id": 17302,
+ "id": 7,
"name": "Cart",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17303,
+ "id": 8,
"name": "Steps_Cart",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17764,
+ "id": 472,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -12832,7 +12832,7 @@
"fileName": "core-flows/src/cart/steps/add-shipping-method-to-cart.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L15"
}
],
"type": {
@@ -12849,7 +12849,7 @@
}
},
{
- "id": 17765,
+ "id": 473,
"name": "addShippingMethodToCartStepId",
"variant": "declaration",
"kind": 32,
@@ -12861,7 +12861,7 @@
"fileName": "core-flows/src/cart/steps/add-shipping-method-to-cart.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L18"
}
],
"type": {
@@ -12871,7 +12871,7 @@
"defaultValue": "\"add-shipping-method-to-cart-step\""
},
{
- "id": 17766,
+ "id": 474,
"name": "addShippingMethodToCartStep",
"variant": "declaration",
"kind": 64,
@@ -12906,7 +12906,7 @@
},
"children": [
{
- "id": 17775,
+ "id": 483,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -12924,7 +12924,7 @@
}
},
{
- "id": 17776,
+ "id": 484,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -12946,8 +12946,8 @@
{
"title": "Properties",
"children": [
- 17775,
- 17776
+ 483,
+ 484
]
}
],
@@ -12956,12 +12956,12 @@
"fileName": "core-flows/src/cart/steps/add-shipping-method-to-cart.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L33"
}
],
"signatures": [
{
- "id": 17767,
+ "id": 475,
"name": "addShippingMethodToCartStep",
"variant": "signature",
"kind": 4096,
@@ -12999,12 +12999,12 @@
"fileName": "core-flows/src/cart/steps/add-shipping-method-to-cart.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/add-shipping-method-to-cart.ts#L33"
}
],
"parameters": [
{
- "id": 17768,
+ "id": 476,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -13014,7 +13014,7 @@
"types": [
{
"type": "reference",
- "target": 17763,
+ "target": 471,
"name": "AddShippingMethodToCartStepInput",
"package": "@medusajs/core-flows"
},
@@ -13027,7 +13027,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17763,
+ "target": 471,
"name": "AddShippingMethodToCartStepInput",
"package": "@medusajs/core-flows"
}
@@ -13117,14 +13117,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17769,
+ "id": 477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17770,
+ "id": 478,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -13138,7 +13138,7 @@
],
"signatures": [
{
- "id": 17771,
+ "id": 479,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -13152,7 +13152,7 @@
],
"parameters": [
{
- "id": 17772,
+ "id": 480,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -13163,14 +13163,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17773,
+ "id": 481,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17774,
+ "id": 482,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -13194,7 +13194,7 @@
{
"title": "Properties",
"children": [
- 17774
+ 482
]
}
],
@@ -13279,7 +13279,7 @@
{
"title": "Methods",
"children": [
- 17770
+ 478
]
}
],
@@ -13321,7 +13321,7 @@
]
},
{
- "id": 17780,
+ "id": 488,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -13339,7 +13339,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 24,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L24"
}
],
"type": {
@@ -13348,7 +13348,7 @@
}
},
{
- "id": 17781,
+ "id": 489,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -13382,7 +13382,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 29,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L29"
}
],
"type": {
@@ -13391,7 +13391,7 @@
}
},
{
- "id": 17782,
+ "id": 490,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -13409,7 +13409,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 33,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L33"
}
],
"type": {
@@ -13418,7 +13418,7 @@
}
},
{
- "id": 17783,
+ "id": 491,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -13436,7 +13436,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 37,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L37"
}
],
"type": {
@@ -13450,7 +13450,7 @@
}
},
{
- "id": 17784,
+ "id": 492,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -13468,7 +13468,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L41"
}
],
"type": {
@@ -13480,7 +13480,7 @@
}
},
{
- "id": 17778,
+ "id": 486,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -13498,7 +13498,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L20"
}
],
"type": {
@@ -13506,14 +13506,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 17779,
+ "id": 487,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17780,
+ "id": 488,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -13531,7 +13531,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 24,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L24"
}
],
"type": {
@@ -13540,7 +13540,7 @@
}
},
{
- "id": 17781,
+ "id": 489,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -13574,7 +13574,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 29,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L29"
}
],
"type": {
@@ -13583,7 +13583,7 @@
}
},
{
- "id": 17782,
+ "id": 490,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -13601,7 +13601,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 33,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L33"
}
],
"type": {
@@ -13610,7 +13610,7 @@
}
},
{
- "id": 17783,
+ "id": 491,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -13628,7 +13628,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 37,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L37"
}
],
"type": {
@@ -13642,7 +13642,7 @@
}
},
{
- "id": 17784,
+ "id": 492,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -13660,7 +13660,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L41"
}
],
"type": {
@@ -13676,11 +13676,11 @@
{
"title": "Properties",
"children": [
- 17780,
- 17781,
- 17782,
- 17783,
- 17784
+ 488,
+ 489,
+ 490,
+ 491,
+ 492
]
}
],
@@ -13689,7 +13689,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 20,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L20"
}
]
}
@@ -13697,7 +13697,7 @@
}
},
{
- "id": 17785,
+ "id": 493,
"name": "confirmInventoryStepId",
"variant": "declaration",
"kind": 32,
@@ -13709,7 +13709,7 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L45"
}
],
"type": {
@@ -13719,7 +13719,7 @@
"defaultValue": "\"confirm-inventory-step\""
},
{
- "id": 17786,
+ "id": 494,
"name": "confirmInventoryStep",
"variant": "declaration",
"kind": 64,
@@ -13754,7 +13754,7 @@
},
"children": [
{
- "id": 17795,
+ "id": 503,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -13772,7 +13772,7 @@
}
},
{
- "id": 17796,
+ "id": 504,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -13794,8 +13794,8 @@
{
"title": "Properties",
"children": [
- 17795,
- 17796
+ 503,
+ 504
]
}
],
@@ -13804,12 +13804,12 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 63,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L63"
}
],
"signatures": [
{
- "id": 17787,
+ "id": 495,
"name": "confirmInventoryStep",
"variant": "signature",
"kind": 4096,
@@ -13847,12 +13847,12 @@
"fileName": "core-flows/src/cart/steps/confirm-inventory.ts",
"line": 63,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/confirm-inventory.ts#L63"
}
],
"parameters": [
{
- "id": 17788,
+ "id": 496,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -13862,7 +13862,7 @@
"types": [
{
"type": "reference",
- "target": 17777,
+ "target": 485,
"name": "ConfirmVariantInventoryStepInput",
"package": "@medusajs/core-flows"
},
@@ -13875,7 +13875,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17777,
+ "target": 485,
"name": "ConfirmVariantInventoryStepInput",
"package": "@medusajs/core-flows"
}
@@ -13934,14 +13934,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17789,
+ "id": 497,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17790,
+ "id": 498,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -13955,7 +13955,7 @@
],
"signatures": [
{
- "id": 17791,
+ "id": 499,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -13969,7 +13969,7 @@
],
"parameters": [
{
- "id": 17792,
+ "id": 500,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -13980,14 +13980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17793,
+ "id": 501,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17794,
+ "id": 502,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -14011,7 +14011,7 @@
{
"title": "Properties",
"children": [
- 17794
+ 502
]
}
],
@@ -14100,7 +14100,7 @@
{
"title": "Methods",
"children": [
- 17790
+ 498
]
}
],
@@ -14146,7 +14146,7 @@
]
},
{
- "id": 17798,
+ "id": 506,
"name": "createCartsStepId",
"variant": "declaration",
"kind": 32,
@@ -14158,7 +14158,7 @@
"fileName": "core-flows/src/cart/steps/create-carts.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-carts.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-carts.ts#L13"
}
],
"type": {
@@ -14168,7 +14168,7 @@
"defaultValue": "\"create-carts\""
},
{
- "id": 17799,
+ "id": 507,
"name": "createCartsStep",
"variant": "declaration",
"kind": 64,
@@ -14194,7 +14194,7 @@
},
"children": [
{
- "id": 17808,
+ "id": 516,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -14212,7 +14212,7 @@
}
},
{
- "id": 17809,
+ "id": 517,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -14234,8 +14234,8 @@
{
"title": "Properties",
"children": [
- 17808,
- 17809
+ 516,
+ 517
]
}
],
@@ -14244,12 +14244,12 @@
"fileName": "core-flows/src/cart/steps/create-carts.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-carts.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-carts.ts#L17"
}
],
"signatures": [
{
- "id": 17800,
+ "id": 508,
"name": "createCartsStep",
"variant": "signature",
"kind": 4096,
@@ -14278,12 +14278,12 @@
"fileName": "core-flows/src/cart/steps/create-carts.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-carts.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-carts.ts#L17"
}
],
"parameters": [
{
- "id": 17801,
+ "id": 509,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -14293,7 +14293,7 @@
"types": [
{
"type": "reference",
- "target": 17797,
+ "target": 505,
"name": "CreateCartsStepInput",
"package": "@medusajs/core-flows"
},
@@ -14306,7 +14306,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17797,
+ "target": 505,
"name": "CreateCartsStepInput",
"package": "@medusajs/core-flows"
}
@@ -14396,14 +14396,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17802,
+ "id": 510,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17803,
+ "id": 511,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -14417,7 +14417,7 @@
],
"signatures": [
{
- "id": 17804,
+ "id": 512,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -14431,7 +14431,7 @@
],
"parameters": [
{
- "id": 17805,
+ "id": 513,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -14442,14 +14442,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17806,
+ "id": 514,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17807,
+ "id": 515,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -14473,7 +14473,7 @@
{
"title": "Properties",
"children": [
- 17807
+ 515
]
}
],
@@ -14558,7 +14558,7 @@
{
"title": "Methods",
"children": [
- 17803
+ 511
]
}
],
@@ -14600,7 +14600,7 @@
]
},
{
- "id": 17811,
+ "id": 519,
"name": "lineItemAdjustmentsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -14618,7 +14618,7 @@
"fileName": "core-flows/src/cart/steps/create-line-item-adjustments.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L15"
}
],
"type": {
@@ -14635,7 +14635,7 @@
}
},
{
- "id": 17812,
+ "id": 520,
"name": "createLineItemAdjustmentsStepId",
"variant": "declaration",
"kind": 32,
@@ -14647,7 +14647,7 @@
"fileName": "core-flows/src/cart/steps/create-line-item-adjustments.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L18"
}
],
"type": {
@@ -14657,7 +14657,7 @@
"defaultValue": "\"create-line-item-adjustments\""
},
{
- "id": 17813,
+ "id": 521,
"name": "createLineItemAdjustmentsStep",
"variant": "declaration",
"kind": 64,
@@ -14692,7 +14692,7 @@
},
"children": [
{
- "id": 17822,
+ "id": 530,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -14710,7 +14710,7 @@
}
},
{
- "id": 17823,
+ "id": 531,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -14732,8 +14732,8 @@
{
"title": "Properties",
"children": [
- 17822,
- 17823
+ 530,
+ 531
]
}
],
@@ -14742,12 +14742,12 @@
"fileName": "core-flows/src/cart/steps/create-line-item-adjustments.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L33"
}
],
"signatures": [
{
- "id": 17814,
+ "id": 522,
"name": "createLineItemAdjustmentsStep",
"variant": "signature",
"kind": 4096,
@@ -14785,12 +14785,12 @@
"fileName": "core-flows/src/cart/steps/create-line-item-adjustments.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-item-adjustments.ts#L33"
}
],
"parameters": [
{
- "id": 17815,
+ "id": 523,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -14800,7 +14800,7 @@
"types": [
{
"type": "reference",
- "target": 17810,
+ "target": 518,
"name": "CreateLineItemAdjustmentsCartStepInput",
"package": "@medusajs/core-flows"
},
@@ -14813,7 +14813,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17810,
+ "target": 518,
"name": "CreateLineItemAdjustmentsCartStepInput",
"package": "@medusajs/core-flows"
}
@@ -14872,14 +14872,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17816,
+ "id": 524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17817,
+ "id": 525,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -14893,7 +14893,7 @@
],
"signatures": [
{
- "id": 17818,
+ "id": 526,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -14907,7 +14907,7 @@
],
"parameters": [
{
- "id": 17819,
+ "id": 527,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -14918,14 +14918,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17820,
+ "id": 528,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17821,
+ "id": 529,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -14949,7 +14949,7 @@
{
"title": "Properties",
"children": [
- 17821
+ 529
]
}
],
@@ -15038,7 +15038,7 @@
{
"title": "Methods",
"children": [
- 17817
+ 525
]
}
],
@@ -15084,7 +15084,7 @@
]
},
{
- "id": 17825,
+ "id": 533,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -15102,7 +15102,7 @@
"fileName": "core-flows/src/cart/steps/create-line-items.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-items.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-items.ts#L15"
}
],
"type": {
@@ -15111,7 +15111,7 @@
}
},
{
- "id": 17826,
+ "id": 534,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -15129,7 +15129,7 @@
"fileName": "core-flows/src/cart/steps/create-line-items.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-items.ts#L19"
}
],
"type": {
@@ -15146,7 +15146,7 @@
}
},
{
- "id": 17827,
+ "id": 535,
"name": "createLineItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -15158,7 +15158,7 @@
"fileName": "core-flows/src/cart/steps/create-line-items.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-items.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-items.ts#L22"
}
],
"type": {
@@ -15168,7 +15168,7 @@
"defaultValue": "\"create-line-items-step\""
},
{
- "id": 17828,
+ "id": 536,
"name": "createLineItemsStep",
"variant": "declaration",
"kind": 64,
@@ -15203,7 +15203,7 @@
},
"children": [
{
- "id": 17837,
+ "id": 545,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -15221,7 +15221,7 @@
}
},
{
- "id": 17838,
+ "id": 546,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -15243,8 +15243,8 @@
{
"title": "Properties",
"children": [
- 17837,
- 17838
+ 545,
+ 546
]
}
],
@@ -15253,12 +15253,12 @@
"fileName": "core-flows/src/cart/steps/create-line-items.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-items.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-items.ts#L37"
}
],
"signatures": [
{
- "id": 17829,
+ "id": 537,
"name": "createLineItemsStep",
"variant": "signature",
"kind": 4096,
@@ -15296,12 +15296,12 @@
"fileName": "core-flows/src/cart/steps/create-line-items.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-line-items.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-line-items.ts#L37"
}
],
"parameters": [
{
- "id": 17830,
+ "id": 538,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -15311,7 +15311,7 @@
"types": [
{
"type": "reference",
- "target": 17824,
+ "target": 532,
"name": "CreateLineItemsCartStepInput",
"package": "@medusajs/core-flows"
},
@@ -15324,7 +15324,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17824,
+ "target": 532,
"name": "CreateLineItemsCartStepInput",
"package": "@medusajs/core-flows"
}
@@ -15414,14 +15414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17831,
+ "id": 539,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17832,
+ "id": 540,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -15435,7 +15435,7 @@
],
"signatures": [
{
- "id": 17833,
+ "id": 541,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -15449,7 +15449,7 @@
],
"parameters": [
{
- "id": 17834,
+ "id": 542,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -15460,14 +15460,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17835,
+ "id": 543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17836,
+ "id": 544,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -15491,7 +15491,7 @@
{
"title": "Properties",
"children": [
- 17836
+ 544
]
}
],
@@ -15576,7 +15576,7 @@
{
"title": "Methods",
"children": [
- 17832
+ 540
]
}
],
@@ -15618,7 +15618,7 @@
]
},
{
- "id": 17841,
+ "id": 549,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -15628,7 +15628,7 @@
"fileName": "core-flows/src/cart/steps/create-payment-collection.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L12"
}
],
"type": {
@@ -15637,7 +15637,7 @@
}
},
{
- "id": 17842,
+ "id": 550,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -15655,7 +15655,7 @@
"fileName": "core-flows/src/cart/steps/create-payment-collection.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L16"
}
],
"type": {
@@ -15669,7 +15669,7 @@
}
},
{
- "id": 17843,
+ "id": 551,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -15689,7 +15689,7 @@
"fileName": "core-flows/src/cart/steps/create-payment-collection.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L20"
}
],
"type": {
@@ -15713,7 +15713,7 @@
}
},
{
- "id": 17844,
+ "id": 552,
"name": "createPaymentCollectionsStepId",
"variant": "declaration",
"kind": 32,
@@ -15725,7 +15725,7 @@
"fileName": "core-flows/src/cart/steps/create-payment-collection.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L23"
}
],
"type": {
@@ -15735,7 +15735,7 @@
"defaultValue": "\"create-payment-collections\""
},
{
- "id": 17845,
+ "id": 553,
"name": "createPaymentCollectionsStep",
"variant": "declaration",
"kind": 64,
@@ -15779,7 +15779,7 @@
},
"children": [
{
- "id": 17854,
+ "id": 562,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -15797,7 +15797,7 @@
}
},
{
- "id": 17855,
+ "id": 563,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -15819,8 +15819,8 @@
{
"title": "Properties",
"children": [
- 17854,
- 17855
+ 562,
+ 563
]
}
],
@@ -15829,12 +15829,12 @@
"fileName": "core-flows/src/cart/steps/create-payment-collection.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L33"
}
],
"signatures": [
{
- "id": 17846,
+ "id": 554,
"name": "createPaymentCollectionsStep",
"variant": "signature",
"kind": 4096,
@@ -15881,12 +15881,12 @@
"fileName": "core-flows/src/cart/steps/create-payment-collection.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-payment-collection.ts#L33"
}
],
"parameters": [
{
- "id": 17847,
+ "id": 555,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -15896,7 +15896,7 @@
"types": [
{
"type": "reference",
- "target": 17839,
+ "target": 547,
"name": "CreatePaymentCollectionCartStepInput",
"package": "@medusajs/core-flows"
},
@@ -15909,7 +15909,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17839,
+ "target": 547,
"name": "CreatePaymentCollectionCartStepInput",
"package": "@medusajs/core-flows"
}
@@ -15999,14 +15999,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17848,
+ "id": 556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17849,
+ "id": 557,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -16020,7 +16020,7 @@
],
"signatures": [
{
- "id": 17850,
+ "id": 558,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -16034,7 +16034,7 @@
],
"parameters": [
{
- "id": 17851,
+ "id": 559,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -16045,14 +16045,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17852,
+ "id": 560,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17853,
+ "id": 561,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -16076,7 +16076,7 @@
{
"title": "Properties",
"children": [
- 17853
+ 561
]
}
],
@@ -16161,7 +16161,7 @@
{
"title": "Methods",
"children": [
- 17849
+ 557
]
}
],
@@ -16203,7 +16203,7 @@
]
},
{
- "id": 17857,
+ "id": 565,
"name": "shippingMethodAdjustmentsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -16221,7 +16221,7 @@
"fileName": "core-flows/src/cart/steps/create-shipping-method-adjustments.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L15"
}
],
"type": {
@@ -16238,7 +16238,7 @@
}
},
{
- "id": 17858,
+ "id": 566,
"name": "createShippingMethodAdjustmentsStepId",
"variant": "declaration",
"kind": 32,
@@ -16250,7 +16250,7 @@
"fileName": "core-flows/src/cart/steps/create-shipping-method-adjustments.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L18"
}
],
"type": {
@@ -16260,7 +16260,7 @@
"defaultValue": "\"create-shipping-method-adjustments\""
},
{
- "id": 17859,
+ "id": 567,
"name": "createShippingMethodAdjustmentsStep",
"variant": "declaration",
"kind": 64,
@@ -16295,7 +16295,7 @@
},
"children": [
{
- "id": 17862,
+ "id": 570,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -16313,7 +16313,7 @@
}
},
{
- "id": 17863,
+ "id": 571,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -16335,8 +16335,8 @@
{
"title": "Properties",
"children": [
- 17862,
- 17863
+ 570,
+ 571
]
}
],
@@ -16345,12 +16345,12 @@
"fileName": "core-flows/src/cart/steps/create-shipping-method-adjustments.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L32"
}
],
"signatures": [
{
- "id": 17860,
+ "id": 568,
"name": "createShippingMethodAdjustmentsStep",
"variant": "signature",
"kind": 4096,
@@ -16388,12 +16388,12 @@
"fileName": "core-flows/src/cart/steps/create-shipping-method-adjustments.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/create-shipping-method-adjustments.ts#L32"
}
],
"parameters": [
{
- "id": 17861,
+ "id": 569,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -16403,7 +16403,7 @@
"types": [
{
"type": "reference",
- "target": 17856,
+ "target": 564,
"name": "CreateShippingMethodAdjustmentsStepInput",
"package": "@medusajs/core-flows"
},
@@ -16416,7 +16416,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17856,
+ "target": 564,
"name": "CreateShippingMethodAdjustmentsStepInput",
"package": "@medusajs/core-flows"
}
@@ -16436,7 +16436,7 @@
]
},
{
- "id": 17866,
+ "id": 574,
"name": "regionId",
"variant": "declaration",
"kind": 1024,
@@ -16456,7 +16456,7 @@
"fileName": "core-flows/src/cart/steps/find-one-or-any-region.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L15"
}
],
"type": {
@@ -16465,7 +16465,7 @@
}
},
{
- "id": 17867,
+ "id": 575,
"name": "findOneOrAnyRegionStepId",
"variant": "declaration",
"kind": 32,
@@ -16477,7 +16477,7 @@
"fileName": "core-flows/src/cart/steps/find-one-or-any-region.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L69"
}
],
"type": {
@@ -16487,7 +16487,7 @@
"defaultValue": "\"find-one-or-any-region\""
},
{
- "id": 17868,
+ "id": 576,
"name": "findOneOrAnyRegionStep",
"variant": "declaration",
"kind": 64,
@@ -16531,7 +16531,7 @@
},
"children": [
{
- "id": 17871,
+ "id": 579,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -16549,7 +16549,7 @@
}
},
{
- "id": 17872,
+ "id": 580,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -16571,8 +16571,8 @@
{
"title": "Properties",
"children": [
- 17871,
- 17872
+ 579,
+ 580
]
}
],
@@ -16581,12 +16581,12 @@
"fileName": "core-flows/src/cart/steps/find-one-or-any-region.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L73"
}
],
"signatures": [
{
- "id": 17869,
+ "id": 577,
"name": "findOneOrAnyRegionStep",
"variant": "signature",
"kind": 4096,
@@ -16633,12 +16633,12 @@
"fileName": "core-flows/src/cart/steps/find-one-or-any-region.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-one-or-any-region.ts#L73"
}
],
"parameters": [
{
- "id": 17870,
+ "id": 578,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -16648,7 +16648,7 @@
"types": [
{
"type": "reference",
- "target": 17864,
+ "target": 572,
"name": "FindOneOrAnyRegionStepInput",
"package": "@medusajs/core-flows"
},
@@ -16661,7 +16661,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17864,
+ "target": 572,
"name": "FindOneOrAnyRegionStepInput",
"package": "@medusajs/core-flows"
}
@@ -16681,7 +16681,7 @@
]
},
{
- "id": 17874,
+ "id": 582,
"name": "customerId",
"variant": "declaration",
"kind": 1024,
@@ -16701,7 +16701,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L21"
}
],
"type": {
@@ -16719,7 +16719,7 @@
}
},
{
- "id": 17875,
+ "id": 583,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -16747,7 +16747,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L26"
}
],
"type": {
@@ -16765,7 +16765,7 @@
}
},
{
- "id": 17877,
+ "id": 585,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -16785,7 +16785,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -16808,7 +16808,7 @@
}
},
{
- "id": 17878,
+ "id": 586,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -16828,7 +16828,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -16846,7 +16846,7 @@
}
},
{
- "id": 17879,
+ "id": 587,
"name": "findOrCreateCustomerStepId",
"variant": "declaration",
"kind": 32,
@@ -16858,7 +16858,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L82"
}
],
"type": {
@@ -16868,7 +16868,7 @@
"defaultValue": "\"find-or-create-customer\""
},
{
- "id": 17880,
+ "id": 588,
"name": "findOrCreateCustomerStep",
"variant": "declaration",
"kind": 64,
@@ -16921,7 +16921,7 @@
},
"children": [
{
- "id": 17892,
+ "id": 600,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -16939,7 +16939,7 @@
}
},
{
- "id": 17893,
+ "id": 601,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -16961,8 +16961,8 @@
{
"title": "Properties",
"children": [
- 17892,
- 17893
+ 600,
+ 601
]
}
],
@@ -16971,12 +16971,12 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 93,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L93"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L93"
}
],
"signatures": [
{
- "id": 17881,
+ "id": 589,
"name": "findOrCreateCustomerStep",
"variant": "signature",
"kind": 4096,
@@ -17032,12 +17032,12 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 93,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L93"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L93"
}
],
"parameters": [
{
- "id": 17882,
+ "id": 590,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -17047,7 +17047,7 @@
"types": [
{
"type": "reference",
- "target": 17873,
+ "target": 581,
"name": "FindOrCreateCustomerStepInput",
"package": "@medusajs/core-flows"
},
@@ -17060,7 +17060,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17873,
+ "target": 581,
"name": "FindOrCreateCustomerStepInput",
"package": "@medusajs/core-flows"
}
@@ -17078,14 +17078,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17883,
+ "id": 591,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17884,
+ "id": 592,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -17105,7 +17105,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -17161,7 +17161,7 @@
}
},
{
- "id": 17885,
+ "id": 593,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17181,7 +17181,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -17231,8 +17231,8 @@
{
"title": "Properties",
"children": [
- 17884,
- 17885
+ 592,
+ 593
]
}
],
@@ -17247,7 +17247,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -17260,7 +17260,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -17271,14 +17271,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17886,
+ "id": 594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17887,
+ "id": 595,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -17292,7 +17292,7 @@
],
"signatures": [
{
- "id": 17888,
+ "id": 596,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -17306,7 +17306,7 @@
],
"parameters": [
{
- "id": 17889,
+ "id": 597,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -17317,14 +17317,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17890,
+ "id": 598,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17891,
+ "id": 599,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -17348,7 +17348,7 @@
{
"title": "Properties",
"children": [
- 17891
+ 599
]
}
],
@@ -17411,7 +17411,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -17427,7 +17427,7 @@
{
"title": "Methods",
"children": [
- 17887
+ 595
]
}
],
@@ -17449,7 +17449,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -17463,7 +17463,7 @@
]
},
{
- "id": 17895,
+ "id": 603,
"name": "salesChannelId",
"variant": "declaration",
"kind": 1024,
@@ -17483,7 +17483,7 @@
"fileName": "core-flows/src/cart/steps/find-sales-channel.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L22"
}
],
"type": {
@@ -17501,7 +17501,7 @@
}
},
{
- "id": 17896,
+ "id": 604,
"name": "findSalesChannelStepId",
"variant": "declaration",
"kind": 32,
@@ -17513,7 +17513,7 @@
"fileName": "core-flows/src/cart/steps/find-sales-channel.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L53"
}
],
"type": {
@@ -17523,7 +17523,7 @@
"defaultValue": "\"find-sales-channel\""
},
{
- "id": 17897,
+ "id": 605,
"name": "findSalesChannelStep",
"variant": "declaration",
"kind": 64,
@@ -17576,7 +17576,7 @@
},
"children": [
{
- "id": 17913,
+ "id": 621,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -17594,7 +17594,7 @@
}
},
{
- "id": 17914,
+ "id": 622,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -17616,8 +17616,8 @@
{
"title": "Properties",
"children": [
- 17913,
- 17914
+ 621,
+ 622
]
}
],
@@ -17626,12 +17626,12 @@
"fileName": "core-flows/src/cart/steps/find-sales-channel.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L58"
}
],
"signatures": [
{
- "id": 17898,
+ "id": 606,
"name": "findSalesChannelStep",
"variant": "signature",
"kind": 4096,
@@ -17687,12 +17687,12 @@
"fileName": "core-flows/src/cart/steps/find-sales-channel.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-sales-channel.ts#L58"
}
],
"parameters": [
{
- "id": 17899,
+ "id": 607,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -17702,7 +17702,7 @@
"types": [
{
"type": "reference",
- "target": 17894,
+ "target": 602,
"name": "FindSalesChannelStepInput",
"package": "@medusajs/core-flows"
},
@@ -17715,7 +17715,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17894,
+ "target": 602,
"name": "FindSalesChannelStepInput",
"package": "@medusajs/core-flows"
}
@@ -17733,14 +17733,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17900,
+ "id": 608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17901,
+ "id": 609,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17786,7 +17786,7 @@
}
},
{
- "id": 17902,
+ "id": 610,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -17832,7 +17832,7 @@
}
},
{
- "id": 17903,
+ "id": 611,
"name": "description",
"variant": "declaration",
"kind": 1024,
@@ -17891,7 +17891,7 @@
}
},
{
- "id": 17904,
+ "id": 612,
"name": "is_disabled",
"variant": "declaration",
"kind": 1024,
@@ -17937,7 +17937,7 @@
}
},
{
- "id": 17905,
+ "id": 613,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -18026,7 +18026,7 @@
}
},
{
- "id": 17906,
+ "id": 614,
"name": "locations",
"variant": "declaration",
"kind": 1024,
@@ -18103,12 +18103,12 @@
{
"title": "Properties",
"children": [
- 17901,
- 17902,
- 17903,
- 17904,
- 17905,
- 17906
+ 609,
+ 610,
+ 611,
+ 612,
+ 613,
+ 614
]
}
],
@@ -18162,14 +18162,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17907,
+ "id": 615,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17908,
+ "id": 616,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -18183,7 +18183,7 @@
],
"signatures": [
{
- "id": 17909,
+ "id": 617,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -18197,7 +18197,7 @@
],
"parameters": [
{
- "id": 17910,
+ "id": 618,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -18208,14 +18208,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17911,
+ "id": 619,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17912,
+ "id": 620,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -18239,7 +18239,7 @@
{
"title": "Properties",
"children": [
- 17912
+ 620
]
}
],
@@ -18330,7 +18330,7 @@
{
"title": "Methods",
"children": [
- 17908
+ 616
]
}
],
@@ -18378,7 +18378,7 @@
]
},
{
- "id": 17916,
+ "id": 624,
"name": "computeActionContext",
"variant": "declaration",
"kind": 1024,
@@ -18396,7 +18396,7 @@
"fileName": "core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L16"
}
],
"type": {
@@ -18410,7 +18410,7 @@
}
},
{
- "id": 17917,
+ "id": 625,
"name": "promotionCodesToApply",
"variant": "declaration",
"kind": 1024,
@@ -18428,7 +18428,7 @@
"fileName": "core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L20"
}
],
"type": {
@@ -18440,7 +18440,7 @@
}
},
{
- "id": 17918,
+ "id": 626,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -18460,7 +18460,7 @@
"fileName": "core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L24"
}
],
"type": {
@@ -18474,7 +18474,7 @@
}
},
{
- "id": 17919,
+ "id": 627,
"name": "getActionsToComputeFromPromotionsStepId",
"variant": "declaration",
"kind": 32,
@@ -18486,7 +18486,7 @@
"fileName": "core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L27"
}
],
"type": {
@@ -18496,7 +18496,7 @@
"defaultValue": "\"get-actions-to-compute-from-promotions\""
},
{
- "id": 17920,
+ "id": 628,
"name": "getActionsToComputeFromPromotionsStep",
"variant": "declaration",
"kind": 64,
@@ -18558,7 +18558,7 @@
},
"children": [
{
- "id": 17995,
+ "id": 703,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -18576,7 +18576,7 @@
}
},
{
- "id": 17996,
+ "id": 704,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -18598,8 +18598,8 @@
{
"title": "Properties",
"children": [
- 17995,
- 17996
+ 703,
+ 704
]
}
],
@@ -18608,12 +18608,12 @@
"fileName": "core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L47"
}
],
"signatures": [
{
- "id": 17921,
+ "id": 629,
"name": "getActionsToComputeFromPromotionsStep",
"variant": "signature",
"kind": 4096,
@@ -18678,12 +18678,12 @@
"fileName": "core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-actions-to-compute-from-promotions.ts#L47"
}
],
"parameters": [
{
- "id": 17922,
+ "id": 630,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -18693,7 +18693,7 @@
"types": [
{
"type": "reference",
- "target": 17915,
+ "target": 623,
"name": "GetActionsToComputeFromPromotionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -18706,7 +18706,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17915,
+ "target": 623,
"name": "GetActionsToComputeFromPromotionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -18744,14 +18744,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17923,
+ "id": 631,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17924,
+ "id": 632,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -18797,7 +18797,7 @@
}
},
{
- "id": 17925,
+ "id": 633,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -18843,7 +18843,7 @@
}
},
{
- "id": 17926,
+ "id": 634,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -18869,7 +18869,7 @@
}
},
{
- "id": 17927,
+ "id": 635,
"name": "is_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -18897,7 +18897,7 @@
}
},
{
- "id": 17928,
+ "id": 636,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -18943,7 +18943,7 @@
}
},
{
- "id": 17929,
+ "id": 637,
"name": "description",
"variant": "declaration",
"kind": 1024,
@@ -19004,12 +19004,12 @@
{
"title": "Properties",
"children": [
- 17924,
- 17925,
- 17926,
- 17927,
- 17928,
- 17929
+ 632,
+ 633,
+ 634,
+ 635,
+ 636,
+ 637
]
}
],
@@ -19054,14 +19054,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17930,
+ "id": 638,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17931,
+ "id": 639,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -19075,7 +19075,7 @@
],
"signatures": [
{
- "id": 17932,
+ "id": 640,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -19089,7 +19089,7 @@
],
"parameters": [
{
- "id": 17933,
+ "id": 641,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -19100,14 +19100,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17934,
+ "id": 642,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17935,
+ "id": 643,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -19131,7 +19131,7 @@
{
"title": "Properties",
"children": [
- 17935
+ 643
]
}
],
@@ -19197,7 +19197,7 @@
{
"title": "Methods",
"children": [
- 17931
+ 639
]
}
],
@@ -19242,14 +19242,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17936,
+ "id": 644,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17937,
+ "id": 645,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -19295,7 +19295,7 @@
}
},
{
- "id": 17938,
+ "id": 646,
"name": "adjustment_id",
"variant": "declaration",
"kind": 1024,
@@ -19341,7 +19341,7 @@
}
},
{
- "id": 17939,
+ "id": 647,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -19387,7 +19387,7 @@
}
},
{
- "id": 17940,
+ "id": 648,
"name": "description",
"variant": "declaration",
"kind": 1024,
@@ -19444,7 +19444,7 @@
}
},
{
- "id": 17941,
+ "id": 649,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -19494,11 +19494,11 @@
{
"title": "Properties",
"children": [
- 17937,
- 17938,
- 17939,
- 17940,
- 17941
+ 645,
+ 646,
+ 647,
+ 648,
+ 649
]
}
],
@@ -19543,14 +19543,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17942,
+ "id": 650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17943,
+ "id": 651,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -19564,7 +19564,7 @@
],
"signatures": [
{
- "id": 17944,
+ "id": 652,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -19578,7 +19578,7 @@
],
"parameters": [
{
- "id": 17945,
+ "id": 653,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -19589,14 +19589,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17946,
+ "id": 654,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17947,
+ "id": 655,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -19620,7 +19620,7 @@
{
"title": "Properties",
"children": [
- 17947
+ 655
]
}
],
@@ -19686,7 +19686,7 @@
{
"title": "Methods",
"children": [
- 17943
+ 651
]
}
],
@@ -19731,14 +19731,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17948,
+ "id": 656,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17949,
+ "id": 657,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -19784,7 +19784,7 @@
}
},
{
- "id": 17950,
+ "id": 658,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -19830,7 +19830,7 @@
}
},
{
- "id": 17951,
+ "id": 659,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -19856,7 +19856,7 @@
}
},
{
- "id": 17952,
+ "id": 660,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -19902,7 +19902,7 @@
}
},
{
- "id": 17953,
+ "id": 661,
"name": "description",
"variant": "declaration",
"kind": 1024,
@@ -19963,11 +19963,11 @@
{
"title": "Properties",
"children": [
- 17949,
- 17950,
- 17951,
- 17952,
- 17953
+ 657,
+ 658,
+ 659,
+ 660,
+ 661
]
}
],
@@ -20012,14 +20012,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17954,
+ "id": 662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17955,
+ "id": 663,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -20033,7 +20033,7 @@
],
"signatures": [
{
- "id": 17956,
+ "id": 664,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -20047,7 +20047,7 @@
],
"parameters": [
{
- "id": 17957,
+ "id": 665,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -20058,14 +20058,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17958,
+ "id": 666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17959,
+ "id": 667,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -20089,7 +20089,7 @@
{
"title": "Properties",
"children": [
- 17959
+ 667
]
}
],
@@ -20155,7 +20155,7 @@
{
"title": "Methods",
"children": [
- 17955
+ 663
]
}
],
@@ -20200,14 +20200,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17960,
+ "id": 668,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17961,
+ "id": 669,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -20253,7 +20253,7 @@
}
},
{
- "id": 17962,
+ "id": 670,
"name": "adjustment_id",
"variant": "declaration",
"kind": 1024,
@@ -20299,7 +20299,7 @@
}
},
{
- "id": 17963,
+ "id": 671,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -20345,7 +20345,7 @@
}
},
{
- "id": 17964,
+ "id": 672,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -20395,10 +20395,10 @@
{
"title": "Properties",
"children": [
- 17961,
- 17962,
- 17963,
- 17964
+ 669,
+ 670,
+ 671,
+ 672
]
}
],
@@ -20443,14 +20443,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17965,
+ "id": 673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17966,
+ "id": 674,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -20464,7 +20464,7 @@
],
"signatures": [
{
- "id": 17967,
+ "id": 675,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -20478,7 +20478,7 @@
],
"parameters": [
{
- "id": 17968,
+ "id": 676,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -20489,14 +20489,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17969,
+ "id": 677,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17970,
+ "id": 678,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -20520,7 +20520,7 @@
{
"title": "Properties",
"children": [
- 17970
+ 678
]
}
],
@@ -20586,7 +20586,7 @@
{
"title": "Methods",
"children": [
- 17966
+ 674
]
}
],
@@ -20631,14 +20631,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17971,
+ "id": 679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17972,
+ "id": 680,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -20684,7 +20684,7 @@
}
},
{
- "id": 17973,
+ "id": 681,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -20734,8 +20734,8 @@
{
"title": "Properties",
"children": [
- 17972,
- 17973
+ 680,
+ 681
]
}
],
@@ -20780,14 +20780,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17974,
+ "id": 682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17975,
+ "id": 683,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -20801,7 +20801,7 @@
],
"signatures": [
{
- "id": 17976,
+ "id": 684,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -20815,7 +20815,7 @@
],
"parameters": [
{
- "id": 17977,
+ "id": 685,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -20826,14 +20826,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17978,
+ "id": 686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17979,
+ "id": 687,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -20857,7 +20857,7 @@
{
"title": "Properties",
"children": [
- 17979
+ 687
]
}
],
@@ -20923,7 +20923,7 @@
{
"title": "Methods",
"children": [
- 17975
+ 683
]
}
],
@@ -20968,14 +20968,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17980,
+ "id": 688,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17981,
+ "id": 689,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -21021,7 +21021,7 @@
}
},
{
- "id": 17982,
+ "id": 690,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -21071,8 +21071,8 @@
{
"title": "Properties",
"children": [
- 17981,
- 17982
+ 689,
+ 690
]
}
],
@@ -21117,14 +21117,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17983,
+ "id": 691,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17984,
+ "id": 692,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -21138,7 +21138,7 @@
],
"signatures": [
{
- "id": 17985,
+ "id": 693,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -21152,7 +21152,7 @@
],
"parameters": [
{
- "id": 17986,
+ "id": 694,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -21163,14 +21163,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17987,
+ "id": 695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17988,
+ "id": 696,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -21194,7 +21194,7 @@
{
"title": "Properties",
"children": [
- 17988
+ 696
]
}
],
@@ -21260,7 +21260,7 @@
{
"title": "Methods",
"children": [
- 17984
+ 692
]
}
],
@@ -21318,14 +21318,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17989,
+ "id": 697,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17990,
+ "id": 698,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -21339,7 +21339,7 @@
],
"signatures": [
{
- "id": 17991,
+ "id": 699,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -21353,7 +21353,7 @@
],
"parameters": [
{
- "id": 17992,
+ "id": 700,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -21364,14 +21364,14 @@
{
"type": "reflection",
"declaration": {
- "id": 17993,
+ "id": 701,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 17994,
+ "id": 702,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -21395,7 +21395,7 @@
{
"title": "Properties",
"children": [
- 17994
+ 702
]
}
],
@@ -21480,7 +21480,7 @@
{
"title": "Methods",
"children": [
- 17990
+ 698
]
}
],
@@ -21522,7 +21522,7 @@
]
},
{
- "id": 17998,
+ "id": 706,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -21540,7 +21540,7 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L23"
}
],
"type": {
@@ -21549,7 +21549,7 @@
}
},
{
- "id": 17999,
+ "id": 707,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -21567,7 +21567,7 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L27"
}
],
"type": {
@@ -21584,7 +21584,7 @@
}
},
{
- "id": 18001,
+ "id": 709,
"name": "itemsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -21602,7 +21602,7 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L34"
}
],
"type": {
@@ -21619,7 +21619,7 @@
}
},
{
- "id": 18002,
+ "id": 710,
"name": "itemsToUpdate",
"variant": "declaration",
"kind": 1024,
@@ -21637,7 +21637,7 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L38"
}
],
"type": {
@@ -21671,7 +21671,7 @@
}
},
{
- "id": 18003,
+ "id": 711,
"name": "getLineItemActionsStepId",
"variant": "declaration",
"kind": 32,
@@ -21683,7 +21683,7 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L43"
}
],
"type": {
@@ -21693,7 +21693,7 @@
"defaultValue": "\"get-line-item-actions-step\""
},
{
- "id": 18004,
+ "id": 712,
"name": "getLineItemActionsStep",
"variant": "declaration",
"kind": 64,
@@ -21728,7 +21728,7 @@
},
"children": [
{
- "id": 18016,
+ "id": 724,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -21746,7 +21746,7 @@
}
},
{
- "id": 18017,
+ "id": 725,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -21768,8 +21768,8 @@
{
"title": "Properties",
"children": [
- 18016,
- 18017
+ 724,
+ 725
]
}
],
@@ -21778,12 +21778,12 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L59"
}
],
"signatures": [
{
- "id": 18005,
+ "id": 713,
"name": "getLineItemActionsStep",
"variant": "signature",
"kind": 4096,
@@ -21821,12 +21821,12 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L59"
}
],
"parameters": [
{
- "id": 18006,
+ "id": 714,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -21836,7 +21836,7 @@
"types": [
{
"type": "reference",
- "target": 17997,
+ "target": 705,
"name": "GetLineItemActionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -21849,7 +21849,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17997,
+ "target": 705,
"name": "GetLineItemActionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -21867,14 +21867,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18007,
+ "id": 715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18008,
+ "id": 716,
"name": "itemsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -21892,7 +21892,7 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L34"
}
],
"type": {
@@ -21937,7 +21937,7 @@
}
},
{
- "id": 18009,
+ "id": 717,
"name": "itemsToUpdate",
"variant": "declaration",
"kind": 1024,
@@ -21955,7 +21955,7 @@
"fileName": "core-flows/src/cart/steps/get-line-item-actions.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-line-item-actions.ts#L38"
}
],
"type": {
@@ -22033,8 +22033,8 @@
{
"title": "Properties",
"children": [
- 18008,
- 18009
+ 716,
+ 717
]
}
],
@@ -22049,7 +22049,7 @@
},
{
"type": "reference",
- "target": 18000,
+ "target": 708,
"name": "GetLineItemActionsStepOutput",
"package": "@medusajs/core-flows"
},
@@ -22062,7 +22062,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18000,
+ "target": 708,
"name": "GetLineItemActionsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -22073,14 +22073,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18010,
+ "id": 718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18011,
+ "id": 719,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -22094,7 +22094,7 @@
],
"signatures": [
{
- "id": 18012,
+ "id": 720,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -22108,7 +22108,7 @@
],
"parameters": [
{
- "id": 18013,
+ "id": 721,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -22119,14 +22119,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18014,
+ "id": 722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18015,
+ "id": 723,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -22150,7 +22150,7 @@
{
"title": "Properties",
"children": [
- 18015
+ 723
]
}
],
@@ -22213,7 +22213,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18000,
+ "target": 708,
"name": "GetLineItemActionsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -22229,7 +22229,7 @@
{
"title": "Methods",
"children": [
- 18011
+ 719
]
}
],
@@ -22251,7 +22251,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18000,
+ "target": 708,
"name": "GetLineItemActionsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -22265,7 +22265,7 @@
]
},
{
- "id": 18025,
+ "id": 733,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22277,7 +22277,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22286,7 +22286,7 @@
}
},
{
- "id": 18023,
+ "id": 731,
"name": "adjustments",
"variant": "declaration",
"kind": 1024,
@@ -22298,7 +22298,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 14,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22306,14 +22306,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18024,
+ "id": 732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18025,
+ "id": 733,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22325,7 +22325,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22338,7 +22338,7 @@
{
"title": "Properties",
"children": [
- 18025
+ 733
]
}
],
@@ -22347,7 +22347,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
]
}
@@ -22355,7 +22355,7 @@
}
},
{
- "id": 18021,
+ "id": 729,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -22375,7 +22375,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22383,14 +22383,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18022,
+ "id": 730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18023,
+ "id": 731,
"name": "adjustments",
"variant": "declaration",
"kind": 1024,
@@ -22402,7 +22402,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 14,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22410,14 +22410,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18024,
+ "id": 732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18025,
+ "id": 733,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22429,7 +22429,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22442,7 +22442,7 @@
{
"title": "Properties",
"children": [
- 18025
+ 733
]
}
],
@@ -22451,7 +22451,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
]
}
@@ -22463,7 +22463,7 @@
{
"title": "Properties",
"children": [
- 18023
+ 731
]
}
],
@@ -22472,7 +22472,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
]
}
@@ -22480,7 +22480,7 @@
}
},
{
- "id": 18030,
+ "id": 738,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22492,7 +22492,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 41,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22501,7 +22501,7 @@
}
},
{
- "id": 18028,
+ "id": 736,
"name": "adjustments",
"variant": "declaration",
"kind": 1024,
@@ -22513,7 +22513,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 25,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22521,14 +22521,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18029,
+ "id": 737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18030,
+ "id": 738,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22540,7 +22540,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 41,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22553,7 +22553,7 @@
{
"title": "Properties",
"children": [
- 18030
+ 738
]
}
],
@@ -22562,7 +22562,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
]
}
@@ -22570,7 +22570,7 @@
}
},
{
- "id": 18026,
+ "id": 734,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -22590,7 +22590,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22598,14 +22598,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18027,
+ "id": 735,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18028,
+ "id": 736,
"name": "adjustments",
"variant": "declaration",
"kind": 1024,
@@ -22617,7 +22617,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 25,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22625,14 +22625,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18029,
+ "id": 737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18030,
+ "id": 738,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22644,7 +22644,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 41,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22657,7 +22657,7 @@
{
"title": "Properties",
"children": [
- 18030
+ 738
]
}
],
@@ -22666,7 +22666,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
]
}
@@ -22678,7 +22678,7 @@
{
"title": "Properties",
"children": [
- 18028
+ 736
]
}
],
@@ -22687,7 +22687,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
]
}
@@ -22695,7 +22695,7 @@
}
},
{
- "id": 18019,
+ "id": 727,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -22713,20 +22713,20 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L15"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 18020,
+ "id": 728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18021,
+ "id": 729,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -22746,7 +22746,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22754,14 +22754,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18022,
+ "id": 730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18023,
+ "id": 731,
"name": "adjustments",
"variant": "declaration",
"kind": 1024,
@@ -22773,7 +22773,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 14,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22781,14 +22781,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18024,
+ "id": 732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18025,
+ "id": 733,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22800,7 +22800,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
],
"type": {
@@ -22813,7 +22813,7 @@
{
"title": "Properties",
"children": [
- 18025
+ 733
]
}
],
@@ -22822,7 +22822,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
]
}
@@ -22834,7 +22834,7 @@
{
"title": "Properties",
"children": [
- 18023
+ 731
]
}
],
@@ -22843,7 +22843,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L19"
}
]
}
@@ -22851,7 +22851,7 @@
}
},
{
- "id": 18026,
+ "id": 734,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -22871,7 +22871,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22879,14 +22879,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18027,
+ "id": 735,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18028,
+ "id": 736,
"name": "adjustments",
"variant": "declaration",
"kind": 1024,
@@ -22898,7 +22898,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 25,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22906,14 +22906,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18029,
+ "id": 737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18030,
+ "id": 738,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -22925,7 +22925,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 41,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
],
"type": {
@@ -22938,7 +22938,7 @@
{
"title": "Properties",
"children": [
- 18030
+ 738
]
}
],
@@ -22947,7 +22947,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
]
}
@@ -22959,7 +22959,7 @@
{
"title": "Properties",
"children": [
- 18028
+ 736
]
}
],
@@ -22968,7 +22968,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 23,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L23"
}
]
}
@@ -22980,8 +22980,8 @@
{
"title": "Properties",
"children": [
- 18021,
- 18026
+ 729,
+ 734
]
}
],
@@ -22990,14 +22990,14 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 15,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L15"
}
]
}
}
},
{
- "id": 18031,
+ "id": 739,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -23017,7 +23017,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L28"
}
],
"type": {
@@ -23029,7 +23029,7 @@
}
},
{
- "id": 18032,
+ "id": 740,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -23049,7 +23049,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L32"
}
],
"type": {
@@ -23089,7 +23089,7 @@
}
},
{
- "id": 18034,
+ "id": 742,
"name": "getPromotionCodesToApplyId",
"variant": "declaration",
"kind": 32,
@@ -23101,7 +23101,7 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L45"
}
],
"type": {
@@ -23111,7 +23111,7 @@
"defaultValue": "\"get-promotion-codes-to-apply\""
},
{
- "id": 18035,
+ "id": 743,
"name": "getPromotionCodesToApply",
"variant": "declaration",
"kind": 64,
@@ -23146,7 +23146,7 @@
},
"children": [
{
- "id": 18044,
+ "id": 752,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -23164,7 +23164,7 @@
}
},
{
- "id": 18045,
+ "id": 753,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -23186,8 +23186,8 @@
{
"title": "Properties",
"children": [
- 18044,
- 18045
+ 752,
+ 753
]
}
],
@@ -23196,12 +23196,12 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L69"
}
],
"signatures": [
{
- "id": 18036,
+ "id": 744,
"name": "getPromotionCodesToApply",
"variant": "signature",
"kind": 4096,
@@ -23239,12 +23239,12 @@
"fileName": "core-flows/src/cart/steps/get-promotion-codes-to-apply.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-promotion-codes-to-apply.ts#L69"
}
],
"parameters": [
{
- "id": 18037,
+ "id": 745,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -23254,7 +23254,7 @@
"types": [
{
"type": "reference",
- "target": 18018,
+ "target": 726,
"name": "GetPromotionCodesToApplyStepInput",
"package": "@medusajs/core-flows"
},
@@ -23267,7 +23267,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18018,
+ "target": 726,
"name": "GetPromotionCodesToApplyStepInput",
"package": "@medusajs/core-flows"
}
@@ -23311,7 +23311,7 @@
},
{
"type": "reference",
- "target": 18033,
+ "target": 741,
"name": "GetPromotionCodesToApplyStepOutput",
"package": "@medusajs/core-flows"
},
@@ -23324,7 +23324,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18033,
+ "target": 741,
"name": "GetPromotionCodesToApplyStepOutput",
"package": "@medusajs/core-flows"
}
@@ -23335,14 +23335,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18038,
+ "id": 746,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18039,
+ "id": 747,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -23356,7 +23356,7 @@
],
"signatures": [
{
- "id": 18040,
+ "id": 748,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -23370,7 +23370,7 @@
],
"parameters": [
{
- "id": 18041,
+ "id": 749,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -23381,14 +23381,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18042,
+ "id": 750,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18043,
+ "id": 751,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -23412,7 +23412,7 @@
{
"title": "Properties",
"children": [
- 18043
+ 751
]
}
],
@@ -23475,7 +23475,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18033,
+ "target": 741,
"name": "GetPromotionCodesToApplyStepOutput",
"package": "@medusajs/core-flows"
}
@@ -23491,7 +23491,7 @@
{
"title": "Methods",
"children": [
- 18039
+ 747
]
}
],
@@ -23513,7 +23513,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18033,
+ "target": 741,
"name": "GetPromotionCodesToApplyStepOutput",
"package": "@medusajs/core-flows"
}
@@ -23527,7 +23527,7 @@
]
},
{
- "id": 18047,
+ "id": 755,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -23545,7 +23545,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L20"
}
],
"type": {
@@ -23557,7 +23557,7 @@
}
},
{
- "id": 18048,
+ "id": 756,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -23577,7 +23577,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L26"
}
],
"type": {
@@ -23601,7 +23601,7 @@
}
},
{
- "id": 18052,
+ "id": 760,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -23621,7 +23621,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L40"
}
],
"type": {
@@ -23630,7 +23630,7 @@
}
},
{
- "id": 18053,
+ "id": 761,
"name": "variantId",
"variant": "declaration",
"kind": 1024,
@@ -23648,7 +23648,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L44"
}
],
"type": {
@@ -23657,7 +23657,7 @@
}
},
{
- "id": 18054,
+ "id": 762,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -23677,7 +23677,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L48"
}
],
"type": {
@@ -23701,7 +23701,7 @@
}
},
{
- "id": 18050,
+ "id": 758,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -23719,7 +23719,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L36"
}
],
"type": {
@@ -23727,14 +23727,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18051,
+ "id": 759,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18052,
+ "id": 760,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -23754,7 +23754,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L40"
}
],
"type": {
@@ -23763,7 +23763,7 @@
}
},
{
- "id": 18053,
+ "id": 761,
"name": "variantId",
"variant": "declaration",
"kind": 1024,
@@ -23781,7 +23781,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L44"
}
],
"type": {
@@ -23790,7 +23790,7 @@
}
},
{
- "id": 18054,
+ "id": 762,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -23810,7 +23810,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L48"
}
],
"type": {
@@ -23838,9 +23838,9 @@
{
"title": "Properties",
"children": [
- 18052,
- 18053,
- 18054
+ 760,
+ 761,
+ 762
]
}
],
@@ -23849,7 +23849,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 36,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L36"
}
]
}
@@ -23857,7 +23857,7 @@
}
},
{
- "id": 18058,
+ "id": 766,
"name": "getVariantPriceSetsStepId",
"variant": "declaration",
"kind": 32,
@@ -23869,7 +23869,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L71"
}
],
"type": {
@@ -23879,7 +23879,7 @@
"defaultValue": "\"get-variant-price-sets\""
},
{
- "id": 18059,
+ "id": 767,
"name": "getVariantPriceSetsStep",
"variant": "declaration",
"kind": 64,
@@ -23917,7 +23917,7 @@
},
"children": [
{
- "id": 18072,
+ "id": 780,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -23935,7 +23935,7 @@
}
},
{
- "id": 18073,
+ "id": 781,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -23957,8 +23957,8 @@
{
"title": "Properties",
"children": [
- 18072,
- 18073
+ 780,
+ 781
]
}
],
@@ -23967,12 +23967,12 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 250,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L250"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L250"
}
],
"signatures": [
{
- "id": 18060,
+ "id": 768,
"name": "getVariantPriceSetsStep",
"variant": "signature",
"kind": 4096,
@@ -24013,12 +24013,12 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 250,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L250"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L250"
}
],
"parameters": [
{
- "id": 18061,
+ "id": 769,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -24028,13 +24028,13 @@
"types": [
{
"type": "reference",
- "target": 18046,
+ "target": 754,
"name": "GetVariantPriceSetsStepInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 18049,
+ "target": 757,
"name": "GetVariantPriceSetsStepBulkInput",
"package": "@medusajs/core-flows"
},
@@ -24050,13 +24050,13 @@
"types": [
{
"type": "reference",
- "target": 18046,
+ "target": 754,
"name": "GetVariantPriceSetsStepInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 18049,
+ "target": 757,
"name": "GetVariantPriceSetsStepBulkInput",
"package": "@medusajs/core-flows"
}
@@ -24076,7 +24076,7 @@
{
"type": "reflection",
"declaration": {
- "id": 18062,
+ "id": 770,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -24100,7 +24100,7 @@
{
"type": "reflection",
"declaration": {
- "id": 18063,
+ "id": 771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -24110,7 +24110,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 266,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
}
]
}
@@ -24122,14 +24122,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18064,
+ "id": 772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18065,
+ "id": 773,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -24143,7 +24143,7 @@
],
"signatures": [
{
- "id": 18066,
+ "id": 774,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -24157,7 +24157,7 @@
],
"parameters": [
{
- "id": 18067,
+ "id": 775,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -24168,14 +24168,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18068,
+ "id": 776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18069,
+ "id": 777,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -24199,7 +24199,7 @@
{
"title": "Properties",
"children": [
- 18069
+ 777
]
}
],
@@ -24263,7 +24263,7 @@
{
"type": "reflection",
"declaration": {
- "id": 18070,
+ "id": 778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -24273,7 +24273,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 266,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
}
]
}
@@ -24290,7 +24290,7 @@
{
"title": "Methods",
"children": [
- 18065
+ 773
]
}
],
@@ -24313,7 +24313,7 @@
{
"type": "reflection",
"declaration": {
- "id": 18071,
+ "id": 779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -24323,7 +24323,7 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 266,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
}
]
}
@@ -24338,7 +24338,7 @@
]
},
{
- "id": 18063,
+ "id": 771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -24348,12 +24348,12 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 266,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
}
]
},
{
- "id": 18070,
+ "id": 778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -24363,12 +24363,12 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 266,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
}
]
},
{
- "id": 18071,
+ "id": 779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -24378,12 +24378,12 @@
"fileName": "core-flows/src/cart/steps/get-variant-price-sets.ts",
"line": 266,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variant-price-sets.ts#L266"
}
]
},
{
- "id": 18075,
+ "id": 783,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -24395,7 +24395,7 @@
"fileName": "core-flows/src/cart/steps/get-variants.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variants.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variants.ts#L14"
}
],
"type": {
@@ -24409,7 +24409,7 @@
}
},
{
- "id": 18076,
+ "id": 784,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -24421,7 +24421,7 @@
"fileName": "core-flows/src/cart/steps/get-variants.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variants.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variants.ts#L15"
}
],
"type": {
@@ -24446,7 +24446,7 @@
}
},
{
- "id": 18077,
+ "id": 785,
"name": "getVariantsStepId",
"variant": "declaration",
"kind": 32,
@@ -24458,7 +24458,7 @@
"fileName": "core-flows/src/cart/steps/get-variants.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variants.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variants.ts#L18"
}
],
"type": {
@@ -24468,7 +24468,7 @@
"defaultValue": "\"get-variants\""
},
{
- "id": 18078,
+ "id": 786,
"name": "getVariantsStep",
"variant": "declaration",
"kind": 64,
@@ -24494,7 +24494,7 @@
},
"children": [
{
- "id": 18087,
+ "id": 795,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -24512,7 +24512,7 @@
}
},
{
- "id": 18088,
+ "id": 796,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -24534,8 +24534,8 @@
{
"title": "Properties",
"children": [
- 18087,
- 18088
+ 795,
+ 796
]
}
],
@@ -24544,12 +24544,12 @@
"fileName": "core-flows/src/cart/steps/get-variants.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variants.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variants.ts#L29"
}
],
"signatures": [
{
- "id": 18079,
+ "id": 787,
"name": "getVariantsStep",
"variant": "signature",
"kind": 4096,
@@ -24578,12 +24578,12 @@
"fileName": "core-flows/src/cart/steps/get-variants.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/get-variants.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/get-variants.ts#L29"
}
],
"parameters": [
{
- "id": 18080,
+ "id": 788,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -24593,7 +24593,7 @@
"types": [
{
"type": "reference",
- "target": 18074,
+ "target": 782,
"name": "GetVariantsStepInput",
"package": "@medusajs/core-flows"
},
@@ -24606,7 +24606,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18074,
+ "target": 782,
"name": "GetVariantsStepInput",
"package": "@medusajs/core-flows"
}
@@ -24696,14 +24696,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18081,
+ "id": 789,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18082,
+ "id": 790,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -24717,7 +24717,7 @@
],
"signatures": [
{
- "id": 18083,
+ "id": 791,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -24731,7 +24731,7 @@
],
"parameters": [
{
- "id": 18084,
+ "id": 792,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -24742,14 +24742,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18085,
+ "id": 793,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18086,
+ "id": 794,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -24773,7 +24773,7 @@
{
"title": "Properties",
"children": [
- 18086
+ 794
]
}
],
@@ -24858,7 +24858,7 @@
{
"title": "Methods",
"children": [
- 18082
+ 790
]
}
],
@@ -24900,7 +24900,7 @@
]
},
{
- "id": 18090,
+ "id": 798,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -24918,7 +24918,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L22"
}
],
"type": {
@@ -24935,7 +24935,7 @@
}
},
{
- "id": 18094,
+ "id": 802,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -24953,7 +24953,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
}
],
"type": {
@@ -24962,7 +24962,7 @@
}
},
{
- "id": 18095,
+ "id": 803,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -24980,7 +24980,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
}
],
"type": {
@@ -24989,7 +24989,7 @@
}
},
{
- "id": 18096,
+ "id": 804,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -25007,7 +25007,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
}
],
"type": {
@@ -25016,7 +25016,7 @@
}
},
{
- "id": 18097,
+ "id": 805,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -25036,7 +25036,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
}
],
"type": {
@@ -25045,7 +25045,7 @@
}
},
{
- "id": 18092,
+ "id": 800,
"name": "lineItemAdjustmentsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -25063,7 +25063,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
}
],
"type": {
@@ -25071,14 +25071,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18093,
+ "id": 801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18094,
+ "id": 802,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -25096,7 +25096,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
}
],
"type": {
@@ -25105,7 +25105,7 @@
}
},
{
- "id": 18095,
+ "id": 803,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -25123,7 +25123,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
}
],
"type": {
@@ -25132,7 +25132,7 @@
}
},
{
- "id": 18096,
+ "id": 804,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -25150,7 +25150,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
}
],
"type": {
@@ -25159,7 +25159,7 @@
}
},
{
- "id": 18097,
+ "id": 805,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -25179,7 +25179,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
}
],
"type": {
@@ -25192,10 +25192,10 @@
{
"title": "Properties",
"children": [
- 18094,
- 18095,
- 18096,
- 18097
+ 802,
+ 803,
+ 804,
+ 805
]
}
],
@@ -25204,7 +25204,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 32,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
}
]
}
@@ -25212,7 +25212,7 @@
}
},
{
- "id": 18098,
+ "id": 806,
"name": "lineItemAdjustmentIdsToRemove",
"variant": "declaration",
"kind": 1024,
@@ -25230,7 +25230,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L53"
}
],
"type": {
@@ -25242,7 +25242,7 @@
}
},
{
- "id": 18101,
+ "id": 809,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -25260,7 +25260,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 61,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
}
],
"type": {
@@ -25269,7 +25269,7 @@
}
},
{
- "id": 18102,
+ "id": 810,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -25287,7 +25287,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
}
],
"type": {
@@ -25296,7 +25296,7 @@
}
},
{
- "id": 18103,
+ "id": 811,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -25314,7 +25314,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
}
],
"type": {
@@ -25323,7 +25323,7 @@
}
},
{
- "id": 18104,
+ "id": 812,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -25343,7 +25343,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
}
],
"type": {
@@ -25352,7 +25352,7 @@
}
},
{
- "id": 18099,
+ "id": 807,
"name": "shippingMethodAdjustmentsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -25370,7 +25370,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
}
],
"type": {
@@ -25378,14 +25378,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18100,
+ "id": 808,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18101,
+ "id": 809,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -25403,7 +25403,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 61,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
}
],
"type": {
@@ -25412,7 +25412,7 @@
}
},
{
- "id": 18102,
+ "id": 810,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -25430,7 +25430,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
}
],
"type": {
@@ -25439,7 +25439,7 @@
}
},
{
- "id": 18103,
+ "id": 811,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -25457,7 +25457,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
}
],
"type": {
@@ -25466,7 +25466,7 @@
}
},
{
- "id": 18104,
+ "id": 812,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -25486,7 +25486,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
}
],
"type": {
@@ -25499,10 +25499,10 @@
{
"title": "Properties",
"children": [
- 18101,
- 18102,
- 18103,
- 18104
+ 809,
+ 810,
+ 811,
+ 812
]
}
],
@@ -25511,7 +25511,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 57,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
}
]
}
@@ -25519,7 +25519,7 @@
}
},
{
- "id": 18105,
+ "id": 813,
"name": "shippingMethodAdjustmentIdsToRemove",
"variant": "declaration",
"kind": 1024,
@@ -25537,7 +25537,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L78"
}
],
"type": {
@@ -25549,7 +25549,7 @@
}
},
{
- "id": 18106,
+ "id": 814,
"name": "computedPromotionCodes",
"variant": "declaration",
"kind": 1024,
@@ -25567,7 +25567,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L82"
}
],
"type": {
@@ -25579,7 +25579,7 @@
}
},
{
- "id": 18107,
+ "id": 815,
"name": "prepareAdjustmentsFromPromotionActionsStepId",
"variant": "declaration",
"kind": 32,
@@ -25591,7 +25591,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L85"
}
],
"type": {
@@ -25601,7 +25601,7 @@
"defaultValue": "\"prepare-adjustments-from-promotion-actions\""
},
{
- "id": 18108,
+ "id": 816,
"name": "prepareAdjustmentsFromPromotionActionsStep",
"variant": "declaration",
"kind": 64,
@@ -25654,7 +25654,7 @@
},
"children": [
{
- "id": 18143,
+ "id": 851,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -25672,7 +25672,7 @@
}
},
{
- "id": 18144,
+ "id": 852,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -25694,8 +25694,8 @@
{
"title": "Properties",
"children": [
- 18143,
- 18144
+ 851,
+ 852
]
}
],
@@ -25704,12 +25704,12 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 101,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L101"
}
],
"signatures": [
{
- "id": 18109,
+ "id": 817,
"name": "prepareAdjustmentsFromPromotionActionsStep",
"variant": "signature",
"kind": 4096,
@@ -25765,12 +25765,12 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 101,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L101"
}
],
"parameters": [
{
- "id": 18110,
+ "id": 818,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -25780,7 +25780,7 @@
"types": [
{
"type": "reference",
- "target": 18089,
+ "target": 797,
"name": "PrepareAdjustmentsFromPromotionActionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -25793,7 +25793,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18089,
+ "target": 797,
"name": "PrepareAdjustmentsFromPromotionActionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -25811,14 +25811,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18111,
+ "id": 819,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18112,
+ "id": 820,
"name": "lineItemAdjustmentsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -25836,7 +25836,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
}
],
"type": {
@@ -25847,14 +25847,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18113,
+ "id": 821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18114,
+ "id": 822,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -25872,7 +25872,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
}
],
"type": {
@@ -25881,7 +25881,7 @@
}
},
{
- "id": 18115,
+ "id": 823,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -25899,7 +25899,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
}
],
"type": {
@@ -25908,7 +25908,7 @@
}
},
{
- "id": 18116,
+ "id": 824,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -25926,7 +25926,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
}
],
"type": {
@@ -25935,7 +25935,7 @@
}
},
{
- "id": 18117,
+ "id": 825,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -25955,7 +25955,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
}
],
"type": {
@@ -25968,10 +25968,10 @@
{
"title": "Properties",
"children": [
- 18114,
- 18115,
- 18116,
- 18117
+ 822,
+ 823,
+ 824,
+ 825
]
}
],
@@ -25980,7 +25980,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 32,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
}
]
}
@@ -25998,14 +25998,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18118,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18119,
+ "id": 827,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -26023,7 +26023,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
}
],
"type": {
@@ -26032,7 +26032,7 @@
}
},
{
- "id": 18120,
+ "id": 828,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -26050,7 +26050,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
}
],
"type": {
@@ -26059,7 +26059,7 @@
}
},
{
- "id": 18121,
+ "id": 829,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -26077,7 +26077,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
}
],
"type": {
@@ -26086,7 +26086,7 @@
}
},
{
- "id": 18122,
+ "id": 830,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -26106,7 +26106,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
}
],
"type": {
@@ -26119,10 +26119,10 @@
{
"title": "Properties",
"children": [
- 18119,
- 18120,
- 18121,
- 18122
+ 827,
+ 828,
+ 829,
+ 830
]
}
],
@@ -26131,7 +26131,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 32,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L32"
}
]
}
@@ -26145,7 +26145,7 @@
}
},
{
- "id": 18123,
+ "id": 831,
"name": "lineItemAdjustmentIdsToRemove",
"variant": "declaration",
"kind": 1024,
@@ -26163,7 +26163,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L53"
}
],
"type": {
@@ -26198,7 +26198,7 @@
}
},
{
- "id": 18124,
+ "id": 832,
"name": "shippingMethodAdjustmentsToCreate",
"variant": "declaration",
"kind": 1024,
@@ -26216,7 +26216,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
}
],
"type": {
@@ -26227,14 +26227,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18125,
+ "id": 833,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18126,
+ "id": 834,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -26252,7 +26252,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 61,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
}
],
"type": {
@@ -26261,7 +26261,7 @@
}
},
{
- "id": 18127,
+ "id": 835,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -26279,7 +26279,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
}
],
"type": {
@@ -26288,7 +26288,7 @@
}
},
{
- "id": 18128,
+ "id": 836,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -26306,7 +26306,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
}
],
"type": {
@@ -26315,7 +26315,7 @@
}
},
{
- "id": 18129,
+ "id": 837,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -26335,7 +26335,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
}
],
"type": {
@@ -26348,10 +26348,10 @@
{
"title": "Properties",
"children": [
- 18126,
- 18127,
- 18128,
- 18129
+ 834,
+ 835,
+ 836,
+ 837
]
}
],
@@ -26360,7 +26360,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 57,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
}
]
}
@@ -26378,14 +26378,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18130,
+ "id": 838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18131,
+ "id": 839,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -26403,7 +26403,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 61,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
}
],
"type": {
@@ -26412,7 +26412,7 @@
}
},
{
- "id": 18132,
+ "id": 840,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -26430,7 +26430,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
}
],
"type": {
@@ -26439,7 +26439,7 @@
}
},
{
- "id": 18133,
+ "id": 841,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -26457,7 +26457,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
}
],
"type": {
@@ -26466,7 +26466,7 @@
}
},
{
- "id": 18134,
+ "id": 842,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -26486,7 +26486,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
}
],
"type": {
@@ -26499,10 +26499,10 @@
{
"title": "Properties",
"children": [
- 18131,
- 18132,
- 18133,
- 18134
+ 839,
+ 840,
+ 841,
+ 842
]
}
],
@@ -26511,7 +26511,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 57,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L57"
}
]
}
@@ -26525,7 +26525,7 @@
}
},
{
- "id": 18135,
+ "id": 843,
"name": "shippingMethodAdjustmentIdsToRemove",
"variant": "declaration",
"kind": 1024,
@@ -26543,7 +26543,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L78"
}
],
"type": {
@@ -26578,7 +26578,7 @@
}
},
{
- "id": 18136,
+ "id": 844,
"name": "computedPromotionCodes",
"variant": "declaration",
"kind": 1024,
@@ -26596,7 +26596,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L82"
}
],
"type": {
@@ -26635,11 +26635,11 @@
{
"title": "Properties",
"children": [
- 18112,
- 18123,
- 18124,
- 18135,
- 18136
+ 820,
+ 831,
+ 832,
+ 843,
+ 844
]
}
],
@@ -26654,7 +26654,7 @@
},
{
"type": "reference",
- "target": 18091,
+ "target": 799,
"name": "PrepareAdjustmentsFromPromotionActionsStepOutput",
"package": "@medusajs/core-flows"
},
@@ -26667,7 +26667,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18091,
+ "target": 799,
"name": "PrepareAdjustmentsFromPromotionActionsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -26678,14 +26678,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18137,
+ "id": 845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18138,
+ "id": 846,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -26699,7 +26699,7 @@
],
"signatures": [
{
- "id": 18139,
+ "id": 847,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -26713,7 +26713,7 @@
],
"parameters": [
{
- "id": 18140,
+ "id": 848,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -26724,14 +26724,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18141,
+ "id": 849,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18142,
+ "id": 850,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -26755,7 +26755,7 @@
{
"title": "Properties",
"children": [
- 18142
+ 850
]
}
],
@@ -26818,7 +26818,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18091,
+ "target": 799,
"name": "PrepareAdjustmentsFromPromotionActionsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -26834,7 +26834,7 @@
{
"title": "Methods",
"children": [
- 18138
+ 846
]
}
],
@@ -26856,7 +26856,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18091,
+ "target": 799,
"name": "PrepareAdjustmentsFromPromotionActionsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -26870,7 +26870,7 @@
]
},
{
- "id": 18114,
+ "id": 822,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -26888,7 +26888,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
}
],
"type": {
@@ -26897,7 +26897,7 @@
}
},
{
- "id": 18115,
+ "id": 823,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -26915,7 +26915,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
}
],
"type": {
@@ -26924,7 +26924,7 @@
}
},
{
- "id": 18116,
+ "id": 824,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -26942,7 +26942,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
}
],
"type": {
@@ -26951,7 +26951,7 @@
}
},
{
- "id": 18117,
+ "id": 825,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -26971,7 +26971,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
}
],
"type": {
@@ -26980,7 +26980,7 @@
}
},
{
- "id": 18119,
+ "id": 827,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -26998,7 +26998,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L36"
}
],
"type": {
@@ -27007,7 +27007,7 @@
}
},
{
- "id": 18120,
+ "id": 828,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -27025,7 +27025,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L40"
}
],
"type": {
@@ -27034,7 +27034,7 @@
}
},
{
- "id": 18121,
+ "id": 829,
"name": "item_id",
"variant": "declaration",
"kind": 1024,
@@ -27052,7 +27052,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L44"
}
],
"type": {
@@ -27061,7 +27061,7 @@
}
},
{
- "id": 18122,
+ "id": 830,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -27081,7 +27081,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L48"
}
],
"type": {
@@ -27090,7 +27090,7 @@
}
},
{
- "id": 18126,
+ "id": 834,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -27108,7 +27108,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 61,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
}
],
"type": {
@@ -27117,7 +27117,7 @@
}
},
{
- "id": 18127,
+ "id": 835,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -27135,7 +27135,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
}
],
"type": {
@@ -27144,7 +27144,7 @@
}
},
{
- "id": 18128,
+ "id": 836,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -27162,7 +27162,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
}
],
"type": {
@@ -27171,7 +27171,7 @@
}
},
{
- "id": 18129,
+ "id": 837,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -27191,7 +27191,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
}
],
"type": {
@@ -27200,7 +27200,7 @@
}
},
{
- "id": 18131,
+ "id": 839,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -27218,7 +27218,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 61,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L61"
}
],
"type": {
@@ -27227,7 +27227,7 @@
}
},
{
- "id": 18132,
+ "id": 840,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -27245,7 +27245,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L65"
}
],
"type": {
@@ -27254,7 +27254,7 @@
}
},
{
- "id": 18133,
+ "id": 841,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -27272,7 +27272,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L69"
}
],
"type": {
@@ -27281,7 +27281,7 @@
}
},
{
- "id": 18134,
+ "id": 842,
"name": "promotion_id",
"variant": "declaration",
"kind": 1024,
@@ -27301,7 +27301,7 @@
"fileName": "core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/prepare-adjustments-from-promotion-actions.ts#L73"
}
],
"type": {
@@ -27310,7 +27310,7 @@
}
},
{
- "id": 18146,
+ "id": 854,
"name": "lineItemAdjustmentIdsToRemove",
"variant": "declaration",
"kind": 1024,
@@ -27328,7 +27328,7 @@
"fileName": "core-flows/src/cart/steps/remove-line-item-adjustments.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L12"
}
],
"type": {
@@ -27340,7 +27340,7 @@
}
},
{
- "id": 18147,
+ "id": 855,
"name": "removeLineItemAdjustmentsStepId",
"variant": "declaration",
"kind": 32,
@@ -27352,7 +27352,7 @@
"fileName": "core-flows/src/cart/steps/remove-line-item-adjustments.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L15"
}
],
"type": {
@@ -27362,7 +27362,7 @@
"defaultValue": "\"remove-line-item-adjustments\""
},
{
- "id": 18148,
+ "id": 856,
"name": "removeLineItemAdjustmentsStep",
"variant": "declaration",
"kind": 64,
@@ -27388,7 +27388,7 @@
},
"children": [
{
- "id": 18151,
+ "id": 859,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -27406,7 +27406,7 @@
}
},
{
- "id": 18152,
+ "id": 860,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -27428,8 +27428,8 @@
{
"title": "Properties",
"children": [
- 18151,
- 18152
+ 859,
+ 860
]
}
],
@@ -27438,12 +27438,12 @@
"fileName": "core-flows/src/cart/steps/remove-line-item-adjustments.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L19"
}
],
"signatures": [
{
- "id": 18149,
+ "id": 857,
"name": "removeLineItemAdjustmentsStep",
"variant": "signature",
"kind": 4096,
@@ -27472,12 +27472,12 @@
"fileName": "core-flows/src/cart/steps/remove-line-item-adjustments.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-line-item-adjustments.ts#L19"
}
],
"parameters": [
{
- "id": 18150,
+ "id": 858,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -27487,7 +27487,7 @@
"types": [
{
"type": "reference",
- "target": 18145,
+ "target": 853,
"name": "RemoveLineItemAdjustmentsStepInput",
"package": "@medusajs/core-flows"
},
@@ -27500,7 +27500,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18145,
+ "target": 853,
"name": "RemoveLineItemAdjustmentsStepInput",
"package": "@medusajs/core-flows"
}
@@ -27520,7 +27520,7 @@
]
},
{
- "id": 18154,
+ "id": 862,
"name": "shippingMethodAdjustmentIdsToRemove",
"variant": "declaration",
"kind": 1024,
@@ -27538,7 +27538,7 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-adjustments.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L12"
}
],
"type": {
@@ -27550,7 +27550,7 @@
}
},
{
- "id": 18155,
+ "id": 863,
"name": "removeShippingMethodAdjustmentsStepId",
"variant": "declaration",
"kind": 32,
@@ -27562,7 +27562,7 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-adjustments.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L15"
}
],
"type": {
@@ -27572,7 +27572,7 @@
"defaultValue": "\"remove-shipping-method-adjustments\""
},
{
- "id": 18156,
+ "id": 864,
"name": "removeShippingMethodAdjustmentsStep",
"variant": "declaration",
"kind": 64,
@@ -27598,7 +27598,7 @@
},
"children": [
{
- "id": 18159,
+ "id": 867,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -27616,7 +27616,7 @@
}
},
{
- "id": 18160,
+ "id": 868,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -27638,8 +27638,8 @@
{
"title": "Properties",
"children": [
- 18159,
- 18160
+ 867,
+ 868
]
}
],
@@ -27648,12 +27648,12 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-adjustments.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L20"
}
],
"signatures": [
{
- "id": 18157,
+ "id": 865,
"name": "removeShippingMethodAdjustmentsStep",
"variant": "signature",
"kind": 4096,
@@ -27682,12 +27682,12 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-adjustments.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-adjustments.ts#L20"
}
],
"parameters": [
{
- "id": 18158,
+ "id": 866,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -27697,7 +27697,7 @@
"types": [
{
"type": "reference",
- "target": 18153,
+ "target": 861,
"name": "RemoveShippingMethodAdjustmentsStepInput",
"package": "@medusajs/core-flows"
},
@@ -27710,7 +27710,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18153,
+ "target": 861,
"name": "RemoveShippingMethodAdjustmentsStepInput",
"package": "@medusajs/core-flows"
}
@@ -27730,7 +27730,7 @@
]
},
{
- "id": 18162,
+ "id": 870,
"name": "shipping_method_ids",
"variant": "declaration",
"kind": 1024,
@@ -27748,7 +27748,7 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-from-cart.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L12"
}
],
"type": {
@@ -27760,7 +27760,7 @@
}
},
{
- "id": 18164,
+ "id": 872,
"name": "removeShippingMethodFromCartStepId",
"variant": "declaration",
"kind": 32,
@@ -27772,7 +27772,7 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-from-cart.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L24"
}
],
"type": {
@@ -27782,7 +27782,7 @@
"defaultValue": "\"remove-shipping-method-to-cart-step\""
},
{
- "id": 18165,
+ "id": 873,
"name": "removeShippingMethodFromCartStep",
"variant": "declaration",
"kind": 64,
@@ -27817,7 +27817,7 @@
},
"children": [
{
- "id": 18174,
+ "id": 882,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -27835,7 +27835,7 @@
}
},
{
- "id": 18175,
+ "id": 883,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -27857,8 +27857,8 @@
{
"title": "Properties",
"children": [
- 18174,
- 18175
+ 882,
+ 883
]
}
],
@@ -27867,12 +27867,12 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-from-cart.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L29"
}
],
"signatures": [
{
- "id": 18166,
+ "id": 874,
"name": "removeShippingMethodFromCartStep",
"variant": "signature",
"kind": 4096,
@@ -27910,12 +27910,12 @@
"fileName": "core-flows/src/cart/steps/remove-shipping-method-from-cart.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/remove-shipping-method-from-cart.ts#L29"
}
],
"parameters": [
{
- "id": 18167,
+ "id": 875,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -27925,7 +27925,7 @@
"types": [
{
"type": "reference",
- "target": 18161,
+ "target": 869,
"name": "RemoveShippingMethodFromCartStepInput",
"package": "@medusajs/core-flows"
},
@@ -27938,7 +27938,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18161,
+ "target": 869,
"name": "RemoveShippingMethodFromCartStepInput",
"package": "@medusajs/core-flows"
}
@@ -28006,14 +28006,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18168,
+ "id": 876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18169,
+ "id": 877,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -28027,7 +28027,7 @@
],
"signatures": [
{
- "id": 18170,
+ "id": 878,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -28041,7 +28041,7 @@
],
"parameters": [
{
- "id": 18171,
+ "id": 879,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -28052,14 +28052,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18172,
+ "id": 880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18173,
+ "id": 881,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -28083,7 +28083,7 @@
{
"title": "Properties",
"children": [
- 18173
+ 881
]
}
],
@@ -28191,7 +28191,7 @@
{
"title": "Methods",
"children": [
- 18169
+ 877
]
}
],
@@ -28256,7 +28256,7 @@
]
},
{
- "id": 18179,
+ "id": 887,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -28276,7 +28276,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 13,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L13"
}
],
"type": {
@@ -28285,7 +28285,7 @@
}
},
{
- "id": 18180,
+ "id": 888,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -28303,7 +28303,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 18,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L18"
}
],
"type": {
@@ -28312,7 +28312,7 @@
}
},
{
- "id": 18181,
+ "id": 889,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -28346,7 +28346,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 24,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L24"
}
],
"type": {
@@ -28355,7 +28355,7 @@
}
},
{
- "id": 18182,
+ "id": 890,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -28373,7 +28373,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 29,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L29"
}
],
"type": {
@@ -28382,7 +28382,7 @@
}
},
{
- "id": 18183,
+ "id": 891,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -28400,7 +28400,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L34"
}
],
"type": {
@@ -28414,7 +28414,7 @@
}
},
{
- "id": 18184,
+ "id": 892,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -28432,7 +28432,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 39,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L39"
}
],
"type": {
@@ -28444,7 +28444,7 @@
}
},
{
- "id": 18177,
+ "id": 885,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -28454,7 +28454,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L9"
}
],
"type": {
@@ -28462,14 +28462,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18178,
+ "id": 886,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18179,
+ "id": 887,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -28489,7 +28489,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 13,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L13"
}
],
"type": {
@@ -28498,7 +28498,7 @@
}
},
{
- "id": 18180,
+ "id": 888,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -28516,7 +28516,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 18,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L18"
}
],
"type": {
@@ -28525,7 +28525,7 @@
}
},
{
- "id": 18181,
+ "id": 889,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -28559,7 +28559,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 24,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L24"
}
],
"type": {
@@ -28568,7 +28568,7 @@
}
},
{
- "id": 18182,
+ "id": 890,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -28586,7 +28586,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 29,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L29"
}
],
"type": {
@@ -28595,7 +28595,7 @@
}
},
{
- "id": 18183,
+ "id": 891,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -28613,7 +28613,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L34"
}
],
"type": {
@@ -28627,7 +28627,7 @@
}
},
{
- "id": 18184,
+ "id": 892,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -28645,7 +28645,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 39,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L39"
}
],
"type": {
@@ -28661,12 +28661,12 @@
{
"title": "Properties",
"children": [
- 18179,
- 18180,
- 18181,
- 18182,
- 18183,
- 18184
+ 887,
+ 888,
+ 889,
+ 890,
+ 891,
+ 892
]
}
],
@@ -28675,7 +28675,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 9,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L9"
}
]
}
@@ -28683,7 +28683,7 @@
}
},
{
- "id": 18185,
+ "id": 893,
"name": "reserveInventoryStepId",
"variant": "declaration",
"kind": 32,
@@ -28695,7 +28695,7 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L43"
}
],
"type": {
@@ -28705,7 +28705,7 @@
"defaultValue": "\"reserve-inventory-step\""
},
{
- "id": 18186,
+ "id": 894,
"name": "reserveInventoryStep",
"variant": "declaration",
"kind": 64,
@@ -28776,7 +28776,7 @@
},
"children": [
{
- "id": 18195,
+ "id": 903,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -28794,7 +28794,7 @@
}
},
{
- "id": 18196,
+ "id": 904,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -28816,8 +28816,8 @@
{
"title": "Properties",
"children": [
- 18195,
- 18196
+ 903,
+ 904
]
}
],
@@ -28826,12 +28826,12 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 61,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L61"
}
],
"signatures": [
{
- "id": 18187,
+ "id": 895,
"name": "reserveInventoryStep",
"variant": "signature",
"kind": 4096,
@@ -28905,12 +28905,12 @@
"fileName": "core-flows/src/cart/steps/reserve-inventory.ts",
"line": 61,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/reserve-inventory.ts#L61"
}
],
"parameters": [
{
- "id": 18188,
+ "id": 896,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -28920,7 +28920,7 @@
"types": [
{
"type": "reference",
- "target": 18176,
+ "target": 884,
"name": "ReserveVariantInventoryStepInput",
"package": "@medusajs/core-flows"
},
@@ -28933,7 +28933,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18176,
+ "target": 884,
"name": "ReserveVariantInventoryStepInput",
"package": "@medusajs/core-flows"
}
@@ -29023,14 +29023,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18189,
+ "id": 897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18190,
+ "id": 898,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -29044,7 +29044,7 @@
],
"signatures": [
{
- "id": 18191,
+ "id": 899,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -29058,7 +29058,7 @@
],
"parameters": [
{
- "id": 18192,
+ "id": 900,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -29069,14 +29069,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18193,
+ "id": 901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18194,
+ "id": 902,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -29100,7 +29100,7 @@
{
"title": "Properties",
"children": [
- 18194
+ 902
]
}
],
@@ -29185,7 +29185,7 @@
{
"title": "Methods",
"children": [
- 18190
+ 898
]
}
],
@@ -29227,7 +29227,7 @@
]
},
{
- "id": 18198,
+ "id": 906,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29245,7 +29245,7 @@
"fileName": "core-flows/src/cart/steps/retrieve-cart.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L16"
}
],
"type": {
@@ -29254,7 +29254,7 @@
}
},
{
- "id": 18199,
+ "id": 907,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -29266,7 +29266,7 @@
"fileName": "core-flows/src/cart/steps/retrieve-cart.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L17"
}
],
"type": {
@@ -29291,7 +29291,7 @@
}
},
{
- "id": 18200,
+ "id": 908,
"name": "retrieveCartStepId",
"variant": "declaration",
"kind": 32,
@@ -29303,7 +29303,7 @@
"fileName": "core-flows/src/cart/steps/retrieve-cart.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L20"
}
],
"type": {
@@ -29313,7 +29313,7 @@
"defaultValue": "\"retrieve-cart\""
},
{
- "id": 18201,
+ "id": 909,
"name": "retrieveCartStep",
"variant": "declaration",
"kind": 64,
@@ -29328,7 +29328,7 @@
},
"children": [
{
- "id": 18272,
+ "id": 980,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -29346,7 +29346,7 @@
}
},
{
- "id": 18273,
+ "id": 981,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -29368,8 +29368,8 @@
{
"title": "Properties",
"children": [
- 18272,
- 18273
+ 980,
+ 981
]
}
],
@@ -29378,12 +29378,12 @@
"fileName": "core-flows/src/cart/steps/retrieve-cart.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L24"
}
],
"signatures": [
{
- "id": 18202,
+ "id": 910,
"name": "retrieveCartStep",
"variant": "signature",
"kind": 4096,
@@ -29401,12 +29401,12 @@
"fileName": "core-flows/src/cart/steps/retrieve-cart.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/retrieve-cart.ts#L24"
}
],
"parameters": [
{
- "id": 18203,
+ "id": 911,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -29416,7 +29416,7 @@
"types": [
{
"type": "reference",
- "target": 18197,
+ "target": 905,
"name": "RetrieveCartStepInput",
"package": "@medusajs/core-flows"
},
@@ -29429,7 +29429,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18197,
+ "target": 905,
"name": "RetrieveCartStepInput",
"package": "@medusajs/core-flows"
}
@@ -29447,14 +29447,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18204,
+ "id": 912,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18205,
+ "id": 913,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29500,7 +29500,7 @@
}
},
{
- "id": 18206,
+ "id": 914,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -29557,7 +29557,7 @@
}
},
{
- "id": 18207,
+ "id": 915,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -29614,7 +29614,7 @@
}
},
{
- "id": 18208,
+ "id": 916,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -29671,7 +29671,7 @@
}
},
{
- "id": 18209,
+ "id": 917,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -29728,7 +29728,7 @@
}
},
{
- "id": 18210,
+ "id": 918,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -29774,7 +29774,7 @@
}
},
{
- "id": 18211,
+ "id": 919,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -29844,7 +29844,7 @@
}
},
{
- "id": 18212,
+ "id": 920,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -29914,7 +29914,7 @@
}
},
{
- "id": 18213,
+ "id": 921,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -29990,7 +29990,7 @@
}
},
{
- "id": 18214,
+ "id": 922,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -30066,7 +30066,7 @@
}
},
{
- "id": 18215,
+ "id": 923,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -30142,7 +30142,7 @@
}
},
{
- "id": 18216,
+ "id": 924,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -30237,7 +30237,7 @@
}
},
{
- "id": 18217,
+ "id": 925,
"name": "completed_at",
"variant": "declaration",
"kind": 1024,
@@ -30312,7 +30312,7 @@
}
},
{
- "id": 18218,
+ "id": 926,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -30387,7 +30387,7 @@
}
},
{
- "id": 18219,
+ "id": 927,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -30462,7 +30462,7 @@
}
},
{
- "id": 18220,
+ "id": 928,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -30518,7 +30518,7 @@
}
},
{
- "id": 18221,
+ "id": 929,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -30574,7 +30574,7 @@
}
},
{
- "id": 18222,
+ "id": 930,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -30630,7 +30630,7 @@
}
},
{
- "id": 18223,
+ "id": 931,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -30686,7 +30686,7 @@
}
},
{
- "id": 18224,
+ "id": 932,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -30742,7 +30742,7 @@
}
},
{
- "id": 18225,
+ "id": 933,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -30798,7 +30798,7 @@
}
},
{
- "id": 18226,
+ "id": 934,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -30854,7 +30854,7 @@
}
},
{
- "id": 18227,
+ "id": 935,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -30910,7 +30910,7 @@
}
},
{
- "id": 18228,
+ "id": 936,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -30966,7 +30966,7 @@
}
},
{
- "id": 18229,
+ "id": 937,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -31022,7 +31022,7 @@
}
},
{
- "id": 18230,
+ "id": 938,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -31078,7 +31078,7 @@
}
},
{
- "id": 18231,
+ "id": 939,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -31134,7 +31134,7 @@
}
},
{
- "id": 18232,
+ "id": 940,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -31190,7 +31190,7 @@
}
},
{
- "id": 18233,
+ "id": 941,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -31246,7 +31246,7 @@
}
},
{
- "id": 18234,
+ "id": 942,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -31302,7 +31302,7 @@
}
},
{
- "id": 18235,
+ "id": 943,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -31358,7 +31358,7 @@
}
},
{
- "id": 18236,
+ "id": 944,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -31414,7 +31414,7 @@
}
},
{
- "id": 18237,
+ "id": 945,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -31470,7 +31470,7 @@
}
},
{
- "id": 18238,
+ "id": 946,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -31526,7 +31526,7 @@
}
},
{
- "id": 18239,
+ "id": 947,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -31582,7 +31582,7 @@
}
},
{
- "id": 18240,
+ "id": 948,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -31638,7 +31638,7 @@
}
},
{
- "id": 18241,
+ "id": 949,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -31694,7 +31694,7 @@
}
},
{
- "id": 18242,
+ "id": 950,
"name": "raw_original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -31750,7 +31750,7 @@
}
},
{
- "id": 18243,
+ "id": 951,
"name": "raw_original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -31806,7 +31806,7 @@
}
},
{
- "id": 18244,
+ "id": 952,
"name": "raw_original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -31862,7 +31862,7 @@
}
},
{
- "id": 18245,
+ "id": 953,
"name": "raw_item_total",
"variant": "declaration",
"kind": 1024,
@@ -31918,7 +31918,7 @@
}
},
{
- "id": 18246,
+ "id": 954,
"name": "raw_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -31974,7 +31974,7 @@
}
},
{
- "id": 18247,
+ "id": 955,
"name": "raw_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -32030,7 +32030,7 @@
}
},
{
- "id": 18248,
+ "id": 956,
"name": "raw_original_total",
"variant": "declaration",
"kind": 1024,
@@ -32086,7 +32086,7 @@
}
},
{
- "id": 18249,
+ "id": 957,
"name": "raw_original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -32142,7 +32142,7 @@
}
},
{
- "id": 18250,
+ "id": 958,
"name": "raw_original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -32198,7 +32198,7 @@
}
},
{
- "id": 18251,
+ "id": 959,
"name": "raw_total",
"variant": "declaration",
"kind": 1024,
@@ -32254,7 +32254,7 @@
}
},
{
- "id": 18252,
+ "id": 960,
"name": "raw_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -32310,7 +32310,7 @@
}
},
{
- "id": 18253,
+ "id": 961,
"name": "raw_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -32366,7 +32366,7 @@
}
},
{
- "id": 18254,
+ "id": 962,
"name": "raw_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -32422,7 +32422,7 @@
}
},
{
- "id": 18255,
+ "id": 963,
"name": "raw_discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -32478,7 +32478,7 @@
}
},
{
- "id": 18256,
+ "id": 964,
"name": "raw_gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -32534,7 +32534,7 @@
}
},
{
- "id": 18257,
+ "id": 965,
"name": "raw_gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -32590,7 +32590,7 @@
}
},
{
- "id": 18258,
+ "id": 966,
"name": "raw_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -32646,7 +32646,7 @@
}
},
{
- "id": 18259,
+ "id": 967,
"name": "raw_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -32702,7 +32702,7 @@
}
},
{
- "id": 18260,
+ "id": 968,
"name": "raw_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -32758,7 +32758,7 @@
}
},
{
- "id": 18261,
+ "id": 969,
"name": "raw_original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -32814,7 +32814,7 @@
}
},
{
- "id": 18262,
+ "id": 970,
"name": "raw_original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -32870,7 +32870,7 @@
}
},
{
- "id": 18263,
+ "id": 971,
"name": "raw_original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -32926,7 +32926,7 @@
}
},
{
- "id": 18264,
+ "id": 972,
"name": "raw_credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -32982,7 +32982,7 @@
}
},
{
- "id": 18265,
+ "id": 973,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -33042,67 +33042,67 @@
{
"title": "Properties",
"children": [
- 18205,
- 18206,
- 18207,
- 18208,
- 18209,
- 18210,
- 18211,
- 18212,
- 18213,
- 18214,
- 18215,
- 18216,
- 18217,
- 18218,
- 18219,
- 18220,
- 18221,
- 18222,
- 18223,
- 18224,
- 18225,
- 18226,
- 18227,
- 18228,
- 18229,
- 18230,
- 18231,
- 18232,
- 18233,
- 18234,
- 18235,
- 18236,
- 18237,
- 18238,
- 18239,
- 18240,
- 18241,
- 18242,
- 18243,
- 18244,
- 18245,
- 18246,
- 18247,
- 18248,
- 18249,
- 18250,
- 18251,
- 18252,
- 18253,
- 18254,
- 18255,
- 18256,
- 18257,
- 18258,
- 18259,
- 18260,
- 18261,
- 18262,
- 18263,
- 18264,
- 18265
+ 913,
+ 914,
+ 915,
+ 916,
+ 917,
+ 918,
+ 919,
+ 920,
+ 921,
+ 922,
+ 923,
+ 924,
+ 925,
+ 926,
+ 927,
+ 928,
+ 929,
+ 930,
+ 931,
+ 932,
+ 933,
+ 934,
+ 935,
+ 936,
+ 937,
+ 938,
+ 939,
+ 940,
+ 941,
+ 942,
+ 943,
+ 944,
+ 945,
+ 946,
+ 947,
+ 948,
+ 949,
+ 950,
+ 951,
+ 952,
+ 953,
+ 954,
+ 955,
+ 956,
+ 957,
+ 958,
+ 959,
+ 960,
+ 961,
+ 962,
+ 963,
+ 964,
+ 965,
+ 966,
+ 967,
+ 968,
+ 969,
+ 970,
+ 971,
+ 972,
+ 973
]
}
],
@@ -33147,14 +33147,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18266,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18267,
+ "id": 975,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -33168,7 +33168,7 @@
],
"signatures": [
{
- "id": 18268,
+ "id": 976,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -33182,7 +33182,7 @@
],
"parameters": [
{
- "id": 18269,
+ "id": 977,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -33193,14 +33193,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18270,
+ "id": 978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18271,
+ "id": 979,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -33224,7 +33224,7 @@
{
"title": "Properties",
"children": [
- 18271
+ 979
]
}
],
@@ -33306,7 +33306,7 @@
{
"title": "Methods",
"children": [
- 18267
+ 975
]
}
],
@@ -33345,7 +33345,7 @@
]
},
{
- "id": 18275,
+ "id": 983,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -33363,7 +33363,7 @@
"fileName": "core-flows/src/cart/steps/set-tax-lines-for-items.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L19"
}
],
"type": {
@@ -33377,7 +33377,7 @@
}
},
{
- "id": 18276,
+ "id": 984,
"name": "item_tax_lines",
"variant": "declaration",
"kind": 1024,
@@ -33395,7 +33395,7 @@
"fileName": "core-flows/src/cart/steps/set-tax-lines-for-items.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L23"
}
],
"type": {
@@ -33412,7 +33412,7 @@
}
},
{
- "id": 18277,
+ "id": 985,
"name": "shipping_tax_lines",
"variant": "declaration",
"kind": 1024,
@@ -33430,7 +33430,7 @@
"fileName": "core-flows/src/cart/steps/set-tax-lines-for-items.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L27"
}
],
"type": {
@@ -33447,7 +33447,7 @@
}
},
{
- "id": 18278,
+ "id": 986,
"name": "setTaxLinesForItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -33459,7 +33459,7 @@
"fileName": "core-flows/src/cart/steps/set-tax-lines-for-items.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L30"
}
],
"type": {
@@ -33469,7 +33469,7 @@
"defaultValue": "\"set-tax-lines-for-items\""
},
{
- "id": 18279,
+ "id": 987,
"name": "setTaxLinesForItemsStep",
"variant": "declaration",
"kind": 64,
@@ -33513,7 +33513,7 @@
},
"children": [
{
- "id": 18282,
+ "id": 990,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -33531,7 +33531,7 @@
}
},
{
- "id": 18283,
+ "id": 991,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -33553,8 +33553,8 @@
{
"title": "Properties",
"children": [
- 18282,
- 18283
+ 990,
+ 991
]
}
],
@@ -33563,12 +33563,12 @@
"fileName": "core-flows/src/cart/steps/set-tax-lines-for-items.ts",
"line": 61,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L61"
}
],
"signatures": [
{
- "id": 18280,
+ "id": 988,
"name": "setTaxLinesForItemsStep",
"variant": "signature",
"kind": 4096,
@@ -33615,12 +33615,12 @@
"fileName": "core-flows/src/cart/steps/set-tax-lines-for-items.ts",
"line": 61,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/set-tax-lines-for-items.ts#L61"
}
],
"parameters": [
{
- "id": 18281,
+ "id": 989,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -33630,7 +33630,7 @@
"types": [
{
"type": "reference",
- "target": 18274,
+ "target": 982,
"name": "SetTaxLinesForItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -33643,7 +33643,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18274,
+ "target": 982,
"name": "SetTaxLinesForItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -33663,7 +33663,7 @@
]
},
{
- "id": 18285,
+ "id": 993,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -33681,7 +33681,7 @@
"fileName": "core-flows/src/cart/steps/update-cart-promotions.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L15"
}
],
"type": {
@@ -33690,7 +33690,7 @@
}
},
{
- "id": 18286,
+ "id": 994,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -33710,7 +33710,7 @@
"fileName": "core-flows/src/cart/steps/update-cart-promotions.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L19"
}
],
"type": {
@@ -33722,7 +33722,7 @@
}
},
{
- "id": 18287,
+ "id": 995,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -33742,7 +33742,7 @@
"fileName": "core-flows/src/cart/steps/update-cart-promotions.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L23"
}
],
"type": {
@@ -33782,7 +33782,7 @@
}
},
{
- "id": 18288,
+ "id": 996,
"name": "updateCartPromotionsStepId",
"variant": "declaration",
"kind": 32,
@@ -33794,7 +33794,7 @@
"fileName": "core-flows/src/cart/steps/update-cart-promotions.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L29"
}
],
"type": {
@@ -33804,7 +33804,7 @@
"defaultValue": "\"update-cart-promotions\""
},
{
- "id": 18289,
+ "id": 997,
"name": "updateCartPromotionsStep",
"variant": "declaration",
"kind": 64,
@@ -33830,7 +33830,7 @@
},
"children": [
{
- "id": 18292,
+ "id": 1000,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -33848,7 +33848,7 @@
}
},
{
- "id": 18293,
+ "id": 1001,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -33870,8 +33870,8 @@
{
"title": "Properties",
"children": [
- 18292,
- 18293
+ 1000,
+ 1001
]
}
],
@@ -33880,12 +33880,12 @@
"fileName": "core-flows/src/cart/steps/update-cart-promotions.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L33"
}
],
"signatures": [
{
- "id": 18290,
+ "id": 998,
"name": "updateCartPromotionsStep",
"variant": "signature",
"kind": 4096,
@@ -33914,12 +33914,12 @@
"fileName": "core-flows/src/cart/steps/update-cart-promotions.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-cart-promotions.ts#L33"
}
],
"parameters": [
{
- "id": 18291,
+ "id": 999,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -33929,7 +33929,7 @@
"types": [
{
"type": "reference",
- "target": 18284,
+ "target": 992,
"name": "UpdateCartPromotionStepInput",
"package": "@medusajs/core-flows"
},
@@ -33942,7 +33942,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18284,
+ "target": 992,
"name": "UpdateCartPromotionStepInput",
"package": "@medusajs/core-flows"
}
@@ -33962,7 +33962,7 @@
]
},
{
- "id": 18295,
+ "id": 1003,
"name": "updateCartsStepId",
"variant": "declaration",
"kind": 32,
@@ -33974,7 +33974,7 @@
"fileName": "core-flows/src/cart/steps/update-carts.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-carts.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-carts.ts#L17"
}
],
"type": {
@@ -33984,7 +33984,7 @@
"defaultValue": "\"update-carts\""
},
{
- "id": 18296,
+ "id": 1004,
"name": "updateCartsStep",
"variant": "declaration",
"kind": 64,
@@ -34037,7 +34037,7 @@
},
"children": [
{
- "id": 18305,
+ "id": 1013,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -34055,7 +34055,7 @@
}
},
{
- "id": 18306,
+ "id": 1014,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -34077,8 +34077,8 @@
{
"title": "Properties",
"children": [
- 18305,
- 18306
+ 1013,
+ 1014
]
}
],
@@ -34087,12 +34087,12 @@
"fileName": "core-flows/src/cart/steps/update-carts.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-carts.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-carts.ts#L27"
}
],
"signatures": [
{
- "id": 18297,
+ "id": 1005,
"name": "updateCartsStep",
"variant": "signature",
"kind": 4096,
@@ -34148,12 +34148,12 @@
"fileName": "core-flows/src/cart/steps/update-carts.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-carts.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-carts.ts#L27"
}
],
"parameters": [
{
- "id": 18298,
+ "id": 1006,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -34163,7 +34163,7 @@
"types": [
{
"type": "reference",
- "target": 18294,
+ "target": 1002,
"name": "UpdateCartsStepInput",
"package": "@medusajs/core-flows"
},
@@ -34176,7 +34176,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18294,
+ "target": 1002,
"name": "UpdateCartsStepInput",
"package": "@medusajs/core-flows"
}
@@ -34266,14 +34266,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18299,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18300,
+ "id": 1008,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -34287,7 +34287,7 @@
],
"signatures": [
{
- "id": 18301,
+ "id": 1009,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -34301,7 +34301,7 @@
],
"parameters": [
{
- "id": 18302,
+ "id": 1010,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -34312,14 +34312,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18303,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18304,
+ "id": 1012,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -34343,7 +34343,7 @@
{
"title": "Properties",
"children": [
- 18304
+ 1012
]
}
],
@@ -34428,7 +34428,7 @@
{
"title": "Methods",
"children": [
- 18300
+ 1008
]
}
],
@@ -34470,7 +34470,7 @@
]
},
{
- "id": 18308,
+ "id": 1016,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -34488,7 +34488,7 @@
"fileName": "core-flows/src/cart/steps/update-line-items.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-line-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-line-items.ts#L19"
}
],
"type": {
@@ -34497,7 +34497,7 @@
}
},
{
- "id": 18309,
+ "id": 1017,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -34515,7 +34515,7 @@
"fileName": "core-flows/src/cart/steps/update-line-items.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-line-items.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-line-items.ts#L23"
}
],
"type": {
@@ -34546,7 +34546,7 @@
}
},
{
- "id": 18310,
+ "id": 1018,
"name": "updateLineItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -34558,7 +34558,7 @@
"fileName": "core-flows/src/cart/steps/update-line-items.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-line-items.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-line-items.ts#L26"
}
],
"type": {
@@ -34568,7 +34568,7 @@
"defaultValue": "\"update-line-items-step\""
},
{
- "id": 18311,
+ "id": 1019,
"name": "updateLineItemsStep",
"variant": "declaration",
"kind": 64,
@@ -34612,7 +34612,7 @@
},
"children": [
{
- "id": 18320,
+ "id": 1028,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -34630,7 +34630,7 @@
}
},
{
- "id": 18321,
+ "id": 1029,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -34652,8 +34652,8 @@
{
"title": "Properties",
"children": [
- 18320,
- 18321
+ 1028,
+ 1029
]
}
],
@@ -34662,12 +34662,12 @@
"fileName": "core-flows/src/cart/steps/update-line-items.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-line-items.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-line-items.ts#L45"
}
],
"signatures": [
{
- "id": 18312,
+ "id": 1020,
"name": "updateLineItemsStep",
"variant": "signature",
"kind": 4096,
@@ -34714,12 +34714,12 @@
"fileName": "core-flows/src/cart/steps/update-line-items.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-line-items.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-line-items.ts#L45"
}
],
"parameters": [
{
- "id": 18313,
+ "id": 1021,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -34729,7 +34729,7 @@
"types": [
{
"type": "reference",
- "target": 18307,
+ "target": 1015,
"name": "UpdateLineItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -34742,7 +34742,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18307,
+ "target": 1015,
"name": "UpdateLineItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -34832,14 +34832,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18314,
+ "id": 1022,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18315,
+ "id": 1023,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -34853,7 +34853,7 @@
],
"signatures": [
{
- "id": 18316,
+ "id": 1024,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -34867,7 +34867,7 @@
],
"parameters": [
{
- "id": 18317,
+ "id": 1025,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -34878,14 +34878,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18318,
+ "id": 1026,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18319,
+ "id": 1027,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -34909,7 +34909,7 @@
{
"title": "Properties",
"children": [
- 18319
+ 1027
]
}
],
@@ -34994,7 +34994,7 @@
{
"title": "Methods",
"children": [
- 18315
+ 1023
]
}
],
@@ -35036,7 +35036,7 @@
]
},
{
- "id": 18323,
+ "id": 1031,
"name": "updateShippingMethodsStepId",
"variant": "declaration",
"kind": 32,
@@ -35048,7 +35048,7 @@
"fileName": "core-flows/src/cart/steps/update-shipping-methods.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-shipping-methods.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-shipping-methods.ts#L16"
}
],
"type": {
@@ -35058,7 +35058,7 @@
"defaultValue": "\"update-shipping-methods-step\""
},
{
- "id": 18324,
+ "id": 1032,
"name": "updateShippingMethodsStep",
"variant": "declaration",
"kind": 64,
@@ -35093,7 +35093,7 @@
},
"children": [
{
- "id": 18333,
+ "id": 1041,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -35111,7 +35111,7 @@
}
},
{
- "id": 18334,
+ "id": 1042,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -35133,8 +35133,8 @@
{
"title": "Properties",
"children": [
- 18333,
- 18334
+ 1041,
+ 1042
]
}
],
@@ -35143,12 +35143,12 @@
"fileName": "core-flows/src/cart/steps/update-shipping-methods.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-shipping-methods.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-shipping-methods.ts#L28"
}
],
"signatures": [
{
- "id": 18325,
+ "id": 1033,
"name": "updateShippingMethodsStep",
"variant": "signature",
"kind": 4096,
@@ -35186,12 +35186,12 @@
"fileName": "core-flows/src/cart/steps/update-shipping-methods.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/update-shipping-methods.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/update-shipping-methods.ts#L28"
}
],
"parameters": [
{
- "id": 18326,
+ "id": 1034,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -35201,7 +35201,7 @@
"types": [
{
"type": "reference",
- "target": 18322,
+ "target": 1030,
"name": "UpdateShippingMethodsStepInput",
"package": "@medusajs/core-flows"
},
@@ -35214,7 +35214,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18322,
+ "target": 1030,
"name": "UpdateShippingMethodsStepInput",
"package": "@medusajs/core-flows"
}
@@ -35304,14 +35304,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18327,
+ "id": 1035,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18328,
+ "id": 1036,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -35325,7 +35325,7 @@
],
"signatures": [
{
- "id": 18329,
+ "id": 1037,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -35339,7 +35339,7 @@
],
"parameters": [
{
- "id": 18330,
+ "id": 1038,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -35350,14 +35350,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18331,
+ "id": 1039,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18332,
+ "id": 1040,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -35381,7 +35381,7 @@
{
"title": "Properties",
"children": [
- 18332
+ 1040
]
}
],
@@ -35466,7 +35466,7 @@
{
"title": "Methods",
"children": [
- 18328
+ 1036
]
}
],
@@ -35508,7 +35508,7 @@
]
},
{
- "id": 18336,
+ "id": 1044,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -35526,7 +35526,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-payments.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L17"
}
],
"type": {
@@ -35540,7 +35540,7 @@
}
},
{
- "id": 18337,
+ "id": 1045,
"name": "validateCartPaymentsStepId",
"variant": "declaration",
"kind": 32,
@@ -35552,7 +35552,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-payments.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L20"
}
],
"type": {
@@ -35562,7 +35562,7 @@
"defaultValue": "\"validate-cart-payments\""
},
{
- "id": 18338,
+ "id": 1046,
"name": "validateCartPaymentsStep",
"variant": "declaration",
"kind": 64,
@@ -35622,7 +35622,7 @@
},
"children": [
{
- "id": 18347,
+ "id": 1055,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -35640,7 +35640,7 @@
}
},
{
- "id": 18348,
+ "id": 1056,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -35662,8 +35662,8 @@
{
"title": "Properties",
"children": [
- 18347,
- 18348
+ 1055,
+ 1056
]
}
],
@@ -35672,12 +35672,12 @@
"fileName": "core-flows/src/cart/steps/validate-cart-payments.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L38"
}
],
"signatures": [
{
- "id": 18339,
+ "id": 1047,
"name": "validateCartPaymentsStep",
"variant": "signature",
"kind": 4096,
@@ -35740,12 +35740,12 @@
"fileName": "core-flows/src/cart/steps/validate-cart-payments.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-payments.ts#L38"
}
],
"parameters": [
{
- "id": 18340,
+ "id": 1048,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -35755,7 +35755,7 @@
"types": [
{
"type": "reference",
- "target": 18335,
+ "target": 1043,
"name": "ValidateCartPaymentsStepInput",
"package": "@medusajs/core-flows"
},
@@ -35768,7 +35768,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18335,
+ "target": 1043,
"name": "ValidateCartPaymentsStepInput",
"package": "@medusajs/core-flows"
}
@@ -35858,14 +35858,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18341,
+ "id": 1049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18342,
+ "id": 1050,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -35879,7 +35879,7 @@
],
"signatures": [
{
- "id": 18343,
+ "id": 1051,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -35893,7 +35893,7 @@
],
"parameters": [
{
- "id": 18344,
+ "id": 1052,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -35904,14 +35904,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18345,
+ "id": 1053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18346,
+ "id": 1054,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -35935,7 +35935,7 @@
{
"title": "Properties",
"children": [
- 18346
+ 1054
]
}
],
@@ -36020,7 +36020,7 @@
{
"title": "Methods",
"children": [
- 18342
+ 1050
]
}
],
@@ -36062,7 +36062,7 @@
]
},
{
- "id": 18350,
+ "id": 1058,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -36082,7 +36082,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L19"
}
],
"type": {
@@ -36096,7 +36096,7 @@
}
},
{
- "id": 18353,
+ "id": 1061,
"name": "enabled_in_store",
"variant": "declaration",
"kind": 1024,
@@ -36116,7 +36116,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L27"
}
],
"type": {
@@ -36134,7 +36134,7 @@
}
},
{
- "id": 18354,
+ "id": 1062,
"name": "is_return",
"variant": "declaration",
"kind": 1024,
@@ -36154,7 +36154,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 31,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L31"
}
],
"type": {
@@ -36172,7 +36172,7 @@
}
},
{
- "id": 18351,
+ "id": 1059,
"name": "shippingOptionsContext",
"variant": "declaration",
"kind": 1024,
@@ -36192,20 +36192,20 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L23"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 18352,
+ "id": 1060,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18353,
+ "id": 1061,
"name": "enabled_in_store",
"variant": "declaration",
"kind": 1024,
@@ -36225,7 +36225,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L27"
}
],
"type": {
@@ -36243,7 +36243,7 @@
}
},
{
- "id": 18354,
+ "id": 1062,
"name": "is_return",
"variant": "declaration",
"kind": 1024,
@@ -36263,7 +36263,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 31,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L31"
}
],
"type": {
@@ -36285,8 +36285,8 @@
{
"title": "Properties",
"children": [
- 18353,
- 18354
+ 1061,
+ 1062
]
}
],
@@ -36295,14 +36295,14 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 23,
"character": 27,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L23"
}
]
}
}
},
{
- "id": 18355,
+ "id": 1063,
"name": "option_ids",
"variant": "declaration",
"kind": 1024,
@@ -36320,7 +36320,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L36"
}
],
"type": {
@@ -36332,7 +36332,7 @@
}
},
{
- "id": 18358,
+ "id": 1066,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36342,7 +36342,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 41,
"character": 34,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
}
],
"type": {
@@ -36351,7 +36351,7 @@
}
},
{
- "id": 18356,
+ "id": 1064,
"name": "prefetched_shipping_options",
"variant": "declaration",
"kind": 1024,
@@ -36371,7 +36371,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
}
],
"type": {
@@ -36379,14 +36379,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18357,
+ "id": 1065,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18358,
+ "id": 1066,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36396,7 +36396,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 41,
"character": 34,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
}
],
"type": {
@@ -36409,7 +36409,7 @@
{
"title": "Properties",
"children": [
- 18358
+ 1066
]
}
],
@@ -36418,7 +36418,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 41,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L41"
}
]
}
@@ -36426,7 +36426,7 @@
}
},
{
- "id": 18359,
+ "id": 1067,
"name": "validateCartShippingOptionsStepId",
"variant": "declaration",
"kind": 32,
@@ -36438,7 +36438,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L44"
}
],
"type": {
@@ -36448,7 +36448,7 @@
"defaultValue": "\"validate-cart-shipping-options\""
},
{
- "id": 18360,
+ "id": 1068,
"name": "validateCartShippingOptionsStep",
"variant": "declaration",
"kind": 64,
@@ -36483,7 +36483,7 @@
},
"children": [
{
- "id": 18363,
+ "id": 1071,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -36501,7 +36501,7 @@
}
},
{
- "id": 18364,
+ "id": 1072,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -36523,8 +36523,8 @@
{
"title": "Properties",
"children": [
- 18363,
- 18364
+ 1071,
+ 1072
]
}
],
@@ -36533,12 +36533,12 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L59"
}
],
"signatures": [
{
- "id": 18361,
+ "id": 1069,
"name": "validateCartShippingOptionsStep",
"variant": "signature",
"kind": 4096,
@@ -36576,12 +36576,12 @@
"fileName": "core-flows/src/cart/steps/validate-cart-shipping-options.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart-shipping-options.ts#L59"
}
],
"parameters": [
{
- "id": 18362,
+ "id": 1070,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -36591,7 +36591,7 @@
"types": [
{
"type": "reference",
- "target": 18349,
+ "target": 1057,
"name": "ValidateCartShippingOptionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -36604,7 +36604,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18349,
+ "target": 1057,
"name": "ValidateCartShippingOptionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -36624,7 +36624,7 @@
]
},
{
- "id": 18368,
+ "id": 1076,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36642,7 +36642,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 16,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L16"
}
],
"type": {
@@ -36651,7 +36651,7 @@
}
},
{
- "id": 18371,
+ "id": 1079,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -36671,7 +36671,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 24,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L24"
}
],
"type": {
@@ -36694,7 +36694,7 @@
}
},
{
- "id": 18369,
+ "id": 1077,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -36714,20 +36714,20 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 20,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 18370,
+ "id": 1078,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18371,
+ "id": 1079,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -36747,7 +36747,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 24,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L24"
}
],
"type": {
@@ -36774,7 +36774,7 @@
{
"title": "Properties",
"children": [
- 18371
+ 1079
]
}
],
@@ -36783,14 +36783,14 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 20,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
}
]
}
}
},
{
- "id": 18366,
+ "id": 1074,
"name": "variants",
"variant": "declaration",
"kind": 1024,
@@ -36808,7 +36808,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L12"
}
],
"type": {
@@ -36816,14 +36816,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18367,
+ "id": 1075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18368,
+ "id": 1076,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36841,7 +36841,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 16,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L16"
}
],
"type": {
@@ -36850,7 +36850,7 @@
}
},
{
- "id": 18369,
+ "id": 1077,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -36870,20 +36870,20 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 20,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 18370,
+ "id": 1078,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18371,
+ "id": 1079,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -36903,7 +36903,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 24,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L24"
}
],
"type": {
@@ -36930,7 +36930,7 @@
{
"title": "Properties",
"children": [
- 18371
+ 1079
]
}
],
@@ -36939,7 +36939,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 20,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L20"
}
]
}
@@ -36950,8 +36950,8 @@
{
"title": "Properties",
"children": [
- 18368,
- 18369
+ 1076,
+ 1077
]
}
],
@@ -36960,7 +36960,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 12,
"character": 12,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L12"
}
]
}
@@ -36968,7 +36968,7 @@
}
},
{
- "id": 18372,
+ "id": 1080,
"name": "validateVariantPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -36980,7 +36980,7 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L29"
}
],
"type": {
@@ -36990,7 +36990,7 @@
"defaultValue": "\"validate-variant-prices\""
},
{
- "id": 18373,
+ "id": 1081,
"name": "validateVariantPricesStep",
"variant": "declaration",
"kind": 64,
@@ -37025,7 +37025,7 @@
},
"children": [
{
- "id": 18382,
+ "id": 1090,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -37043,7 +37043,7 @@
}
},
{
- "id": 18383,
+ "id": 1091,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -37065,8 +37065,8 @@
{
"title": "Properties",
"children": [
- 18382,
- 18383
+ 1090,
+ 1091
]
}
],
@@ -37075,12 +37075,12 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L49"
}
],
"signatures": [
{
- "id": 18374,
+ "id": 1082,
"name": "validateVariantPricesStep",
"variant": "signature",
"kind": 4096,
@@ -37118,12 +37118,12 @@
"fileName": "core-flows/src/cart/steps/validate-variant-prices.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-variant-prices.ts#L49"
}
],
"parameters": [
{
- "id": 18375,
+ "id": 1083,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -37133,7 +37133,7 @@
"types": [
{
"type": "reference",
- "target": 18365,
+ "target": 1073,
"name": "ValidateVariantPricesStepInput",
"package": "@medusajs/core-flows"
},
@@ -37146,7 +37146,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18365,
+ "target": 1073,
"name": "ValidateVariantPricesStepInput",
"package": "@medusajs/core-flows"
}
@@ -37179,14 +37179,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18376,
+ "id": 1084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18377,
+ "id": 1085,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -37200,7 +37200,7 @@
],
"signatures": [
{
- "id": 18378,
+ "id": 1086,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -37214,7 +37214,7 @@
],
"parameters": [
{
- "id": 18379,
+ "id": 1087,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -37225,14 +37225,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18380,
+ "id": 1088,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18381,
+ "id": 1089,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -37256,7 +37256,7 @@
{
"title": "Properties",
"children": [
- 18381
+ 1089
]
}
],
@@ -37333,7 +37333,7 @@
{
"title": "Methods",
"children": [
- 18377
+ 1085
]
}
],
@@ -37367,7 +37367,7 @@
]
},
{
- "id": 18385,
+ "id": 1093,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -37385,7 +37385,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart.ts#L12"
}
],
"type": {
@@ -37413,7 +37413,7 @@
}
},
{
- "id": 18386,
+ "id": 1094,
"name": "validateCartStepId",
"variant": "declaration",
"kind": 32,
@@ -37425,7 +37425,7 @@
"fileName": "core-flows/src/cart/steps/validate-cart.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart.ts#L15"
}
],
"type": {
@@ -37435,7 +37435,7 @@
"defaultValue": "\"validate-cart\""
},
{
- "id": 18387,
+ "id": 1095,
"name": "validateCartStep",
"variant": "declaration",
"kind": 64,
@@ -37560,7 +37560,7 @@
},
"children": [
{
- "id": 18396,
+ "id": 1104,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -37578,7 +37578,7 @@
}
},
{
- "id": 18397,
+ "id": 1105,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -37600,8 +37600,8 @@
{
"title": "Properties",
"children": [
- 18396,
- 18397
+ 1104,
+ 1105
]
}
],
@@ -37610,12 +37610,12 @@
"fileName": "core-flows/src/cart/steps/validate-cart.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart.ts#L33"
}
],
"signatures": [
{
- "id": 18388,
+ "id": 1096,
"name": "validateCartStep",
"variant": "signature",
"kind": 4096,
@@ -37743,12 +37743,12 @@
"fileName": "core-flows/src/cart/steps/validate-cart.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-cart.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-cart.ts#L33"
}
],
"parameters": [
{
- "id": 18389,
+ "id": 1097,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -37758,7 +37758,7 @@
"types": [
{
"type": "reference",
- "target": 18384,
+ "target": 1092,
"name": "ValidateCartStepInput",
"package": "@medusajs/core-flows"
},
@@ -37771,7 +37771,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18384,
+ "target": 1092,
"name": "ValidateCartStepInput",
"package": "@medusajs/core-flows"
}
@@ -37804,14 +37804,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18390,
+ "id": 1098,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18391,
+ "id": 1099,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -37825,7 +37825,7 @@
],
"signatures": [
{
- "id": 18392,
+ "id": 1100,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -37839,7 +37839,7 @@
],
"parameters": [
{
- "id": 18393,
+ "id": 1101,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -37850,14 +37850,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18394,
+ "id": 1102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18395,
+ "id": 1103,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -37881,7 +37881,7 @@
{
"title": "Properties",
"children": [
- 18395
+ 1103
]
}
],
@@ -37958,7 +37958,7 @@
{
"title": "Methods",
"children": [
- 18391
+ 1099
]
}
],
@@ -37992,7 +37992,7 @@
]
},
{
- "id": 18401,
+ "id": 1109,
"name": "unit_price",
"variant": "declaration",
"kind": 1024,
@@ -38012,7 +38012,7 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 15,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L15"
}
],
"type": {
@@ -38030,7 +38030,7 @@
}
},
{
- "id": 18402,
+ "id": 1110,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -38048,7 +38048,7 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L19"
}
],
"type": {
@@ -38057,7 +38057,7 @@
}
},
{
- "id": 18399,
+ "id": 1107,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -38075,7 +38075,7 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L11"
}
],
"type": {
@@ -38083,14 +38083,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18400,
+ "id": 1108,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18401,
+ "id": 1109,
"name": "unit_price",
"variant": "declaration",
"kind": 1024,
@@ -38110,7 +38110,7 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 15,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L15"
}
],
"type": {
@@ -38128,7 +38128,7 @@
}
},
{
- "id": 18402,
+ "id": 1110,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -38146,7 +38146,7 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L19"
}
],
"type": {
@@ -38159,8 +38159,8 @@
{
"title": "Properties",
"children": [
- 18401,
- 18402
+ 1109,
+ 1110
]
}
],
@@ -38169,7 +38169,7 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 11,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L11"
}
]
}
@@ -38177,7 +38177,7 @@
}
},
{
- "id": 18403,
+ "id": 1111,
"name": "validateLineItemPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -38189,7 +38189,7 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L23"
}
],
"type": {
@@ -38199,7 +38199,7 @@
"defaultValue": "\"validate-line-item-prices\""
},
{
- "id": 18404,
+ "id": 1112,
"name": "validateLineItemPricesStep",
"variant": "declaration",
"kind": 64,
@@ -38243,7 +38243,7 @@
},
"children": [
{
- "id": 18413,
+ "id": 1121,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -38261,7 +38261,7 @@
}
},
{
- "id": 18414,
+ "id": 1122,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -38283,8 +38283,8 @@
{
"title": "Properties",
"children": [
- 18413,
- 18414
+ 1121,
+ 1122
]
}
],
@@ -38293,12 +38293,12 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L41"
}
],
"signatures": [
{
- "id": 18405,
+ "id": 1113,
"name": "validateLineItemPricesStep",
"variant": "signature",
"kind": 4096,
@@ -38345,12 +38345,12 @@
"fileName": "core-flows/src/cart/steps/validate-line-item-prices.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-line-item-prices.ts#L41"
}
],
"parameters": [
{
- "id": 18406,
+ "id": 1114,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -38360,7 +38360,7 @@
"types": [
{
"type": "reference",
- "target": 18398,
+ "target": 1106,
"name": "ValidateLineItemPricesStepInput",
"package": "@medusajs/core-flows"
},
@@ -38373,7 +38373,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18398,
+ "target": 1106,
"name": "ValidateLineItemPricesStepInput",
"package": "@medusajs/core-flows"
}
@@ -38406,14 +38406,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18407,
+ "id": 1115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18408,
+ "id": 1116,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -38427,7 +38427,7 @@
],
"signatures": [
{
- "id": 18409,
+ "id": 1117,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -38441,7 +38441,7 @@
],
"parameters": [
{
- "id": 18410,
+ "id": 1118,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -38452,14 +38452,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18411,
+ "id": 1119,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18412,
+ "id": 1120,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -38483,7 +38483,7 @@
{
"title": "Properties",
"children": [
- 18412
+ 1120
]
}
],
@@ -38560,7 +38560,7 @@
{
"title": "Methods",
"children": [
- 18408
+ 1116
]
}
],
@@ -38594,7 +38594,7 @@
]
},
{
- "id": 18417,
+ "id": 1125,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -38612,7 +38612,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L15"
}
],
"type": {
@@ -38621,7 +38621,7 @@
}
},
{
- "id": 18418,
+ "id": 1126,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -38639,7 +38639,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L20"
}
],
"type": {
@@ -38648,7 +38648,7 @@
}
},
{
- "id": 18419,
+ "id": 1127,
"name": "option_data",
"variant": "declaration",
"kind": 1024,
@@ -38674,7 +38674,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L25"
}
],
"type": {
@@ -38698,7 +38698,7 @@
}
},
{
- "id": 18420,
+ "id": 1128,
"name": "method_data",
"variant": "declaration",
"kind": 1024,
@@ -38724,7 +38724,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L29"
}
],
"type": {
@@ -38748,7 +38748,7 @@
}
},
{
- "id": 18421,
+ "id": 1129,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -38766,7 +38766,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L33"
}
],
"type": {
@@ -38780,7 +38780,7 @@
}
},
{
- "id": 18426,
+ "id": 1134,
"name": "validateAndReturnShippingMethodsDataStepId",
"variant": "declaration",
"kind": 32,
@@ -38792,7 +38792,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L45"
}
],
"type": {
@@ -38802,7 +38802,7 @@
"defaultValue": "\"validate-and-return-shipping-methods-data\""
},
{
- "id": 18427,
+ "id": 1135,
"name": "validateAndReturnShippingMethodsDataStep",
"variant": "declaration",
"kind": 64,
@@ -38837,7 +38837,7 @@
},
"children": [
{
- "id": 18454,
+ "id": 1162,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -38855,7 +38855,7 @@
}
},
{
- "id": 18455,
+ "id": 1163,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -38877,8 +38877,8 @@
{
"title": "Properties",
"children": [
- 18454,
- 18455
+ 1162,
+ 1163
]
}
],
@@ -38887,12 +38887,12 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 101,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L101"
}
],
"signatures": [
{
- "id": 18428,
+ "id": 1136,
"name": "validateAndReturnShippingMethodsDataStep",
"variant": "signature",
"kind": 4096,
@@ -38930,12 +38930,12 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 101,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L101"
}
],
"parameters": [
{
- "id": 18429,
+ "id": 1137,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -38945,7 +38945,7 @@
"types": [
{
"type": "reference",
- "target": 18415,
+ "target": 1123,
"name": "ValidateShippingMethodsDataInput",
"package": "@medusajs/core-flows"
},
@@ -38958,7 +38958,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18415,
+ "target": 1123,
"name": "ValidateShippingMethodsDataInput",
"package": "@medusajs/core-flows"
}
@@ -38981,7 +38981,7 @@
{
"type": "reflection",
"declaration": {
- "id": 18430,
+ "id": 1138,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -38991,19 +38991,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18431,
+ "id": 1139,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18432,
+ "id": 1140,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39047,7 +39047,7 @@
{
"type": "reflection",
"declaration": {
- "id": 18433,
+ "id": 1141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39057,19 +39057,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18434,
+ "id": 1142,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18435,
+ "id": 1143,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39115,7 +39115,7 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18436,
+ "id": 1144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39125,19 +39125,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18437,
+ "id": 1145,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18438,
+ "id": 1146,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39191,7 +39191,7 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18439,
+ "id": 1147,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39201,19 +39201,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18440,
+ "id": 1148,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18441,
+ "id": 1149,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39257,14 +39257,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18442,
+ "id": 1150,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18443,
+ "id": 1151,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -39278,7 +39278,7 @@
],
"signatures": [
{
- "id": 18444,
+ "id": 1152,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -39292,7 +39292,7 @@
],
"parameters": [
{
- "id": 18445,
+ "id": 1153,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -39303,14 +39303,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18446,
+ "id": 1154,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18447,
+ "id": 1155,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -39334,7 +39334,7 @@
{
"title": "Properties",
"children": [
- 18447
+ 1155
]
}
],
@@ -39407,7 +39407,7 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18448,
+ "id": 1156,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39417,19 +39417,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18449,
+ "id": 1157,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18450,
+ "id": 1158,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39478,7 +39478,7 @@
{
"title": "Methods",
"children": [
- 18443
+ 1151
]
}
],
@@ -39510,7 +39510,7 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18451,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39520,19 +39520,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18452,
+ "id": 1160,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18453,
+ "id": 1161,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39579,7 +39579,7 @@
]
},
{
- "id": 18430,
+ "id": 1138,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39589,19 +39589,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18431,
+ "id": 1139,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18432,
+ "id": 1140,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39635,7 +39635,7 @@
]
},
{
- "id": 18433,
+ "id": 1141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39645,19 +39645,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18434,
+ "id": 1142,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18435,
+ "id": 1143,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39691,7 +39691,7 @@
]
},
{
- "id": 18436,
+ "id": 1144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39701,19 +39701,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18437,
+ "id": 1145,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18438,
+ "id": 1146,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39747,7 +39747,7 @@
]
},
{
- "id": 18439,
+ "id": 1147,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39757,19 +39757,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18440,
+ "id": 1148,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18441,
+ "id": 1149,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39803,7 +39803,7 @@
]
},
{
- "id": 18448,
+ "id": 1156,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39813,19 +39813,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18449,
+ "id": 1157,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18450,
+ "id": 1158,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39859,7 +39859,7 @@
]
},
{
- "id": 18451,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -39869,19 +39869,19 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-methods-data.ts",
"line": 123,
"character": 15,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-methods-data.ts#L123"
}
],
"indexSignatures": [
{
- "id": 18452,
+ "id": 1160,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 18453,
+ "id": 1161,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -39915,7 +39915,7 @@
]
},
{
- "id": 18458,
+ "id": 1166,
"name": "shippingOptions",
"variant": "declaration",
"kind": 1024,
@@ -39941,7 +39941,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-options-price.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L12"
}
],
"type": {
@@ -39953,7 +39953,7 @@
}
},
{
- "id": 18459,
+ "id": 1167,
"name": "validateCartShippingOptionsPriceStepId",
"variant": "declaration",
"kind": 32,
@@ -39965,7 +39965,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-options-price.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L15"
}
],
"type": {
@@ -39975,7 +39975,7 @@
"defaultValue": "\"validate-cart-shipping-options\""
},
{
- "id": 18460,
+ "id": 1168,
"name": "validateCartShippingOptionsPriceStep",
"variant": "declaration",
"kind": 64,
@@ -40010,7 +40010,7 @@
},
"children": [
{
- "id": 18463,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -40028,7 +40028,7 @@
}
},
{
- "id": 18464,
+ "id": 1172,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -40050,8 +40050,8 @@
{
"title": "Properties",
"children": [
- 18463,
- 18464
+ 1171,
+ 1172
]
}
],
@@ -40060,12 +40060,12 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-options-price.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L36"
}
],
"signatures": [
{
- "id": 18461,
+ "id": 1169,
"name": "validateCartShippingOptionsPriceStep",
"variant": "signature",
"kind": 4096,
@@ -40103,12 +40103,12 @@
"fileName": "core-flows/src/cart/steps/validate-shipping-options-price.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping-options-price.ts#L36"
}
],
"parameters": [
{
- "id": 18462,
+ "id": 1170,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -40118,7 +40118,7 @@
"types": [
{
"type": "reference",
- "target": 18456,
+ "target": 1164,
"name": "ValidateCartShippingOptionsPriceInput",
"package": "@medusajs/core-flows"
},
@@ -40131,7 +40131,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18456,
+ "target": 1164,
"name": "ValidateCartShippingOptionsPriceInput",
"package": "@medusajs/core-flows"
}
@@ -40151,7 +40151,7 @@
]
},
{
- "id": 18471,
+ "id": 1179,
"name": "variant",
"variant": "declaration",
"kind": 1024,
@@ -40169,7 +40169,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 25,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L25"
}
],
"type": {
@@ -40183,7 +40183,7 @@
}
},
{
- "id": 18469,
+ "id": 1177,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -40201,7 +40201,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 21,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
}
],
"type": {
@@ -40221,14 +40221,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18470,
+ "id": 1178,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18471,
+ "id": 1179,
"name": "variant",
"variant": "declaration",
"kind": 1024,
@@ -40246,7 +40246,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 25,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L25"
}
],
"type": {
@@ -40264,7 +40264,7 @@
{
"title": "Properties",
"children": [
- 18471
+ 1179
]
}
],
@@ -40273,7 +40273,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 21,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
}
]
}
@@ -40283,7 +40283,7 @@
}
},
{
- "id": 18467,
+ "id": 1175,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -40301,7 +40301,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L17"
}
],
"type": {
@@ -40334,14 +40334,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18468,
+ "id": 1176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18469,
+ "id": 1177,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -40359,7 +40359,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 21,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
}
],
"type": {
@@ -40379,14 +40379,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18470,
+ "id": 1178,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18471,
+ "id": 1179,
"name": "variant",
"variant": "declaration",
"kind": 1024,
@@ -40404,7 +40404,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 25,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L25"
}
],
"type": {
@@ -40422,7 +40422,7 @@
{
"title": "Properties",
"children": [
- 18471
+ 1179
]
}
],
@@ -40431,7 +40431,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 21,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L21"
}
]
}
@@ -40445,7 +40445,7 @@
{
"title": "Properties",
"children": [
- 18469
+ 1177
]
}
],
@@ -40454,7 +40454,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 17,
"character": 41,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L17"
}
]
}
@@ -40463,7 +40463,7 @@
}
},
{
- "id": 18472,
+ "id": 1180,
"name": "shippingOptions",
"variant": "declaration",
"kind": 1024,
@@ -40481,7 +40481,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L31"
}
],
"type": {
@@ -40498,7 +40498,7 @@
}
},
{
- "id": 18473,
+ "id": 1181,
"name": "validateShippingStepId",
"variant": "declaration",
"kind": 32,
@@ -40510,7 +40510,7 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L34"
}
],
"type": {
@@ -40520,7 +40520,7 @@
"defaultValue": "\"validate-shipping\""
},
{
- "id": 18474,
+ "id": 1182,
"name": "validateShippingStep",
"variant": "declaration",
"kind": 64,
@@ -40555,7 +40555,7 @@
},
"children": [
{
- "id": 18477,
+ "id": 1185,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -40573,7 +40573,7 @@
}
},
{
- "id": 18478,
+ "id": 1186,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -40595,8 +40595,8 @@
{
"title": "Properties",
"children": [
- 18477,
- 18478
+ 1185,
+ 1186
]
}
],
@@ -40605,12 +40605,12 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L73"
}
],
"signatures": [
{
- "id": 18475,
+ "id": 1183,
"name": "validateShippingStep",
"variant": "signature",
"kind": 4096,
@@ -40648,12 +40648,12 @@
"fileName": "core-flows/src/cart/steps/validate-shipping.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/validate-shipping.ts#L73"
}
],
"parameters": [
{
- "id": 18476,
+ "id": 1184,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -40663,7 +40663,7 @@
"types": [
{
"type": "reference",
- "target": 18465,
+ "target": 1173,
"name": "ValidateShippingInput",
"package": "@medusajs/core-flows"
},
@@ -40676,7 +40676,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18465,
+ "target": 1173,
"name": "ValidateShippingInput",
"package": "@medusajs/core-flows"
}
@@ -40698,14 +40698,14 @@
]
},
{
- "id": 17304,
+ "id": 9,
"name": "Workflows_Cart",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 18480,
+ "id": 1188,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -40723,7 +40723,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L33"
}
],
"type": {
@@ -40732,7 +40732,7 @@
}
},
{
- "id": 18483,
+ "id": 1191,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -40750,7 +40750,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L41"
}
],
"type": {
@@ -40759,7 +40759,7 @@
}
},
{
- "id": 18484,
+ "id": 1192,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -40779,7 +40779,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L47"
}
],
"type": {
@@ -40803,7 +40803,7 @@
}
},
{
- "id": 18481,
+ "id": 1189,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -40821,7 +40821,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L37"
}
],
"type": {
@@ -40829,14 +40829,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18482,
+ "id": 1190,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18483,
+ "id": 1191,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -40854,7 +40854,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L41"
}
],
"type": {
@@ -40863,7 +40863,7 @@
}
},
{
- "id": 18484,
+ "id": 1192,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -40883,7 +40883,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L47"
}
],
"type": {
@@ -40911,8 +40911,8 @@
{
"title": "Properties",
"children": [
- 18483,
- 18484
+ 1191,
+ 1192
]
}
],
@@ -40921,7 +40921,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 37,
"character": 11,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L37"
}
]
}
@@ -40929,7 +40929,7 @@
}
},
{
- "id": 18485,
+ "id": 1193,
"name": "addShippingMethodToCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -40941,7 +40941,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L51"
}
],
"type": {
@@ -40951,7 +40951,7 @@
"defaultValue": "\"add-shipping-method-to-cart\""
},
{
- "id": 18486,
+ "id": 1194,
"name": "addShippingMethodToCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -41000,6 +41000,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -41013,7 +41022,7 @@
},
"children": [
{
- "id": 18494,
+ "id": 1202,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -41036,7 +41045,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18495,
+ "id": 1203,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -41050,7 +41059,7 @@
],
"signatures": [
{
- "id": 18496,
+ "id": 1204,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -41078,7 +41087,7 @@
],
"parameters": [
{
- "id": 18497,
+ "id": 1205,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -41094,14 +41103,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18498,
+ "id": 1206,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18499,
+ "id": 1207,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -41129,7 +41138,7 @@
"types": [
{
"type": "reference",
- "target": 18479,
+ "target": 1187,
"name": "AddShippingMethodToCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -41156,7 +41165,7 @@
"types": [
{
"type": "reference",
- "target": 18479,
+ "target": 1187,
"name": "AddShippingMethodToCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -41183,7 +41192,7 @@
{
"title": "Properties",
"children": [
- 18499
+ 1207
]
}
],
@@ -41208,7 +41217,7 @@
}
},
{
- "id": 18500,
+ "id": 1208,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -41231,7 +41240,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18501,
+ "id": 1209,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -41245,7 +41254,7 @@
],
"signatures": [
{
- "id": 18502,
+ "id": 1210,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -41273,7 +41282,7 @@
],
"typeParameters": [
{
- "id": 18503,
+ "id": 1211,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -41284,7 +41293,7 @@
}
},
{
- "id": 18504,
+ "id": 1212,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -41297,7 +41306,7 @@
],
"parameters": [
{
- "id": 18505,
+ "id": 1213,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -41330,7 +41339,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -41344,7 +41353,7 @@
"types": [
{
"type": "reference",
- "target": 18479,
+ "target": 1187,
"name": "AddShippingMethodToCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -41361,7 +41370,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -41394,7 +41403,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -41409,7 +41418,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -41429,7 +41438,7 @@
}
},
{
- "id": 18506,
+ "id": 1214,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -41452,7 +41461,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18507,
+ "id": 1215,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -41466,7 +41475,7 @@
],
"signatures": [
{
- "id": 18508,
+ "id": 1216,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -41488,7 +41497,7 @@
}
},
{
- "id": 18509,
+ "id": 1217,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -41511,7 +41520,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18510,
+ "id": 1218,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -41525,7 +41534,7 @@
],
"signatures": [
{
- "id": 18511,
+ "id": 1219,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -41539,7 +41548,7 @@
],
"parameters": [
{
- "id": 18512,
+ "id": 1220,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -41565,7 +41574,7 @@
}
},
{
- "id": 18513,
+ "id": 1221,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -41588,14 +41597,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18514,
+ "id": 1222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18515,
+ "id": 1223,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -41603,7 +41612,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18516,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -41617,7 +41626,7 @@
],
"signatures": [
{
- "id": 18517,
+ "id": 1225,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -41631,7 +41640,7 @@
],
"typeParameters": [
{
- "id": 18518,
+ "id": 1226,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -41640,7 +41649,7 @@
],
"parameters": [
{
- "id": 18519,
+ "id": 1227,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -41655,14 +41664,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18520,
+ "id": 1228,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18521,
+ "id": 1229,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -41672,7 +41681,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 105,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L105"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L105"
}
],
"type": {
@@ -41687,7 +41696,7 @@
"types": [
{
"type": "reference",
- "target": 18479,
+ "target": 1187,
"name": "AddShippingMethodToCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -41708,7 +41717,7 @@
}
},
{
- "id": 18522,
+ "id": 1230,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -41718,7 +41727,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 106,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L106"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L106"
}
],
"type": {
@@ -41731,8 +41740,8 @@
{
"title": "Properties",
"children": [
- 18521,
- 18522
+ 1229,
+ 1230
]
}
],
@@ -41741,7 +41750,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 104,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L104"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L104"
}
]
}
@@ -41752,7 +41761,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -41763,7 +41772,7 @@
}
},
{
- "id": 18523,
+ "id": 1231,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -41779,7 +41788,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -41800,7 +41809,7 @@
}
},
{
- "id": 42025,
+ "id": 24964,
"name": "validate",
"variant": "declaration",
"kind": 64,
@@ -41835,14 +41844,14 @@
},
"signatures": [
{
- "id": 42026,
+ "id": 24965,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42027,
+ "id": 24966,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -41857,7 +41866,7 @@
},
"type": {
"type": "reference",
- "target": 18520,
+ "target": 1228,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -41871,13 +41880,13 @@
{
"title": "Properties",
"children": [
- 18515
+ 1223
]
},
{
"title": "Functions",
"children": [
- 42025
+ 24964
]
}
],
@@ -41894,7 +41903,7 @@
],
"documents": [
{
- "id": 42022,
+ "id": 24961,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -41920,7 +41929,7 @@
"frontmatter": {}
},
{
- "id": 42023,
+ "id": 24962,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -41946,7 +41955,7 @@
"frontmatter": {}
},
{
- "id": 42024,
+ "id": 24963,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -41972,7 +41981,7 @@
"frontmatter": {}
},
{
- "id": 42028,
+ "id": 24967,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -41998,7 +42007,7 @@
"frontmatter": {}
},
{
- "id": 42029,
+ "id": 24968,
"name": "listShippingOptionsForCartWithPricingWorkflow",
"variant": "document",
"kind": 8388608,
@@ -42024,7 +42033,7 @@
"frontmatter": {}
},
{
- "id": 42030,
+ "id": 24969,
"name": "validateCartShippingOptionsStep",
"variant": "document",
"kind": 8388608,
@@ -42050,7 +42059,7 @@
"frontmatter": {}
},
{
- "id": 42031,
+ "id": 24970,
"name": "validateCartShippingOptionsPriceStep",
"variant": "document",
"kind": 8388608,
@@ -42076,7 +42085,7 @@
"frontmatter": {}
},
{
- "id": 42032,
+ "id": 24971,
"name": "validateAndReturnShippingMethodsDataStep",
"variant": "document",
"kind": 8388608,
@@ -42102,7 +42111,7 @@
"frontmatter": {}
},
{
- "id": 42033,
+ "id": 24972,
"name": "removeShippingMethodFromCartStep",
"variant": "document",
"kind": 8388608,
@@ -42128,7 +42137,7 @@
"frontmatter": {}
},
{
- "id": 42034,
+ "id": 24973,
"name": "addShippingMethodToCartStep",
"variant": "document",
"kind": 8388608,
@@ -42154,7 +42163,7 @@
"frontmatter": {}
},
{
- "id": 42035,
+ "id": 24974,
"name": "refreshCartItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -42180,7 +42189,7 @@
"frontmatter": {}
},
{
- "id": 42036,
+ "id": 24975,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -42206,7 +42215,7 @@
"frontmatter": {}
},
{
- "id": 42037,
+ "id": 24976,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -42233,21 +42242,21 @@
}
],
"childrenIncludingDocuments": [
- 18494,
- 18500,
- 18506,
- 18509,
- 18513
+ 1202,
+ 1208,
+ 1214,
+ 1217,
+ 1221
],
"groups": [
{
"title": "Properties",
"children": [
- 18494,
- 18500,
- 18506,
- 18509,
- 18513
+ 1202,
+ 1208,
+ 1214,
+ 1217,
+ 1221
]
}
],
@@ -42256,12 +42265,12 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 83,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L83"
}
],
"signatures": [
{
- "id": 18487,
+ "id": 1195,
"name": "addShippingMethodToCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -42310,6 +42319,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -42326,12 +42344,12 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 83,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L83"
}
],
"typeParameters": [
{
- "id": 18488,
+ "id": 1196,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -42342,7 +42360,7 @@
}
},
{
- "id": 18489,
+ "id": 1197,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -42355,7 +42373,7 @@
],
"parameters": [
{
- "id": 18490,
+ "id": 1198,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -42379,14 +42397,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18491,
+ "id": 1199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18492,
+ "id": 1200,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -42409,7 +42427,7 @@
}
},
{
- "id": 18493,
+ "id": 1201,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -42436,8 +42454,8 @@
{
"title": "Properties",
"children": [
- 18492,
- 18493
+ 1200,
+ 1201
]
}
],
@@ -42515,7 +42533,7 @@
"types": [
{
"type": "reference",
- "target": 18479,
+ "target": 1187,
"name": "AddShippingMethodToCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -42536,14 +42554,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -42558,14 +42576,14 @@
]
},
{
- "id": 18520,
+ "id": 1228,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18521,
+ "id": 1229,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -42575,7 +42593,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 105,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L105"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L105"
}
],
"type": {
@@ -42590,7 +42608,7 @@
"types": [
{
"type": "reference",
- "target": 18479,
+ "target": 1187,
"name": "AddShippingMethodToCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -42611,7 +42629,7 @@
}
},
{
- "id": 18522,
+ "id": 1230,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -42621,7 +42639,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 106,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L106"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L106"
}
],
"type": {
@@ -42634,8 +42652,8 @@
{
"title": "Properties",
"children": [
- 18521,
- 18522
+ 1229,
+ 1230
]
}
],
@@ -42644,12 +42662,12 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 104,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L104"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L104"
}
]
},
{
- "id": 18521,
+ "id": 1229,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -42659,7 +42677,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 105,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L105"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L105"
}
],
"type": {
@@ -42674,7 +42692,7 @@
"types": [
{
"type": "reference",
- "target": 18479,
+ "target": 1187,
"name": "AddShippingMethodToCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -42695,7 +42713,7 @@
}
},
{
- "id": 18522,
+ "id": 1230,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -42705,7 +42723,7 @@
"fileName": "core-flows/src/cart/workflows/add-shipping-method-to-cart.ts",
"line": 106,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L106"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-shipping-method-to-cart.ts#L106"
}
],
"type": {
@@ -42714,7 +42732,7 @@
}
},
{
- "id": 18524,
+ "id": 1232,
"name": "addToCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -42726,7 +42744,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L47"
}
],
"type": {
@@ -42736,7 +42754,7 @@
"defaultValue": "\"add-to-cart\""
},
{
- "id": 18525,
+ "id": 1233,
"name": "addToCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -42785,6 +42803,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -42798,7 +42825,7 @@
},
"children": [
{
- "id": 18533,
+ "id": 1241,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -42821,7 +42848,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18534,
+ "id": 1242,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -42835,7 +42862,7 @@
],
"signatures": [
{
- "id": 18535,
+ "id": 1243,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -42863,7 +42890,7 @@
],
"parameters": [
{
- "id": 18536,
+ "id": 1244,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -42879,14 +42906,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18537,
+ "id": 1245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18538,
+ "id": 1246,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -42974,7 +43001,7 @@
{
"title": "Properties",
"children": [
- 18538
+ 1246
]
}
],
@@ -42999,7 +43026,7 @@
}
},
{
- "id": 18539,
+ "id": 1247,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -43022,7 +43049,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18540,
+ "id": 1248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -43036,7 +43063,7 @@
],
"signatures": [
{
- "id": 18541,
+ "id": 1249,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -43064,7 +43091,7 @@
],
"typeParameters": [
{
- "id": 18542,
+ "id": 1250,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -43075,7 +43102,7 @@
}
},
{
- "id": 18543,
+ "id": 1251,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -43088,7 +43115,7 @@
],
"parameters": [
{
- "id": 18544,
+ "id": 1252,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -43121,7 +43148,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -43155,7 +43182,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -43188,7 +43215,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -43203,7 +43230,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -43223,7 +43250,7 @@
}
},
{
- "id": 18545,
+ "id": 1253,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -43246,7 +43273,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18546,
+ "id": 1254,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -43260,7 +43287,7 @@
],
"signatures": [
{
- "id": 18547,
+ "id": 1255,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -43282,7 +43309,7 @@
}
},
{
- "id": 18548,
+ "id": 1256,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -43305,7 +43332,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18549,
+ "id": 1257,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -43319,7 +43346,7 @@
],
"signatures": [
{
- "id": 18550,
+ "id": 1258,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -43333,7 +43360,7 @@
],
"parameters": [
{
- "id": 18551,
+ "id": 1259,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -43359,7 +43386,7 @@
}
},
{
- "id": 18552,
+ "id": 1260,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -43385,14 +43412,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18553,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18554,
+ "id": 1262,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -43428,7 +43455,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18555,
+ "id": 1263,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -43442,7 +43469,7 @@
],
"signatures": [
{
- "id": 18556,
+ "id": 1264,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -43456,7 +43483,7 @@
],
"typeParameters": [
{
- "id": 18557,
+ "id": 1265,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -43465,7 +43492,7 @@
],
"parameters": [
{
- "id": 18558,
+ "id": 1266,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -43480,14 +43507,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18559,
+ "id": 1267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18560,
+ "id": 1268,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -43497,7 +43524,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 135,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L135"
}
],
"type": {
@@ -43525,7 +43552,7 @@
}
},
{
- "id": 18561,
+ "id": 1269,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -43535,7 +43562,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 136,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L136"
}
],
"type": {
@@ -43548,8 +43575,8 @@
{
"title": "Properties",
"children": [
- 18560,
- 18561
+ 1268,
+ 1269
]
}
],
@@ -43558,7 +43585,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 134,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L134"
}
]
}
@@ -43569,7 +43596,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -43580,7 +43607,7 @@
}
},
{
- "id": 18562,
+ "id": 1270,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -43596,7 +43623,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -43617,14 +43644,14 @@
},
"signatures": [
{
- "id": 42040,
+ "id": 24979,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42041,
+ "id": 24980,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -43639,7 +43666,7 @@
},
"type": {
"type": "reference",
- "target": 18559,
+ "target": 1267,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -43653,7 +43680,7 @@
{
"title": "Properties",
"children": [
- 18554
+ 1262
]
}
],
@@ -43669,14 +43696,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18563,
+ "id": 1271,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18564,
+ "id": 1272,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -43744,7 +43771,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18565,
+ "id": 1273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -43758,7 +43785,7 @@
],
"signatures": [
{
- "id": 18566,
+ "id": 1274,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -43772,7 +43799,7 @@
],
"typeParameters": [
{
- "id": 18567,
+ "id": 1275,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -43781,7 +43808,7 @@
],
"parameters": [
{
- "id": 18568,
+ "id": 1276,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -43796,14 +43823,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18569,
+ "id": 1277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18570,
+ "id": 1278,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -43813,7 +43840,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 148,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L148"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L148"
}
],
"type": {
@@ -43822,7 +43849,7 @@
}
},
{
- "id": 18571,
+ "id": 1279,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -43832,7 +43859,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 149,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L149"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L149"
}
],
"type": {
@@ -43855,7 +43882,7 @@
}
},
{
- "id": 18572,
+ "id": 1280,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -43865,7 +43892,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 150,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L150"
}
],
"type": {
@@ -43883,7 +43910,7 @@
"defaultValue": "input.items"
},
{
- "id": 18573,
+ "id": 1281,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -43901,7 +43928,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 151,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L151"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L151"
}
],
"type": {
@@ -43939,10 +43966,10 @@
{
"title": "Properties",
"children": [
- 18570,
- 18571,
- 18572,
- 18573
+ 1278,
+ 1279,
+ 1280,
+ 1281
]
}
],
@@ -43951,7 +43978,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L147"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L147"
}
]
}
@@ -43986,7 +44013,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -43997,7 +44024,7 @@
}
},
{
- "id": 18574,
+ "id": 1282,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -44013,7 +44040,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -44034,14 +44061,14 @@
},
"signatures": [
{
- "id": 42043,
+ "id": 24982,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42044,
+ "id": 24983,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -44056,7 +44083,7 @@
},
"type": {
"type": "reference",
- "target": 18569,
+ "target": 1277,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -44070,7 +44097,7 @@
{
"title": "Properties",
"children": [
- 18564
+ 1272
]
}
],
@@ -44089,7 +44116,7 @@
],
"documents": [
{
- "id": 42038,
+ "id": 24977,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -44115,7 +44142,7 @@
"frontmatter": {}
},
{
- "id": 42039,
+ "id": 24978,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -44141,7 +44168,7 @@
"frontmatter": {}
},
{
- "id": 42042,
+ "id": 24981,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -44167,7 +44194,7 @@
"frontmatter": {}
},
{
- "id": 42045,
+ "id": 24984,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -44193,7 +44220,7 @@
"frontmatter": {}
},
{
- "id": 42048,
+ "id": 24987,
"name": "validateLineItemPricesStep",
"variant": "document",
"kind": 8388608,
@@ -44219,7 +44246,7 @@
"frontmatter": {}
},
{
- "id": 42049,
+ "id": 24988,
"name": "getLineItemActionsStep",
"variant": "document",
"kind": 8388608,
@@ -44245,7 +44272,7 @@
"frontmatter": {}
},
{
- "id": 42050,
+ "id": 24989,
"name": "confirmVariantInventoryWorkflow",
"variant": "document",
"kind": 8388608,
@@ -44271,7 +44298,7 @@
"frontmatter": {}
},
{
- "id": 42051,
+ "id": 24990,
"name": "createLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -44297,7 +44324,7 @@
"frontmatter": {}
},
{
- "id": 42052,
+ "id": 24991,
"name": "updateLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -44323,7 +44350,7 @@
"frontmatter": {}
},
{
- "id": 42053,
+ "id": 24992,
"name": "refreshCartItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -44349,7 +44376,7 @@
"frontmatter": {}
},
{
- "id": 42054,
+ "id": 24993,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -44375,7 +44402,7 @@
"frontmatter": {}
},
{
- "id": 42055,
+ "id": 24994,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -44402,21 +44429,21 @@
}
],
"childrenIncludingDocuments": [
- 18533,
- 18539,
- 18545,
- 18548,
- 18552
+ 1241,
+ 1247,
+ 1253,
+ 1256,
+ 1260
],
"groups": [
{
"title": "Properties",
"children": [
- 18533,
- 18539,
- 18545,
- 18548,
- 18552
+ 1241,
+ 1247,
+ 1253,
+ 1256,
+ 1260
]
}
],
@@ -44425,12 +44452,12 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L114"
}
],
"signatures": [
{
- "id": 18526,
+ "id": 1234,
"name": "addToCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -44479,6 +44506,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -44495,12 +44531,12 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L114"
}
],
"typeParameters": [
{
- "id": 18527,
+ "id": 1235,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -44511,7 +44547,7 @@
}
},
{
- "id": 18528,
+ "id": 1236,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -44524,7 +44560,7 @@
],
"parameters": [
{
- "id": 18529,
+ "id": 1237,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -44548,14 +44584,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18530,
+ "id": 1238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18531,
+ "id": 1239,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -44578,7 +44614,7 @@
}
},
{
- "id": 18532,
+ "id": 1240,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -44605,8 +44641,8 @@
{
"title": "Properties",
"children": [
- 18531,
- 18532
+ 1239,
+ 1240
]
}
],
@@ -44708,14 +44744,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -44730,14 +44766,14 @@
]
},
{
- "id": 18559,
+ "id": 1267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18560,
+ "id": 1268,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -44747,7 +44783,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 135,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L135"
}
],
"type": {
@@ -44775,7 +44811,7 @@
}
},
{
- "id": 18561,
+ "id": 1269,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -44785,7 +44821,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 136,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L136"
}
],
"type": {
@@ -44798,8 +44834,8 @@
{
"title": "Properties",
"children": [
- 18560,
- 18561
+ 1268,
+ 1269
]
}
],
@@ -44808,12 +44844,12 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 134,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L134"
}
]
},
{
- "id": 18560,
+ "id": 1268,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -44823,7 +44859,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 135,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L135"
}
],
"type": {
@@ -44851,7 +44887,7 @@
}
},
{
- "id": 18561,
+ "id": 1269,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -44861,7 +44897,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 136,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L136"
}
],
"type": {
@@ -44870,14 +44906,14 @@
}
},
{
- "id": 18569,
+ "id": 1277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18570,
+ "id": 1278,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -44887,7 +44923,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 148,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L148"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L148"
}
],
"type": {
@@ -44896,7 +44932,7 @@
}
},
{
- "id": 18571,
+ "id": 1279,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -44906,7 +44942,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 149,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L149"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L149"
}
],
"type": {
@@ -44929,7 +44965,7 @@
}
},
{
- "id": 18572,
+ "id": 1280,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -44939,7 +44975,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 150,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L150"
}
],
"type": {
@@ -44957,7 +44993,7 @@
"defaultValue": "input.items"
},
{
- "id": 18573,
+ "id": 1281,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -44975,7 +45011,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 151,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L151"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L151"
}
],
"type": {
@@ -45013,10 +45049,10 @@
{
"title": "Properties",
"children": [
- 18570,
- 18571,
- 18572,
- 18573
+ 1278,
+ 1279,
+ 1280,
+ 1281
]
}
],
@@ -45025,12 +45061,12 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L147"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L147"
}
]
},
{
- "id": 18570,
+ "id": 1278,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -45040,7 +45076,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 148,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L148"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L148"
}
],
"type": {
@@ -45049,7 +45085,7 @@
}
},
{
- "id": 18571,
+ "id": 1279,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -45059,7 +45095,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 149,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L149"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L149"
}
],
"type": {
@@ -45082,7 +45118,7 @@
}
},
{
- "id": 18572,
+ "id": 1280,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -45092,7 +45128,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 150,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L150"
}
],
"type": {
@@ -45110,7 +45146,7 @@
"defaultValue": "input.items"
},
{
- "id": 18573,
+ "id": 1281,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -45128,7 +45164,7 @@
"fileName": "core-flows/src/cart/workflows/add-to-cart.ts",
"line": 151,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L151"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/add-to-cart.ts#L151"
}
],
"type": {
@@ -45162,7 +45198,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 18577,
+ "id": 1285,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -45180,7 +45216,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L56"
}
],
"type": {
@@ -45189,7 +45225,7 @@
}
},
{
- "id": 18580,
+ "id": 1288,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -45207,7 +45243,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L63"
}
],
"type": {
@@ -45216,7 +45252,7 @@
}
},
{
- "id": 18581,
+ "id": 1289,
"name": "completeCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -45228,7 +45264,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 70,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L70"
}
],
"type": {
@@ -45238,7 +45274,7 @@
"defaultValue": "\"complete-cart\""
},
{
- "id": 18582,
+ "id": 1290,
"name": "completeCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -45310,12 +45346,21 @@
"text": "order.placed -- Emitted when an order is placed, or when a draft order is converted to an\norder. -- ```ts\n{\n id, // The ID of the order\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: THIRTY_SECONDS, ttl: TWO_MINUTES, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 18590,
+ "id": 1298,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -45338,7 +45383,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18591,
+ "id": 1299,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45352,7 +45397,7 @@
],
"signatures": [
{
- "id": 18592,
+ "id": 1300,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -45380,7 +45425,7 @@
],
"parameters": [
{
- "id": 18593,
+ "id": 1301,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -45396,14 +45441,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18594,
+ "id": 1302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18595,
+ "id": 1303,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -45428,7 +45473,7 @@
"types": [
{
"type": "reference",
- "target": 18575,
+ "target": 1283,
"name": "CompleteCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -45441,7 +45486,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18575,
+ "target": 1283,
"name": "CompleteCartWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -45457,7 +45502,7 @@
{
"title": "Properties",
"children": [
- 18595
+ 1303
]
}
],
@@ -45478,14 +45523,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18596,
+ "id": 1304,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18597,
+ "id": 1305,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -45503,7 +45548,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L63"
}
],
"type": {
@@ -45536,7 +45581,7 @@
{
"title": "Properties",
"children": [
- 18597
+ 1305
]
}
],
@@ -45551,7 +45596,7 @@
},
{
"type": "reference",
- "target": 18578,
+ "target": 1286,
"name": "CompleteCartWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -45564,7 +45609,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18578,
+ "target": 1286,
"name": "CompleteCartWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -45575,14 +45620,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18598,
+ "id": 1306,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18599,
+ "id": 1307,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -45596,7 +45641,7 @@
],
"signatures": [
{
- "id": 18600,
+ "id": 1308,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -45610,7 +45655,7 @@
],
"parameters": [
{
- "id": 18601,
+ "id": 1309,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -45621,14 +45666,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18602,
+ "id": 1310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18603,
+ "id": 1311,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -45652,7 +45697,7 @@
{
"title": "Properties",
"children": [
- 18603
+ 1311
]
}
],
@@ -45715,7 +45760,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18578,
+ "target": 1286,
"name": "CompleteCartWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -45731,7 +45776,7 @@
{
"title": "Methods",
"children": [
- 18599
+ 1307
]
}
],
@@ -45753,7 +45798,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18578,
+ "target": 1286,
"name": "CompleteCartWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -45769,7 +45814,7 @@
}
},
{
- "id": 18604,
+ "id": 1312,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -45792,7 +45837,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18605,
+ "id": 1313,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45806,7 +45851,7 @@
],
"signatures": [
{
- "id": 18606,
+ "id": 1314,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -45834,7 +45879,7 @@
],
"typeParameters": [
{
- "id": 18607,
+ "id": 1315,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -45845,7 +45890,7 @@
}
},
{
- "id": 18608,
+ "id": 1316,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -45858,7 +45903,7 @@
],
"parameters": [
{
- "id": 18609,
+ "id": 1317,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -45891,7 +45936,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -45902,13 +45947,13 @@
},
"trueType": {
"type": "reference",
- "target": 18575,
+ "target": 1283,
"name": "CompleteCartWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -45941,7 +45986,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -45952,13 +45997,13 @@
},
"trueType": {
"type": "reference",
- "target": 18578,
+ "target": 1286,
"name": "CompleteCartWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -45978,7 +46023,7 @@
}
},
{
- "id": 18610,
+ "id": 1318,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -46001,7 +46046,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18611,
+ "id": 1319,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46015,7 +46060,7 @@
],
"signatures": [
{
- "id": 18612,
+ "id": 1320,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -46037,7 +46082,7 @@
}
},
{
- "id": 18613,
+ "id": 1321,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -46060,7 +46105,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18614,
+ "id": 1322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46074,7 +46119,7 @@
],
"signatures": [
{
- "id": 18615,
+ "id": 1323,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -46088,7 +46133,7 @@
],
"parameters": [
{
- "id": 18616,
+ "id": 1324,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -46114,7 +46159,7 @@
}
},
{
- "id": 18617,
+ "id": 1325,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -46137,14 +46182,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18618,
+ "id": 1326,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18619,
+ "id": 1327,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -46152,7 +46197,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18620,
+ "id": 1328,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46166,7 +46211,7 @@
],
"signatures": [
{
- "id": 18621,
+ "id": 1329,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -46180,7 +46225,7 @@
],
"typeParameters": [
{
- "id": 18622,
+ "id": 1330,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -46189,7 +46234,7 @@
],
"parameters": [
{
- "id": 18623,
+ "id": 1331,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -46204,14 +46249,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18624,
+ "id": 1332,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18625,
+ "id": 1333,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -46221,7 +46266,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 349,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L349"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L349"
}
],
"type": {
@@ -46233,7 +46278,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18575,
+ "target": 1283,
"name": "CompleteCartWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -46243,7 +46288,7 @@
}
},
{
- "id": 18626,
+ "id": 1334,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -46253,7 +46298,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 350,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L350"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L350"
}
],
"type": {
@@ -46267,8 +46312,8 @@
{
"title": "Properties",
"children": [
- 18625,
- 18626
+ 1333,
+ 1334
]
}
],
@@ -46277,7 +46322,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 348,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L348"
}
]
}
@@ -46288,7 +46333,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -46299,7 +46344,7 @@
}
},
{
- "id": 18627,
+ "id": 1335,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -46315,7 +46360,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -46336,7 +46381,7 @@
}
},
{
- "id": 42060,
+ "id": 24999,
"name": "validate",
"variant": "declaration",
"kind": 64,
@@ -46371,14 +46416,14 @@
},
"signatures": [
{
- "id": 42061,
+ "id": 25000,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42062,
+ "id": 25001,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -46393,7 +46438,7 @@
},
"type": {
"type": "reference",
- "target": 18624,
+ "target": 1332,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -46407,13 +46452,13 @@
{
"title": "Properties",
"children": [
- 18619
+ 1327
]
},
{
"title": "Functions",
"children": [
- 42060
+ 24999
]
}
],
@@ -46430,7 +46475,7 @@
],
"documents": [
{
- "id": 42056,
+ "id": 24995,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -46456,7 +46501,7 @@
"frontmatter": {}
},
{
- "id": 42057,
+ "id": 24996,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -46482,7 +46527,7 @@
"frontmatter": {}
},
{
- "id": 42058,
+ "id": 24997,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -46508,7 +46553,7 @@
"frontmatter": {}
},
{
- "id": 42059,
+ "id": 24998,
"name": "validateCartPaymentsStep",
"variant": "document",
"kind": 8388608,
@@ -46534,7 +46579,7 @@
"frontmatter": {}
},
{
- "id": 42063,
+ "id": 25002,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -46560,7 +46605,7 @@
"frontmatter": {}
},
{
- "id": 42064,
+ "id": 25003,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -46595,7 +46640,7 @@
"frontmatter": {},
"children": [
{
- "id": 42065,
+ "id": 25004,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -46621,7 +46666,7 @@
"frontmatter": {}
},
{
- "id": 42066,
+ "id": 25005,
"name": "validateShippingStep",
"variant": "document",
"kind": 8388608,
@@ -46647,7 +46692,7 @@
"frontmatter": {}
},
{
- "id": 42067,
+ "id": 25006,
"name": "createOrdersStep",
"variant": "document",
"kind": 8388608,
@@ -46673,7 +46718,7 @@
"frontmatter": {}
},
{
- "id": 42068,
+ "id": 25007,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -46699,7 +46744,7 @@
"frontmatter": {}
},
{
- "id": 42069,
+ "id": 25008,
"name": "updateCartsStep",
"variant": "document",
"kind": 8388608,
@@ -46725,7 +46770,7 @@
"frontmatter": {}
},
{
- "id": 42070,
+ "id": 25009,
"name": "reserveInventoryStep",
"variant": "document",
"kind": 8388608,
@@ -46751,7 +46796,7 @@
"frontmatter": {}
},
{
- "id": 42071,
+ "id": 25010,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -46777,7 +46822,7 @@
"frontmatter": {}
},
{
- "id": 42072,
+ "id": 25011,
"name": "authorizePaymentSessionStep",
"variant": "document",
"kind": 8388608,
@@ -46803,7 +46848,7 @@
"frontmatter": {}
},
{
- "id": 42073,
+ "id": 25012,
"name": "addOrderTransactionStep",
"variant": "document",
"kind": 8388608,
@@ -46831,7 +46876,7 @@
]
},
{
- "id": 42074,
+ "id": 25013,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -46858,21 +46903,21 @@
}
],
"childrenIncludingDocuments": [
- 18590,
- 18604,
- 18610,
- 18613,
- 18617
+ 1298,
+ 1312,
+ 1318,
+ 1321,
+ 1325
],
"groups": [
{
"title": "Properties",
"children": [
- 18590,
- 18604,
- 18610,
- 18613,
- 18617
+ 1298,
+ 1312,
+ 1318,
+ 1321,
+ 1325
]
}
],
@@ -46881,12 +46926,12 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 301,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L301"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L301"
}
],
"signatures": [
{
- "id": 18583,
+ "id": 1291,
"name": "completeCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -46958,6 +47003,15 @@
"text": "order.placed -- Emitted when an order is placed, or when a draft order is converted to an\norder. -- ```ts\n{\n id, // The ID of the order\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: THIRTY_SECONDS, ttl: TWO_MINUTES, })"
+ }
+ ]
}
]
},
@@ -46966,12 +47020,12 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 301,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L301"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L301"
}
],
"typeParameters": [
{
- "id": 18584,
+ "id": 1292,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -46982,7 +47036,7 @@
}
},
{
- "id": 18585,
+ "id": 1293,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -46995,7 +47049,7 @@
],
"parameters": [
{
- "id": 18586,
+ "id": 1294,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -47019,14 +47073,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18587,
+ "id": 1295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18588,
+ "id": 1296,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -47049,7 +47103,7 @@
}
},
{
- "id": 18589,
+ "id": 1297,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -47076,8 +47130,8 @@
{
"title": "Properties",
"children": [
- 18588,
- 18589
+ 1296,
+ 1297
]
}
],
@@ -47152,26 +47206,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 18575,
+ "target": 1283,
"name": "CompleteCartWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 18578,
+ "target": 1286,
"name": "CompleteCartWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -47186,14 +47240,14 @@
]
},
{
- "id": 18624,
+ "id": 1332,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18625,
+ "id": 1333,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -47203,7 +47257,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 349,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L349"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L349"
}
],
"type": {
@@ -47215,7 +47269,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18575,
+ "target": 1283,
"name": "CompleteCartWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -47225,7 +47279,7 @@
}
},
{
- "id": 18626,
+ "id": 1334,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -47235,7 +47289,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 350,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L350"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L350"
}
],
"type": {
@@ -47249,8 +47303,8 @@
{
"title": "Properties",
"children": [
- 18625,
- 18626
+ 1333,
+ 1334
]
}
],
@@ -47259,12 +47313,12 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 348,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L348"
}
]
},
{
- "id": 18625,
+ "id": 1333,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -47274,7 +47328,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 349,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L349"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L349"
}
],
"type": {
@@ -47286,7 +47340,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18575,
+ "target": 1283,
"name": "CompleteCartWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -47296,7 +47350,7 @@
}
},
{
- "id": 18626,
+ "id": 1334,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -47306,7 +47360,7 @@
"fileName": "core-flows/src/cart/workflows/complete-cart.ts",
"line": 350,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L350"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/complete-cart.ts#L350"
}
],
"type": {
@@ -47316,7 +47370,7 @@
"defaultValue": "cartData.data"
},
{
- "id": 18631,
+ "id": 1339,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -47336,7 +47390,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
}
],
"type": {
@@ -47345,7 +47399,7 @@
}
},
{
- "id": 18632,
+ "id": 1340,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -47363,7 +47417,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
}
],
"type": {
@@ -47372,7 +47426,7 @@
}
},
{
- "id": 18633,
+ "id": 1341,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -47406,7 +47460,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
}
],
"type": {
@@ -47415,7 +47469,7 @@
}
},
{
- "id": 18634,
+ "id": 1342,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -47433,7 +47487,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
}
],
"type": {
@@ -47442,7 +47496,7 @@
}
},
{
- "id": 18635,
+ "id": 1343,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -47468,7 +47522,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
}
],
"type": {
@@ -47482,7 +47536,7 @@
}
},
{
- "id": 18636,
+ "id": 1344,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -47500,7 +47554,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
}
],
"type": {
@@ -47512,7 +47566,7 @@
}
},
{
- "id": 18629,
+ "id": 1337,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -47530,7 +47584,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
}
],
"type": {
@@ -47538,14 +47592,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18630,
+ "id": 1338,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18631,
+ "id": 1339,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -47565,7 +47619,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
}
],
"type": {
@@ -47574,7 +47628,7 @@
}
},
{
- "id": 18632,
+ "id": 1340,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -47592,7 +47646,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
}
],
"type": {
@@ -47601,7 +47655,7 @@
}
},
{
- "id": 18633,
+ "id": 1341,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -47635,7 +47689,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
}
],
"type": {
@@ -47644,7 +47698,7 @@
}
},
{
- "id": 18634,
+ "id": 1342,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -47662,7 +47716,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
}
],
"type": {
@@ -47671,7 +47725,7 @@
}
},
{
- "id": 18635,
+ "id": 1343,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -47697,7 +47751,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
}
],
"type": {
@@ -47711,7 +47765,7 @@
}
},
{
- "id": 18636,
+ "id": 1344,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -47729,7 +47783,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
}
],
"type": {
@@ -47745,12 +47799,12 @@
{
"title": "Properties",
"children": [
- 18631,
- 18632,
- 18633,
- 18634,
- 18635,
- 18636
+ 1339,
+ 1340,
+ 1341,
+ 1342,
+ 1343,
+ 1344
]
}
],
@@ -47759,7 +47813,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 19,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
}
]
}
@@ -47767,7 +47821,7 @@
}
},
{
- "id": 18637,
+ "id": 1345,
"name": "confirmVariantInventoryWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -47779,7 +47833,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L48"
}
],
"type": {
@@ -47789,7 +47843,7 @@
"defaultValue": "\"confirm-item-inventory\""
},
{
- "id": 18638,
+ "id": 1346,
"name": "confirmVariantInventoryWorkflow",
"variant": "declaration",
"kind": 64,
@@ -47862,7 +47916,7 @@
},
"children": [
{
- "id": 18646,
+ "id": 1354,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -47885,7 +47939,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18647,
+ "id": 1355,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47899,7 +47953,7 @@
],
"signatures": [
{
- "id": 18648,
+ "id": 1356,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -47927,7 +47981,7 @@
],
"parameters": [
{
- "id": 18649,
+ "id": 1357,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -47943,14 +47997,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18650,
+ "id": 1358,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18651,
+ "id": 1359,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -48010,7 +48064,7 @@
{
"title": "Properties",
"children": [
- 18651
+ 1359
]
}
],
@@ -48031,14 +48085,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18652,
+ "id": 1360,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18653,
+ "id": 1361,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -48056,7 +48110,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
}
],
"type": {
@@ -48067,14 +48121,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18654,
+ "id": 1362,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18655,
+ "id": 1363,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -48094,7 +48148,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
}
],
"type": {
@@ -48103,7 +48157,7 @@
}
},
{
- "id": 18656,
+ "id": 1364,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -48121,7 +48175,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
}
],
"type": {
@@ -48130,7 +48184,7 @@
}
},
{
- "id": 18657,
+ "id": 1365,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -48164,7 +48218,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
}
],
"type": {
@@ -48173,7 +48227,7 @@
}
},
{
- "id": 18658,
+ "id": 1366,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -48191,7 +48245,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
}
],
"type": {
@@ -48200,7 +48254,7 @@
}
},
{
- "id": 18659,
+ "id": 1367,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -48226,7 +48280,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
}
],
"type": {
@@ -48240,7 +48294,7 @@
}
},
{
- "id": 18660,
+ "id": 1368,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -48258,7 +48312,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
}
],
"type": {
@@ -48274,12 +48328,12 @@
{
"title": "Properties",
"children": [
- 18655,
- 18656,
- 18657,
- 18658,
- 18659,
- 18660
+ 1363,
+ 1364,
+ 1365,
+ 1366,
+ 1367,
+ 1368
]
}
],
@@ -48288,7 +48342,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 19,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
}
]
}
@@ -48306,14 +48360,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18661,
+ "id": 1369,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18662,
+ "id": 1370,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -48333,7 +48387,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
}
],
"type": {
@@ -48342,7 +48396,7 @@
}
},
{
- "id": 18663,
+ "id": 1371,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -48360,7 +48414,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
}
],
"type": {
@@ -48369,7 +48423,7 @@
}
},
{
- "id": 18664,
+ "id": 1372,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -48403,7 +48457,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
}
],
"type": {
@@ -48412,7 +48466,7 @@
}
},
{
- "id": 18665,
+ "id": 1373,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -48430,7 +48484,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
}
],
"type": {
@@ -48439,7 +48493,7 @@
}
},
{
- "id": 18666,
+ "id": 1374,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -48465,7 +48519,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
}
],
"type": {
@@ -48479,7 +48533,7 @@
}
},
{
- "id": 18667,
+ "id": 1375,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -48497,7 +48551,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
}
],
"type": {
@@ -48513,12 +48567,12 @@
{
"title": "Properties",
"children": [
- 18662,
- 18663,
- 18664,
- 18665,
- 18666,
- 18667
+ 1370,
+ 1371,
+ 1372,
+ 1373,
+ 1374,
+ 1375
]
}
],
@@ -48527,7 +48581,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 19,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L19"
}
]
}
@@ -48545,7 +48599,7 @@
{
"title": "Properties",
"children": [
- 18653
+ 1361
]
}
],
@@ -48560,7 +48614,7 @@
},
{
"type": "reference",
- "target": 18628,
+ "target": 1336,
"name": "ConfirmVariantInventoryWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -48573,7 +48627,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18628,
+ "target": 1336,
"name": "ConfirmVariantInventoryWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -48584,14 +48638,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18668,
+ "id": 1376,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18669,
+ "id": 1377,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -48605,7 +48659,7 @@
],
"signatures": [
{
- "id": 18670,
+ "id": 1378,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -48619,7 +48673,7 @@
],
"parameters": [
{
- "id": 18671,
+ "id": 1379,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -48630,14 +48684,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18672,
+ "id": 1380,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18673,
+ "id": 1381,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -48661,7 +48715,7 @@
{
"title": "Properties",
"children": [
- 18673
+ 1381
]
}
],
@@ -48724,7 +48778,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18628,
+ "target": 1336,
"name": "ConfirmVariantInventoryWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -48740,7 +48794,7 @@
{
"title": "Methods",
"children": [
- 18669
+ 1377
]
}
],
@@ -48762,7 +48816,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18628,
+ "target": 1336,
"name": "ConfirmVariantInventoryWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -48778,7 +48832,7 @@
}
},
{
- "id": 18674,
+ "id": 1382,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -48801,7 +48855,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18675,
+ "id": 1383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48815,7 +48869,7 @@
],
"signatures": [
{
- "id": 18676,
+ "id": 1384,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -48843,7 +48897,7 @@
],
"typeParameters": [
{
- "id": 18677,
+ "id": 1385,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -48854,7 +48908,7 @@
}
},
{
- "id": 18678,
+ "id": 1386,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -48867,7 +48921,7 @@
],
"parameters": [
{
- "id": 18679,
+ "id": 1387,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -48900,7 +48954,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -48920,7 +48974,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -48953,7 +49007,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -48964,13 +49018,13 @@
},
"trueType": {
"type": "reference",
- "target": 18628,
+ "target": 1336,
"name": "ConfirmVariantInventoryWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -48990,7 +49044,7 @@
}
},
{
- "id": 18680,
+ "id": 1388,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -49013,7 +49067,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18681,
+ "id": 1389,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49027,7 +49081,7 @@
],
"signatures": [
{
- "id": 18682,
+ "id": 1390,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -49049,7 +49103,7 @@
}
},
{
- "id": 18683,
+ "id": 1391,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -49072,7 +49126,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18684,
+ "id": 1392,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49086,7 +49140,7 @@
],
"signatures": [
{
- "id": 18685,
+ "id": 1393,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -49100,7 +49154,7 @@
],
"parameters": [
{
- "id": 18686,
+ "id": 1394,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -49126,7 +49180,7 @@
}
},
{
- "id": 18687,
+ "id": 1395,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -49149,7 +49203,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18688,
+ "id": 1396,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49160,7 +49214,7 @@
],
"documents": [
{
- "id": 42075,
+ "id": 25014,
"name": "confirmInventoryStep",
"variant": "document",
"kind": 8388608,
@@ -49187,21 +49241,21 @@
}
],
"childrenIncludingDocuments": [
- 18646,
- 18674,
- 18680,
- 18683,
- 18687
+ 1354,
+ 1382,
+ 1388,
+ 1391,
+ 1395
],
"groups": [
{
"title": "Properties",
"children": [
- 18646,
- 18674,
- 18680,
- 18683,
- 18687
+ 1354,
+ 1382,
+ 1388,
+ 1391,
+ 1395
]
}
],
@@ -49210,12 +49264,12 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 147,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L147"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L147"
}
],
"signatures": [
{
- "id": 18639,
+ "id": 1347,
"name": "confirmVariantInventoryWorkflow",
"variant": "signature",
"kind": 4096,
@@ -49291,12 +49345,12 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 147,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L147"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L147"
}
],
"typeParameters": [
{
- "id": 18640,
+ "id": 1348,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -49307,7 +49361,7 @@
}
},
{
- "id": 18641,
+ "id": 1349,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -49320,7 +49374,7 @@
],
"parameters": [
{
- "id": 18642,
+ "id": 1350,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -49344,14 +49398,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18643,
+ "id": 1351,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18644,
+ "id": 1352,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -49374,7 +49428,7 @@
}
},
{
- "id": 18645,
+ "id": 1353,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -49401,8 +49455,8 @@
{
"title": "Properties",
"children": [
- 18644,
- 18645
+ 1352,
+ 1353
]
}
],
@@ -49486,20 +49540,20 @@
},
{
"type": "reference",
- "target": 18628,
+ "target": 1336,
"name": "ConfirmVariantInventoryWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -49514,7 +49568,7 @@
]
},
{
- "id": 18655,
+ "id": 1363,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -49534,7 +49588,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
}
],
"type": {
@@ -49543,7 +49597,7 @@
}
},
{
- "id": 18656,
+ "id": 1364,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -49561,7 +49615,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
}
],
"type": {
@@ -49570,7 +49624,7 @@
}
},
{
- "id": 18657,
+ "id": 1365,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -49604,7 +49658,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
}
],
"type": {
@@ -49613,7 +49667,7 @@
}
},
{
- "id": 18658,
+ "id": 1366,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -49631,7 +49685,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
}
],
"type": {
@@ -49640,7 +49694,7 @@
}
},
{
- "id": 18659,
+ "id": 1367,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -49666,7 +49720,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
}
],
"type": {
@@ -49680,7 +49734,7 @@
}
},
{
- "id": 18660,
+ "id": 1368,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -49698,7 +49752,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
}
],
"type": {
@@ -49710,7 +49764,7 @@
}
},
{
- "id": 18662,
+ "id": 1370,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -49730,7 +49784,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L23"
}
],
"type": {
@@ -49739,7 +49793,7 @@
}
},
{
- "id": 18663,
+ "id": 1371,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -49757,7 +49811,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L27"
}
],
"type": {
@@ -49766,7 +49820,7 @@
}
},
{
- "id": 18664,
+ "id": 1372,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -49800,7 +49854,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L32"
}
],
"type": {
@@ -49809,7 +49863,7 @@
}
},
{
- "id": 18665,
+ "id": 1373,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -49827,7 +49881,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L36"
}
],
"type": {
@@ -49836,7 +49890,7 @@
}
},
{
- "id": 18666,
+ "id": 1374,
"name": "quantity",
"variant": "declaration",
"kind": 1024,
@@ -49862,7 +49916,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L40"
}
],
"type": {
@@ -49876,7 +49930,7 @@
}
},
{
- "id": 18667,
+ "id": 1375,
"name": "location_ids",
"variant": "declaration",
"kind": 1024,
@@ -49894,7 +49948,7 @@
"fileName": "core-flows/src/cart/workflows/confirm-variant-inventory.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/confirm-variant-inventory.ts#L44"
}
],
"type": {
@@ -49906,7 +49960,7 @@
}
},
{
- "id": 18689,
+ "id": 1397,
"name": "createCartCreditLinesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -49918,7 +49972,7 @@
"fileName": "core-flows/src/cart/workflows/create-cart-credit-lines.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-cart-credit-lines.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-cart-credit-lines.ts#L13"
}
],
"type": {
@@ -49928,7 +49982,7 @@
"defaultValue": "\"create-cart-credit-lines\""
},
{
- "id": 18690,
+ "id": 1398,
"name": "createCartCreditLinesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -49963,7 +50017,7 @@
},
"children": [
{
- "id": 18698,
+ "id": 1406,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -49986,7 +50040,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18699,
+ "id": 1407,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -50000,7 +50054,7 @@
],
"signatures": [
{
- "id": 18700,
+ "id": 1408,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -50028,7 +50082,7 @@
],
"parameters": [
{
- "id": 18701,
+ "id": 1409,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -50044,14 +50098,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18702,
+ "id": 1410,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18703,
+ "id": 1411,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -50111,7 +50165,7 @@
{
"title": "Properties",
"children": [
- 18703
+ 1411
]
}
],
@@ -50204,14 +50258,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18704,
+ "id": 1412,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18705,
+ "id": 1413,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -50225,7 +50279,7 @@
],
"signatures": [
{
- "id": 18706,
+ "id": 1414,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -50239,7 +50293,7 @@
],
"parameters": [
{
- "id": 18707,
+ "id": 1415,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -50250,14 +50304,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18708,
+ "id": 1416,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18709,
+ "id": 1417,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -50281,7 +50335,7 @@
{
"title": "Properties",
"children": [
- 18709
+ 1417
]
}
],
@@ -50366,7 +50420,7 @@
{
"title": "Methods",
"children": [
- 18705
+ 1413
]
}
],
@@ -50410,7 +50464,7 @@
}
},
{
- "id": 18710,
+ "id": 1418,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -50433,7 +50487,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18711,
+ "id": 1419,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -50447,7 +50501,7 @@
],
"signatures": [
{
- "id": 18712,
+ "id": 1420,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -50475,7 +50529,7 @@
],
"typeParameters": [
{
- "id": 18713,
+ "id": 1421,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -50486,7 +50540,7 @@
}
},
{
- "id": 18714,
+ "id": 1422,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -50499,7 +50553,7 @@
],
"parameters": [
{
- "id": 18715,
+ "id": 1423,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -50532,7 +50586,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -50552,7 +50606,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -50585,7 +50639,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -50608,7 +50662,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -50628,7 +50682,7 @@
}
},
{
- "id": 18716,
+ "id": 1424,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -50651,7 +50705,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18717,
+ "id": 1425,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -50665,7 +50719,7 @@
],
"signatures": [
{
- "id": 18718,
+ "id": 1426,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -50687,7 +50741,7 @@
}
},
{
- "id": 18719,
+ "id": 1427,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -50710,7 +50764,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18720,
+ "id": 1428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -50724,7 +50778,7 @@
],
"signatures": [
{
- "id": 18721,
+ "id": 1429,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -50738,7 +50792,7 @@
],
"parameters": [
{
- "id": 18722,
+ "id": 1430,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -50764,7 +50818,7 @@
}
},
{
- "id": 18723,
+ "id": 1431,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -50787,7 +50841,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18724,
+ "id": 1432,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -50798,7 +50852,7 @@
],
"documents": [
{
- "id": 42076,
+ "id": 25015,
"name": "createEntitiesStep",
"variant": "document",
"kind": 8388608,
@@ -50825,21 +50879,21 @@
}
],
"childrenIncludingDocuments": [
- 18698,
- 18710,
- 18716,
- 18719,
- 18723
+ 1406,
+ 1418,
+ 1424,
+ 1427,
+ 1431
],
"groups": [
{
"title": "Properties",
"children": [
- 18698,
- 18710,
- 18716,
- 18719,
- 18723
+ 1406,
+ 1418,
+ 1424,
+ 1427,
+ 1431
]
}
],
@@ -50848,12 +50902,12 @@
"fileName": "core-flows/src/cart/workflows/create-cart-credit-lines.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-cart-credit-lines.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-cart-credit-lines.ts#L31"
}
],
"signatures": [
{
- "id": 18691,
+ "id": 1399,
"name": "createCartCreditLinesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -50891,12 +50945,12 @@
"fileName": "core-flows/src/cart/workflows/create-cart-credit-lines.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-cart-credit-lines.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-cart-credit-lines.ts#L31"
}
],
"typeParameters": [
{
- "id": 18692,
+ "id": 1400,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -50907,7 +50961,7 @@
}
},
{
- "id": 18693,
+ "id": 1401,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -50920,7 +50974,7 @@
],
"parameters": [
{
- "id": 18694,
+ "id": 1402,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -50944,14 +50998,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18695,
+ "id": 1403,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18696,
+ "id": 1404,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -50974,7 +51028,7 @@
}
},
{
- "id": 18697,
+ "id": 1405,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -51001,8 +51055,8 @@
{
"title": "Properties",
"children": [
- 18696,
- 18697
+ 1404,
+ 1405
]
}
],
@@ -51098,14 +51152,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -51120,7 +51174,7 @@
]
},
{
- "id": 18726,
+ "id": 1434,
"name": "createCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -51132,7 +51186,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L43"
}
],
"type": {
@@ -51142,7 +51196,7 @@
"defaultValue": "\"create-cart\""
},
{
- "id": 18727,
+ "id": 1435,
"name": "createCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -51204,7 +51258,7 @@
},
"children": [
{
- "id": 18735,
+ "id": 1443,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -51227,7 +51281,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18736,
+ "id": 1444,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -51241,7 +51295,7 @@
],
"signatures": [
{
- "id": 18737,
+ "id": 1445,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -51269,7 +51323,7 @@
],
"parameters": [
{
- "id": 18738,
+ "id": 1446,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -51285,14 +51339,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18739,
+ "id": 1447,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18740,
+ "id": 1448,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -51317,7 +51371,7 @@
"types": [
{
"type": "reference",
- "target": 18725,
+ "target": 1433,
"name": "CreateCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -51330,7 +51384,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18725,
+ "target": 1433,
"name": "CreateCartWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -51346,7 +51400,7 @@
{
"title": "Properties",
"children": [
- 18740
+ 1448
]
}
],
@@ -51367,14 +51421,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18741,
+ "id": 1449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18742,
+ "id": 1450,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -51420,7 +51474,7 @@
}
},
{
- "id": 18743,
+ "id": 1451,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -51477,7 +51531,7 @@
}
},
{
- "id": 18744,
+ "id": 1452,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -51534,7 +51588,7 @@
}
},
{
- "id": 18745,
+ "id": 1453,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -51591,7 +51645,7 @@
}
},
{
- "id": 18746,
+ "id": 1454,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -51648,7 +51702,7 @@
}
},
{
- "id": 18747,
+ "id": 1455,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -51694,7 +51748,7 @@
}
},
{
- "id": 18748,
+ "id": 1456,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -51764,7 +51818,7 @@
}
},
{
- "id": 18749,
+ "id": 1457,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -51834,7 +51888,7 @@
}
},
{
- "id": 18750,
+ "id": 1458,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -51910,7 +51964,7 @@
}
},
{
- "id": 18751,
+ "id": 1459,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -51986,7 +52040,7 @@
}
},
{
- "id": 18752,
+ "id": 1460,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -52062,7 +52116,7 @@
}
},
{
- "id": 18753,
+ "id": 1461,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -52157,7 +52211,7 @@
}
},
{
- "id": 18754,
+ "id": 1462,
"name": "completed_at",
"variant": "declaration",
"kind": 1024,
@@ -52232,7 +52286,7 @@
}
},
{
- "id": 18755,
+ "id": 1463,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -52307,7 +52361,7 @@
}
},
{
- "id": 18756,
+ "id": 1464,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -52382,7 +52436,7 @@
}
},
{
- "id": 18757,
+ "id": 1465,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -52438,7 +52492,7 @@
}
},
{
- "id": 18758,
+ "id": 1466,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -52494,7 +52548,7 @@
}
},
{
- "id": 18759,
+ "id": 1467,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -52550,7 +52604,7 @@
}
},
{
- "id": 18760,
+ "id": 1468,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -52606,7 +52660,7 @@
}
},
{
- "id": 18761,
+ "id": 1469,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -52662,7 +52716,7 @@
}
},
{
- "id": 18762,
+ "id": 1470,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -52718,7 +52772,7 @@
}
},
{
- "id": 18763,
+ "id": 1471,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -52774,7 +52828,7 @@
}
},
{
- "id": 18764,
+ "id": 1472,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -52830,7 +52884,7 @@
}
},
{
- "id": 18765,
+ "id": 1473,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -52886,7 +52940,7 @@
}
},
{
- "id": 18766,
+ "id": 1474,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -52942,7 +52996,7 @@
}
},
{
- "id": 18767,
+ "id": 1475,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -52998,7 +53052,7 @@
}
},
{
- "id": 18768,
+ "id": 1476,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -53054,7 +53108,7 @@
}
},
{
- "id": 18769,
+ "id": 1477,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -53110,7 +53164,7 @@
}
},
{
- "id": 18770,
+ "id": 1478,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -53166,7 +53220,7 @@
}
},
{
- "id": 18771,
+ "id": 1479,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -53222,7 +53276,7 @@
}
},
{
- "id": 18772,
+ "id": 1480,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -53278,7 +53332,7 @@
}
},
{
- "id": 18773,
+ "id": 1481,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -53334,7 +53388,7 @@
}
},
{
- "id": 18774,
+ "id": 1482,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -53390,7 +53444,7 @@
}
},
{
- "id": 18775,
+ "id": 1483,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -53446,7 +53500,7 @@
}
},
{
- "id": 18776,
+ "id": 1484,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -53502,7 +53556,7 @@
}
},
{
- "id": 18777,
+ "id": 1485,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -53558,7 +53612,7 @@
}
},
{
- "id": 18778,
+ "id": 1486,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -53614,7 +53668,7 @@
}
},
{
- "id": 18779,
+ "id": 1487,
"name": "raw_original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -53670,7 +53724,7 @@
}
},
{
- "id": 18780,
+ "id": 1488,
"name": "raw_original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -53726,7 +53780,7 @@
}
},
{
- "id": 18781,
+ "id": 1489,
"name": "raw_original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -53782,7 +53836,7 @@
}
},
{
- "id": 18782,
+ "id": 1490,
"name": "raw_item_total",
"variant": "declaration",
"kind": 1024,
@@ -53838,7 +53892,7 @@
}
},
{
- "id": 18783,
+ "id": 1491,
"name": "raw_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -53894,7 +53948,7 @@
}
},
{
- "id": 18784,
+ "id": 1492,
"name": "raw_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -53950,7 +54004,7 @@
}
},
{
- "id": 18785,
+ "id": 1493,
"name": "raw_original_total",
"variant": "declaration",
"kind": 1024,
@@ -54006,7 +54060,7 @@
}
},
{
- "id": 18786,
+ "id": 1494,
"name": "raw_original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -54062,7 +54116,7 @@
}
},
{
- "id": 18787,
+ "id": 1495,
"name": "raw_original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -54118,7 +54172,7 @@
}
},
{
- "id": 18788,
+ "id": 1496,
"name": "raw_total",
"variant": "declaration",
"kind": 1024,
@@ -54174,7 +54228,7 @@
}
},
{
- "id": 18789,
+ "id": 1497,
"name": "raw_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -54230,7 +54284,7 @@
}
},
{
- "id": 18790,
+ "id": 1498,
"name": "raw_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -54286,7 +54340,7 @@
}
},
{
- "id": 18791,
+ "id": 1499,
"name": "raw_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -54342,7 +54396,7 @@
}
},
{
- "id": 18792,
+ "id": 1500,
"name": "raw_discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -54398,7 +54452,7 @@
}
},
{
- "id": 18793,
+ "id": 1501,
"name": "raw_gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -54454,7 +54508,7 @@
}
},
{
- "id": 18794,
+ "id": 1502,
"name": "raw_gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -54510,7 +54564,7 @@
}
},
{
- "id": 18795,
+ "id": 1503,
"name": "raw_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -54566,7 +54620,7 @@
}
},
{
- "id": 18796,
+ "id": 1504,
"name": "raw_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -54622,7 +54676,7 @@
}
},
{
- "id": 18797,
+ "id": 1505,
"name": "raw_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -54678,7 +54732,7 @@
}
},
{
- "id": 18798,
+ "id": 1506,
"name": "raw_original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -54734,7 +54788,7 @@
}
},
{
- "id": 18799,
+ "id": 1507,
"name": "raw_original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -54790,7 +54844,7 @@
}
},
{
- "id": 18800,
+ "id": 1508,
"name": "raw_original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -54846,7 +54900,7 @@
}
},
{
- "id": 18801,
+ "id": 1509,
"name": "raw_credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -54902,7 +54956,7 @@
}
},
{
- "id": 18802,
+ "id": 1510,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -54962,67 +55016,67 @@
{
"title": "Properties",
"children": [
- 18742,
- 18743,
- 18744,
- 18745,
- 18746,
- 18747,
- 18748,
- 18749,
- 18750,
- 18751,
- 18752,
- 18753,
- 18754,
- 18755,
- 18756,
- 18757,
- 18758,
- 18759,
- 18760,
- 18761,
- 18762,
- 18763,
- 18764,
- 18765,
- 18766,
- 18767,
- 18768,
- 18769,
- 18770,
- 18771,
- 18772,
- 18773,
- 18774,
- 18775,
- 18776,
- 18777,
- 18778,
- 18779,
- 18780,
- 18781,
- 18782,
- 18783,
- 18784,
- 18785,
- 18786,
- 18787,
- 18788,
- 18789,
- 18790,
- 18791,
- 18792,
- 18793,
- 18794,
- 18795,
- 18796,
- 18797,
- 18798,
- 18799,
- 18800,
- 18801,
- 18802
+ 1450,
+ 1451,
+ 1452,
+ 1453,
+ 1454,
+ 1455,
+ 1456,
+ 1457,
+ 1458,
+ 1459,
+ 1460,
+ 1461,
+ 1462,
+ 1463,
+ 1464,
+ 1465,
+ 1466,
+ 1467,
+ 1468,
+ 1469,
+ 1470,
+ 1471,
+ 1472,
+ 1473,
+ 1474,
+ 1475,
+ 1476,
+ 1477,
+ 1478,
+ 1479,
+ 1480,
+ 1481,
+ 1482,
+ 1483,
+ 1484,
+ 1485,
+ 1486,
+ 1487,
+ 1488,
+ 1489,
+ 1490,
+ 1491,
+ 1492,
+ 1493,
+ 1494,
+ 1495,
+ 1496,
+ 1497,
+ 1498,
+ 1499,
+ 1500,
+ 1501,
+ 1502,
+ 1503,
+ 1504,
+ 1505,
+ 1506,
+ 1507,
+ 1508,
+ 1509,
+ 1510
]
}
],
@@ -55067,14 +55121,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18803,
+ "id": 1511,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18804,
+ "id": 1512,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -55088,7 +55142,7 @@
],
"signatures": [
{
- "id": 18805,
+ "id": 1513,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -55102,7 +55156,7 @@
],
"parameters": [
{
- "id": 18806,
+ "id": 1514,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -55113,14 +55167,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18807,
+ "id": 1515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18808,
+ "id": 1516,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -55144,7 +55198,7 @@
{
"title": "Properties",
"children": [
- 18808
+ 1516
]
}
],
@@ -55226,7 +55280,7 @@
{
"title": "Methods",
"children": [
- 18804
+ 1512
]
}
],
@@ -55267,7 +55321,7 @@
}
},
{
- "id": 18809,
+ "id": 1517,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -55290,7 +55344,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18810,
+ "id": 1518,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -55304,7 +55358,7 @@
],
"signatures": [
{
- "id": 18811,
+ "id": 1519,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -55332,7 +55386,7 @@
],
"typeParameters": [
{
- "id": 18812,
+ "id": 1520,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -55343,7 +55397,7 @@
}
},
{
- "id": 18813,
+ "id": 1521,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -55356,7 +55410,7 @@
],
"parameters": [
{
- "id": 18814,
+ "id": 1522,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -55389,7 +55443,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -55400,13 +55454,13 @@
},
"trueType": {
"type": "reference",
- "target": 18725,
+ "target": 1433,
"name": "CreateCartWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -55439,7 +55493,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -55459,7 +55513,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -55479,7 +55533,7 @@
}
},
{
- "id": 18815,
+ "id": 1523,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -55502,7 +55556,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18816,
+ "id": 1524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -55516,7 +55570,7 @@
],
"signatures": [
{
- "id": 18817,
+ "id": 1525,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -55538,7 +55592,7 @@
}
},
{
- "id": 18818,
+ "id": 1526,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -55561,7 +55615,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18819,
+ "id": 1527,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -55575,7 +55629,7 @@
],
"signatures": [
{
- "id": 18820,
+ "id": 1528,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -55589,7 +55643,7 @@
],
"parameters": [
{
- "id": 18821,
+ "id": 1529,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -55615,7 +55669,7 @@
}
},
{
- "id": 18822,
+ "id": 1530,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -55641,14 +55695,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18823,
+ "id": 1531,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18824,
+ "id": 1532,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -55684,7 +55738,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18825,
+ "id": 1533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -55698,7 +55752,7 @@
],
"signatures": [
{
- "id": 18826,
+ "id": 1534,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -55712,7 +55766,7 @@
],
"typeParameters": [
{
- "id": 18827,
+ "id": 1535,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -55721,7 +55775,7 @@
],
"parameters": [
{
- "id": 18828,
+ "id": 1536,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -55736,14 +55790,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18829,
+ "id": 1537,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18830,
+ "id": 1538,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -55753,7 +55807,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L220"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L220"
}
],
"type": {
@@ -55766,14 +55820,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18831,
+ "id": 1539,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18832,
+ "id": 1540,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -55783,7 +55837,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 187,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
}
],
"type": {
@@ -55793,7 +55847,7 @@
"defaultValue": "..."
},
{
- "id": 18833,
+ "id": 1541,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -55803,7 +55857,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 188,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
}
],
"type": {
@@ -55813,7 +55867,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 18834,
+ "id": 1542,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -55841,7 +55895,7 @@
}
},
{
- "id": 18835,
+ "id": 1543,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -55869,7 +55923,7 @@
}
},
{
- "id": 18836,
+ "id": 1544,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -55897,7 +55951,7 @@
}
},
{
- "id": 18837,
+ "id": 1545,
"name": "shipping_address_id",
"variant": "declaration",
"kind": 1024,
@@ -55925,7 +55979,7 @@
}
},
{
- "id": 18838,
+ "id": 1546,
"name": "billing_address_id",
"variant": "declaration",
"kind": 1024,
@@ -55953,7 +56007,7 @@
}
},
{
- "id": 18839,
+ "id": 1547,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -55995,7 +56049,7 @@
}
},
{
- "id": 18840,
+ "id": 1548,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -56037,7 +56091,7 @@
}
},
{
- "id": 18841,
+ "id": 1549,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -56080,7 +56134,7 @@
}
},
{
- "id": 18842,
+ "id": 1550,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -56116,7 +56170,7 @@
}
},
{
- "id": 18843,
+ "id": 1551,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -56147,7 +56201,7 @@
}
},
{
- "id": 18844,
+ "id": 1552,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -56202,19 +56256,19 @@
{
"title": "Properties",
"children": [
- 18832,
- 18833,
- 18834,
- 18835,
- 18836,
- 18837,
- 18838,
- 18839,
- 18840,
- 18841,
- 18842,
- 18843,
- 18844
+ 1540,
+ 1541,
+ 1542,
+ 1543,
+ 1544,
+ 1545,
+ 1546,
+ 1547,
+ 1548,
+ 1549,
+ 1550,
+ 1551,
+ 1552
]
}
],
@@ -56223,7 +56277,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 185,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
}
]
}
@@ -56235,7 +56289,7 @@
"defaultValue": "cartInput"
},
{
- "id": 18845,
+ "id": 1553,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -56245,7 +56299,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L221"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L221"
}
],
"type": {
@@ -56275,8 +56329,8 @@
{
"title": "Properties",
"children": [
- 18830,
- 18845
+ 1538,
+ 1553
]
}
],
@@ -56285,7 +56339,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 219,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L219"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L219"
}
]
}
@@ -56296,7 +56350,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -56307,7 +56361,7 @@
}
},
{
- "id": 18846,
+ "id": 1554,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -56323,7 +56377,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -56344,14 +56398,14 @@
},
"signatures": [
{
- "id": 42084,
+ "id": 25023,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42085,
+ "id": 25024,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -56366,7 +56420,7 @@
},
"type": {
"type": "reference",
- "target": 18829,
+ "target": 1537,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -56380,7 +56434,7 @@
{
"title": "Properties",
"children": [
- 18824
+ 1532
]
}
],
@@ -56396,14 +56450,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18847,
+ "id": 1555,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18848,
+ "id": 1556,
"name": "cartCreated",
"variant": "declaration",
"kind": 1024,
@@ -56439,7 +56493,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18849,
+ "id": 1557,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -56453,7 +56507,7 @@
],
"signatures": [
{
- "id": 18850,
+ "id": 1558,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -56467,7 +56521,7 @@
],
"typeParameters": [
{
- "id": 18851,
+ "id": 1559,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -56476,7 +56530,7 @@
],
"parameters": [
{
- "id": 18852,
+ "id": 1560,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -56491,14 +56545,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18853,
+ "id": 1561,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18854,
+ "id": 1562,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -56506,9 +56560,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 253,
+ "line": 254,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L253"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L254"
}
],
"type": {
@@ -56533,7 +56587,7 @@
}
},
{
- "id": 18855,
+ "id": 1563,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -56549,9 +56603,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 254,
+ "line": 255,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L254"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L255"
}
],
"type": {
@@ -56574,17 +56628,17 @@
{
"title": "Properties",
"children": [
- 18854,
- 18855
+ 1562,
+ 1563
]
}
],
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 252,
+ "line": 253,
"character": 50,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L252"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L253"
}
]
}
@@ -56595,7 +56649,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -56606,7 +56660,7 @@
}
},
{
- "id": 18856,
+ "id": 1564,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -56622,7 +56676,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -56643,14 +56697,14 @@
},
"signatures": [
{
- "id": 42092,
+ "id": 25031,
"name": "cartCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42093,
+ "id": 25032,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -56665,7 +56719,7 @@
},
"type": {
"type": "reference",
- "target": 18853,
+ "target": 1561,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -56679,7 +56733,7 @@
{
"title": "Properties",
"children": [
- 18848
+ 1556
]
}
],
@@ -56695,14 +56749,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18857,
+ "id": 1565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18858,
+ "id": 1566,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -56770,7 +56824,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18859,
+ "id": 1567,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -56784,7 +56838,7 @@
],
"signatures": [
{
- "id": 18860,
+ "id": 1568,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -56798,7 +56852,7 @@
],
"typeParameters": [
{
- "id": 18861,
+ "id": 1569,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -56807,7 +56861,7 @@
],
"parameters": [
{
- "id": 18862,
+ "id": 1570,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -56822,14 +56876,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18863,
+ "id": 1571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18864,
+ "id": 1572,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -56839,7 +56893,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 137,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L137"
}
],
"type": {
@@ -56848,7 +56902,7 @@
}
},
{
- "id": 18865,
+ "id": 1573,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -56858,7 +56912,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 138,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L138"
}
],
"type": {
@@ -56881,7 +56935,7 @@
}
},
{
- "id": 18866,
+ "id": 1574,
"name": "salesChannel",
"variant": "declaration",
"kind": 1024,
@@ -56891,7 +56945,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 139,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L139"
}
],
"type": {
@@ -56900,14 +56954,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18867,
+ "id": 1575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18868,
+ "id": 1576,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -56953,7 +57007,7 @@
}
},
{
- "id": 18869,
+ "id": 1577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -56999,7 +57053,7 @@
}
},
{
- "id": 18870,
+ "id": 1578,
"name": "description",
"variant": "declaration",
"kind": 1024,
@@ -57058,7 +57112,7 @@
}
},
{
- "id": 18871,
+ "id": 1579,
"name": "is_disabled",
"variant": "declaration",
"kind": 1024,
@@ -57104,7 +57158,7 @@
}
},
{
- "id": 18872,
+ "id": 1580,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -57193,7 +57247,7 @@
}
},
{
- "id": 18873,
+ "id": 1581,
"name": "locations",
"variant": "declaration",
"kind": 1024,
@@ -57265,12 +57319,12 @@
{
"title": "Properties",
"children": [
- 18868,
- 18869,
- 18870,
- 18871,
- 18872,
- 18873
+ 1576,
+ 1577,
+ 1578,
+ 1579,
+ 1580,
+ 1581
]
}
],
@@ -57324,14 +57378,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18874,
+ "id": 1582,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18875,
+ "id": 1583,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -57345,7 +57399,7 @@
],
"signatures": [
{
- "id": 18876,
+ "id": 1584,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -57359,7 +57413,7 @@
],
"parameters": [
{
- "id": 18877,
+ "id": 1585,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -57370,14 +57424,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18878,
+ "id": 1586,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18879,
+ "id": 1587,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -57401,7 +57455,7 @@
{
"title": "Properties",
"children": [
- 18879
+ 1587
]
}
],
@@ -57492,7 +57546,7 @@
{
"title": "Methods",
"children": [
- 18875
+ 1583
]
}
],
@@ -57538,7 +57592,7 @@
}
},
{
- "id": 18880,
+ "id": 1588,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -57548,7 +57602,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L140"
}
],
"type": {
@@ -57557,14 +57611,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18881,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18882,
+ "id": 1590,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -57584,7 +57638,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -57640,7 +57694,7 @@
}
},
{
- "id": 18883,
+ "id": 1591,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -57660,7 +57714,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -57710,8 +57764,8 @@
{
"title": "Properties",
"children": [
- 18882,
- 18883
+ 1590,
+ 1591
]
}
],
@@ -57726,7 +57780,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -57739,7 +57793,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -57750,14 +57804,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18884,
+ "id": 1592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18885,
+ "id": 1593,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -57771,7 +57825,7 @@
],
"signatures": [
{
- "id": 18886,
+ "id": 1594,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -57785,7 +57839,7 @@
],
"parameters": [
{
- "id": 18887,
+ "id": 1595,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -57796,14 +57850,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18888,
+ "id": 1596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18889,
+ "id": 1597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -57827,7 +57881,7 @@
{
"title": "Properties",
"children": [
- 18889
+ 1597
]
}
],
@@ -57890,7 +57944,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -57906,7 +57960,7 @@
{
"title": "Methods",
"children": [
- 18885
+ 1593
]
}
],
@@ -57928,7 +57982,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -57940,7 +57994,7 @@
}
},
{
- "id": 18890,
+ "id": 1598,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -57958,7 +58012,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 141,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L141"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L141"
}
],
"type": {
@@ -57981,11 +58035,11 @@
{
"title": "Properties",
"children": [
- 18864,
- 18865,
- 18866,
- 18880,
- 18890
+ 1572,
+ 1573,
+ 1574,
+ 1588,
+ 1598
]
}
],
@@ -57994,7 +58048,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 136,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L136"
}
]
}
@@ -58029,7 +58083,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -58040,7 +58094,7 @@
}
},
{
- "id": 18891,
+ "id": 1599,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -58056,7 +58110,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -58077,14 +58131,14 @@
},
"signatures": [
{
- "id": 42080,
+ "id": 25019,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42081,
+ "id": 25020,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -58099,7 +58153,7 @@
},
"type": {
"type": "reference",
- "target": 18863,
+ "target": 1571,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -58113,7 +58167,7 @@
{
"title": "Properties",
"children": [
- 18858
+ 1566
]
}
],
@@ -58132,7 +58186,7 @@
],
"documents": [
{
- "id": 42077,
+ "id": 25016,
"name": "findSalesChannelStep",
"variant": "document",
"kind": 8388608,
@@ -58158,7 +58212,7 @@
"frontmatter": {}
},
{
- "id": 42078,
+ "id": 25017,
"name": "findOneOrAnyRegionStep",
"variant": "document",
"kind": 8388608,
@@ -58184,7 +58238,7 @@
"frontmatter": {}
},
{
- "id": 42079,
+ "id": 25018,
"name": "findOrCreateCustomerStep",
"variant": "document",
"kind": 8388608,
@@ -58210,7 +58264,7 @@
"frontmatter": {}
},
{
- "id": 42082,
+ "id": 25021,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -58236,7 +58290,7 @@
"frontmatter": {}
},
{
- "id": 42083,
+ "id": 25022,
"name": "confirmVariantInventoryWorkflow",
"variant": "document",
"kind": 8388608,
@@ -58262,7 +58316,7 @@
"frontmatter": {}
},
{
- "id": 42086,
+ "id": 25025,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -58288,7 +58342,7 @@
"frontmatter": {}
},
{
- "id": 42087,
+ "id": 25026,
"name": "createCartsStep",
"variant": "document",
"kind": 8388608,
@@ -58314,7 +58368,7 @@
"frontmatter": {}
},
{
- "id": 42088,
+ "id": 25027,
"name": "updateTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -58340,7 +58394,7 @@
"frontmatter": {}
},
{
- "id": 42089,
+ "id": 25028,
"name": "updateCartPromotionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -58366,7 +58420,7 @@
"frontmatter": {}
},
{
- "id": 42090,
+ "id": 25029,
"name": "refreshPaymentCollectionForCartWorkflow",
"variant": "document",
"kind": 8388608,
@@ -58392,7 +58446,7 @@
"frontmatter": {}
},
{
- "id": 42091,
+ "id": 25030,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -58418,7 +58472,7 @@
"frontmatter": {}
},
{
- "id": 42094,
+ "id": 25033,
"name": "cartCreated",
"variant": "document",
"kind": 8388608,
@@ -58445,21 +58499,21 @@
}
],
"childrenIncludingDocuments": [
- 18735,
- 18809,
- 18815,
- 18818,
- 18822
+ 1443,
+ 1517,
+ 1523,
+ 1526,
+ 1530
],
"groups": [
{
"title": "Properties",
"children": [
- 18735,
- 18809,
- 18815,
- 18818,
- 18822
+ 1443,
+ 1517,
+ 1523,
+ 1526,
+ 1530
]
}
],
@@ -58468,12 +58522,12 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L111"
}
],
"signatures": [
{
- "id": 18728,
+ "id": 1436,
"name": "createCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -58538,12 +58592,12 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L111"
}
],
"typeParameters": [
{
- "id": 18729,
+ "id": 1437,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -58554,7 +58608,7 @@
}
},
{
- "id": 18730,
+ "id": 1438,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -58567,7 +58621,7 @@
],
"parameters": [
{
- "id": 18731,
+ "id": 1439,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -58591,14 +58645,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18732,
+ "id": 1440,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18733,
+ "id": 1441,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -58621,7 +58675,7 @@
}
},
{
- "id": 18734,
+ "id": 1442,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -58648,8 +58702,8 @@
{
"title": "Properties",
"children": [
- 18733,
- 18734
+ 1441,
+ 1442
]
}
],
@@ -58724,7 +58778,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18725,
+ "target": 1433,
"name": "CreateCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -58739,14 +58793,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -58761,14 +58815,14 @@
]
},
{
- "id": 18829,
+ "id": 1537,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18830,
+ "id": 1538,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -58778,7 +58832,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L220"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L220"
}
],
"type": {
@@ -58791,14 +58845,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18831,
+ "id": 1539,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18832,
+ "id": 1540,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -58808,7 +58862,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 187,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
}
],
"type": {
@@ -58818,7 +58872,7 @@
"defaultValue": "..."
},
{
- "id": 18833,
+ "id": 1541,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -58828,7 +58882,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 188,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
}
],
"type": {
@@ -58838,7 +58892,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 18834,
+ "id": 1542,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -58866,7 +58920,7 @@
}
},
{
- "id": 18835,
+ "id": 1543,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -58894,7 +58948,7 @@
}
},
{
- "id": 18836,
+ "id": 1544,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -58922,7 +58976,7 @@
}
},
{
- "id": 18837,
+ "id": 1545,
"name": "shipping_address_id",
"variant": "declaration",
"kind": 1024,
@@ -58950,7 +59004,7 @@
}
},
{
- "id": 18838,
+ "id": 1546,
"name": "billing_address_id",
"variant": "declaration",
"kind": 1024,
@@ -58978,7 +59032,7 @@
}
},
{
- "id": 18839,
+ "id": 1547,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -59020,7 +59074,7 @@
}
},
{
- "id": 18840,
+ "id": 1548,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -59062,7 +59116,7 @@
}
},
{
- "id": 18841,
+ "id": 1549,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -59105,7 +59159,7 @@
}
},
{
- "id": 18842,
+ "id": 1550,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -59141,7 +59195,7 @@
}
},
{
- "id": 18843,
+ "id": 1551,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -59172,7 +59226,7 @@
}
},
{
- "id": 18844,
+ "id": 1552,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -59227,19 +59281,19 @@
{
"title": "Properties",
"children": [
- 18832,
- 18833,
- 18834,
- 18835,
- 18836,
- 18837,
- 18838,
- 18839,
- 18840,
- 18841,
- 18842,
- 18843,
- 18844
+ 1540,
+ 1541,
+ 1542,
+ 1543,
+ 1544,
+ 1545,
+ 1546,
+ 1547,
+ 1548,
+ 1549,
+ 1550,
+ 1551,
+ 1552
]
}
],
@@ -59248,7 +59302,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 185,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
}
]
}
@@ -59260,7 +59314,7 @@
"defaultValue": "cartInput"
},
{
- "id": 18845,
+ "id": 1553,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -59270,7 +59324,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L221"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L221"
}
],
"type": {
@@ -59300,8 +59354,8 @@
{
"title": "Properties",
"children": [
- 18830,
- 18845
+ 1538,
+ 1553
]
}
],
@@ -59310,19 +59364,19 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 219,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L219"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L219"
}
]
},
{
- "id": 18831,
+ "id": 1539,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18832,
+ "id": 1540,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -59332,7 +59386,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 187,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
}
],
"type": {
@@ -59342,7 +59396,7 @@
"defaultValue": "..."
},
{
- "id": 18833,
+ "id": 1541,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -59352,7 +59406,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 188,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
}
],
"type": {
@@ -59362,7 +59416,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 18834,
+ "id": 1542,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -59390,7 +59444,7 @@
}
},
{
- "id": 18835,
+ "id": 1543,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -59418,7 +59472,7 @@
}
},
{
- "id": 18836,
+ "id": 1544,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -59446,7 +59500,7 @@
}
},
{
- "id": 18837,
+ "id": 1545,
"name": "shipping_address_id",
"variant": "declaration",
"kind": 1024,
@@ -59474,7 +59528,7 @@
}
},
{
- "id": 18838,
+ "id": 1546,
"name": "billing_address_id",
"variant": "declaration",
"kind": 1024,
@@ -59502,7 +59556,7 @@
}
},
{
- "id": 18839,
+ "id": 1547,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -59544,7 +59598,7 @@
}
},
{
- "id": 18840,
+ "id": 1548,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -59586,7 +59640,7 @@
}
},
{
- "id": 18841,
+ "id": 1549,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -59629,7 +59683,7 @@
}
},
{
- "id": 18842,
+ "id": 1550,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -59665,7 +59719,7 @@
}
},
{
- "id": 18843,
+ "id": 1551,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -59696,7 +59750,7 @@
}
},
{
- "id": 18844,
+ "id": 1552,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -59751,19 +59805,19 @@
{
"title": "Properties",
"children": [
- 18832,
- 18833,
- 18834,
- 18835,
- 18836,
- 18837,
- 18838,
- 18839,
- 18840,
- 18841,
- 18842,
- 18843,
- 18844
+ 1540,
+ 1541,
+ 1542,
+ 1543,
+ 1544,
+ 1545,
+ 1546,
+ 1547,
+ 1548,
+ 1549,
+ 1550,
+ 1551,
+ 1552
]
}
],
@@ -59772,12 +59826,12 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 185,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
}
]
},
{
- "id": 18832,
+ "id": 1540,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -59787,7 +59841,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 187,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
}
],
"type": {
@@ -59797,7 +59851,7 @@
"defaultValue": "..."
},
{
- "id": 18833,
+ "id": 1541,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -59807,7 +59861,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 188,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
}
],
"type": {
@@ -59817,7 +59871,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 18830,
+ "id": 1538,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -59827,7 +59881,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L220"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L220"
}
],
"type": {
@@ -59840,14 +59894,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18831,
+ "id": 1539,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18832,
+ "id": 1540,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -59857,7 +59911,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 187,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L187"
}
],
"type": {
@@ -59867,7 +59921,7 @@
"defaultValue": "..."
},
{
- "id": 18833,
+ "id": 1541,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -59877,7 +59931,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 188,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L188"
}
],
"type": {
@@ -59887,7 +59941,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 18834,
+ "id": 1542,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -59915,7 +59969,7 @@
}
},
{
- "id": 18835,
+ "id": 1543,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -59943,7 +59997,7 @@
}
},
{
- "id": 18836,
+ "id": 1544,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -59971,7 +60025,7 @@
}
},
{
- "id": 18837,
+ "id": 1545,
"name": "shipping_address_id",
"variant": "declaration",
"kind": 1024,
@@ -59999,7 +60053,7 @@
}
},
{
- "id": 18838,
+ "id": 1546,
"name": "billing_address_id",
"variant": "declaration",
"kind": 1024,
@@ -60027,7 +60081,7 @@
}
},
{
- "id": 18839,
+ "id": 1547,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -60069,7 +60123,7 @@
}
},
{
- "id": 18840,
+ "id": 1548,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -60111,7 +60165,7 @@
}
},
{
- "id": 18841,
+ "id": 1549,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -60154,7 +60208,7 @@
}
},
{
- "id": 18842,
+ "id": 1550,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -60190,7 +60244,7 @@
}
},
{
- "id": 18843,
+ "id": 1551,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -60221,7 +60275,7 @@
}
},
{
- "id": 18844,
+ "id": 1552,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -60276,19 +60330,19 @@
{
"title": "Properties",
"children": [
- 18832,
- 18833,
- 18834,
- 18835,
- 18836,
- 18837,
- 18838,
- 18839,
- 18840,
- 18841,
- 18842,
- 18843,
- 18844
+ 1540,
+ 1541,
+ 1542,
+ 1543,
+ 1544,
+ 1545,
+ 1546,
+ 1547,
+ 1548,
+ 1549,
+ 1550,
+ 1551,
+ 1552
]
}
],
@@ -60297,7 +60351,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 185,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L185"
}
]
}
@@ -60309,7 +60363,7 @@
"defaultValue": "cartInput"
},
{
- "id": 18845,
+ "id": 1553,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -60319,7 +60373,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L221"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L221"
}
],
"type": {
@@ -60345,14 +60399,14 @@
"defaultValue": "cartToCreate"
},
{
- "id": 18853,
+ "id": 1561,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18854,
+ "id": 1562,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -60360,9 +60414,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 253,
+ "line": 254,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L253"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L254"
}
],
"type": {
@@ -60387,7 +60441,7 @@
}
},
{
- "id": 18855,
+ "id": 1563,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -60403,9 +60457,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 254,
+ "line": 255,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L254"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L255"
}
],
"type": {
@@ -60428,22 +60482,22 @@
{
"title": "Properties",
"children": [
- 18854,
- 18855
+ 1562,
+ 1563
]
}
],
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 252,
+ "line": 253,
"character": 50,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L252"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L253"
}
]
},
{
- "id": 18854,
+ "id": 1562,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -60451,9 +60505,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 253,
+ "line": 254,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L253"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L254"
}
],
"type": {
@@ -60478,7 +60532,7 @@
}
},
{
- "id": 18855,
+ "id": 1563,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -60494,9 +60548,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
- "line": 254,
+ "line": 255,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L254"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L255"
}
],
"type": {
@@ -60515,14 +60569,14 @@
"defaultValue": "input.additional_data"
},
{
- "id": 18863,
+ "id": 1571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18864,
+ "id": 1572,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -60532,7 +60586,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 137,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L137"
}
],
"type": {
@@ -60541,7 +60595,7 @@
}
},
{
- "id": 18865,
+ "id": 1573,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -60551,7 +60605,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 138,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L138"
}
],
"type": {
@@ -60574,7 +60628,7 @@
}
},
{
- "id": 18866,
+ "id": 1574,
"name": "salesChannel",
"variant": "declaration",
"kind": 1024,
@@ -60584,7 +60638,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 139,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L139"
}
],
"type": {
@@ -60593,14 +60647,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18867,
+ "id": 1575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18868,
+ "id": 1576,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -60646,7 +60700,7 @@
}
},
{
- "id": 18869,
+ "id": 1577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -60692,7 +60746,7 @@
}
},
{
- "id": 18870,
+ "id": 1578,
"name": "description",
"variant": "declaration",
"kind": 1024,
@@ -60751,7 +60805,7 @@
}
},
{
- "id": 18871,
+ "id": 1579,
"name": "is_disabled",
"variant": "declaration",
"kind": 1024,
@@ -60797,7 +60851,7 @@
}
},
{
- "id": 18872,
+ "id": 1580,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -60886,7 +60940,7 @@
}
},
{
- "id": 18873,
+ "id": 1581,
"name": "locations",
"variant": "declaration",
"kind": 1024,
@@ -60958,12 +61012,12 @@
{
"title": "Properties",
"children": [
- 18868,
- 18869,
- 18870,
- 18871,
- 18872,
- 18873
+ 1576,
+ 1577,
+ 1578,
+ 1579,
+ 1580,
+ 1581
]
}
],
@@ -61017,14 +61071,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18874,
+ "id": 1582,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18875,
+ "id": 1583,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -61038,7 +61092,7 @@
],
"signatures": [
{
- "id": 18876,
+ "id": 1584,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -61052,7 +61106,7 @@
],
"parameters": [
{
- "id": 18877,
+ "id": 1585,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -61063,14 +61117,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18878,
+ "id": 1586,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18879,
+ "id": 1587,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -61094,7 +61148,7 @@
{
"title": "Properties",
"children": [
- 18879
+ 1587
]
}
],
@@ -61185,7 +61239,7 @@
{
"title": "Methods",
"children": [
- 18875
+ 1583
]
}
],
@@ -61231,7 +61285,7 @@
}
},
{
- "id": 18880,
+ "id": 1588,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -61241,7 +61295,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L140"
}
],
"type": {
@@ -61250,14 +61304,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18881,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18882,
+ "id": 1590,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -61277,7 +61331,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -61333,7 +61387,7 @@
}
},
{
- "id": 18883,
+ "id": 1591,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -61353,7 +61407,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -61403,8 +61457,8 @@
{
"title": "Properties",
"children": [
- 18882,
- 18883
+ 1590,
+ 1591
]
}
],
@@ -61419,7 +61473,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -61432,7 +61486,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -61443,14 +61497,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18884,
+ "id": 1592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18885,
+ "id": 1593,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -61464,7 +61518,7 @@
],
"signatures": [
{
- "id": 18886,
+ "id": 1594,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -61478,7 +61532,7 @@
],
"parameters": [
{
- "id": 18887,
+ "id": 1595,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -61489,14 +61543,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18888,
+ "id": 1596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18889,
+ "id": 1597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -61520,7 +61574,7 @@
{
"title": "Properties",
"children": [
- 18889
+ 1597
]
}
],
@@ -61583,7 +61637,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -61599,7 +61653,7 @@
{
"title": "Methods",
"children": [
- 18885
+ 1593
]
}
],
@@ -61621,7 +61675,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -61633,7 +61687,7 @@
}
},
{
- "id": 18890,
+ "id": 1598,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -61651,7 +61705,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 141,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L141"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L141"
}
],
"type": {
@@ -61674,11 +61728,11 @@
{
"title": "Properties",
"children": [
- 18864,
- 18865,
- 18866,
- 18880,
- 18890
+ 1572,
+ 1573,
+ 1574,
+ 1588,
+ 1598
]
}
],
@@ -61687,12 +61741,12 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 136,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L136"
}
]
},
{
- "id": 18864,
+ "id": 1572,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -61702,7 +61756,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 137,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L137"
}
],
"type": {
@@ -61711,7 +61765,7 @@
}
},
{
- "id": 18865,
+ "id": 1573,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -61721,7 +61775,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 138,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L138"
}
],
"type": {
@@ -61744,7 +61798,7 @@
}
},
{
- "id": 18866,
+ "id": 1574,
"name": "salesChannel",
"variant": "declaration",
"kind": 1024,
@@ -61754,7 +61808,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 139,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L139"
}
],
"type": {
@@ -61763,14 +61817,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18867,
+ "id": 1575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18868,
+ "id": 1576,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -61816,7 +61870,7 @@
}
},
{
- "id": 18869,
+ "id": 1577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -61862,7 +61916,7 @@
}
},
{
- "id": 18870,
+ "id": 1578,
"name": "description",
"variant": "declaration",
"kind": 1024,
@@ -61921,7 +61975,7 @@
}
},
{
- "id": 18871,
+ "id": 1579,
"name": "is_disabled",
"variant": "declaration",
"kind": 1024,
@@ -61967,7 +62021,7 @@
}
},
{
- "id": 18872,
+ "id": 1580,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -62056,7 +62110,7 @@
}
},
{
- "id": 18873,
+ "id": 1581,
"name": "locations",
"variant": "declaration",
"kind": 1024,
@@ -62128,12 +62182,12 @@
{
"title": "Properties",
"children": [
- 18868,
- 18869,
- 18870,
- 18871,
- 18872,
- 18873
+ 1576,
+ 1577,
+ 1578,
+ 1579,
+ 1580,
+ 1581
]
}
],
@@ -62187,14 +62241,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18874,
+ "id": 1582,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18875,
+ "id": 1583,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -62208,7 +62262,7 @@
],
"signatures": [
{
- "id": 18876,
+ "id": 1584,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -62222,7 +62276,7 @@
],
"parameters": [
{
- "id": 18877,
+ "id": 1585,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -62233,14 +62287,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18878,
+ "id": 1586,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18879,
+ "id": 1587,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -62264,7 +62318,7 @@
{
"title": "Properties",
"children": [
- 18879
+ 1587
]
}
],
@@ -62355,7 +62409,7 @@
{
"title": "Methods",
"children": [
- 18875
+ 1583
]
}
],
@@ -62401,7 +62455,7 @@
}
},
{
- "id": 18880,
+ "id": 1588,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -62411,7 +62465,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L140"
}
],
"type": {
@@ -62420,14 +62474,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18881,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18882,
+ "id": 1590,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -62447,7 +62501,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -62503,7 +62557,7 @@
}
},
{
- "id": 18883,
+ "id": 1591,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -62523,7 +62577,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -62573,8 +62627,8 @@
{
"title": "Properties",
"children": [
- 18882,
- 18883
+ 1590,
+ 1591
]
}
],
@@ -62589,7 +62643,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -62602,7 +62656,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -62613,14 +62667,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18884,
+ "id": 1592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18885,
+ "id": 1593,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -62634,7 +62688,7 @@
],
"signatures": [
{
- "id": 18886,
+ "id": 1594,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -62648,7 +62702,7 @@
],
"parameters": [
{
- "id": 18887,
+ "id": 1595,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -62659,14 +62713,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18888,
+ "id": 1596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18889,
+ "id": 1597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -62690,7 +62744,7 @@
{
"title": "Properties",
"children": [
- 18889
+ 1597
]
}
],
@@ -62753,7 +62807,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -62769,7 +62823,7 @@
{
"title": "Methods",
"children": [
- 18885
+ 1593
]
}
],
@@ -62791,7 +62845,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -62803,7 +62857,7 @@
}
},
{
- "id": 18890,
+ "id": 1598,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -62821,7 +62875,7 @@
"fileName": "core-flows/src/cart/workflows/create-carts.ts",
"line": 141,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-carts.ts#L141"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-carts.ts#L141"
}
],
"type": {
@@ -62840,7 +62894,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 18896,
+ "id": 1604,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -62852,7 +62906,7 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 28,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
}
],
"type": {
@@ -62861,7 +62915,7 @@
}
},
{
- "id": 18894,
+ "id": 1602,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -62879,7 +62933,7 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
}
],
"type": {
@@ -62897,14 +62951,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18895,
+ "id": 1603,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18896,
+ "id": 1604,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -62916,7 +62970,7 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 28,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
}
],
"type": {
@@ -62929,7 +62983,7 @@
{
"title": "Properties",
"children": [
- 18896
+ 1604
]
}
],
@@ -62938,7 +62992,7 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 28,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L28"
}
]
}
@@ -62947,7 +63001,7 @@
}
},
{
- "id": 18897,
+ "id": 1605,
"name": "validateExistingPaymentCollectionStep",
"variant": "declaration",
"kind": 64,
@@ -62991,7 +63045,7 @@
},
"children": [
{
- "id": 18906,
+ "id": 1614,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -63009,7 +63063,7 @@
}
},
{
- "id": 18907,
+ "id": 1615,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -63031,8 +63085,8 @@
{
"title": "Properties",
"children": [
- 18906,
- 18907
+ 1614,
+ 1615
]
}
],
@@ -63041,12 +63095,12 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L52"
}
],
"signatures": [
{
- "id": 18898,
+ "id": 1606,
"name": "validateExistingPaymentCollectionStep",
"variant": "signature",
"kind": 4096,
@@ -63093,12 +63147,12 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L52"
}
],
"parameters": [
{
- "id": 18899,
+ "id": 1607,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -63108,7 +63162,7 @@
"types": [
{
"type": "reference",
- "target": 18892,
+ "target": 1600,
"name": "ValidateExistingPaymentCollectionStepInput",
"package": "@medusajs/core-flows"
},
@@ -63121,7 +63175,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 18892,
+ "target": 1600,
"name": "ValidateExistingPaymentCollectionStepInput",
"package": "@medusajs/core-flows"
}
@@ -63154,14 +63208,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18900,
+ "id": 1608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18901,
+ "id": 1609,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -63175,7 +63229,7 @@
],
"signatures": [
{
- "id": 18902,
+ "id": 1610,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -63189,7 +63243,7 @@
],
"parameters": [
{
- "id": 18903,
+ "id": 1611,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -63200,14 +63254,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18904,
+ "id": 1612,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18905,
+ "id": 1613,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -63231,7 +63285,7 @@
{
"title": "Properties",
"children": [
- 18905
+ 1613
]
}
],
@@ -63308,7 +63362,7 @@
{
"title": "Methods",
"children": [
- 18901
+ 1609
]
}
],
@@ -63342,7 +63396,7 @@
]
},
{
- "id": 18908,
+ "id": 1616,
"name": "createPaymentCollectionForCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -63354,7 +63408,7 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 61,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L61"
}
],
"type": {
@@ -63364,7 +63418,7 @@
"defaultValue": "\"create-payment-collection-for-cart\""
},
{
- "id": 18909,
+ "id": 1617,
"name": "createPaymentCollectionForCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -63403,12 +63457,21 @@
"text": "locking,remote query,payment,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 18917,
+ "id": 1625,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -63431,7 +63494,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18918,
+ "id": 1626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -63445,7 +63508,7 @@
],
"signatures": [
{
- "id": 18919,
+ "id": 1627,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -63473,7 +63536,7 @@
],
"parameters": [
{
- "id": 18920,
+ "id": 1628,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -63489,14 +63552,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18921,
+ "id": 1629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18922,
+ "id": 1630,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -63556,7 +63619,7 @@
{
"title": "Properties",
"children": [
- 18922
+ 1630
]
}
],
@@ -63577,14 +63640,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18923,
+ "id": 1631,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18924,
+ "id": 1632,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -63630,7 +63693,7 @@
}
},
{
- "id": 18925,
+ "id": 1633,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -63676,7 +63739,7 @@
}
},
{
- "id": 18926,
+ "id": 1634,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -63732,7 +63795,7 @@
}
},
{
- "id": 18927,
+ "id": 1635,
"name": "authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -63785,7 +63848,7 @@
}
},
{
- "id": 18928,
+ "id": 1636,
"name": "refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -63838,7 +63901,7 @@
}
},
{
- "id": 18929,
+ "id": 1637,
"name": "captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -63891,7 +63954,7 @@
}
},
{
- "id": 18930,
+ "id": 1638,
"name": "completed_at",
"variant": "declaration",
"kind": 1024,
@@ -63966,7 +64029,7 @@
}
},
{
- "id": 18931,
+ "id": 1639,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -64041,7 +64104,7 @@
}
},
{
- "id": 18932,
+ "id": 1640,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -64116,7 +64179,7 @@
}
},
{
- "id": 18933,
+ "id": 1641,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -64203,7 +64266,7 @@
}
},
{
- "id": 18934,
+ "id": 1642,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -64259,7 +64322,7 @@
}
},
{
- "id": 18935,
+ "id": 1643,
"name": "payment_providers",
"variant": "declaration",
"kind": 1024,
@@ -64324,7 +64387,7 @@
}
},
{
- "id": 18936,
+ "id": 1644,
"name": "payment_sessions",
"variant": "declaration",
"kind": 1024,
@@ -64400,7 +64463,7 @@
}
},
{
- "id": 18937,
+ "id": 1645,
"name": "payments",
"variant": "declaration",
"kind": 1024,
@@ -64480,20 +64543,20 @@
{
"title": "Properties",
"children": [
- 18924,
- 18925,
- 18926,
- 18927,
- 18928,
- 18929,
- 18930,
- 18931,
- 18932,
- 18933,
- 18934,
- 18935,
- 18936,
- 18937
+ 1632,
+ 1633,
+ 1634,
+ 1635,
+ 1636,
+ 1637,
+ 1638,
+ 1639,
+ 1640,
+ 1641,
+ 1642,
+ 1643,
+ 1644,
+ 1645
]
}
],
@@ -64538,14 +64601,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18938,
+ "id": 1646,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18939,
+ "id": 1647,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -64559,7 +64622,7 @@
],
"signatures": [
{
- "id": 18940,
+ "id": 1648,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -64573,7 +64636,7 @@
],
"parameters": [
{
- "id": 18941,
+ "id": 1649,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -64584,14 +64647,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18942,
+ "id": 1650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18943,
+ "id": 1651,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -64615,7 +64678,7 @@
{
"title": "Properties",
"children": [
- 18943
+ 1651
]
}
],
@@ -64697,7 +64760,7 @@
{
"title": "Methods",
"children": [
- 18939
+ 1647
]
}
],
@@ -64738,7 +64801,7 @@
}
},
{
- "id": 18944,
+ "id": 1652,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -64761,7 +64824,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18945,
+ "id": 1653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -64775,7 +64838,7 @@
],
"signatures": [
{
- "id": 18946,
+ "id": 1654,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -64803,7 +64866,7 @@
],
"typeParameters": [
{
- "id": 18947,
+ "id": 1655,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -64814,7 +64877,7 @@
}
},
{
- "id": 18948,
+ "id": 1656,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -64827,7 +64890,7 @@
],
"parameters": [
{
- "id": 18949,
+ "id": 1657,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -64860,7 +64923,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -64880,7 +64943,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -64913,7 +64976,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -64933,7 +64996,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -64953,7 +65016,7 @@
}
},
{
- "id": 18950,
+ "id": 1658,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -64976,7 +65039,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18951,
+ "id": 1659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -64990,7 +65053,7 @@
],
"signatures": [
{
- "id": 18952,
+ "id": 1660,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -65012,7 +65075,7 @@
}
},
{
- "id": 18953,
+ "id": 1661,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -65035,7 +65098,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18954,
+ "id": 1662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65049,7 +65112,7 @@
],
"signatures": [
{
- "id": 18955,
+ "id": 1663,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -65063,7 +65126,7 @@
],
"parameters": [
{
- "id": 18956,
+ "id": 1664,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -65089,7 +65152,7 @@
}
},
{
- "id": 18957,
+ "id": 1665,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -65112,7 +65175,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18958,
+ "id": 1666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65123,7 +65186,7 @@
],
"documents": [
{
- "id": 42095,
+ "id": 25034,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -65149,7 +65212,7 @@
"frontmatter": {}
},
{
- "id": 42096,
+ "id": 25035,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -65175,7 +65238,7 @@
"frontmatter": {}
},
{
- "id": 42097,
+ "id": 25036,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -65201,7 +65264,7 @@
"frontmatter": {}
},
{
- "id": 42098,
+ "id": 25037,
"name": "validateExistingPaymentCollectionStep",
"variant": "document",
"kind": 8388608,
@@ -65227,7 +65290,7 @@
"frontmatter": {}
},
{
- "id": 42099,
+ "id": 25038,
"name": "createPaymentCollectionsStep",
"variant": "document",
"kind": 8388608,
@@ -65253,7 +65316,7 @@
"frontmatter": {}
},
{
- "id": 42100,
+ "id": 25039,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -65280,21 +65343,21 @@
}
],
"childrenIncludingDocuments": [
- 18917,
- 18944,
- 18950,
- 18953,
- 18957
+ 1625,
+ 1652,
+ 1658,
+ 1661,
+ 1665
],
"groups": [
{
"title": "Properties",
"children": [
- 18917,
- 18944,
- 18950,
- 18953,
- 18957
+ 1625,
+ 1652,
+ 1658,
+ 1661,
+ 1665
]
}
],
@@ -65303,12 +65366,12 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 84,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L84"
}
],
"signatures": [
{
- "id": 18910,
+ "id": 1618,
"name": "createPaymentCollectionForCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -65347,6 +65410,15 @@
"text": "locking,remote query,payment,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
@@ -65355,12 +65427,12 @@
"fileName": "core-flows/src/cart/workflows/create-payment-collection-for-cart.ts",
"line": 84,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/create-payment-collection-for-cart.ts#L84"
}
],
"typeParameters": [
{
- "id": 18911,
+ "id": 1619,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -65371,7 +65443,7 @@
}
},
{
- "id": 18912,
+ "id": 1620,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -65384,7 +65456,7 @@
],
"parameters": [
{
- "id": 18913,
+ "id": 1621,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -65408,14 +65480,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18914,
+ "id": 1622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18915,
+ "id": 1623,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -65438,7 +65510,7 @@
}
},
{
- "id": 18916,
+ "id": 1624,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -65465,8 +65537,8 @@
{
"title": "Properties",
"children": [
- 18915,
- 18916
+ 1623,
+ 1624
]
}
],
@@ -65559,14 +65631,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -65581,7 +65653,7 @@
]
},
{
- "id": 18959,
+ "id": 1667,
"name": "deleteCartCreditLinesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -65593,7 +65665,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L9"
}
],
"type": {
@@ -65603,7 +65675,7 @@
"defaultValue": "\"delete-cart-credit-lines\""
},
{
- "id": 18960,
+ "id": 1668,
"name": "deleteCartCreditLinesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -65629,7 +65701,7 @@
},
"children": [
{
- "id": 18970,
+ "id": 1678,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -65652,7 +65724,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18971,
+ "id": 1679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65666,7 +65738,7 @@
],
"signatures": [
{
- "id": 18972,
+ "id": 1680,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -65694,7 +65766,7 @@
],
"parameters": [
{
- "id": 18973,
+ "id": 1681,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -65710,14 +65782,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18974,
+ "id": 1682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18975,
+ "id": 1683,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -65743,14 +65815,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18976,
+ "id": 1684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18977,
+ "id": 1685,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -65768,7 +65840,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -65784,7 +65856,7 @@
{
"title": "Properties",
"children": [
- 18977
+ 1685
]
}
],
@@ -65793,7 +65865,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 15,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
}
]
}
@@ -65808,14 +65880,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18978,
+ "id": 1686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18979,
+ "id": 1687,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -65833,7 +65905,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -65849,7 +65921,7 @@
{
"title": "Properties",
"children": [
- 18979
+ 1687
]
}
],
@@ -65858,7 +65930,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 15,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
}
]
}
@@ -65875,7 +65947,7 @@
{
"title": "Properties",
"children": [
- 18975
+ 1683
]
}
],
@@ -65900,7 +65972,7 @@
}
},
{
- "id": 18980,
+ "id": 1688,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -65923,7 +65995,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18981,
+ "id": 1689,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65937,7 +66009,7 @@
],
"signatures": [
{
- "id": 18982,
+ "id": 1690,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -65965,7 +66037,7 @@
],
"typeParameters": [
{
- "id": 18983,
+ "id": 1691,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -65976,7 +66048,7 @@
}
},
{
- "id": 18984,
+ "id": 1692,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -65989,7 +66061,7 @@
],
"parameters": [
{
- "id": 18985,
+ "id": 1693,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -66022,7 +66094,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -66034,14 +66106,14 @@
"trueType": {
"type": "reflection",
"declaration": {
- "id": 18986,
+ "id": 1694,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18987,
+ "id": 1695,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -66059,7 +66131,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -66075,7 +66147,7 @@
{
"title": "Properties",
"children": [
- 18987
+ 1695
]
}
],
@@ -66084,14 +66156,14 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 15,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
}
]
}
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -66124,7 +66196,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -66139,7 +66211,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -66159,7 +66231,7 @@
}
},
{
- "id": 18988,
+ "id": 1696,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -66182,7 +66254,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18989,
+ "id": 1697,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66196,7 +66268,7 @@
],
"signatures": [
{
- "id": 18990,
+ "id": 1698,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -66218,7 +66290,7 @@
}
},
{
- "id": 18991,
+ "id": 1699,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -66241,7 +66313,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18992,
+ "id": 1700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66255,7 +66327,7 @@
],
"signatures": [
{
- "id": 18993,
+ "id": 1701,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -66269,7 +66341,7 @@
],
"parameters": [
{
- "id": 18994,
+ "id": 1702,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -66295,7 +66367,7 @@
}
},
{
- "id": 18995,
+ "id": 1703,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -66318,7 +66390,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 18996,
+ "id": 1704,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66329,7 +66401,7 @@
],
"documents": [
{
- "id": 42101,
+ "id": 25040,
"name": "deleteEntitiesStep",
"variant": "document",
"kind": 8388608,
@@ -66356,21 +66428,21 @@
}
],
"childrenIncludingDocuments": [
- 18970,
- 18980,
- 18988,
- 18991,
- 18995
+ 1678,
+ 1688,
+ 1696,
+ 1699,
+ 1703
],
"groups": [
{
"title": "Properties",
"children": [
- 18970,
- 18980,
- 18988,
- 18991,
- 18995
+ 1678,
+ 1688,
+ 1696,
+ 1699,
+ 1703
]
}
],
@@ -66379,12 +66451,12 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L13"
}
],
"signatures": [
{
- "id": 18961,
+ "id": 1669,
"name": "deleteCartCreditLinesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -66413,12 +66485,12 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L13"
}
],
"typeParameters": [
{
- "id": 18962,
+ "id": 1670,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -66429,7 +66501,7 @@
}
},
{
- "id": 18963,
+ "id": 1671,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -66442,7 +66514,7 @@
],
"parameters": [
{
- "id": 18964,
+ "id": 1672,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -66466,14 +66538,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 18965,
+ "id": 1673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18966,
+ "id": 1674,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -66496,7 +66568,7 @@
}
},
{
- "id": 18967,
+ "id": 1675,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -66523,8 +66595,8 @@
{
"title": "Properties",
"children": [
- 18966,
- 18967
+ 1674,
+ 1675
]
}
],
@@ -66600,14 +66672,14 @@
{
"type": "reflection",
"declaration": {
- "id": 18968,
+ "id": 1676,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 18969,
+ "id": 1677,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -66625,7 +66697,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -66641,7 +66713,7 @@
{
"title": "Properties",
"children": [
- 18969
+ 1677
]
}
],
@@ -66650,7 +66722,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 15,
"character": 23,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L15"
}
]
}
@@ -66661,14 +66733,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -66683,7 +66755,7 @@
]
},
{
- "id": 18969,
+ "id": 1677,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -66701,7 +66773,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -66713,7 +66785,7 @@
}
},
{
- "id": 18977,
+ "id": 1685,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -66731,7 +66803,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -66743,7 +66815,7 @@
}
},
{
- "id": 18979,
+ "id": 1687,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -66761,7 +66833,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -66773,7 +66845,7 @@
}
},
{
- "id": 18987,
+ "id": 1695,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -66791,7 +66863,7 @@
"fileName": "core-flows/src/cart/workflows/delete-cart-credit-lines.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/delete-cart-credit-lines.ts#L19"
}
],
"type": {
@@ -66803,7 +66875,7 @@
}
},
{
- "id": 18997,
+ "id": 1705,
"name": "listShippingOptionsForCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -66815,7 +66887,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L28"
}
],
"type": {
@@ -66825,7 +66897,7 @@
"defaultValue": "\"list-shipping-options-for-cart\""
},
{
- "id": 18998,
+ "id": 1706,
"name": "listShippingOptionsForCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -66878,7 +66950,7 @@
},
"children": [
{
- "id": 19006,
+ "id": 1714,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -66901,7 +66973,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19007,
+ "id": 1715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66915,7 +66987,7 @@
],
"signatures": [
{
- "id": 19008,
+ "id": 1716,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -66943,7 +67015,7 @@
],
"parameters": [
{
- "id": 19009,
+ "id": 1717,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -66959,14 +67031,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19010,
+ "id": 1718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19011,
+ "id": 1719,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -67054,7 +67126,7 @@
{
"title": "Properties",
"children": [
- 19011
+ 1719
]
}
],
@@ -67079,7 +67151,7 @@
}
},
{
- "id": 19012,
+ "id": 1720,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -67102,7 +67174,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19013,
+ "id": 1721,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67116,7 +67188,7 @@
],
"signatures": [
{
- "id": 19014,
+ "id": 1722,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -67144,7 +67216,7 @@
],
"typeParameters": [
{
- "id": 19015,
+ "id": 1723,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -67155,7 +67227,7 @@
}
},
{
- "id": 19016,
+ "id": 1724,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -67168,7 +67240,7 @@
],
"parameters": [
{
- "id": 19017,
+ "id": 1725,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -67201,7 +67273,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -67235,7 +67307,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -67268,7 +67340,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -67283,7 +67355,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -67303,7 +67375,7 @@
}
},
{
- "id": 19018,
+ "id": 1726,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -67326,7 +67398,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19019,
+ "id": 1727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67340,7 +67412,7 @@
],
"signatures": [
{
- "id": 19020,
+ "id": 1728,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -67362,7 +67434,7 @@
}
},
{
- "id": 19021,
+ "id": 1729,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -67385,7 +67457,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19022,
+ "id": 1730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67399,7 +67471,7 @@
],
"signatures": [
{
- "id": 19023,
+ "id": 1731,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -67413,7 +67485,7 @@
],
"parameters": [
{
- "id": 19024,
+ "id": 1732,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -67439,7 +67511,7 @@
}
},
{
- "id": 19025,
+ "id": 1733,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -67465,14 +67537,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19026,
+ "id": 1734,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19027,
+ "id": 1735,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -67540,7 +67612,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19028,
+ "id": 1736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67554,7 +67626,7 @@
],
"signatures": [
{
- "id": 19029,
+ "id": 1737,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -67568,7 +67640,7 @@
],
"typeParameters": [
{
- "id": 19030,
+ "id": 1738,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -67577,7 +67649,7 @@
],
"parameters": [
{
- "id": 19031,
+ "id": 1739,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -67592,14 +67664,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19032,
+ "id": 1740,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19033,
+ "id": 1741,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -67609,7 +67681,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L203"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L203"
}
],
"type": {
@@ -67619,7 +67691,7 @@
"defaultValue": "cart"
},
{
- "id": 19034,
+ "id": 1742,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -67629,7 +67701,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 204,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L204"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L204"
}
],
"type": {
@@ -67676,7 +67748,7 @@
}
},
{
- "id": 19035,
+ "id": 1743,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -67694,7 +67766,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L205"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L205"
}
],
"type": {
@@ -67717,9 +67789,9 @@
{
"title": "Properties",
"children": [
- 19033,
- 19034,
- 19035
+ 1741,
+ 1742,
+ 1743
]
}
],
@@ -67728,7 +67800,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 202,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L202"
}
]
}
@@ -67763,7 +67835,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -67774,7 +67846,7 @@
}
},
{
- "id": 19036,
+ "id": 1744,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -67790,7 +67862,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -67811,14 +67883,14 @@
},
"signatures": [
{
- "id": 42103,
+ "id": 25042,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42104,
+ "id": 25043,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -67833,7 +67905,7 @@
},
"type": {
"type": "reference",
- "target": 19032,
+ "target": 1740,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -67847,7 +67919,7 @@
{
"title": "Properties",
"children": [
- 19027
+ 1735
]
}
],
@@ -67863,14 +67935,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19037,
+ "id": 1745,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19038,
+ "id": 1746,
"name": "setShippingOptionsContext",
"variant": "declaration",
"kind": 1024,
@@ -67955,7 +68027,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19039,
+ "id": 1747,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67969,7 +68041,7 @@
],
"signatures": [
{
- "id": 19040,
+ "id": 1748,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -67983,7 +68055,7 @@
],
"typeParameters": [
{
- "id": 19041,
+ "id": 1749,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -67992,7 +68064,7 @@
],
"parameters": [
{
- "id": 19042,
+ "id": 1750,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -68007,14 +68079,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19043,
+ "id": 1751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19044,
+ "id": 1752,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -68024,7 +68096,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 216,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L216"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L216"
}
],
"type": {
@@ -68034,7 +68106,7 @@
"defaultValue": "cart"
},
{
- "id": 19045,
+ "id": 1753,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -68044,7 +68116,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L217"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L217"
}
],
"type": {
@@ -68091,7 +68163,7 @@
}
},
{
- "id": 19046,
+ "id": 1754,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -68109,7 +68181,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L218"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L218"
}
],
"type": {
@@ -68132,9 +68204,9 @@
{
"title": "Properties",
"children": [
- 19044,
- 19045,
- 19046
+ 1752,
+ 1753,
+ 1754
]
}
],
@@ -68143,7 +68215,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 215,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L215"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L215"
}
]
}
@@ -68178,7 +68250,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -68189,7 +68261,7 @@
}
},
{
- "id": 19047,
+ "id": 1755,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -68205,7 +68277,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -68226,14 +68298,14 @@
},
"signatures": [
{
- "id": 42106,
+ "id": 25045,
"name": "setShippingOptionsContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42107,
+ "id": 25046,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -68248,7 +68320,7 @@
},
"type": {
"type": "reference",
- "target": 19043,
+ "target": 1751,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -68262,7 +68334,7 @@
{
"title": "Properties",
"children": [
- 19038
+ 1746
]
}
],
@@ -68281,7 +68353,7 @@
],
"documents": [
{
- "id": 42102,
+ "id": 25041,
"name": "validatePresenceOfStep",
"variant": "document",
"kind": 8388608,
@@ -68307,7 +68379,7 @@
"frontmatter": {}
},
{
- "id": 42105,
+ "id": 25044,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -68333,7 +68405,7 @@
"frontmatter": {}
},
{
- "id": 42108,
+ "id": 25047,
"name": "setShippingOptionsContext",
"variant": "document",
"kind": 8388608,
@@ -68360,21 +68432,21 @@
}
],
"childrenIncludingDocuments": [
- 19006,
- 19012,
- 19018,
- 19021,
- 19025
+ 1714,
+ 1720,
+ 1726,
+ 1729,
+ 1733
],
"groups": [
{
"title": "Properties",
"children": [
- 19006,
- 19012,
- 19018,
- 19021,
- 19025
+ 1714,
+ 1720,
+ 1726,
+ 1729,
+ 1733
]
}
],
@@ -68383,12 +68455,12 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 134,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L134"
}
],
"signatures": [
{
- "id": 18999,
+ "id": 1707,
"name": "listShippingOptionsForCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -68444,12 +68516,12 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 134,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L134"
}
],
"typeParameters": [
{
- "id": 19000,
+ "id": 1708,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -68460,7 +68532,7 @@
}
},
{
- "id": 19001,
+ "id": 1709,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -68473,7 +68545,7 @@
],
"parameters": [
{
- "id": 19002,
+ "id": 1710,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -68497,14 +68569,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19003,
+ "id": 1711,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19004,
+ "id": 1712,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -68527,7 +68599,7 @@
}
},
{
- "id": 19005,
+ "id": 1713,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -68554,8 +68626,8 @@
{
"title": "Properties",
"children": [
- 19004,
- 19005
+ 1712,
+ 1713
]
}
],
@@ -68657,14 +68729,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -68679,14 +68751,14 @@
]
},
{
- "id": 19032,
+ "id": 1740,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19033,
+ "id": 1741,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -68696,7 +68768,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L203"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L203"
}
],
"type": {
@@ -68706,7 +68778,7 @@
"defaultValue": "cart"
},
{
- "id": 19034,
+ "id": 1742,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -68716,7 +68788,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 204,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L204"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L204"
}
],
"type": {
@@ -68763,7 +68835,7 @@
}
},
{
- "id": 19035,
+ "id": 1743,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -68781,7 +68853,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L205"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L205"
}
],
"type": {
@@ -68804,9 +68876,9 @@
{
"title": "Properties",
"children": [
- 19033,
- 19034,
- 19035
+ 1741,
+ 1742,
+ 1743
]
}
],
@@ -68815,12 +68887,12 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 202,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L202"
}
]
},
{
- "id": 19033,
+ "id": 1741,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -68830,7 +68902,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L203"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L203"
}
],
"type": {
@@ -68840,7 +68912,7 @@
"defaultValue": "cart"
},
{
- "id": 19034,
+ "id": 1742,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -68850,7 +68922,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 204,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L204"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L204"
}
],
"type": {
@@ -68897,7 +68969,7 @@
}
},
{
- "id": 19035,
+ "id": 1743,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -68915,7 +68987,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L205"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L205"
}
],
"type": {
@@ -68934,14 +69006,14 @@
"defaultValue": "input.additional_data"
},
{
- "id": 19043,
+ "id": 1751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19044,
+ "id": 1752,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -68951,7 +69023,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 216,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L216"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L216"
}
],
"type": {
@@ -68961,7 +69033,7 @@
"defaultValue": "cart"
},
{
- "id": 19045,
+ "id": 1753,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -68971,7 +69043,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L217"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L217"
}
],
"type": {
@@ -69018,7 +69090,7 @@
}
},
{
- "id": 19046,
+ "id": 1754,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -69036,7 +69108,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L218"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L218"
}
],
"type": {
@@ -69059,9 +69131,9 @@
{
"title": "Properties",
"children": [
- 19044,
- 19045,
- 19046
+ 1752,
+ 1753,
+ 1754
]
}
],
@@ -69070,12 +69142,12 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 215,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L215"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L215"
}
]
},
{
- "id": 19044,
+ "id": 1752,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -69085,7 +69157,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 216,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L216"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L216"
}
],
"type": {
@@ -69095,7 +69167,7 @@
"defaultValue": "cart"
},
{
- "id": 19045,
+ "id": 1753,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -69105,7 +69177,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L217"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L217"
}
],
"type": {
@@ -69152,7 +69224,7 @@
}
},
{
- "id": 19046,
+ "id": 1754,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -69170,7 +69242,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L218"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart.ts#L218"
}
],
"type": {
@@ -69189,7 +69261,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 19048,
+ "id": 1756,
"name": "listShippingOptionsForCartWithPricingWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -69201,7 +69273,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L52"
}
],
"type": {
@@ -69211,7 +69283,7 @@
"defaultValue": "\"list-shipping-options-for-cart-with-pricing\""
},
{
- "id": 19049,
+ "id": 1757,
"name": "listShippingOptionsForCartWithPricingWorkflow",
"variant": "declaration",
"kind": 64,
@@ -69264,7 +69336,7 @@
},
"children": [
{
- "id": 19057,
+ "id": 1765,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -69287,7 +69359,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19058,
+ "id": 1766,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -69301,7 +69373,7 @@
],
"signatures": [
{
- "id": 19059,
+ "id": 1767,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -69329,7 +69401,7 @@
],
"parameters": [
{
- "id": 19060,
+ "id": 1768,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -69345,14 +69417,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19061,
+ "id": 1769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19062,
+ "id": 1770,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -69440,7 +69512,7 @@
{
"title": "Properties",
"children": [
- 19062
+ 1770
]
}
],
@@ -69493,14 +69565,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19063,
+ "id": 1771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19064,
+ "id": 1772,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -69514,7 +69586,7 @@
],
"signatures": [
{
- "id": 19065,
+ "id": 1773,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -69528,7 +69600,7 @@
],
"parameters": [
{
- "id": 19066,
+ "id": 1774,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -69539,14 +69611,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19067,
+ "id": 1775,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19068,
+ "id": 1776,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -69570,7 +69642,7 @@
{
"title": "Properties",
"children": [
- 19068
+ 1776
]
}
],
@@ -69650,7 +69722,7 @@
{
"title": "Methods",
"children": [
- 19064
+ 1772
]
}
],
@@ -69689,7 +69761,7 @@
}
},
{
- "id": 19069,
+ "id": 1777,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -69712,7 +69784,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19070,
+ "id": 1778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -69726,7 +69798,7 @@
],
"signatures": [
{
- "id": 19071,
+ "id": 1779,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -69754,7 +69826,7 @@
],
"typeParameters": [
{
- "id": 19072,
+ "id": 1780,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -69765,7 +69837,7 @@
}
},
{
- "id": 19073,
+ "id": 1781,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -69778,7 +69850,7 @@
],
"parameters": [
{
- "id": 19074,
+ "id": 1782,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -69811,7 +69883,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -69845,7 +69917,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -69878,7 +69950,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -69896,7 +69968,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -69916,7 +69988,7 @@
}
},
{
- "id": 19075,
+ "id": 1783,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -69939,7 +70011,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19076,
+ "id": 1784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -69953,7 +70025,7 @@
],
"signatures": [
{
- "id": 19077,
+ "id": 1785,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -69975,7 +70047,7 @@
}
},
{
- "id": 19078,
+ "id": 1786,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -69998,7 +70070,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19079,
+ "id": 1787,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -70012,7 +70084,7 @@
],
"signatures": [
{
- "id": 19080,
+ "id": 1788,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -70026,7 +70098,7 @@
],
"parameters": [
{
- "id": 19081,
+ "id": 1789,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -70052,7 +70124,7 @@
}
},
{
- "id": 19082,
+ "id": 1790,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -70075,14 +70147,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19083,
+ "id": 1791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19084,
+ "id": 1792,
"name": "setShippingOptionsContext",
"variant": "declaration",
"kind": 1024,
@@ -70090,7 +70162,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19085,
+ "id": 1793,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -70104,7 +70176,7 @@
],
"signatures": [
{
- "id": 19086,
+ "id": 1794,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -70118,7 +70190,7 @@
],
"typeParameters": [
{
- "id": 19087,
+ "id": 1795,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -70127,7 +70199,7 @@
],
"parameters": [
{
- "id": 19088,
+ "id": 1796,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -70142,14 +70214,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19089,
+ "id": 1797,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19090,
+ "id": 1798,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -70159,7 +70231,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L202"
}
],
"type": {
@@ -70169,7 +70241,7 @@
"defaultValue": "cart"
},
{
- "id": 19091,
+ "id": 1799,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -70179,7 +70251,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L203"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L203"
}
],
"type": {
@@ -70226,7 +70298,7 @@
}
},
{
- "id": 19092,
+ "id": 1800,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -70244,7 +70316,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 204,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L204"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L204"
}
],
"type": {
@@ -70267,9 +70339,9 @@
{
"title": "Properties",
"children": [
- 19090,
- 19091,
- 19092
+ 1798,
+ 1799,
+ 1800
]
}
],
@@ -70278,7 +70350,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 201,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L201"
}
]
}
@@ -70313,7 +70385,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -70324,7 +70396,7 @@
}
},
{
- "id": 19093,
+ "id": 1801,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -70340,7 +70412,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -70361,7 +70433,7 @@
}
},
{
- "id": 42110,
+ "id": 25049,
"name": "setShippingOptionsContext",
"variant": "declaration",
"kind": 64,
@@ -70445,14 +70517,14 @@
},
"signatures": [
{
- "id": 42111,
+ "id": 25050,
"name": "setShippingOptionsContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42112,
+ "id": 25051,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -70467,7 +70539,7 @@
},
"type": {
"type": "reference",
- "target": 19089,
+ "target": 1797,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -70481,13 +70553,13 @@
{
"title": "Properties",
"children": [
- 19084
+ 1792
]
},
{
"title": "Functions",
"children": [
- 42110
+ 25049
]
}
],
@@ -70504,7 +70576,7 @@
],
"documents": [
{
- "id": 42109,
+ "id": 25048,
"name": "validatePresenceOfStep",
"variant": "document",
"kind": 8388608,
@@ -70530,7 +70602,7 @@
"frontmatter": {}
},
{
- "id": 42113,
+ "id": 25052,
"name": "setShippingOptionsContext",
"variant": "document",
"kind": 8388608,
@@ -70556,7 +70628,7 @@
"frontmatter": {}
},
{
- "id": 42114,
+ "id": 25053,
"name": "calculateShippingOptionsPricesStep",
"variant": "document",
"kind": 8388608,
@@ -70583,21 +70655,21 @@
}
],
"childrenIncludingDocuments": [
- 19057,
- 19069,
- 19075,
- 19078,
- 19082
+ 1765,
+ 1777,
+ 1783,
+ 1786,
+ 1790
],
"groups": [
{
"title": "Properties",
"children": [
- 19057,
- 19069,
- 19075,
- 19078,
- 19082
+ 1765,
+ 1777,
+ 1783,
+ 1786,
+ 1790
]
}
],
@@ -70606,12 +70678,12 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 126,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L126"
}
],
"signatures": [
{
- "id": 19050,
+ "id": 1758,
"name": "listShippingOptionsForCartWithPricingWorkflow",
"variant": "signature",
"kind": 4096,
@@ -70667,12 +70739,12 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 126,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L126"
}
],
"typeParameters": [
{
- "id": 19051,
+ "id": 1759,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -70683,7 +70755,7 @@
}
},
{
- "id": 19052,
+ "id": 1760,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -70696,7 +70768,7 @@
],
"parameters": [
{
- "id": 19053,
+ "id": 1761,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -70720,14 +70792,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19054,
+ "id": 1762,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19055,
+ "id": 1763,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -70750,7 +70822,7 @@
}
},
{
- "id": 19056,
+ "id": 1764,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -70777,8 +70849,8 @@
{
"title": "Properties",
"children": [
- 19055,
- 19056
+ 1763,
+ 1764
]
}
],
@@ -70883,14 +70955,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -70905,14 +70977,14 @@
]
},
{
- "id": 19089,
+ "id": 1797,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19090,
+ "id": 1798,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -70922,7 +70994,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L202"
}
],
"type": {
@@ -70932,7 +71004,7 @@
"defaultValue": "cart"
},
{
- "id": 19091,
+ "id": 1799,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -70942,7 +71014,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L203"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L203"
}
],
"type": {
@@ -70989,7 +71061,7 @@
}
},
{
- "id": 19092,
+ "id": 1800,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -71007,7 +71079,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 204,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L204"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L204"
}
],
"type": {
@@ -71030,9 +71102,9 @@
{
"title": "Properties",
"children": [
- 19090,
- 19091,
- 19092
+ 1798,
+ 1799,
+ 1800
]
}
],
@@ -71041,12 +71113,12 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 201,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L201"
}
]
},
{
- "id": 19090,
+ "id": 1798,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -71056,7 +71128,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L202"
}
],
"type": {
@@ -71066,7 +71138,7 @@
"defaultValue": "cart"
},
{
- "id": 19091,
+ "id": 1799,
"name": "fulfillmentSetIds",
"variant": "declaration",
"kind": 1024,
@@ -71076,7 +71148,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L203"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L203"
}
],
"type": {
@@ -71123,7 +71195,7 @@
}
},
{
- "id": 19092,
+ "id": 1800,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -71141,7 +71213,7 @@
"fileName": "core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts",
"line": 204,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L204"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/list-shipping-options-for-cart-with-pricing.ts#L204"
}
],
"type": {
@@ -71160,7 +71232,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 19096,
+ "id": 1804,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -71178,7 +71250,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L30"
}
],
"type": {
@@ -71187,7 +71259,7 @@
}
},
{
- "id": 19097,
+ "id": 1805,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -71207,7 +71279,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L35"
}
],
"type": {
@@ -71219,7 +71291,7 @@
}
},
{
- "id": 19098,
+ "id": 1806,
"name": "force_refresh",
"variant": "declaration",
"kind": 1024,
@@ -71239,7 +71311,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L39"
}
],
"type": {
@@ -71248,7 +71320,7 @@
}
},
{
- "id": 19099,
+ "id": 1807,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -71268,7 +71340,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L44"
}
],
"type": {
@@ -71280,7 +71352,7 @@
}
},
{
- "id": 19100,
+ "id": 1808,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -71300,7 +71372,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L49"
}
],
"type": {
@@ -71312,7 +71384,7 @@
}
},
{
- "id": 19101,
+ "id": 1809,
"name": "force_tax_calculation",
"variant": "declaration",
"kind": 1024,
@@ -71332,7 +71404,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L56"
}
],
"type": {
@@ -71341,7 +71413,7 @@
}
},
{
- "id": 19102,
+ "id": 1810,
"name": "refreshCartItemsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -71353,7 +71425,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L59"
}
],
"type": {
@@ -71363,7 +71435,7 @@
"defaultValue": "\"refresh-cart-items\""
},
{
- "id": 19103,
+ "id": 1811,
"name": "refreshCartItemsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -71412,6 +71484,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -71425,7 +71506,7 @@
},
"children": [
{
- "id": 19111,
+ "id": 1819,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -71448,7 +71529,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19112,
+ "id": 1820,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71462,7 +71543,7 @@
],
"signatures": [
{
- "id": 19113,
+ "id": 1821,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -71490,7 +71571,7 @@
],
"parameters": [
{
- "id": 19114,
+ "id": 1822,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -71506,14 +71587,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19115,
+ "id": 1823,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19116,
+ "id": 1824,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -71541,7 +71622,7 @@
"types": [
{
"type": "reference",
- "target": 19094,
+ "target": 1802,
"name": "RefreshCartItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -71568,7 +71649,7 @@
"types": [
{
"type": "reference",
- "target": 19094,
+ "target": 1802,
"name": "RefreshCartItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -71595,7 +71676,7 @@
{
"title": "Properties",
"children": [
- 19116
+ 1824
]
}
],
@@ -71620,7 +71701,7 @@
}
},
{
- "id": 19117,
+ "id": 1825,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -71643,7 +71724,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19118,
+ "id": 1826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71657,7 +71738,7 @@
],
"signatures": [
{
- "id": 19119,
+ "id": 1827,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -71685,7 +71766,7 @@
],
"typeParameters": [
{
- "id": 19120,
+ "id": 1828,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -71696,7 +71777,7 @@
}
},
{
- "id": 19121,
+ "id": 1829,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -71709,7 +71790,7 @@
],
"parameters": [
{
- "id": 19122,
+ "id": 1830,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -71742,7 +71823,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -71756,7 +71837,7 @@
"types": [
{
"type": "reference",
- "target": 19094,
+ "target": 1802,
"name": "RefreshCartItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -71773,7 +71854,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -71806,7 +71887,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -71821,7 +71902,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -71841,7 +71922,7 @@
}
},
{
- "id": 19123,
+ "id": 1831,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -71864,7 +71945,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19124,
+ "id": 1832,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71878,7 +71959,7 @@
],
"signatures": [
{
- "id": 19125,
+ "id": 1833,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -71900,7 +71981,7 @@
}
},
{
- "id": 19126,
+ "id": 1834,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -71923,7 +72004,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19127,
+ "id": 1835,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71937,7 +72018,7 @@
],
"signatures": [
{
- "id": 19128,
+ "id": 1836,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -71951,7 +72032,7 @@
],
"parameters": [
{
- "id": 19129,
+ "id": 1837,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -71977,7 +72058,7 @@
}
},
{
- "id": 19130,
+ "id": 1838,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -72003,14 +72084,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19131,
+ "id": 1839,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19132,
+ "id": 1840,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -72078,7 +72159,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19133,
+ "id": 1841,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -72092,7 +72173,7 @@
],
"signatures": [
{
- "id": 19134,
+ "id": 1842,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -72106,7 +72187,7 @@
],
"typeParameters": [
{
- "id": 19135,
+ "id": 1843,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -72115,7 +72196,7 @@
],
"parameters": [
{
- "id": 19136,
+ "id": 1844,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -72130,14 +72211,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19137,
+ "id": 1845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19138,
+ "id": 1846,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -72147,7 +72228,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 133,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L133"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L133"
}
],
"type": {
@@ -72186,7 +72267,7 @@
"defaultValue": "input.cart_id"
},
{
- "id": 19139,
+ "id": 1847,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -72196,7 +72277,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 134,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L134"
}
],
"type": {
@@ -72215,7 +72296,7 @@
"defaultValue": "input.items"
},
{
- "id": 19140,
+ "id": 1848,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -72233,7 +72314,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 135,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L135"
}
],
"type": {
@@ -72256,9 +72337,9 @@
{
"title": "Properties",
"children": [
- 19138,
- 19139,
- 19140
+ 1846,
+ 1847,
+ 1848
]
}
],
@@ -72267,7 +72348,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L132"
}
]
}
@@ -72302,7 +72383,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -72313,7 +72394,7 @@
}
},
{
- "id": 19141,
+ "id": 1849,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -72329,7 +72410,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -72350,14 +72431,14 @@
},
"signatures": [
{
- "id": 42116,
+ "id": 25055,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42117,
+ "id": 25056,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -72372,7 +72453,7 @@
},
"type": {
"type": "reference",
- "target": 19137,
+ "target": 1845,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -72386,7 +72467,7 @@
{
"title": "Properties",
"children": [
- 19132
+ 1840
]
}
],
@@ -72402,14 +72483,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19142,
+ "id": 1850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19143,
+ "id": 1851,
"name": "beforeRefreshingPaymentCollection",
"variant": "declaration",
"kind": 1024,
@@ -72445,7 +72526,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19144,
+ "id": 1852,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -72459,7 +72540,7 @@
],
"signatures": [
{
- "id": 19145,
+ "id": 1853,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -72473,7 +72554,7 @@
],
"typeParameters": [
{
- "id": 19146,
+ "id": 1854,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -72482,7 +72563,7 @@
],
"parameters": [
{
- "id": 19147,
+ "id": 1855,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -72497,14 +72578,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19148,
+ "id": 1856,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19149,
+ "id": 1857,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -72512,9 +72593,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
- "line": 238,
+ "line": 239,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L238"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L239"
}
],
"type": {
@@ -72529,7 +72610,7 @@
"types": [
{
"type": "reference",
- "target": 19094,
+ "target": 1802,
"name": "RefreshCartItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -72554,16 +72635,16 @@
{
"title": "Properties",
"children": [
- 19149
+ 1857
]
}
],
"sources": [
{
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
- "line": 238,
+ "line": 239,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L238"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L239"
}
]
}
@@ -72574,7 +72655,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -72585,7 +72666,7 @@
}
},
{
- "id": 19150,
+ "id": 1858,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -72601,7 +72682,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -72622,14 +72703,14 @@
},
"signatures": [
{
- "id": 42129,
+ "id": 25068,
"name": "beforeRefreshingPaymentCollection",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42130,
+ "id": 25069,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -72644,7 +72725,7 @@
},
"type": {
"type": "reference",
- "target": 19148,
+ "target": 1856,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -72658,7 +72739,7 @@
{
"title": "Properties",
"children": [
- 19143
+ 1851
]
}
],
@@ -72677,7 +72758,7 @@
],
"documents": [
{
- "id": 42115,
+ "id": 25054,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -72703,7 +72784,7 @@
"frontmatter": {}
},
{
- "id": 42118,
+ "id": 25057,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -72729,7 +72810,7 @@
"frontmatter": {}
},
{
- "id": 42119,
+ "id": 25058,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -72764,7 +72845,7 @@
"frontmatter": {},
"children": [
{
- "id": 42120,
+ "id": 25059,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -72790,7 +72871,7 @@
"frontmatter": {}
},
{
- "id": 42121,
+ "id": 25060,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -72816,7 +72897,7 @@
"frontmatter": {}
},
{
- "id": 42122,
+ "id": 25061,
"name": "updateLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -72844,7 +72925,7 @@
]
},
{
- "id": 42123,
+ "id": 25062,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -72870,7 +72951,7 @@
"frontmatter": {}
},
{
- "id": 42124,
+ "id": 25063,
"name": "refreshCartShippingMethodsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -72896,7 +72977,7 @@
"frontmatter": {}
},
{
- "id": 42125,
+ "id": 25064,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -72931,7 +73012,7 @@
"frontmatter": {},
"children": [
{
- "id": 42126,
+ "id": 25065,
"name": "updateTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -72959,7 +73040,7 @@
]
},
{
- "id": 42128,
+ "id": 25067,
"name": "updateCartPromotionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -72985,7 +73066,7 @@
"frontmatter": {}
},
{
- "id": 42131,
+ "id": 25070,
"name": "beforeRefreshingPaymentCollection",
"variant": "document",
"kind": 8388608,
@@ -73011,7 +73092,7 @@
"frontmatter": {}
},
{
- "id": 42132,
+ "id": 25071,
"name": "refreshPaymentCollectionForCartWorkflow",
"variant": "document",
"kind": 8388608,
@@ -73037,7 +73118,7 @@
"frontmatter": {}
},
{
- "id": 42133,
+ "id": 25072,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -73064,21 +73145,21 @@
}
],
"childrenIncludingDocuments": [
- 19111,
- 19117,
- 19123,
- 19126,
- 19130
+ 1819,
+ 1825,
+ 1831,
+ 1834,
+ 1838
],
"groups": [
{
"title": "Properties",
"children": [
- 19111,
- 19117,
- 19123,
- 19126,
- 19130
+ 1819,
+ 1825,
+ 1831,
+ 1834,
+ 1838
]
}
],
@@ -73087,12 +73168,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 118,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L118"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L118"
}
],
"signatures": [
{
- "id": 19104,
+ "id": 1812,
"name": "refreshCartItemsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -73141,6 +73222,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -73157,12 +73247,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 118,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L118"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L118"
}
],
"typeParameters": [
{
- "id": 19105,
+ "id": 1813,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -73173,7 +73263,7 @@
}
},
{
- "id": 19106,
+ "id": 1814,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -73186,7 +73276,7 @@
],
"parameters": [
{
- "id": 19107,
+ "id": 1815,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -73210,14 +73300,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19108,
+ "id": 1816,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19109,
+ "id": 1817,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -73240,7 +73330,7 @@
}
},
{
- "id": 19110,
+ "id": 1818,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -73267,8 +73357,8 @@
{
"title": "Properties",
"children": [
- 19109,
- 19110
+ 1817,
+ 1818
]
}
],
@@ -73346,7 +73436,7 @@
"types": [
{
"type": "reference",
- "target": 19094,
+ "target": 1802,
"name": "RefreshCartItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -73367,14 +73457,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -73389,14 +73479,14 @@
]
},
{
- "id": 19137,
+ "id": 1845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19138,
+ "id": 1846,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -73406,7 +73496,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 133,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L133"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L133"
}
],
"type": {
@@ -73445,7 +73535,7 @@
"defaultValue": "input.cart_id"
},
{
- "id": 19139,
+ "id": 1847,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -73455,7 +73545,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 134,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L134"
}
],
"type": {
@@ -73474,7 +73564,7 @@
"defaultValue": "input.items"
},
{
- "id": 19140,
+ "id": 1848,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -73492,7 +73582,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 135,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L135"
}
],
"type": {
@@ -73515,9 +73605,9 @@
{
"title": "Properties",
"children": [
- 19138,
- 19139,
- 19140
+ 1846,
+ 1847,
+ 1848
]
}
],
@@ -73526,12 +73616,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L132"
}
]
},
{
- "id": 19138,
+ "id": 1846,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -73541,7 +73631,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 133,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L133"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L133"
}
],
"type": {
@@ -73580,7 +73670,7 @@
"defaultValue": "input.cart_id"
},
{
- "id": 19139,
+ "id": 1847,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -73590,7 +73680,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 134,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L134"
}
],
"type": {
@@ -73609,7 +73699,7 @@
"defaultValue": "input.items"
},
{
- "id": 19140,
+ "id": 1848,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -73627,7 +73717,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
"line": 135,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L135"
}
],
"type": {
@@ -73646,14 +73736,14 @@
"defaultValue": "input.additional_data"
},
{
- "id": 19148,
+ "id": 1856,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19149,
+ "id": 1857,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -73661,9 +73751,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
- "line": 238,
+ "line": 239,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L238"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L239"
}
],
"type": {
@@ -73678,7 +73768,7 @@
"types": [
{
"type": "reference",
- "target": 19094,
+ "target": 1802,
"name": "RefreshCartItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -73703,21 +73793,21 @@
{
"title": "Properties",
"children": [
- 19149
+ 1857
]
}
],
"sources": [
{
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
- "line": 238,
+ "line": 239,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L238"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L239"
}
]
},
{
- "id": 19149,
+ "id": 1857,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -73725,9 +73815,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/refresh-cart-items.ts",
- "line": 238,
+ "line": 239,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L238"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-items.ts#L239"
}
],
"type": {
@@ -73742,7 +73832,7 @@
"types": [
{
"type": "reference",
- "target": 19094,
+ "target": 1802,
"name": "RefreshCartItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -73763,7 +73853,7 @@
}
},
{
- "id": 19153,
+ "id": 1861,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -73783,7 +73873,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L25"
}
],
"type": {
@@ -73792,7 +73882,7 @@
}
},
{
- "id": 19154,
+ "id": 1862,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -73812,7 +73902,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L29"
}
],
"type": {
@@ -73821,7 +73911,7 @@
}
},
{
- "id": 19155,
+ "id": 1863,
"name": "refreshCartShippingMethodsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -73833,7 +73923,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L32"
}
],
"type": {
@@ -73843,7 +73933,7 @@
"defaultValue": "\"refresh-cart-shipping-methods\""
},
{
- "id": 19156,
+ "id": 1864,
"name": "refreshCartShippingMethodsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -73892,6 +73982,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -73905,7 +74004,7 @@
},
"children": [
{
- "id": 19164,
+ "id": 1872,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -73928,7 +74027,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19165,
+ "id": 1873,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -73942,7 +74041,7 @@
],
"signatures": [
{
- "id": 19166,
+ "id": 1874,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -73970,7 +74069,7 @@
],
"parameters": [
{
- "id": 19167,
+ "id": 1875,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -73986,14 +74085,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19168,
+ "id": 1876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19169,
+ "id": 1877,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -74021,7 +74120,7 @@
"types": [
{
"type": "reference",
- "target": 19151,
+ "target": 1859,
"name": "RefreshCartShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -74048,7 +74147,7 @@
"types": [
{
"type": "reference",
- "target": 19151,
+ "target": 1859,
"name": "RefreshCartShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -74075,7 +74174,7 @@
{
"title": "Properties",
"children": [
- 19169
+ 1877
]
}
],
@@ -74100,7 +74199,7 @@
}
},
{
- "id": 19170,
+ "id": 1878,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -74123,7 +74222,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19171,
+ "id": 1879,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -74137,7 +74236,7 @@
],
"signatures": [
{
- "id": 19172,
+ "id": 1880,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -74165,7 +74264,7 @@
],
"typeParameters": [
{
- "id": 19173,
+ "id": 1881,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -74176,7 +74275,7 @@
}
},
{
- "id": 19174,
+ "id": 1882,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -74189,7 +74288,7 @@
],
"parameters": [
{
- "id": 19175,
+ "id": 1883,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -74222,7 +74321,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -74236,7 +74335,7 @@
"types": [
{
"type": "reference",
- "target": 19151,
+ "target": 1859,
"name": "RefreshCartShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -74253,7 +74352,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -74286,7 +74385,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -74301,7 +74400,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -74321,7 +74420,7 @@
}
},
{
- "id": 19176,
+ "id": 1884,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -74344,7 +74443,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19177,
+ "id": 1885,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -74358,7 +74457,7 @@
],
"signatures": [
{
- "id": 19178,
+ "id": 1886,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -74380,7 +74479,7 @@
}
},
{
- "id": 19179,
+ "id": 1887,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -74403,7 +74502,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19180,
+ "id": 1888,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -74417,7 +74516,7 @@
],
"signatures": [
{
- "id": 19181,
+ "id": 1889,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -74431,7 +74530,7 @@
],
"parameters": [
{
- "id": 19182,
+ "id": 1890,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -74457,7 +74556,7 @@
}
},
{
- "id": 19183,
+ "id": 1891,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -74480,14 +74579,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19184,
+ "id": 1892,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19185,
+ "id": 1893,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -74495,7 +74594,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19186,
+ "id": 1894,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -74509,7 +74608,7 @@
],
"signatures": [
{
- "id": 19187,
+ "id": 1895,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -74523,7 +74622,7 @@
],
"typeParameters": [
{
- "id": 19188,
+ "id": 1896,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -74532,7 +74631,7 @@
],
"parameters": [
{
- "id": 19189,
+ "id": 1897,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -74547,14 +74646,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19190,
+ "id": 1898,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19191,
+ "id": 1899,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -74564,7 +74663,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 130,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L130"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L130"
}
],
"type": {
@@ -74579,7 +74678,7 @@
"types": [
{
"type": "reference",
- "target": 19151,
+ "target": 1859,
"name": "RefreshCartShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -74600,7 +74699,7 @@
}
},
{
- "id": 19192,
+ "id": 1900,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -74610,7 +74709,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 131,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L131"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L131"
}
],
"type": {
@@ -74623,8 +74722,8 @@
{
"title": "Properties",
"children": [
- 19191,
- 19192
+ 1899,
+ 1900
]
}
],
@@ -74633,7 +74732,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 129,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L129"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L129"
}
]
}
@@ -74644,7 +74743,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -74655,7 +74754,7 @@
}
},
{
- "id": 19193,
+ "id": 1901,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -74671,7 +74770,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -74692,7 +74791,7 @@
}
},
{
- "id": 42137,
+ "id": 25076,
"name": "validate",
"variant": "declaration",
"kind": 64,
@@ -74727,14 +74826,14 @@
},
"signatures": [
{
- "id": 42138,
+ "id": 25077,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42139,
+ "id": 25078,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -74749,7 +74848,7 @@
},
"type": {
"type": "reference",
- "target": 19190,
+ "target": 1898,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -74763,13 +74862,13 @@
{
"title": "Properties",
"children": [
- 19185
+ 1893
]
},
{
"title": "Functions",
"children": [
- 42137
+ 25076
]
}
],
@@ -74786,7 +74885,7 @@
],
"documents": [
{
- "id": 42135,
+ "id": 25074,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -74812,7 +74911,7 @@
"frontmatter": {}
},
{
- "id": 42136,
+ "id": 25075,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -74838,7 +74937,7 @@
"frontmatter": {}
},
{
- "id": 42140,
+ "id": 25079,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -74864,7 +74963,7 @@
"frontmatter": {}
},
{
- "id": 42141,
+ "id": 25080,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -74899,7 +74998,7 @@
"frontmatter": {},
"children": [
{
- "id": 42142,
+ "id": 25081,
"name": "listShippingOptionsForCartWithPricingWorkflow",
"variant": "document",
"kind": 8388608,
@@ -74925,7 +75024,7 @@
"frontmatter": {}
},
{
- "id": 42143,
+ "id": 25082,
"name": "removeShippingMethodFromCartStep",
"variant": "document",
"kind": 8388608,
@@ -74951,7 +75050,7 @@
"frontmatter": {}
},
{
- "id": 42144,
+ "id": 25083,
"name": "updateShippingMethodsStep",
"variant": "document",
"kind": 8388608,
@@ -74977,7 +75076,7 @@
"frontmatter": {}
},
{
- "id": 42145,
+ "id": 25084,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -75006,21 +75105,21 @@
}
],
"childrenIncludingDocuments": [
- 19164,
- 19170,
- 19176,
- 19179,
- 19183
+ 1872,
+ 1878,
+ 1884,
+ 1887,
+ 1891
],
"groups": [
{
"title": "Properties",
"children": [
- 19164,
- 19170,
- 19176,
- 19179,
- 19183
+ 1872,
+ 1878,
+ 1884,
+ 1887,
+ 1891
]
}
],
@@ -75029,12 +75128,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L54"
}
],
"signatures": [
{
- "id": 19157,
+ "id": 1865,
"name": "refreshCartShippingMethodsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -75083,6 +75182,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -75099,12 +75207,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L54"
}
],
"typeParameters": [
{
- "id": 19158,
+ "id": 1866,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -75115,7 +75223,7 @@
}
},
{
- "id": 19159,
+ "id": 1867,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -75128,7 +75236,7 @@
],
"parameters": [
{
- "id": 19160,
+ "id": 1868,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -75152,14 +75260,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19161,
+ "id": 1869,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19162,
+ "id": 1870,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -75182,7 +75290,7 @@
}
},
{
- "id": 19163,
+ "id": 1871,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -75209,8 +75317,8 @@
{
"title": "Properties",
"children": [
- 19162,
- 19163
+ 1870,
+ 1871
]
}
],
@@ -75288,7 +75396,7 @@
"types": [
{
"type": "reference",
- "target": 19151,
+ "target": 1859,
"name": "RefreshCartShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -75309,14 +75417,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -75331,14 +75439,14 @@
]
},
{
- "id": 19190,
+ "id": 1898,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19191,
+ "id": 1899,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -75348,7 +75456,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 130,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L130"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L130"
}
],
"type": {
@@ -75363,7 +75471,7 @@
"types": [
{
"type": "reference",
- "target": 19151,
+ "target": 1859,
"name": "RefreshCartShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -75384,7 +75492,7 @@
}
},
{
- "id": 19192,
+ "id": 1900,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -75394,7 +75502,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 131,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L131"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L131"
}
],
"type": {
@@ -75407,8 +75515,8 @@
{
"title": "Properties",
"children": [
- 19191,
- 19192
+ 1899,
+ 1900
]
}
],
@@ -75417,12 +75525,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 129,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L129"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L129"
}
]
},
{
- "id": 19191,
+ "id": 1899,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -75432,7 +75540,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 130,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L130"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L130"
}
],
"type": {
@@ -75447,7 +75555,7 @@
"types": [
{
"type": "reference",
- "target": 19151,
+ "target": 1859,
"name": "RefreshCartShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -75468,7 +75576,7 @@
}
},
{
- "id": 19192,
+ "id": 1900,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -75478,7 +75586,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts",
"line": 131,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L131"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-cart-shipping-methods.ts#L131"
}
],
"type": {
@@ -75487,7 +75595,7 @@
}
},
{
- "id": 19196,
+ "id": 1904,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -75507,7 +75615,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L24"
}
],
"type": {
@@ -75516,7 +75624,7 @@
}
},
{
- "id": 19197,
+ "id": 1905,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -75536,7 +75644,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L28"
}
],
"type": {
@@ -75545,7 +75653,7 @@
}
},
{
- "id": 19198,
+ "id": 1906,
"name": "refreshPaymentCollectionForCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -75557,7 +75665,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L31"
}
],
"type": {
@@ -75567,7 +75675,7 @@
"defaultValue": "\"refresh-payment-collection-for-cart\""
},
{
- "id": 19199,
+ "id": 1907,
"name": "refreshPaymentCollectionForCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -75616,6 +75724,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -75629,7 +75746,7 @@
},
"children": [
{
- "id": 19207,
+ "id": 1915,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -75652,7 +75769,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19208,
+ "id": 1916,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -75666,7 +75783,7 @@
],
"signatures": [
{
- "id": 19209,
+ "id": 1917,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -75694,7 +75811,7 @@
],
"parameters": [
{
- "id": 19210,
+ "id": 1918,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -75710,14 +75827,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19211,
+ "id": 1919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19212,
+ "id": 1920,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -75742,7 +75859,7 @@
"types": [
{
"type": "reference",
- "target": 19194,
+ "target": 1902,
"name": "RefreshPaymentCollectionForCartWorklowInput",
"package": "@medusajs/core-flows"
},
@@ -75755,7 +75872,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19194,
+ "target": 1902,
"name": "RefreshPaymentCollectionForCartWorklowInput",
"package": "@medusajs/core-flows"
}
@@ -75771,7 +75888,7 @@
{
"title": "Properties",
"children": [
- 19212
+ 1920
]
}
],
@@ -75796,7 +75913,7 @@
}
},
{
- "id": 19213,
+ "id": 1921,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -75819,7 +75936,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19214,
+ "id": 1922,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -75833,7 +75950,7 @@
],
"signatures": [
{
- "id": 19215,
+ "id": 1923,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -75861,7 +75978,7 @@
],
"typeParameters": [
{
- "id": 19216,
+ "id": 1924,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -75872,7 +75989,7 @@
}
},
{
- "id": 19217,
+ "id": 1925,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -75885,7 +76002,7 @@
],
"parameters": [
{
- "id": 19218,
+ "id": 1926,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -75918,7 +76035,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -75929,13 +76046,13 @@
},
"trueType": {
"type": "reference",
- "target": 19194,
+ "target": 1902,
"name": "RefreshPaymentCollectionForCartWorklowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -75968,7 +76085,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -75983,7 +76100,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -76003,7 +76120,7 @@
}
},
{
- "id": 19219,
+ "id": 1927,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -76026,7 +76143,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19220,
+ "id": 1928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -76040,7 +76157,7 @@
],
"signatures": [
{
- "id": 19221,
+ "id": 1929,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -76062,7 +76179,7 @@
}
},
{
- "id": 19222,
+ "id": 1930,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -76085,7 +76202,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19223,
+ "id": 1931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -76099,7 +76216,7 @@
],
"signatures": [
{
- "id": 19224,
+ "id": 1932,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -76113,7 +76230,7 @@
],
"parameters": [
{
- "id": 19225,
+ "id": 1933,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -76139,7 +76256,7 @@
}
},
{
- "id": 19226,
+ "id": 1934,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -76162,14 +76279,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19227,
+ "id": 1935,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19228,
+ "id": 1936,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -76177,7 +76294,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19229,
+ "id": 1937,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -76191,7 +76308,7 @@
],
"signatures": [
{
- "id": 19230,
+ "id": 1938,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -76205,7 +76322,7 @@
],
"typeParameters": [
{
- "id": 19231,
+ "id": 1939,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -76214,7 +76331,7 @@
],
"parameters": [
{
- "id": 19232,
+ "id": 1940,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -76229,14 +76346,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19233,
+ "id": 1941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19234,
+ "id": 1942,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -76246,7 +76363,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L120"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L120"
}
],
"type": {
@@ -76258,7 +76375,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19194,
+ "target": 1902,
"name": "RefreshPaymentCollectionForCartWorklowInput",
"package": "@medusajs/core-flows"
}
@@ -76268,7 +76385,7 @@
}
},
{
- "id": 19235,
+ "id": 1943,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -76278,7 +76395,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 121,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L121"
}
],
"type": {
@@ -76291,8 +76408,8 @@
{
"title": "Properties",
"children": [
- 19234,
- 19235
+ 1942,
+ 1943
]
}
],
@@ -76301,7 +76418,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 119,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L119"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L119"
}
]
}
@@ -76312,7 +76429,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -76323,7 +76440,7 @@
}
},
{
- "id": 19236,
+ "id": 1944,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -76339,7 +76456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -76360,7 +76477,7 @@
}
},
{
- "id": 42149,
+ "id": 25088,
"name": "validate",
"variant": "declaration",
"kind": 64,
@@ -76395,14 +76512,14 @@
},
"signatures": [
{
- "id": 42150,
+ "id": 25089,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42151,
+ "id": 25090,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -76417,7 +76534,7 @@
},
"type": {
"type": "reference",
- "target": 19233,
+ "target": 1941,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -76431,13 +76548,13 @@
{
"title": "Properties",
"children": [
- 19228
+ 1936
]
},
{
"title": "Functions",
"children": [
- 42149
+ 25088
]
}
],
@@ -76454,7 +76571,7 @@
],
"documents": [
{
- "id": 42147,
+ "id": 25086,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -76480,7 +76597,7 @@
"frontmatter": {}
},
{
- "id": 42148,
+ "id": 25087,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -76506,7 +76623,7 @@
"frontmatter": {}
},
{
- "id": 42152,
+ "id": 25091,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -76532,7 +76649,7 @@
"frontmatter": {}
},
{
- "id": 42153,
+ "id": 25092,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -76567,7 +76684,7 @@
"frontmatter": {},
"children": [
{
- "id": 42154,
+ "id": 25093,
"name": "deletePaymentSessionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -76593,7 +76710,7 @@
"frontmatter": {}
},
{
- "id": 42155,
+ "id": 25094,
"name": "updatePaymentCollectionStep",
"variant": "document",
"kind": 8388608,
@@ -76621,7 +76738,7 @@
]
},
{
- "id": 42156,
+ "id": 25095,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -76648,21 +76765,21 @@
}
],
"childrenIncludingDocuments": [
- 19207,
- 19213,
- 19219,
- 19222,
- 19226
+ 1915,
+ 1921,
+ 1927,
+ 1930,
+ 1934
],
"groups": [
{
"title": "Properties",
"children": [
- 19207,
- 19213,
- 19219,
- 19222,
- 19226
+ 1915,
+ 1921,
+ 1927,
+ 1930,
+ 1934
]
}
],
@@ -76671,12 +76788,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L58"
}
],
"signatures": [
{
- "id": 19200,
+ "id": 1908,
"name": "refreshPaymentCollectionForCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -76725,6 +76842,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -76741,12 +76867,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L58"
}
],
"typeParameters": [
{
- "id": 19201,
+ "id": 1909,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -76757,7 +76883,7 @@
}
},
{
- "id": 19202,
+ "id": 1910,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -76770,7 +76896,7 @@
],
"parameters": [
{
- "id": 19203,
+ "id": 1911,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -76794,14 +76920,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19204,
+ "id": 1912,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19205,
+ "id": 1913,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -76824,7 +76950,7 @@
}
},
{
- "id": 19206,
+ "id": 1914,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -76851,8 +76977,8 @@
{
"title": "Properties",
"children": [
- 19205,
- 19206
+ 1913,
+ 1914
]
}
],
@@ -76927,7 +77053,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19194,
+ "target": 1902,
"name": "RefreshPaymentCollectionForCartWorklowInput",
"package": "@medusajs/core-flows"
},
@@ -76937,14 +77063,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -76959,14 +77085,14 @@
]
},
{
- "id": 19233,
+ "id": 1941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19234,
+ "id": 1942,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -76976,7 +77102,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L120"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L120"
}
],
"type": {
@@ -76988,7 +77114,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19194,
+ "target": 1902,
"name": "RefreshPaymentCollectionForCartWorklowInput",
"package": "@medusajs/core-flows"
}
@@ -76998,7 +77124,7 @@
}
},
{
- "id": 19235,
+ "id": 1943,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -77008,7 +77134,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 121,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L121"
}
],
"type": {
@@ -77021,8 +77147,8 @@
{
"title": "Properties",
"children": [
- 19234,
- 19235
+ 1942,
+ 1943
]
}
],
@@ -77031,12 +77157,12 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 119,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L119"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L119"
}
]
},
{
- "id": 19234,
+ "id": 1942,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -77046,7 +77172,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L120"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L120"
}
],
"type": {
@@ -77058,7 +77184,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19194,
+ "target": 1902,
"name": "RefreshPaymentCollectionForCartWorklowInput",
"package": "@medusajs/core-flows"
}
@@ -77068,7 +77194,7 @@
}
},
{
- "id": 19235,
+ "id": 1943,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -77078,7 +77204,7 @@
"fileName": "core-flows/src/cart/workflows/refresh-payment-collection.ts",
"line": 121,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refresh-payment-collection.ts#L121"
}
],
"type": {
@@ -77087,7 +77213,7 @@
}
},
{
- "id": 19238,
+ "id": 1946,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -77105,7 +77231,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L20"
}
],
"type": {
@@ -77114,7 +77240,7 @@
}
},
{
- "id": 19239,
+ "id": 1947,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -77132,7 +77258,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L25"
}
],
"type": {
@@ -77141,7 +77267,7 @@
}
},
{
- "id": 19240,
+ "id": 1948,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -77161,7 +77287,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L29"
}
],
"type": {
@@ -77170,7 +77296,7 @@
}
},
{
- "id": 19241,
+ "id": 1949,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -77190,7 +77316,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L34"
}
],
"type": {
@@ -77214,7 +77340,7 @@
}
},
{
- "id": 19242,
+ "id": 1950,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -77234,7 +77360,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L40"
}
],
"type": {
@@ -77258,7 +77384,7 @@
}
},
{
- "id": 19243,
+ "id": 1951,
"name": "payment_id",
"variant": "declaration",
"kind": 1024,
@@ -77276,7 +77402,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L45"
}
],
"type": {
@@ -77285,7 +77411,7 @@
}
},
{
- "id": 19244,
+ "id": 1952,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -77303,7 +77429,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L50"
}
],
"type": {
@@ -77317,7 +77443,7 @@
}
},
{
- "id": 19245,
+ "id": 1953,
"name": "note",
"variant": "declaration",
"kind": 1024,
@@ -77337,7 +77463,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L55"
}
],
"type": {
@@ -77346,7 +77472,7 @@
}
},
{
- "id": 19246,
+ "id": 1954,
"name": "refundPaymentAndRecreatePaymentSessionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -77358,7 +77484,7 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L58"
}
],
"type": {
@@ -77368,7 +77494,7 @@
"defaultValue": "\"refund-payment-and-recreate-payment-session\""
},
{
- "id": 19247,
+ "id": 1955,
"name": "refundPaymentAndRecreatePaymentSessionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -77412,7 +77538,7 @@
},
"children": [
{
- "id": 19255,
+ "id": 1963,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -77435,7 +77561,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19256,
+ "id": 1964,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -77449,7 +77575,7 @@
],
"signatures": [
{
- "id": 19257,
+ "id": 1965,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -77477,7 +77603,7 @@
],
"parameters": [
{
- "id": 19258,
+ "id": 1966,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -77493,14 +77619,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19259,
+ "id": 1967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19260,
+ "id": 1968,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -77525,7 +77651,7 @@
"types": [
{
"type": "reference",
- "target": 19237,
+ "target": 1945,
"name": "refundPaymentAndRecreatePaymentSessionWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -77538,7 +77664,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19237,
+ "target": 1945,
"name": "refundPaymentAndRecreatePaymentSessionWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -77554,7 +77680,7 @@
{
"title": "Properties",
"children": [
- 19260
+ 1968
]
}
],
@@ -77575,14 +77701,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19261,
+ "id": 1969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19262,
+ "id": 1970,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -77628,7 +77754,7 @@
}
},
{
- "id": 19263,
+ "id": 1971,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -77684,7 +77810,7 @@
}
},
{
- "id": 19264,
+ "id": 1972,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -77730,7 +77856,7 @@
}
},
{
- "id": 19265,
+ "id": 1973,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -77776,7 +77902,7 @@
}
},
{
- "id": 19266,
+ "id": 1974,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -77852,7 +77978,7 @@
}
},
{
- "id": 19267,
+ "id": 1975,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -77939,7 +78065,7 @@
}
},
{
- "id": 19268,
+ "id": 1976,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -77995,7 +78121,7 @@
}
},
{
- "id": 19269,
+ "id": 1977,
"name": "authorized_at",
"variant": "declaration",
"kind": 1024,
@@ -78062,7 +78188,7 @@
}
},
{
- "id": 19270,
+ "id": 1978,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -78131,7 +78257,7 @@
}
},
{
- "id": 19271,
+ "id": 1979,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -78200,7 +78326,7 @@
}
},
{
- "id": 19272,
+ "id": 1980,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -78246,7 +78372,7 @@
}
},
{
- "id": 19273,
+ "id": 1981,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -78316,7 +78442,7 @@
}
},
{
- "id": 19274,
+ "id": 1982,
"name": "payment",
"variant": "declaration",
"kind": 1024,
@@ -78386,7 +78512,7 @@
}
},
{
- "id": 19275,
+ "id": 1983,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -78477,20 +78603,20 @@
{
"title": "Properties",
"children": [
- 19262,
- 19263,
- 19264,
- 19265,
- 19266,
- 19267,
- 19268,
- 19269,
- 19270,
- 19271,
- 19272,
- 19273,
- 19274,
- 19275
+ 1970,
+ 1971,
+ 1972,
+ 1973,
+ 1974,
+ 1975,
+ 1976,
+ 1977,
+ 1978,
+ 1979,
+ 1980,
+ 1981,
+ 1982,
+ 1983
]
}
],
@@ -78535,14 +78661,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19276,
+ "id": 1984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19277,
+ "id": 1985,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -78556,7 +78682,7 @@
],
"signatures": [
{
- "id": 19278,
+ "id": 1986,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -78570,7 +78696,7 @@
],
"parameters": [
{
- "id": 19279,
+ "id": 1987,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -78581,14 +78707,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19280,
+ "id": 1988,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19281,
+ "id": 1989,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -78612,7 +78738,7 @@
{
"title": "Properties",
"children": [
- 19281
+ 1989
]
}
],
@@ -78694,7 +78820,7 @@
{
"title": "Methods",
"children": [
- 19277
+ 1985
]
}
],
@@ -78735,7 +78861,7 @@
}
},
{
- "id": 19282,
+ "id": 1990,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -78758,7 +78884,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19283,
+ "id": 1991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78772,7 +78898,7 @@
],
"signatures": [
{
- "id": 19284,
+ "id": 1992,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78800,7 +78926,7 @@
],
"typeParameters": [
{
- "id": 19285,
+ "id": 1993,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -78811,7 +78937,7 @@
}
},
{
- "id": 19286,
+ "id": 1994,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -78824,7 +78950,7 @@
],
"parameters": [
{
- "id": 19287,
+ "id": 1995,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -78857,7 +78983,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -78868,13 +78994,13 @@
},
"trueType": {
"type": "reference",
- "target": 19237,
+ "target": 1945,
"name": "refundPaymentAndRecreatePaymentSessionWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -78907,7 +79033,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -78927,7 +79053,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -78947,7 +79073,7 @@
}
},
{
- "id": 19288,
+ "id": 1996,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -78970,7 +79096,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19289,
+ "id": 1997,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78984,7 +79110,7 @@
],
"signatures": [
{
- "id": 19290,
+ "id": 1998,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -79006,7 +79132,7 @@
}
},
{
- "id": 19291,
+ "id": 1999,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -79029,7 +79155,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19292,
+ "id": 2000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79043,7 +79169,7 @@
],
"signatures": [
{
- "id": 19293,
+ "id": 2001,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -79057,7 +79183,7 @@
],
"parameters": [
{
- "id": 19294,
+ "id": 2002,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -79083,7 +79209,7 @@
}
},
{
- "id": 19295,
+ "id": 2003,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -79106,7 +79232,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19296,
+ "id": 2004,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79117,7 +79243,7 @@
],
"documents": [
{
- "id": 42157,
+ "id": 25096,
"name": "refundPaymentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -79143,7 +79269,7 @@
"frontmatter": {}
},
{
- "id": 42158,
+ "id": 25097,
"name": "createPaymentSessionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -79170,21 +79296,21 @@
}
],
"childrenIncludingDocuments": [
- 19255,
- 19282,
- 19288,
- 19291,
- 19295
+ 1963,
+ 1990,
+ 1996,
+ 1999,
+ 2003
],
"groups": [
{
"title": "Properties",
"children": [
- 19255,
- 19282,
- 19288,
- 19291,
- 19295
+ 1963,
+ 1990,
+ 1996,
+ 1999,
+ 2003
]
}
],
@@ -79193,12 +79319,12 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L67"
}
],
"signatures": [
{
- "id": 19248,
+ "id": 1956,
"name": "refundPaymentAndRecreatePaymentSessionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -79245,12 +79371,12 @@
"fileName": "core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/refund-payment-recreate-payment-session.ts#L67"
}
],
"typeParameters": [
{
- "id": 19249,
+ "id": 1957,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -79261,7 +79387,7 @@
}
},
{
- "id": 19250,
+ "id": 1958,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -79274,7 +79400,7 @@
],
"parameters": [
{
- "id": 19251,
+ "id": 1959,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -79298,14 +79424,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19252,
+ "id": 1960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19253,
+ "id": 1961,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -79328,7 +79454,7 @@
}
},
{
- "id": 19254,
+ "id": 1962,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -79355,8 +79481,8 @@
{
"title": "Properties",
"children": [
- 19253,
- 19254
+ 1961,
+ 1962
]
}
],
@@ -79431,7 +79557,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19237,
+ "target": 1945,
"name": "refundPaymentAndRecreatePaymentSessionWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -79446,14 +79572,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -79468,7 +79594,7 @@
]
},
{
- "id": 19299,
+ "id": 2007,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -79486,7 +79612,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L24"
}
],
"type": {
@@ -79495,7 +79621,7 @@
}
},
{
- "id": 19300,
+ "id": 2008,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -79513,7 +79639,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L28"
}
],
"type": {
@@ -79522,7 +79648,7 @@
}
},
{
- "id": 19301,
+ "id": 2009,
"name": "transferCartCustomerWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -79534,7 +79660,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L31"
}
],
"type": {
@@ -79544,7 +79670,7 @@
"defaultValue": "\"transfer-cart-customer\""
},
{
- "id": 19302,
+ "id": 2010,
"name": "transferCartCustomerWorkflow",
"variant": "declaration",
"kind": 64,
@@ -79593,6 +79719,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -79606,7 +79741,7 @@
},
"children": [
{
- "id": 19310,
+ "id": 2018,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -79629,7 +79764,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19311,
+ "id": 2019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79643,7 +79778,7 @@
],
"signatures": [
{
- "id": 19312,
+ "id": 2020,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -79671,7 +79806,7 @@
],
"parameters": [
{
- "id": 19313,
+ "id": 2021,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -79687,14 +79822,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19314,
+ "id": 2022,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19315,
+ "id": 2023,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -79722,7 +79857,7 @@
"types": [
{
"type": "reference",
- "target": 19297,
+ "target": 2005,
"name": "TransferCartCustomerWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -79749,7 +79884,7 @@
"types": [
{
"type": "reference",
- "target": 19297,
+ "target": 2005,
"name": "TransferCartCustomerWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -79776,7 +79911,7 @@
{
"title": "Properties",
"children": [
- 19315
+ 2023
]
}
],
@@ -79801,7 +79936,7 @@
}
},
{
- "id": 19316,
+ "id": 2024,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -79824,7 +79959,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19317,
+ "id": 2025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79838,7 +79973,7 @@
],
"signatures": [
{
- "id": 19318,
+ "id": 2026,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -79866,7 +80001,7 @@
],
"typeParameters": [
{
- "id": 19319,
+ "id": 2027,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -79877,7 +80012,7 @@
}
},
{
- "id": 19320,
+ "id": 2028,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -79890,7 +80025,7 @@
],
"parameters": [
{
- "id": 19321,
+ "id": 2029,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -79923,7 +80058,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -79937,7 +80072,7 @@
"types": [
{
"type": "reference",
- "target": 19297,
+ "target": 2005,
"name": "TransferCartCustomerWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -79954,7 +80089,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -79987,7 +80122,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -80002,7 +80137,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -80022,7 +80157,7 @@
}
},
{
- "id": 19322,
+ "id": 2030,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -80045,7 +80180,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19323,
+ "id": 2031,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80059,7 +80194,7 @@
],
"signatures": [
{
- "id": 19324,
+ "id": 2032,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -80081,7 +80216,7 @@
}
},
{
- "id": 19325,
+ "id": 2033,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -80104,7 +80239,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19326,
+ "id": 2034,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80118,7 +80253,7 @@
],
"signatures": [
{
- "id": 19327,
+ "id": 2035,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -80132,7 +80267,7 @@
],
"parameters": [
{
- "id": 19328,
+ "id": 2036,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -80158,7 +80293,7 @@
}
},
{
- "id": 19329,
+ "id": 2037,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -80181,14 +80316,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19330,
+ "id": 2038,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19331,
+ "id": 2039,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -80196,7 +80331,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19332,
+ "id": 2040,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80210,7 +80345,7 @@
],
"signatures": [
{
- "id": 19333,
+ "id": 2041,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -80224,7 +80359,7 @@
],
"typeParameters": [
{
- "id": 19334,
+ "id": 2042,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -80233,7 +80368,7 @@
],
"parameters": [
{
- "id": 19335,
+ "id": 2043,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -80248,14 +80383,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19336,
+ "id": 2044,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19337,
+ "id": 2045,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -80265,7 +80400,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 78,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L78"
}
],
"type": {
@@ -80280,7 +80415,7 @@
"types": [
{
"type": "reference",
- "target": 19297,
+ "target": 2005,
"name": "TransferCartCustomerWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -80301,7 +80436,7 @@
}
},
{
- "id": 19338,
+ "id": 2046,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -80311,7 +80446,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L79"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L79"
}
],
"type": {
@@ -80324,8 +80459,8 @@
{
"title": "Properties",
"children": [
- 19337,
- 19338
+ 2045,
+ 2046
]
}
],
@@ -80334,7 +80469,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 77,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L77"
}
]
}
@@ -80345,7 +80480,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -80356,7 +80491,7 @@
}
},
{
- "id": 19339,
+ "id": 2047,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -80372,7 +80507,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -80393,7 +80528,7 @@
}
},
{
- "id": 42159,
+ "id": 25098,
"name": "validate",
"variant": "declaration",
"kind": 64,
@@ -80428,14 +80563,14 @@
},
"signatures": [
{
- "id": 42160,
+ "id": 25099,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42161,
+ "id": 25100,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -80450,7 +80585,7 @@
},
"type": {
"type": "reference",
- "target": 19336,
+ "target": 2044,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -80464,13 +80599,13 @@
{
"title": "Properties",
"children": [
- 19331
+ 2039
]
},
{
"title": "Functions",
"children": [
- 42159
+ 25098
]
}
],
@@ -80487,7 +80622,7 @@
],
"documents": [
{
- "id": 42162,
+ "id": 25101,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -80513,7 +80648,7 @@
"frontmatter": {}
},
{
- "id": 42163,
+ "id": 25102,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -80548,7 +80683,7 @@
"frontmatter": {},
"children": [
{
- "id": 42164,
+ "id": 25103,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -80574,7 +80709,7 @@
"frontmatter": {}
},
{
- "id": 42165,
+ "id": 25104,
"name": "updateCartsStep",
"variant": "document",
"kind": 8388608,
@@ -80600,7 +80735,7 @@
"frontmatter": {}
},
{
- "id": 42166,
+ "id": 25105,
"name": "refreshCartItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -80626,7 +80761,7 @@
"frontmatter": {}
},
{
- "id": 42167,
+ "id": 25106,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -80652,7 +80787,7 @@
"frontmatter": {}
},
{
- "id": 42168,
+ "id": 25107,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -80681,21 +80816,21 @@
}
],
"childrenIncludingDocuments": [
- 19310,
- 19316,
- 19322,
- 19325,
- 19329
+ 2018,
+ 2024,
+ 2030,
+ 2033,
+ 2037
],
"groups": [
{
"title": "Properties",
"children": [
- 19310,
- 19316,
- 19322,
- 19325,
- 19329
+ 2018,
+ 2024,
+ 2030,
+ 2033,
+ 2037
]
}
],
@@ -80704,12 +80839,12 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L54"
}
],
"signatures": [
{
- "id": 19303,
+ "id": 2011,
"name": "transferCartCustomerWorkflow",
"variant": "signature",
"kind": 4096,
@@ -80758,6 +80893,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -80774,12 +80918,12 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L54"
}
],
"typeParameters": [
{
- "id": 19304,
+ "id": 2012,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -80790,7 +80934,7 @@
}
},
{
- "id": 19305,
+ "id": 2013,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -80803,7 +80947,7 @@
],
"parameters": [
{
- "id": 19306,
+ "id": 2014,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -80827,14 +80971,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19307,
+ "id": 2015,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19308,
+ "id": 2016,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -80857,7 +81001,7 @@
}
},
{
- "id": 19309,
+ "id": 2017,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -80884,8 +81028,8 @@
{
"title": "Properties",
"children": [
- 19308,
- 19309
+ 2016,
+ 2017
]
}
],
@@ -80963,7 +81107,7 @@
"types": [
{
"type": "reference",
- "target": 19297,
+ "target": 2005,
"name": "TransferCartCustomerWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -80984,14 +81128,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -81006,14 +81150,14 @@
]
},
{
- "id": 19336,
+ "id": 2044,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19337,
+ "id": 2045,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -81023,7 +81167,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 78,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L78"
}
],
"type": {
@@ -81038,7 +81182,7 @@
"types": [
{
"type": "reference",
- "target": 19297,
+ "target": 2005,
"name": "TransferCartCustomerWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -81059,7 +81203,7 @@
}
},
{
- "id": 19338,
+ "id": 2046,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -81069,7 +81213,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L79"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L79"
}
],
"type": {
@@ -81082,8 +81226,8 @@
{
"title": "Properties",
"children": [
- 19337,
- 19338
+ 2045,
+ 2046
]
}
],
@@ -81092,12 +81236,12 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 77,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L77"
}
]
},
{
- "id": 19337,
+ "id": 2045,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -81107,7 +81251,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 78,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L78"
}
],
"type": {
@@ -81122,7 +81266,7 @@
"types": [
{
"type": "reference",
- "target": 19297,
+ "target": 2005,
"name": "TransferCartCustomerWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -81143,7 +81287,7 @@
}
},
{
- "id": 19338,
+ "id": 2046,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -81153,7 +81297,7 @@
"fileName": "core-flows/src/cart/workflows/transfer-cart-customer.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L79"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/transfer-cart-customer.ts#L79"
}
],
"type": {
@@ -81162,7 +81306,7 @@
}
},
{
- "id": 19341,
+ "id": 2049,
"name": "updateCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -81174,7 +81318,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L38"
}
],
"type": {
@@ -81184,7 +81328,7 @@
"defaultValue": "\"update-cart\""
},
{
- "id": 19342,
+ "id": 2050,
"name": "updateCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -81268,6 +81412,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -81281,7 +81434,7 @@
},
"children": [
{
- "id": 19350,
+ "id": 2058,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -81304,7 +81457,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19351,
+ "id": 2059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81318,7 +81471,7 @@
],
"signatures": [
{
- "id": 19352,
+ "id": 2060,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -81346,7 +81499,7 @@
],
"parameters": [
{
- "id": 19353,
+ "id": 2061,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -81362,14 +81515,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19354,
+ "id": 2062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19355,
+ "id": 2063,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -81394,7 +81547,7 @@
"types": [
{
"type": "reference",
- "target": 19340,
+ "target": 2048,
"name": "UpdateCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -81407,7 +81560,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19340,
+ "target": 2048,
"name": "UpdateCartWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -81423,7 +81576,7 @@
{
"title": "Properties",
"children": [
- 19355
+ 2063
]
}
],
@@ -81448,7 +81601,7 @@
}
},
{
- "id": 19356,
+ "id": 2064,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -81471,7 +81624,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19357,
+ "id": 2065,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81485,7 +81638,7 @@
],
"signatures": [
{
- "id": 19358,
+ "id": 2066,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -81513,7 +81666,7 @@
],
"typeParameters": [
{
- "id": 19359,
+ "id": 2067,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -81524,7 +81677,7 @@
}
},
{
- "id": 19360,
+ "id": 2068,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -81537,7 +81690,7 @@
],
"parameters": [
{
- "id": 19361,
+ "id": 2069,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -81570,7 +81723,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -81581,13 +81734,13 @@
},
"trueType": {
"type": "reference",
- "target": 19340,
+ "target": 2048,
"name": "UpdateCartWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -81620,7 +81773,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -81635,7 +81788,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -81655,7 +81808,7 @@
}
},
{
- "id": 19362,
+ "id": 2070,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -81678,7 +81831,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19363,
+ "id": 2071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81692,7 +81845,7 @@
],
"signatures": [
{
- "id": 19364,
+ "id": 2072,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -81714,7 +81867,7 @@
}
},
{
- "id": 19365,
+ "id": 2073,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -81737,7 +81890,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19366,
+ "id": 2074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81751,7 +81904,7 @@
],
"signatures": [
{
- "id": 19367,
+ "id": 2075,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -81765,7 +81918,7 @@
],
"parameters": [
{
- "id": 19368,
+ "id": 2076,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -81791,7 +81944,7 @@
}
},
{
- "id": 19369,
+ "id": 2077,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -81817,14 +81970,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19370,
+ "id": 2078,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19371,
+ "id": 2079,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -81860,7 +82013,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19372,
+ "id": 2080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81874,7 +82027,7 @@
],
"signatures": [
{
- "id": 19373,
+ "id": 2081,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -81888,7 +82041,7 @@
],
"typeParameters": [
{
- "id": 19374,
+ "id": 2082,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -81897,7 +82050,7 @@
],
"parameters": [
{
- "id": 19375,
+ "id": 2083,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -81912,14 +82065,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19376,
+ "id": 2084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19377,
+ "id": 2085,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -81929,7 +82082,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 245,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L245"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L245"
}
],
"type": {
@@ -81942,14 +82095,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19378,
+ "id": 2086,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19379,
+ "id": 2087,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -81959,7 +82112,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 184,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
}
],
"type": {
@@ -81969,7 +82122,7 @@
"defaultValue": "data.region.currency_code"
},
{
- "id": 19380,
+ "id": 2088,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -81979,7 +82132,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 185,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
}
],
"type": {
@@ -81989,7 +82142,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 19381,
+ "id": 2089,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -82015,7 +82168,7 @@
}
},
{
- "id": 19382,
+ "id": 2090,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -82052,7 +82205,7 @@
}
},
{
- "id": 19383,
+ "id": 2091,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -82089,7 +82242,7 @@
}
},
{
- "id": 19384,
+ "id": 2092,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -82126,7 +82279,7 @@
}
},
{
- "id": 19385,
+ "id": 2093,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -82178,7 +82331,7 @@
}
},
{
- "id": 19386,
+ "id": 2094,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -82229,7 +82382,7 @@
}
},
{
- "id": 19387,
+ "id": 2095,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -82284,15 +82437,15 @@
{
"title": "Properties",
"children": [
- 19379,
- 19380,
- 19381,
- 19382,
- 19383,
- 19384,
- 19385,
- 19386,
- 19387
+ 2087,
+ 2088,
+ 2089,
+ 2090,
+ 2091,
+ 2092,
+ 2093,
+ 2094,
+ 2095
]
}
],
@@ -82301,7 +82454,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 182,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
}
]
}
@@ -82313,7 +82466,7 @@
"defaultValue": "cartInput"
},
{
- "id": 19388,
+ "id": 2096,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -82323,7 +82476,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 246,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L246"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L246"
}
],
"type": {
@@ -82337,8 +82490,8 @@
{
"title": "Properties",
"children": [
- 19377,
- 19388
+ 2085,
+ 2096
]
}
],
@@ -82347,7 +82500,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 244,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L244"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L244"
}
]
}
@@ -82358,7 +82511,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -82369,7 +82522,7 @@
}
},
{
- "id": 19389,
+ "id": 2097,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -82385,7 +82538,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -82406,14 +82559,14 @@
},
"signatures": [
{
- "id": 42176,
+ "id": 25115,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42177,
+ "id": 25116,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -82428,7 +82581,7 @@
},
"type": {
"type": "reference",
- "target": 19376,
+ "target": 2084,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -82442,7 +82595,7 @@
{
"title": "Properties",
"children": [
- 19371
+ 2079
]
}
],
@@ -82458,14 +82611,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19390,
+ "id": 2098,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19391,
+ "id": 2099,
"name": "cartUpdated",
"variant": "declaration",
"kind": 1024,
@@ -82501,7 +82654,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19392,
+ "id": 2100,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -82515,7 +82668,7 @@
],
"signatures": [
{
- "id": 19393,
+ "id": 2101,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -82529,7 +82682,7 @@
],
"typeParameters": [
{
- "id": 19394,
+ "id": 2102,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -82538,7 +82691,7 @@
],
"parameters": [
{
- "id": 19395,
+ "id": 2103,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -82553,14 +82706,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19396,
+ "id": 2104,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19397,
+ "id": 2105,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -82570,7 +82723,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 322,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L322"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L322"
}
],
"type": {
@@ -82579,7 +82732,7 @@
}
},
{
- "id": 19398,
+ "id": 2106,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -82597,7 +82750,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 323,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L323"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L323"
}
],
"type": {
@@ -82620,8 +82773,8 @@
{
"title": "Properties",
"children": [
- 19397,
- 19398
+ 2105,
+ 2106
]
}
],
@@ -82630,7 +82783,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 321,
"character": 50,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L321"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L321"
}
]
}
@@ -82641,7 +82794,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -82652,7 +82805,7 @@
}
},
{
- "id": 19399,
+ "id": 2107,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -82668,7 +82821,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -82689,14 +82842,14 @@
},
"signatures": [
{
- "id": 42187,
+ "id": 25126,
"name": "cartUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42188,
+ "id": 25127,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -82711,7 +82864,7 @@
},
"type": {
"type": "reference",
- "target": 19396,
+ "target": 2104,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -82725,7 +82878,7 @@
{
"title": "Properties",
"children": [
- 19391
+ 2099
]
}
],
@@ -82744,7 +82897,7 @@
],
"documents": [
{
- "id": 42169,
+ "id": 25108,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -82770,7 +82923,7 @@
"frontmatter": {}
},
{
- "id": 42170,
+ "id": 25109,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -82796,7 +82949,7 @@
"frontmatter": {}
},
{
- "id": 42171,
+ "id": 25110,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -82822,7 +82975,7 @@
"frontmatter": {}
},
{
- "id": 42172,
+ "id": 25111,
"name": "findSalesChannelStep",
"variant": "document",
"kind": 8388608,
@@ -82848,7 +83001,7 @@
"frontmatter": {}
},
{
- "id": 42173,
+ "id": 25112,
"name": "findOrCreateCustomerStep",
"variant": "document",
"kind": 8388608,
@@ -82874,7 +83027,7 @@
"frontmatter": {}
},
{
- "id": 42174,
+ "id": 25113,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -82909,7 +83062,7 @@
"frontmatter": {},
"children": [
{
- "id": 42175,
+ "id": 25114,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -82937,7 +83090,7 @@
]
},
{
- "id": 42178,
+ "id": 25117,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -82963,7 +83116,7 @@
"frontmatter": {}
},
{
- "id": 42179,
+ "id": 25118,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -82998,7 +83151,7 @@
"frontmatter": {},
"children": [
{
- "id": 42180,
+ "id": 25119,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -83026,7 +83179,7 @@
]
},
{
- "id": 42181,
+ "id": 25120,
"name": "updateCartsStep",
"variant": "document",
"kind": 8388608,
@@ -83052,7 +83205,7 @@
"frontmatter": {}
},
{
- "id": 42182,
+ "id": 25121,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -83078,7 +83231,7 @@
"frontmatter": {}
},
{
- "id": 42183,
+ "id": 25122,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -83113,7 +83266,7 @@
"frontmatter": {},
"children": [
{
- "id": 42184,
+ "id": 25123,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -83139,7 +83292,7 @@
"frontmatter": {}
},
{
- "id": 42185,
+ "id": 25124,
"name": "deleteLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -83167,7 +83320,7 @@
]
},
{
- "id": 42186,
+ "id": 25125,
"name": "refreshCartItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -83193,7 +83346,7 @@
"frontmatter": {}
},
{
- "id": 42189,
+ "id": 25128,
"name": "cartUpdated",
"variant": "document",
"kind": 8388608,
@@ -83219,7 +83372,7 @@
"frontmatter": {}
},
{
- "id": 42190,
+ "id": 25129,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -83246,21 +83399,21 @@
}
],
"childrenIncludingDocuments": [
- 19350,
- 19356,
- 19362,
- 19365,
- 19369
+ 2058,
+ 2064,
+ 2070,
+ 2073,
+ 2077
],
"groups": [
{
"title": "Properties",
"children": [
- 19350,
- 19356,
- 19362,
- 19365,
- 19369
+ 2058,
+ 2064,
+ 2070,
+ 2073,
+ 2077
]
}
],
@@ -83269,12 +83422,12 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L82"
}
],
"signatures": [
{
- "id": 19343,
+ "id": 2051,
"name": "updateCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -83358,6 +83511,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -83374,12 +83536,12 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L82"
}
],
"typeParameters": [
{
- "id": 19344,
+ "id": 2052,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -83390,7 +83552,7 @@
}
},
{
- "id": 19345,
+ "id": 2053,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -83403,7 +83565,7 @@
],
"parameters": [
{
- "id": 19346,
+ "id": 2054,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -83427,14 +83589,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19347,
+ "id": 2055,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19348,
+ "id": 2056,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -83457,7 +83619,7 @@
}
},
{
- "id": 19349,
+ "id": 2057,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -83484,8 +83646,8 @@
{
"title": "Properties",
"children": [
- 19348,
- 19349
+ 2056,
+ 2057
]
}
],
@@ -83560,7 +83722,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19340,
+ "target": 2048,
"name": "UpdateCartWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -83570,14 +83732,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -83592,14 +83754,14 @@
]
},
{
- "id": 19376,
+ "id": 2084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19377,
+ "id": 2085,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -83609,7 +83771,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 245,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L245"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L245"
}
],
"type": {
@@ -83622,14 +83784,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19378,
+ "id": 2086,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19379,
+ "id": 2087,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -83639,7 +83801,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 184,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
}
],
"type": {
@@ -83649,7 +83811,7 @@
"defaultValue": "data.region.currency_code"
},
{
- "id": 19380,
+ "id": 2088,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -83659,7 +83821,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 185,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
}
],
"type": {
@@ -83669,7 +83831,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 19381,
+ "id": 2089,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -83695,7 +83857,7 @@
}
},
{
- "id": 19382,
+ "id": 2090,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -83732,7 +83894,7 @@
}
},
{
- "id": 19383,
+ "id": 2091,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -83769,7 +83931,7 @@
}
},
{
- "id": 19384,
+ "id": 2092,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -83806,7 +83968,7 @@
}
},
{
- "id": 19385,
+ "id": 2093,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -83858,7 +84020,7 @@
}
},
{
- "id": 19386,
+ "id": 2094,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -83909,7 +84071,7 @@
}
},
{
- "id": 19387,
+ "id": 2095,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -83964,15 +84126,15 @@
{
"title": "Properties",
"children": [
- 19379,
- 19380,
- 19381,
- 19382,
- 19383,
- 19384,
- 19385,
- 19386,
- 19387
+ 2087,
+ 2088,
+ 2089,
+ 2090,
+ 2091,
+ 2092,
+ 2093,
+ 2094,
+ 2095
]
}
],
@@ -83981,7 +84143,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 182,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
}
]
}
@@ -83993,7 +84155,7 @@
"defaultValue": "cartInput"
},
{
- "id": 19388,
+ "id": 2096,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -84003,7 +84165,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 246,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L246"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L246"
}
],
"type": {
@@ -84017,8 +84179,8 @@
{
"title": "Properties",
"children": [
- 19377,
- 19388
+ 2085,
+ 2096
]
}
],
@@ -84027,19 +84189,19 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 244,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L244"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L244"
}
]
},
{
- "id": 19378,
+ "id": 2086,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19379,
+ "id": 2087,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -84049,7 +84211,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 184,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
}
],
"type": {
@@ -84059,7 +84221,7 @@
"defaultValue": "data.region.currency_code"
},
{
- "id": 19380,
+ "id": 2088,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -84069,7 +84231,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 185,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
}
],
"type": {
@@ -84079,7 +84241,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 19381,
+ "id": 2089,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -84105,7 +84267,7 @@
}
},
{
- "id": 19382,
+ "id": 2090,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -84142,7 +84304,7 @@
}
},
{
- "id": 19383,
+ "id": 2091,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -84179,7 +84341,7 @@
}
},
{
- "id": 19384,
+ "id": 2092,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -84216,7 +84378,7 @@
}
},
{
- "id": 19385,
+ "id": 2093,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -84268,7 +84430,7 @@
}
},
{
- "id": 19386,
+ "id": 2094,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -84319,7 +84481,7 @@
}
},
{
- "id": 19387,
+ "id": 2095,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -84374,15 +84536,15 @@
{
"title": "Properties",
"children": [
- 19379,
- 19380,
- 19381,
- 19382,
- 19383,
- 19384,
- 19385,
- 19386,
- 19387
+ 2087,
+ 2088,
+ 2089,
+ 2090,
+ 2091,
+ 2092,
+ 2093,
+ 2094,
+ 2095
]
}
],
@@ -84391,12 +84553,12 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 182,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
}
]
},
{
- "id": 19379,
+ "id": 2087,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -84406,7 +84568,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 184,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
}
],
"type": {
@@ -84416,7 +84578,7 @@
"defaultValue": "data.region.currency_code"
},
{
- "id": 19380,
+ "id": 2088,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -84426,7 +84588,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 185,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
}
],
"type": {
@@ -84436,7 +84598,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 19377,
+ "id": 2085,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -84446,7 +84608,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 245,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L245"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L245"
}
],
"type": {
@@ -84459,14 +84621,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19378,
+ "id": 2086,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19379,
+ "id": 2087,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -84476,7 +84638,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 184,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L184"
}
],
"type": {
@@ -84486,7 +84648,7 @@
"defaultValue": "data.region.currency_code"
},
{
- "id": 19380,
+ "id": 2088,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -84496,7 +84658,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 185,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L185"
}
],
"type": {
@@ -84506,7 +84668,7 @@
"defaultValue": "data.region.id"
},
{
- "id": 19381,
+ "id": 2089,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -84532,7 +84694,7 @@
}
},
{
- "id": 19382,
+ "id": 2090,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -84569,7 +84731,7 @@
}
},
{
- "id": 19383,
+ "id": 2091,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -84606,7 +84768,7 @@
}
},
{
- "id": 19384,
+ "id": 2092,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -84643,7 +84805,7 @@
}
},
{
- "id": 19385,
+ "id": 2093,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -84695,7 +84857,7 @@
}
},
{
- "id": 19386,
+ "id": 2094,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -84746,7 +84908,7 @@
}
},
{
- "id": 19387,
+ "id": 2095,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -84801,15 +84963,15 @@
{
"title": "Properties",
"children": [
- 19379,
- 19380,
- 19381,
- 19382,
- 19383,
- 19384,
- 19385,
- 19386,
- 19387
+ 2087,
+ 2088,
+ 2089,
+ 2090,
+ 2091,
+ 2092,
+ 2093,
+ 2094,
+ 2095
]
}
],
@@ -84818,7 +84980,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 182,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L182"
}
]
}
@@ -84830,7 +84992,7 @@
"defaultValue": "cartInput"
},
{
- "id": 19388,
+ "id": 2096,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -84840,7 +85002,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 246,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L246"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L246"
}
],
"type": {
@@ -84850,14 +85012,14 @@
"defaultValue": "cartToUpdate"
},
{
- "id": 19396,
+ "id": 2104,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19397,
+ "id": 2105,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -84867,7 +85029,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 322,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L322"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L322"
}
],
"type": {
@@ -84876,7 +85038,7 @@
}
},
{
- "id": 19398,
+ "id": 2106,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -84894,7 +85056,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 323,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L323"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L323"
}
],
"type": {
@@ -84917,8 +85079,8 @@
{
"title": "Properties",
"children": [
- 19397,
- 19398
+ 2105,
+ 2106
]
}
],
@@ -84927,12 +85089,12 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 321,
"character": 50,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L321"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L321"
}
]
},
{
- "id": 19397,
+ "id": 2105,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -84942,7 +85104,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 322,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L322"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L322"
}
],
"type": {
@@ -84951,7 +85113,7 @@
}
},
{
- "id": 19398,
+ "id": 2106,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -84969,7 +85131,7 @@
"fileName": "core-flows/src/cart/workflows/update-cart.ts",
"line": 323,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart.ts#L323"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart.ts#L323"
}
],
"type": {
@@ -84988,7 +85150,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 19402,
+ "id": 2110,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -85006,9 +85168,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 33,
+ "line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L34"
}
],
"type": {
@@ -85017,7 +85179,7 @@
}
},
{
- "id": 19403,
+ "id": 2111,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -85035,9 +85197,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 37,
+ "line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L38"
}
],
"type": {
@@ -85046,7 +85208,7 @@
}
},
{
- "id": 19404,
+ "id": 2112,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -85064,9 +85226,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 42,
+ "line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L43"
}
],
"type": {
@@ -85078,7 +85240,7 @@
}
},
{
- "id": 19405,
+ "id": 2113,
"name": "action",
"variant": "declaration",
"kind": 1024,
@@ -85096,9 +85258,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 46,
+ "line": 47,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L47"
}
],
"type": {
@@ -85135,7 +85297,36 @@
}
},
{
- "id": 19406,
+ "id": 2114,
+ "name": "force_refresh_payment_collection",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Wether to force the refresh of the cart payment collection. If the caller doesn't refresh it explicitly,\nyou should probably set this property to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
+ "line": 55,
+ "character": 4,
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L55"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 2115,
"name": "updateCartPromotionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -85145,9 +85336,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 52,
+ "line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L58"
}
],
"type": {
@@ -85157,7 +85348,7 @@
"defaultValue": "\"update-cart-promotions\""
},
{
- "id": 19407,
+ "id": 2116,
"name": "updateCartPromotionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -85196,12 +85387,30 @@
"text": "locking,promotion,query,cart,link,remote query,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "locking,payment,workflow,logger,promotion,query,cart,link,remote query"
+ }
+ ]
}
]
},
"children": [
{
- "id": 19415,
+ "id": 2124,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -85224,7 +85433,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19416,
+ "id": 2125,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85238,7 +85447,7 @@
],
"signatures": [
{
- "id": 19417,
+ "id": 2126,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -85266,7 +85475,7 @@
],
"parameters": [
{
- "id": 19418,
+ "id": 2127,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -85282,14 +85491,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19419,
+ "id": 2128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19420,
+ "id": 2129,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -85314,7 +85523,7 @@
"types": [
{
"type": "reference",
- "target": 19400,
+ "target": 2108,
"name": "UpdateCartPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -85327,7 +85536,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19400,
+ "target": 2108,
"name": "UpdateCartPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -85343,7 +85552,7 @@
{
"title": "Properties",
"children": [
- 19420
+ 2129
]
}
],
@@ -85368,7 +85577,7 @@
}
},
{
- "id": 19421,
+ "id": 2130,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -85391,7 +85600,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19422,
+ "id": 2131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85405,7 +85614,7 @@
],
"signatures": [
{
- "id": 19423,
+ "id": 2132,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -85433,7 +85642,7 @@
],
"typeParameters": [
{
- "id": 19424,
+ "id": 2133,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -85444,7 +85653,7 @@
}
},
{
- "id": 19425,
+ "id": 2134,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -85457,7 +85666,7 @@
],
"parameters": [
{
- "id": 19426,
+ "id": 2135,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -85490,7 +85699,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -85501,13 +85710,13 @@
},
"trueType": {
"type": "reference",
- "target": 19400,
+ "target": 2108,
"name": "UpdateCartPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -85540,7 +85749,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -85555,7 +85764,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -85575,7 +85784,7 @@
}
},
{
- "id": 19427,
+ "id": 2136,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -85598,7 +85807,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19428,
+ "id": 2137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85612,7 +85821,7 @@
],
"signatures": [
{
- "id": 19429,
+ "id": 2138,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -85634,7 +85843,7 @@
}
},
{
- "id": 19430,
+ "id": 2139,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -85657,7 +85866,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19431,
+ "id": 2140,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85671,7 +85880,7 @@
],
"signatures": [
{
- "id": 19432,
+ "id": 2141,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -85685,7 +85894,7 @@
],
"parameters": [
{
- "id": 19433,
+ "id": 2142,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -85711,7 +85920,7 @@
}
},
{
- "id": 19434,
+ "id": 2143,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -85734,14 +85943,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19435,
+ "id": 2144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19436,
+ "id": 2145,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -85749,7 +85958,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19437,
+ "id": 2146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85763,7 +85972,7 @@
],
"signatures": [
{
- "id": 19438,
+ "id": 2147,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -85777,7 +85986,7 @@
],
"typeParameters": [
{
- "id": 19439,
+ "id": 2148,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -85786,7 +85995,7 @@
],
"parameters": [
{
- "id": 19440,
+ "id": 2149,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -85801,14 +86010,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19441,
+ "id": 2150,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19442,
+ "id": 2151,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -85816,9 +86025,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 109,
+ "line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L115"
}
],
"type": {
@@ -85830,7 +86039,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19400,
+ "target": 2108,
"name": "UpdateCartPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -85840,7 +86049,7 @@
}
},
{
- "id": 19443,
+ "id": 2152,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -85848,9 +86057,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 110,
+ "line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L116"
}
],
"type": {
@@ -85863,17 +86072,17 @@
{
"title": "Properties",
"children": [
- 19442,
- 19443
+ 2151,
+ 2152
]
}
],
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 108,
+ "line": 114,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L108"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L114"
}
]
}
@@ -85884,7 +86093,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -85895,7 +86104,7 @@
}
},
{
- "id": 19444,
+ "id": 2153,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -85911,7 +86120,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -85932,7 +86141,7 @@
}
},
{
- "id": 42194,
+ "id": 25133,
"name": "validate",
"variant": "declaration",
"kind": 64,
@@ -85967,14 +86176,14 @@
},
"signatures": [
{
- "id": 42195,
+ "id": 25134,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42196,
+ "id": 25135,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -85989,7 +86198,7 @@
},
"type": {
"type": "reference",
- "target": 19441,
+ "target": 2150,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -86003,13 +86212,13 @@
{
"title": "Properties",
"children": [
- 19436
+ 2145
]
},
{
"title": "Functions",
"children": [
- 42194
+ 25133
]
}
],
@@ -86026,7 +86235,7 @@
],
"documents": [
{
- "id": 42192,
+ "id": 25131,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -86052,7 +86261,7 @@
"frontmatter": {}
},
{
- "id": 42193,
+ "id": 25132,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -86078,7 +86287,7 @@
"frontmatter": {}
},
{
- "id": 42197,
+ "id": 25136,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -86104,7 +86313,7 @@
"frontmatter": {}
},
{
- "id": 42198,
+ "id": 25137,
"name": "getPromotionCodesToApply",
"variant": "document",
"kind": 8388608,
@@ -86130,7 +86339,7 @@
"frontmatter": {}
},
{
- "id": 42199,
+ "id": 25138,
"name": "getActionsToComputeFromPromotionsStep",
"variant": "document",
"kind": 8388608,
@@ -86156,7 +86365,7 @@
"frontmatter": {}
},
{
- "id": 42200,
+ "id": 25139,
"name": "prepareAdjustmentsFromPromotionActionsStep",
"variant": "document",
"kind": 8388608,
@@ -86182,7 +86391,7 @@
"frontmatter": {}
},
{
- "id": 42201,
+ "id": 25140,
"name": "removeLineItemAdjustmentsStep",
"variant": "document",
"kind": 8388608,
@@ -86208,7 +86417,7 @@
"frontmatter": {}
},
{
- "id": 42202,
+ "id": 25141,
"name": "removeShippingMethodAdjustmentsStep",
"variant": "document",
"kind": 8388608,
@@ -86234,7 +86443,7 @@
"frontmatter": {}
},
{
- "id": 42203,
+ "id": 25142,
"name": "createLineItemAdjustmentsStep",
"variant": "document",
"kind": 8388608,
@@ -86260,7 +86469,7 @@
"frontmatter": {}
},
{
- "id": 42204,
+ "id": 25143,
"name": "createShippingMethodAdjustmentsStep",
"variant": "document",
"kind": 8388608,
@@ -86286,7 +86495,7 @@
"frontmatter": {}
},
{
- "id": 42205,
+ "id": 25144,
"name": "updateCartPromotionsStep",
"variant": "document",
"kind": 8388608,
@@ -86312,8 +86521,8 @@
"frontmatter": {}
},
{
- "id": 42206,
- "name": "releaseLockStep",
+ "id": 25145,
+ "name": "when",
"variant": "document",
"kind": 8388608,
"flags": {},
@@ -86328,6 +86537,69 @@
"text": "9"
}
]
+ },
+ {
+ "tag": "@whenCondition",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.force_refresh_payment_collection === true"
+ }
+ ]
+ }
+ ],
+ "modifierTags": [
+ "@when"
+ ]
+ },
+ "content": [],
+ "frontmatter": {},
+ "children": [
+ {
+ "id": 25146,
+ "name": "refreshPaymentCollectionForCartWorkflow",
+ "variant": "document",
+ "kind": 8388608,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@workflowDepth",
+ "content": [
+ {
+ "kind": "text",
+ "text": "9"
+ }
+ ]
+ }
+ ],
+ "modifierTags": [
+ "@workflowStep"
+ ]
+ },
+ "content": [],
+ "frontmatter": {}
+ }
+ ]
+ },
+ {
+ "id": 25147,
+ "name": "releaseLockStep",
+ "variant": "document",
+ "kind": 8388608,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@workflowDepth",
+ "content": [
+ {
+ "kind": "text",
+ "text": "10"
+ }
+ ]
}
],
"modifierTags": [
@@ -86339,35 +86611,35 @@
}
],
"childrenIncludingDocuments": [
- 19415,
- 19421,
- 19427,
- 19430,
- 19434
+ 2124,
+ 2130,
+ 2136,
+ 2139,
+ 2143
],
"groups": [
{
"title": "Properties",
"children": [
- 19415,
- 19421,
- 19427,
- 19430,
- 19434
+ 2124,
+ 2130,
+ 2136,
+ 2139,
+ 2143
]
}
],
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 77,
+ "line": 83,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L83"
}
],
"signatures": [
{
- "id": 19408,
+ "id": 2117,
"name": "updateCartPromotionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -86406,20 +86678,38 @@
"text": "locking,promotion,query,cart,link,remote query,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "locking,payment,workflow,logger,promotion,query,cart,link,remote query"
+ }
+ ]
}
]
},
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 77,
+ "line": 83,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L83"
}
],
"typeParameters": [
{
- "id": 19409,
+ "id": 2118,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -86430,7 +86720,7 @@
}
},
{
- "id": 19410,
+ "id": 2119,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -86443,7 +86733,7 @@
],
"parameters": [
{
- "id": 19411,
+ "id": 2120,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -86467,14 +86757,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19412,
+ "id": 2121,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19413,
+ "id": 2122,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -86497,7 +86787,7 @@
}
},
{
- "id": 19414,
+ "id": 2123,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -86524,8 +86814,8 @@
{
"title": "Properties",
"children": [
- 19413,
- 19414
+ 2122,
+ 2123
]
}
],
@@ -86600,7 +86890,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19400,
+ "target": 2108,
"name": "UpdateCartPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -86610,14 +86900,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -86632,14 +86922,14 @@
]
},
{
- "id": 19441,
+ "id": 2150,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19442,
+ "id": 2151,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -86647,9 +86937,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 109,
+ "line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L115"
}
],
"type": {
@@ -86661,7 +86951,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19400,
+ "target": 2108,
"name": "UpdateCartPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -86671,7 +86961,7 @@
}
},
{
- "id": 19443,
+ "id": 2152,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -86679,9 +86969,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 110,
+ "line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L116"
}
],
"type": {
@@ -86694,22 +86984,22 @@
{
"title": "Properties",
"children": [
- 19442,
- 19443
+ 2151,
+ 2152
]
}
],
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 108,
+ "line": 114,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L108"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L114"
}
]
},
{
- "id": 19442,
+ "id": 2151,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -86717,9 +87007,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 109,
+ "line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L115"
}
],
"type": {
@@ -86731,7 +87021,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19400,
+ "target": 2108,
"name": "UpdateCartPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -86741,7 +87031,7 @@
}
},
{
- "id": 19443,
+ "id": 2152,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -86749,9 +87039,9 @@
"sources": [
{
"fileName": "core-flows/src/cart/workflows/update-cart-promotions.ts",
- "line": 110,
+ "line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-cart-promotions.ts#L116"
}
],
"type": {
@@ -86760,7 +87050,7 @@
}
},
{
- "id": 19445,
+ "id": 2154,
"name": "updateLineItemInCartWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -86772,7 +87062,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L51"
}
],
"type": {
@@ -86782,7 +87072,7 @@
"defaultValue": "\"update-line-item-in-cart\""
},
{
- "id": 19446,
+ "id": 2155,
"name": "updateLineItemInCartWorkflow",
"variant": "declaration",
"kind": 64,
@@ -86831,6 +87121,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -86844,7 +87143,7 @@
},
"children": [
{
- "id": 19454,
+ "id": 2163,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -86867,7 +87166,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19455,
+ "id": 2164,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -86881,7 +87180,7 @@
],
"signatures": [
{
- "id": 19456,
+ "id": 2165,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -86909,7 +87208,7 @@
],
"parameters": [
{
- "id": 19457,
+ "id": 2166,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -86925,14 +87224,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19458,
+ "id": 2167,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19459,
+ "id": 2168,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -87020,7 +87319,7 @@
{
"title": "Properties",
"children": [
- 19459
+ 2168
]
}
],
@@ -87045,7 +87344,7 @@
}
},
{
- "id": 19460,
+ "id": 2169,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -87068,7 +87367,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19461,
+ "id": 2170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -87082,7 +87381,7 @@
],
"signatures": [
{
- "id": 19462,
+ "id": 2171,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -87110,7 +87409,7 @@
],
"typeParameters": [
{
- "id": 19463,
+ "id": 2172,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -87121,7 +87420,7 @@
}
},
{
- "id": 19464,
+ "id": 2173,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -87134,7 +87433,7 @@
],
"parameters": [
{
- "id": 19465,
+ "id": 2174,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -87167,7 +87466,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -87201,7 +87500,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -87234,7 +87533,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -87249,7 +87548,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -87269,7 +87568,7 @@
}
},
{
- "id": 19466,
+ "id": 2175,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -87292,7 +87591,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19467,
+ "id": 2176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -87306,7 +87605,7 @@
],
"signatures": [
{
- "id": 19468,
+ "id": 2177,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -87328,7 +87627,7 @@
}
},
{
- "id": 19469,
+ "id": 2178,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -87351,7 +87650,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19470,
+ "id": 2179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -87365,7 +87664,7 @@
],
"signatures": [
{
- "id": 19471,
+ "id": 2180,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -87379,7 +87678,7 @@
],
"parameters": [
{
- "id": 19472,
+ "id": 2181,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -87405,7 +87704,7 @@
}
},
{
- "id": 19473,
+ "id": 2182,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -87431,14 +87730,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19474,
+ "id": 2183,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19475,
+ "id": 2184,
"name": "validate",
"variant": "declaration",
"kind": 1024,
@@ -87474,7 +87773,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19476,
+ "id": 2185,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -87488,7 +87787,7 @@
],
"signatures": [
{
- "id": 19477,
+ "id": 2186,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -87502,7 +87801,7 @@
],
"typeParameters": [
{
- "id": 19478,
+ "id": 2187,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -87511,7 +87810,7 @@
],
"parameters": [
{
- "id": 19479,
+ "id": 2188,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -87526,14 +87825,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19480,
+ "id": 2189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19481,
+ "id": 2190,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -87543,7 +87842,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 154,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L154"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L154"
}
],
"type": {
@@ -87582,7 +87881,7 @@
}
},
{
- "id": 19482,
+ "id": 2191,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -87592,7 +87891,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 155,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L155"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L155"
}
],
"type": {
@@ -87605,8 +87904,8 @@
{
"title": "Properties",
"children": [
- 19481,
- 19482
+ 2190,
+ 2191
]
}
],
@@ -87615,7 +87914,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 153,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L153"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L153"
}
]
}
@@ -87626,7 +87925,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -87637,7 +87936,7 @@
}
},
{
- "id": 19483,
+ "id": 2192,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -87653,7 +87952,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -87674,14 +87973,14 @@
},
"signatures": [
{
- "id": 42209,
+ "id": 25150,
"name": "validate",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42210,
+ "id": 25151,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -87696,7 +87995,7 @@
},
"type": {
"type": "reference",
- "target": 19480,
+ "target": 2189,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -87710,7 +88009,7 @@
{
"title": "Properties",
"children": [
- 19475
+ 2184
]
}
],
@@ -87726,14 +88025,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19484,
+ "id": 2193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19485,
+ "id": 2194,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -87801,7 +88100,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19486,
+ "id": 2195,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -87815,7 +88114,7 @@
],
"signatures": [
{
- "id": 19487,
+ "id": 2196,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -87829,7 +88128,7 @@
],
"typeParameters": [
{
- "id": 19488,
+ "id": 2197,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -87838,7 +88137,7 @@
],
"parameters": [
{
- "id": 19489,
+ "id": 2198,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -87853,14 +88152,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19490,
+ "id": 2199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19491,
+ "id": 2200,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -87870,7 +88169,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 161,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L161"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L161"
}
],
"type": {
@@ -87879,7 +88178,7 @@
}
},
{
- "id": 19492,
+ "id": 2201,
"name": "item",
"variant": "declaration",
"kind": 1024,
@@ -87889,7 +88188,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 162,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L162"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L162"
}
],
"type": {
@@ -87942,7 +88241,7 @@
}
},
{
- "id": 19493,
+ "id": 2202,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -87952,7 +88251,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 163,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L163"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L163"
}
],
"type": {
@@ -88026,7 +88325,7 @@
}
},
{
- "id": 19494,
+ "id": 2203,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -88044,7 +88343,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 164,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L164"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L164"
}
],
"type": {
@@ -88067,10 +88366,10 @@
{
"title": "Properties",
"children": [
- 19491,
- 19492,
- 19493,
- 19494
+ 2200,
+ 2201,
+ 2202,
+ 2203
]
}
],
@@ -88079,7 +88378,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 160,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L160"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L160"
}
]
}
@@ -88114,7 +88413,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -88125,7 +88424,7 @@
}
},
{
- "id": 19495,
+ "id": 2204,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -88141,7 +88440,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -88162,14 +88461,14 @@
},
"signatures": [
{
- "id": 42212,
+ "id": 25153,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42213,
+ "id": 25154,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -88184,7 +88483,7 @@
},
"type": {
"type": "reference",
- "target": 19490,
+ "target": 2199,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -88198,7 +88497,7 @@
{
"title": "Properties",
"children": [
- 19485
+ 2194
]
}
],
@@ -88217,7 +88516,7 @@
],
"documents": [
{
- "id": 42207,
+ "id": 25148,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -88243,7 +88542,7 @@
"frontmatter": {}
},
{
- "id": 42208,
+ "id": 25149,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -88269,7 +88568,7 @@
"frontmatter": {}
},
{
- "id": 42211,
+ "id": 25152,
"name": "validate",
"variant": "document",
"kind": 8388608,
@@ -88295,7 +88594,7 @@
"frontmatter": {}
},
{
- "id": 42214,
+ "id": 25155,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -88321,7 +88620,7 @@
"frontmatter": {}
},
{
- "id": 42215,
+ "id": 25156,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -88356,7 +88655,7 @@
"frontmatter": {},
"children": [
{
- "id": 42216,
+ "id": 25157,
"name": "deleteLineItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -88384,7 +88683,7 @@
]
},
{
- "id": 42217,
+ "id": 25158,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -88419,7 +88718,7 @@
"frontmatter": {},
"children": [
{
- "id": 42218,
+ "id": 25159,
"name": "validateVariantPricesStep",
"variant": "document",
"kind": 8388608,
@@ -88447,7 +88746,7 @@
]
},
{
- "id": 42219,
+ "id": 25160,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -88482,7 +88781,7 @@
"frontmatter": {},
"children": [
{
- "id": 42220,
+ "id": 25161,
"name": "confirmVariantInventoryWorkflow",
"variant": "document",
"kind": 8388608,
@@ -88508,7 +88807,7 @@
"frontmatter": {}
},
{
- "id": 42221,
+ "id": 25162,
"name": "updateLineItemsStepWithSelector",
"variant": "document",
"kind": 8388608,
@@ -88534,7 +88833,7 @@
"frontmatter": {}
},
{
- "id": 42222,
+ "id": 25163,
"name": "refreshCartItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -88562,7 +88861,7 @@
]
},
{
- "id": 42223,
+ "id": 25164,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -88588,7 +88887,7 @@
"frontmatter": {}
},
{
- "id": 42224,
+ "id": 25165,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -88615,21 +88914,21 @@
}
],
"childrenIncludingDocuments": [
- 19454,
- 19460,
- 19466,
- 19469,
- 19473
+ 2163,
+ 2169,
+ 2175,
+ 2178,
+ 2182
],
"groups": [
{
"title": "Properties",
"children": [
- 19454,
- 19460,
- 19466,
- 19469,
- 19473
+ 2163,
+ 2169,
+ 2175,
+ 2178,
+ 2182
]
}
],
@@ -88638,12 +88937,12 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L111"
}
],
"signatures": [
{
- "id": 19447,
+ "id": 2156,
"name": "updateLineItemInCartWorkflow",
"variant": "signature",
"kind": 4096,
@@ -88692,6 +88991,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -88708,12 +89016,12 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L111"
}
],
"typeParameters": [
{
- "id": 19448,
+ "id": 2157,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -88724,7 +89032,7 @@
}
},
{
- "id": 19449,
+ "id": 2158,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -88737,7 +89045,7 @@
],
"parameters": [
{
- "id": 19450,
+ "id": 2159,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -88761,14 +89069,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19451,
+ "id": 2160,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19452,
+ "id": 2161,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -88791,7 +89099,7 @@
}
},
{
- "id": 19453,
+ "id": 2162,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -88818,8 +89126,8 @@
{
"title": "Properties",
"children": [
- 19452,
- 19453
+ 2161,
+ 2162
]
}
],
@@ -88921,14 +89229,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -88943,14 +89251,14 @@
]
},
{
- "id": 19480,
+ "id": 2189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19481,
+ "id": 2190,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -88960,7 +89268,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 154,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L154"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L154"
}
],
"type": {
@@ -88999,7 +89307,7 @@
}
},
{
- "id": 19482,
+ "id": 2191,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -89009,7 +89317,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 155,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L155"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L155"
}
],
"type": {
@@ -89022,8 +89330,8 @@
{
"title": "Properties",
"children": [
- 19481,
- 19482
+ 2190,
+ 2191
]
}
],
@@ -89032,12 +89340,12 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 153,
"character": 44,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L153"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L153"
}
]
},
{
- "id": 19481,
+ "id": 2190,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -89047,7 +89355,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 154,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L154"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L154"
}
],
"type": {
@@ -89086,7 +89394,7 @@
}
},
{
- "id": 19482,
+ "id": 2191,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -89096,7 +89404,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 155,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L155"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L155"
}
],
"type": {
@@ -89105,14 +89413,14 @@
}
},
{
- "id": 19490,
+ "id": 2199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19491,
+ "id": 2200,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -89122,7 +89430,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 161,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L161"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L161"
}
],
"type": {
@@ -89131,7 +89439,7 @@
}
},
{
- "id": 19492,
+ "id": 2201,
"name": "item",
"variant": "declaration",
"kind": 1024,
@@ -89141,7 +89449,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 162,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L162"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L162"
}
],
"type": {
@@ -89194,7 +89502,7 @@
}
},
{
- "id": 19493,
+ "id": 2202,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -89204,7 +89512,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 163,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L163"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L163"
}
],
"type": {
@@ -89278,7 +89586,7 @@
}
},
{
- "id": 19494,
+ "id": 2203,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -89296,7 +89604,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 164,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L164"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L164"
}
],
"type": {
@@ -89319,10 +89627,10 @@
{
"title": "Properties",
"children": [
- 19491,
- 19492,
- 19493,
- 19494
+ 2200,
+ 2201,
+ 2202,
+ 2203
]
}
],
@@ -89331,12 +89639,12 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 160,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L160"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L160"
}
]
},
{
- "id": 19491,
+ "id": 2200,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -89346,7 +89654,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 161,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L161"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L161"
}
],
"type": {
@@ -89355,7 +89663,7 @@
}
},
{
- "id": 19492,
+ "id": 2201,
"name": "item",
"variant": "declaration",
"kind": 1024,
@@ -89365,7 +89673,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 162,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L162"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L162"
}
],
"type": {
@@ -89418,7 +89726,7 @@
}
},
{
- "id": 19493,
+ "id": 2202,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -89428,7 +89736,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 163,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L163"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L163"
}
],
"type": {
@@ -89502,7 +89810,7 @@
}
},
{
- "id": 19494,
+ "id": 2203,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -89520,7 +89828,7 @@
"fileName": "core-flows/src/cart/workflows/update-line-item-in-cart.ts",
"line": 164,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L164"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-line-item-in-cart.ts#L164"
}
],
"type": {
@@ -89539,7 +89847,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 19498,
+ "id": 2207,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -89559,7 +89867,7 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L72"
}
],
"type": {
@@ -89568,7 +89876,7 @@
}
},
{
- "id": 19499,
+ "id": 2208,
"name": "cart",
"variant": "declaration",
"kind": 1024,
@@ -89588,7 +89896,7 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L76"
}
],
"type": {
@@ -89597,7 +89905,7 @@
}
},
{
- "id": 19500,
+ "id": 2209,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -89617,7 +89925,7 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L85"
}
],
"type": {
@@ -89634,7 +89942,7 @@
}
},
{
- "id": 19501,
+ "id": 2210,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -89654,7 +89962,7 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L94"
}
],
"type": {
@@ -89671,7 +89979,7 @@
}
},
{
- "id": 19502,
+ "id": 2211,
"name": "force_tax_calculation",
"variant": "declaration",
"kind": 1024,
@@ -89702,7 +90010,7 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L102"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L102"
}
],
"type": {
@@ -89711,7 +90019,7 @@
}
},
{
- "id": 19503,
+ "id": 2212,
"name": "updateTaxLinesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -89723,7 +90031,7 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 105,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L105"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L105"
}
],
"type": {
@@ -89733,7 +90041,7 @@
"defaultValue": "\"update-tax-lines\""
},
{
- "id": 19504,
+ "id": 2213,
"name": "updateTaxLinesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -89772,12 +90080,21 @@
"text": "locking,tax,cart,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 19512,
+ "id": 2221,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -89800,7 +90117,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19513,
+ "id": 2222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -89814,7 +90131,7 @@
],
"signatures": [
{
- "id": 19514,
+ "id": 2223,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -89842,7 +90159,7 @@
],
"parameters": [
{
- "id": 19515,
+ "id": 2224,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -89858,14 +90175,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19516,
+ "id": 2225,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19517,
+ "id": 2226,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -89890,7 +90207,7 @@
"types": [
{
"type": "reference",
- "target": 19496,
+ "target": 2205,
"name": "UpdateTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -89903,7 +90220,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19496,
+ "target": 2205,
"name": "UpdateTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -89919,7 +90236,7 @@
{
"title": "Properties",
"children": [
- 19517
+ 2226
]
}
],
@@ -89955,14 +90272,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19518,
+ "id": 2227,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19519,
+ "id": 2228,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -89976,7 +90293,7 @@
],
"signatures": [
{
- "id": 19520,
+ "id": 2229,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -89990,7 +90307,7 @@
],
"parameters": [
{
- "id": 19521,
+ "id": 2230,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -90001,14 +90318,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19522,
+ "id": 2231,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19523,
+ "id": 2232,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -90032,7 +90349,7 @@
{
"title": "Properties",
"children": [
- 19523
+ 2232
]
}
],
@@ -90109,7 +90426,7 @@
{
"title": "Methods",
"children": [
- 19519
+ 2228
]
}
],
@@ -90145,7 +90462,7 @@
}
},
{
- "id": 19524,
+ "id": 2233,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -90168,7 +90485,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19525,
+ "id": 2234,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90182,7 +90499,7 @@
],
"signatures": [
{
- "id": 19526,
+ "id": 2235,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -90210,7 +90527,7 @@
],
"typeParameters": [
{
- "id": 19527,
+ "id": 2236,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -90221,7 +90538,7 @@
}
},
{
- "id": 19528,
+ "id": 2237,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -90234,7 +90551,7 @@
],
"parameters": [
{
- "id": 19529,
+ "id": 2238,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -90267,7 +90584,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -90278,13 +90595,13 @@
},
"trueType": {
"type": "reference",
- "target": 19496,
+ "target": 2205,
"name": "UpdateTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -90317,7 +90634,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -90332,7 +90649,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -90352,7 +90669,7 @@
}
},
{
- "id": 19530,
+ "id": 2239,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -90375,7 +90692,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19531,
+ "id": 2240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90389,7 +90706,7 @@
],
"signatures": [
{
- "id": 19532,
+ "id": 2241,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -90411,7 +90728,7 @@
}
},
{
- "id": 19533,
+ "id": 2242,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -90434,7 +90751,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19534,
+ "id": 2243,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90448,7 +90765,7 @@
],
"signatures": [
{
- "id": 19535,
+ "id": 2244,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -90462,7 +90779,7 @@
],
"parameters": [
{
- "id": 19536,
+ "id": 2245,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -90488,7 +90805,7 @@
}
},
{
- "id": 19537,
+ "id": 2246,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -90511,7 +90828,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19538,
+ "id": 2247,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90522,7 +90839,7 @@
],
"documents": [
{
- "id": 42226,
+ "id": 25167,
"name": "validateCartStep",
"variant": "document",
"kind": 8388608,
@@ -90548,7 +90865,7 @@
"frontmatter": {}
},
{
- "id": 42227,
+ "id": 25168,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -90574,7 +90891,7 @@
"frontmatter": {}
},
{
- "id": 42228,
+ "id": 25169,
"name": "getItemTaxLinesStep",
"variant": "document",
"kind": 8388608,
@@ -90600,7 +90917,7 @@
"frontmatter": {}
},
{
- "id": 42229,
+ "id": 25170,
"name": "setTaxLinesForItemsStep",
"variant": "document",
"kind": 8388608,
@@ -90626,7 +90943,7 @@
"frontmatter": {}
},
{
- "id": 42230,
+ "id": 25171,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -90653,21 +90970,21 @@
}
],
"childrenIncludingDocuments": [
- 19512,
- 19524,
- 19530,
- 19533,
- 19537
+ 2221,
+ 2233,
+ 2239,
+ 2242,
+ 2246
],
"groups": [
{
"title": "Properties",
"children": [
- 19512,
- 19524,
- 19530,
- 19533,
- 19537
+ 2221,
+ 2233,
+ 2239,
+ 2242,
+ 2246
]
}
],
@@ -90676,12 +90993,12 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 124,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L124"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L124"
}
],
"signatures": [
{
- "id": 19505,
+ "id": 2214,
"name": "updateTaxLinesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -90720,6 +91037,15 @@
"text": "locking,tax,cart,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cart.id --- acquireLockStep({ key: cart.id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
@@ -90728,12 +91054,12 @@
"fileName": "core-flows/src/cart/workflows/update-tax-lines.ts",
"line": 124,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L124"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/workflows/update-tax-lines.ts#L124"
}
],
"typeParameters": [
{
- "id": 19506,
+ "id": 2215,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -90744,7 +91070,7 @@
}
},
{
- "id": 19507,
+ "id": 2216,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -90757,7 +91083,7 @@
],
"parameters": [
{
- "id": 19508,
+ "id": 2217,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -90781,14 +91107,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19509,
+ "id": 2218,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19510,
+ "id": 2219,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -90811,7 +91137,7 @@
}
},
{
- "id": 19511,
+ "id": 2220,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -90838,8 +91164,8 @@
{
"title": "Properties",
"children": [
- 19510,
- 19511
+ 2219,
+ 2220
]
}
],
@@ -90914,7 +91240,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19496,
+ "target": 2205,
"name": "UpdateTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -90924,14 +91250,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -90950,21 +91276,21 @@
]
},
{
- "id": 17305,
+ "id": 10,
"name": "Common",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17306,
+ "id": 11,
"name": "Steps_Common",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 19540,
+ "id": 2249,
"name": "moduleRegistrationName",
"variant": "declaration",
"kind": 1024,
@@ -90982,7 +91308,7 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L7"
}
],
"type": {
@@ -90991,7 +91317,7 @@
}
},
{
- "id": 19541,
+ "id": 2250,
"name": "invokeMethod",
"variant": "declaration",
"kind": 1024,
@@ -91009,7 +91335,7 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L11"
}
],
"type": {
@@ -91018,7 +91344,7 @@
}
},
{
- "id": 19542,
+ "id": 2251,
"name": "compensateMethod",
"variant": "declaration",
"kind": 1024,
@@ -91036,7 +91362,7 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L15"
}
],
"type": {
@@ -91045,7 +91371,7 @@
}
},
{
- "id": 19543,
+ "id": 2252,
"name": "entityIdentifier",
"variant": "declaration",
"kind": 1024,
@@ -91065,7 +91391,7 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L19"
}
],
"type": {
@@ -91074,7 +91400,7 @@
}
},
{
- "id": 19544,
+ "id": 2253,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91092,7 +91418,7 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L24"
}
],
"type": {
@@ -91104,7 +91430,7 @@
}
},
{
- "id": 19545,
+ "id": 2254,
"name": "createEntitiesStepId",
"variant": "declaration",
"kind": 32,
@@ -91116,7 +91442,7 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L27"
}
],
"type": {
@@ -91126,7 +91452,7 @@
"defaultValue": "\"create-entities-step\""
},
{
- "id": 19546,
+ "id": 2255,
"name": "createEntitiesStep",
"variant": "declaration",
"kind": 64,
@@ -91170,7 +91496,7 @@
},
"children": [
{
- "id": 19555,
+ "id": 2264,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -91188,7 +91514,7 @@
}
},
{
- "id": 19556,
+ "id": 2265,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -91210,8 +91536,8 @@
{
"title": "Properties",
"children": [
- 19555,
- 19556
+ 2264,
+ 2265
]
}
],
@@ -91220,12 +91546,12 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L47"
}
],
"signatures": [
{
- "id": 19547,
+ "id": 2256,
"name": "createEntitiesStep",
"variant": "signature",
"kind": 4096,
@@ -91272,12 +91598,12 @@
"fileName": "core-flows/src/common/steps/create-entities.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-entities.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-entities.ts#L47"
}
],
"parameters": [
{
- "id": 19548,
+ "id": 2257,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -91287,7 +91613,7 @@
"types": [
{
"type": "reference",
- "target": 19539,
+ "target": 2248,
"name": "CreateEntitiesStepType",
"package": "@medusajs/core-flows"
},
@@ -91300,7 +91626,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19539,
+ "target": 2248,
"name": "CreateEntitiesStepType",
"package": "@medusajs/core-flows"
}
@@ -91350,14 +91676,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19549,
+ "id": 2258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19550,
+ "id": 2259,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -91371,7 +91697,7 @@
],
"signatures": [
{
- "id": 19551,
+ "id": 2260,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -91385,7 +91711,7 @@
],
"parameters": [
{
- "id": 19552,
+ "id": 2261,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -91396,14 +91722,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19553,
+ "id": 2262,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19554,
+ "id": 2263,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -91427,7 +91753,7 @@
{
"title": "Properties",
"children": [
- 19554
+ 2263
]
}
],
@@ -91507,7 +91833,7 @@
{
"title": "Methods",
"children": [
- 19550
+ 2259
]
}
],
@@ -91544,7 +91870,7 @@
]
},
{
- "id": 19557,
+ "id": 2266,
"name": "createLinksStepId",
"variant": "declaration",
"kind": 32,
@@ -91556,7 +91882,7 @@
"fileName": "core-flows/src/common/steps/create-remote-links.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-remote-links.ts#L6"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-remote-links.ts#L6"
}
],
"type": {
@@ -91566,7 +91892,7 @@
"defaultValue": "\"create-remote-links\""
},
{
- "id": 19558,
+ "id": 2267,
"name": "createRemoteLinkStep",
"variant": "declaration",
"kind": 64,
@@ -91664,7 +91990,7 @@
},
"children": [
{
- "id": 19567,
+ "id": 2276,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -91682,7 +92008,7 @@
}
},
{
- "id": 19568,
+ "id": 2277,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -91704,8 +92030,8 @@
{
"title": "Properties",
"children": [
- 19567,
- 19568
+ 2276,
+ 2277
]
}
],
@@ -91714,12 +92040,12 @@
"fileName": "core-flows/src/common/steps/create-remote-links.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-remote-links.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-remote-links.ts#L22"
}
],
"signatures": [
{
- "id": 19559,
+ "id": 2268,
"name": "createRemoteLinkStep",
"variant": "signature",
"kind": 4096,
@@ -91820,12 +92146,12 @@
"fileName": "core-flows/src/common/steps/create-remote-links.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/create-remote-links.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/create-remote-links.ts#L22"
}
],
"parameters": [
{
- "id": 19560,
+ "id": 2269,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -91950,14 +92276,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19561,
+ "id": 2270,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19562,
+ "id": 2271,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -91971,7 +92297,7 @@
],
"signatures": [
{
- "id": 19563,
+ "id": 2272,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -91985,7 +92311,7 @@
],
"parameters": [
{
- "id": 19564,
+ "id": 2273,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -91996,14 +92322,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19565,
+ "id": 2274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19566,
+ "id": 2275,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -92027,7 +92353,7 @@
{
"title": "Properties",
"children": [
- 19566
+ 2275
]
}
],
@@ -92112,7 +92438,7 @@
{
"title": "Methods",
"children": [
- 19562
+ 2271
]
}
],
@@ -92154,7 +92480,7 @@
]
},
{
- "id": 19570,
+ "id": 2279,
"name": "dismissRemoteLinkStepId",
"variant": "declaration",
"kind": 32,
@@ -92166,7 +92492,7 @@
"fileName": "core-flows/src/common/steps/dismiss-remote-links.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/dismiss-remote-links.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/dismiss-remote-links.ts#L10"
}
],
"type": {
@@ -92176,7 +92502,7 @@
"defaultValue": "\"dismiss-remote-links\""
},
{
- "id": 19571,
+ "id": 2280,
"name": "dismissRemoteLinkStep",
"variant": "declaration",
"kind": 64,
@@ -92220,7 +92546,7 @@
},
"children": [
{
- "id": 19580,
+ "id": 2289,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -92238,7 +92564,7 @@
}
},
{
- "id": 19581,
+ "id": 2290,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -92260,8 +92586,8 @@
{
"title": "Properties",
"children": [
- 19580,
- 19581
+ 2289,
+ 2290
]
}
],
@@ -92270,12 +92596,12 @@
"fileName": "core-flows/src/common/steps/dismiss-remote-links.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/dismiss-remote-links.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/dismiss-remote-links.ts#L26"
}
],
"signatures": [
{
- "id": 19572,
+ "id": 2281,
"name": "dismissRemoteLinkStep",
"variant": "signature",
"kind": 4096,
@@ -92322,12 +92648,12 @@
"fileName": "core-flows/src/common/steps/dismiss-remote-links.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/dismiss-remote-links.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/dismiss-remote-links.ts#L26"
}
],
"parameters": [
{
- "id": 19573,
+ "id": 2282,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -92337,7 +92663,7 @@
"types": [
{
"type": "reference",
- "target": 19569,
+ "target": 2278,
"name": "DismissRemoteLinksStepInput",
"package": "@medusajs/core-flows"
},
@@ -92350,7 +92676,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19569,
+ "target": 2278,
"name": "DismissRemoteLinksStepInput",
"package": "@medusajs/core-flows"
}
@@ -92440,14 +92766,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19574,
+ "id": 2283,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19575,
+ "id": 2284,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -92461,7 +92787,7 @@
],
"signatures": [
{
- "id": 19576,
+ "id": 2285,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -92475,7 +92801,7 @@
],
"parameters": [
{
- "id": 19577,
+ "id": 2286,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -92486,14 +92812,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19578,
+ "id": 2287,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19579,
+ "id": 2288,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -92517,7 +92843,7 @@
{
"title": "Properties",
"children": [
- 19579
+ 2288
]
}
],
@@ -92602,7 +92928,7 @@
{
"title": "Methods",
"children": [
- 19575
+ 2284
]
}
],
@@ -92644,7 +92970,7 @@
]
},
{
- "id": 19583,
+ "id": 2292,
"name": "moduleRegistrationName",
"variant": "declaration",
"kind": 1024,
@@ -92662,7 +92988,7 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L7"
}
],
"type": {
@@ -92671,7 +92997,7 @@
}
},
{
- "id": 19584,
+ "id": 2293,
"name": "invokeMethod",
"variant": "declaration",
"kind": 1024,
@@ -92689,7 +93015,7 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L11"
}
],
"type": {
@@ -92698,7 +93024,7 @@
}
},
{
- "id": 19585,
+ "id": 2294,
"name": "compensateMethod",
"variant": "declaration",
"kind": 1024,
@@ -92716,7 +93042,7 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L15"
}
],
"type": {
@@ -92725,7 +93051,7 @@
}
},
{
- "id": 19586,
+ "id": 2295,
"name": "entityIdentifier",
"variant": "declaration",
"kind": 1024,
@@ -92745,7 +93071,7 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L20"
}
],
"type": {
@@ -92754,7 +93080,7 @@
}
},
{
- "id": 19587,
+ "id": 2296,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92772,7 +93098,7 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L25"
}
],
"type": {
@@ -92784,7 +93110,7 @@
}
},
{
- "id": 19588,
+ "id": 2297,
"name": "deleteEntitiesStepId",
"variant": "declaration",
"kind": 32,
@@ -92796,7 +93122,7 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L28"
}
],
"type": {
@@ -92806,7 +93132,7 @@
"defaultValue": "\"delete-entities-step\""
},
{
- "id": 19589,
+ "id": 2298,
"name": "deleteEntitiesStep",
"variant": "declaration",
"kind": 64,
@@ -92850,7 +93176,7 @@
},
"children": [
{
- "id": 19592,
+ "id": 2301,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -92868,7 +93194,7 @@
}
},
{
- "id": 19593,
+ "id": 2302,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -92890,8 +93216,8 @@
{
"title": "Properties",
"children": [
- 19592,
- 19593
+ 2301,
+ 2302
]
}
],
@@ -92900,12 +93226,12 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L40"
}
],
"signatures": [
{
- "id": 19590,
+ "id": 2299,
"name": "deleteEntitiesStep",
"variant": "signature",
"kind": 4096,
@@ -92952,12 +93278,12 @@
"fileName": "core-flows/src/common/steps/delete-entities.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/delete-entities.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/delete-entities.ts#L40"
}
],
"parameters": [
{
- "id": 19591,
+ "id": 2300,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -92967,7 +93293,7 @@
"types": [
{
"type": "reference",
- "target": 19582,
+ "target": 2291,
"name": "DeleteEntitiesStepType",
"package": "@medusajs/core-flows"
},
@@ -92980,7 +93306,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19582,
+ "target": 2291,
"name": "DeleteEntitiesStepType",
"package": "@medusajs/core-flows"
}
@@ -93000,7 +93326,7 @@
]
},
{
- "id": 19594,
+ "id": 2303,
"name": "emitEventStepId",
"variant": "declaration",
"kind": 32,
@@ -93012,7 +93338,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L41"
}
],
"type": {
@@ -93022,7 +93348,7 @@
"defaultValue": "\"emit-event-step\""
},
{
- "id": 19595,
+ "id": 2304,
"name": "emitEventStep",
"variant": "declaration",
"kind": 64,
@@ -93684,6 +94010,33 @@
}
]
},
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "event bus,step"
+ }
+ ]
+ },
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "event bus,step"
+ }
+ ]
+ },
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "event bus,step"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -93697,7 +94050,7 @@
},
"children": [
{
- "id": 19619,
+ "id": 2328,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -93715,7 +94068,7 @@
}
},
{
- "id": 19620,
+ "id": 2329,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -93737,8 +94090,8 @@
{
"title": "Properties",
"children": [
- 19619,
- 19620
+ 2328,
+ 2329
]
}
],
@@ -93747,12 +94100,12 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 76,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L76"
}
],
"signatures": [
{
- "id": 19596,
+ "id": 2305,
"name": "emitEventStep",
"variant": "signature",
"kind": 4096,
@@ -94414,6 +94767,33 @@
}
]
},
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "event bus,step"
+ }
+ ]
+ },
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "event bus,step"
+ }
+ ]
+ },
+ {
+ "tag": "@tags",
+ "content": [
+ {
+ "kind": "text",
+ "text": "event bus,step"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -94430,12 +94810,12 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 76,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L76"
}
],
"parameters": [
{
- "id": 19597,
+ "id": 2306,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -94482,14 +94862,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19598,
+ "id": 2307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19599,
+ "id": 2308,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -94499,7 +94879,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -94542,7 +94922,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19600,
+ "id": 2309,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -94552,7 +94932,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -94586,8 +94966,8 @@
{
"title": "Properties",
"children": [
- 19599,
- 19600
+ 2308,
+ 2309
]
}
],
@@ -94603,14 +94983,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19601,
+ "id": 2310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19602,
+ "id": 2311,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -94620,7 +95000,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -94639,7 +95019,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19603,
+ "id": 2312,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -94649,7 +95029,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -94663,8 +95043,8 @@
{
"title": "Properties",
"children": [
- 19602,
- 19603
+ 2311,
+ 2312
]
}
],
@@ -94673,7 +95053,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
}
@@ -94688,14 +95068,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19604,
+ "id": 2313,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19605,
+ "id": 2314,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -94705,7 +95085,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -94724,7 +95104,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19606,
+ "id": 2315,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -94734,7 +95114,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -94748,8 +95128,8 @@
{
"title": "Properties",
"children": [
- 19605,
- 19606
+ 2314,
+ 2315
]
}
],
@@ -94758,7 +95138,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
}
@@ -94770,14 +95150,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19607,
+ "id": 2316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19608,
+ "id": 2317,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -94791,7 +95171,7 @@
],
"signatures": [
{
- "id": 19609,
+ "id": 2318,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -94805,7 +95185,7 @@
],
"parameters": [
{
- "id": 19610,
+ "id": 2319,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -94816,14 +95196,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19611,
+ "id": 2320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19612,
+ "id": 2321,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -94847,7 +95227,7 @@
{
"title": "Properties",
"children": [
- 19612
+ 2321
]
}
],
@@ -94911,14 +95291,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19613,
+ "id": 2322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19614,
+ "id": 2323,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -94928,7 +95308,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -94947,7 +95327,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19615,
+ "id": 2324,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -94957,7 +95337,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -94971,8 +95351,8 @@
{
"title": "Properties",
"children": [
- 19614,
- 19615
+ 2323,
+ 2324
]
}
],
@@ -94981,7 +95361,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
}
@@ -94998,7 +95378,7 @@
{
"title": "Methods",
"children": [
- 19608
+ 2317
]
}
],
@@ -95021,14 +95401,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19616,
+ "id": 2325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19617,
+ "id": 2326,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95038,7 +95418,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95057,7 +95437,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19618,
+ "id": 2327,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95067,7 +95447,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95081,8 +95461,8 @@
{
"title": "Properties",
"children": [
- 19617,
- 19618
+ 2326,
+ 2327
]
}
],
@@ -95091,7 +95471,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
}
@@ -95106,14 +95486,14 @@
]
},
{
- "id": 19601,
+ "id": 2310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19602,
+ "id": 2311,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95123,7 +95503,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95142,7 +95522,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19603,
+ "id": 2312,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95152,7 +95532,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95166,8 +95546,8 @@
{
"title": "Properties",
"children": [
- 19602,
- 19603
+ 2311,
+ 2312
]
}
],
@@ -95176,12 +95556,12 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
},
{
- "id": 19602,
+ "id": 2311,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95191,7 +95571,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95210,7 +95590,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19603,
+ "id": 2312,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95220,7 +95600,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95230,14 +95610,14 @@
"defaultValue": "input.eventName"
},
{
- "id": 19604,
+ "id": 2313,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19605,
+ "id": 2314,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95247,7 +95627,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95266,7 +95646,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19606,
+ "id": 2315,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95276,7 +95656,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95290,8 +95670,8 @@
{
"title": "Properties",
"children": [
- 19605,
- 19606
+ 2314,
+ 2315
]
}
],
@@ -95300,12 +95680,12 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
},
{
- "id": 19605,
+ "id": 2314,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95315,7 +95695,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95334,7 +95714,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19606,
+ "id": 2315,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95344,7 +95724,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95354,14 +95734,14 @@
"defaultValue": "input.eventName"
},
{
- "id": 19613,
+ "id": 2322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19614,
+ "id": 2323,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95371,7 +95751,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95390,7 +95770,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19615,
+ "id": 2324,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95400,7 +95780,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95414,8 +95794,8 @@
{
"title": "Properties",
"children": [
- 19614,
- 19615
+ 2323,
+ 2324
]
}
],
@@ -95424,12 +95804,12 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
},
{
- "id": 19614,
+ "id": 2323,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95439,7 +95819,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95458,7 +95838,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19615,
+ "id": 2324,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95468,7 +95848,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95478,14 +95858,14 @@
"defaultValue": "input.eventName"
},
{
- "id": 19616,
+ "id": 2325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19617,
+ "id": 2326,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95495,7 +95875,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95514,7 +95894,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19618,
+ "id": 2327,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95524,7 +95904,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95538,8 +95918,8 @@
{
"title": "Properties",
"children": [
- 19617,
- 19618
+ 2326,
+ 2327
]
}
],
@@ -95548,12 +95928,12 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 114,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L114"
}
]
},
{
- "id": 19617,
+ "id": 2326,
"name": "eventGroupId",
"variant": "declaration",
"kind": 1024,
@@ -95563,7 +95943,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 115,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L115"
}
],
"type": {
@@ -95582,7 +95962,7 @@
"defaultValue": "context.eventGroupId"
},
{
- "id": 19618,
+ "id": 2327,
"name": "eventName",
"variant": "declaration",
"kind": 1024,
@@ -95592,7 +95972,7 @@
"fileName": "core-flows/src/common/steps/emit-event.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/emit-event.ts#L116"
}
],
"type": {
@@ -95602,7 +95982,7 @@
"defaultValue": "input.eventName"
},
{
- "id": 19621,
+ "id": 2330,
"name": "removeRemoteLinkStepId",
"variant": "declaration",
"kind": 32,
@@ -95614,7 +95994,7 @@
"fileName": "core-flows/src/common/steps/remove-remote-links.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/remove-remote-links.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/remove-remote-links.ts#L8"
}
],
"type": {
@@ -95624,7 +96004,7 @@
"defaultValue": "\"remove-remote-links\""
},
{
- "id": 19622,
+ "id": 2331,
"name": "removeRemoteLinkStep",
"variant": "declaration",
"kind": 64,
@@ -95830,7 +96210,7 @@
},
"children": [
{
- "id": 19634,
+ "id": 2343,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -95848,7 +96228,7 @@
}
},
{
- "id": 19635,
+ "id": 2344,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -95870,8 +96250,8 @@
{
"title": "Properties",
"children": [
- 19634,
- 19635
+ 2343,
+ 2344
]
}
],
@@ -95880,12 +96260,12 @@
"fileName": "core-flows/src/common/steps/remove-remote-links.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/remove-remote-links.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/remove-remote-links.ts#L21"
}
],
"signatures": [
{
- "id": 19623,
+ "id": 2332,
"name": "removeRemoteLinkStep",
"variant": "signature",
"kind": 4096,
@@ -96094,12 +96474,12 @@
"fileName": "core-flows/src/common/steps/remove-remote-links.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/remove-remote-links.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/remove-remote-links.ts#L21"
}
],
"parameters": [
{
- "id": 19624,
+ "id": 2333,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -96146,7 +96526,7 @@
{
"type": "reflection",
"declaration": {
- "id": 19625,
+ "id": 2334,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -96160,14 +96540,14 @@
],
"indexSignatures": [
{
- "id": 19626,
+ "id": 2335,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 19627,
+ "id": 2336,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -96301,14 +96681,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19628,
+ "id": 2337,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19629,
+ "id": 2338,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -96322,7 +96702,7 @@
],
"signatures": [
{
- "id": 19630,
+ "id": 2339,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -96336,7 +96716,7 @@
],
"parameters": [
{
- "id": 19631,
+ "id": 2340,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -96347,14 +96727,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19632,
+ "id": 2341,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19633,
+ "id": 2342,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -96378,7 +96758,7 @@
{
"title": "Properties",
"children": [
- 19633
+ 2342
]
}
],
@@ -96469,7 +96849,7 @@
{
"title": "Methods",
"children": [
- 19629
+ 2338
]
}
],
@@ -96517,7 +96897,7 @@
]
},
{
- "id": 19636,
+ "id": 2345,
"name": "updateRemoteLinksStepId",
"variant": "declaration",
"kind": 32,
@@ -96529,7 +96909,7 @@
"fileName": "core-flows/src/common/steps/update-remote-links.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/update-remote-links.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/update-remote-links.ts#L9"
}
],
"type": {
@@ -96539,7 +96919,7 @@
"defaultValue": "\"update-remote-links-step\""
},
{
- "id": 19637,
+ "id": 2346,
"name": "updateRemoteLinksStep",
"variant": "declaration",
"kind": 64,
@@ -96583,7 +96963,7 @@
},
"children": [
{
- "id": 19646,
+ "id": 2355,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -96601,7 +96981,7 @@
}
},
{
- "id": 19647,
+ "id": 2356,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -96623,8 +97003,8 @@
{
"title": "Properties",
"children": [
- 19646,
- 19647
+ 2355,
+ 2356
]
}
],
@@ -96633,12 +97013,12 @@
"fileName": "core-flows/src/common/steps/update-remote-links.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/update-remote-links.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/update-remote-links.ts#L32"
}
],
"signatures": [
{
- "id": 19638,
+ "id": 2347,
"name": "updateRemoteLinksStep",
"variant": "signature",
"kind": 4096,
@@ -96685,12 +97065,12 @@
"fileName": "core-flows/src/common/steps/update-remote-links.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/update-remote-links.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/update-remote-links.ts#L32"
}
],
"parameters": [
{
- "id": 19639,
+ "id": 2348,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -96815,14 +97195,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19640,
+ "id": 2349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19641,
+ "id": 2350,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -96836,7 +97216,7 @@
],
"signatures": [
{
- "id": 19642,
+ "id": 2351,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -96850,7 +97230,7 @@
],
"parameters": [
{
- "id": 19643,
+ "id": 2352,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -96861,14 +97241,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19644,
+ "id": 2353,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19645,
+ "id": 2354,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -96892,7 +97272,7 @@
{
"title": "Properties",
"children": [
- 19645
+ 2354
]
}
],
@@ -96977,7 +97357,7 @@
{
"title": "Methods",
"children": [
- 19641
+ 2350
]
}
],
@@ -97019,7 +97399,7 @@
]
},
{
- "id": 19652,
+ "id": 2361,
"name": "isList",
"variant": "declaration",
"kind": 1024,
@@ -97031,19 +97411,19 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 15,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L15"
}
],
"type": {
"type": "reference",
- "target": 19654,
+ "target": 2363,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
}
},
{
- "id": 19650,
+ "id": 2359,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -97055,7 +97435,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L14"
}
],
"type": {
@@ -97073,14 +97453,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19651,
+ "id": 2360,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19652,
+ "id": 2361,
"name": "isList",
"variant": "declaration",
"kind": 1024,
@@ -97092,12 +97472,12 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 15,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L15"
}
],
"type": {
"type": "reference",
- "target": 19654,
+ "target": 2363,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97108,7 +97488,7 @@
{
"title": "Properties",
"children": [
- 19652
+ 2361
]
}
],
@@ -97117,7 +97497,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 14,
"character": 34,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L14"
}
]
}
@@ -97126,7 +97506,7 @@
}
},
{
- "id": 19657,
+ "id": 2366,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -97136,7 +97516,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -97160,7 +97540,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19658,
+ "target": 2367,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97173,7 +97553,7 @@
}
},
{
- "id": 19660,
+ "id": 2369,
"name": "useQueryGraphStep",
"variant": "declaration",
"kind": 64,
@@ -97374,12 +97754,12 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 132,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L132"
}
],
"signatures": [
{
- "id": 19661,
+ "id": 2370,
"name": "useQueryGraphStep",
"variant": "signature",
"kind": 4096,
@@ -97580,12 +97960,12 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 132,
"character": 33,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L132"
}
],
"typeParameters": [
{
- "id": 19662,
+ "id": 2371,
"name": "TEntry",
"variant": "typeParam",
"kind": 131072,
@@ -97598,7 +97978,7 @@
}
},
{
- "id": 19663,
+ "id": 2372,
"name": "TIsList",
"variant": "typeParam",
"kind": 131072,
@@ -97617,25 +97997,25 @@
],
"parameters": [
{
- "id": 19664,
+ "id": 2373,
"name": "input",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 19648,
+ "target": 2357,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97659,7 +98039,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97673,7 +98053,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97701,7 +98081,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97721,14 +98101,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19665,
+ "id": 2374,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19666,
+ "id": 2375,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -97738,7 +98118,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -97751,7 +98131,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97775,11 +98155,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97815,7 +98195,7 @@
{
"title": "Properties",
"children": [
- 19666
+ 2375
]
}
],
@@ -97824,7 +98204,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -97894,7 +98274,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97908,7 +98288,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97936,7 +98316,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -97956,14 +98336,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19667,
+ "id": 2376,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19668,
+ "id": 2377,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -97973,7 +98353,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -97986,7 +98366,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98010,7 +98390,7 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "unknown",
@@ -98047,7 +98427,7 @@
{
"title": "Properties",
"children": [
- 19668
+ 2377
]
}
],
@@ -98056,7 +98436,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -98111,7 +98491,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98125,7 +98505,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98153,7 +98533,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98173,14 +98553,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19669,
+ "id": 2378,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19670,
+ "id": 2379,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -98190,7 +98570,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -98225,7 +98605,7 @@
{
"title": "Properties",
"children": [
- 19670
+ 2379
]
}
],
@@ -98234,7 +98614,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -98270,7 +98650,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98284,7 +98664,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98329,14 +98709,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19671,
+ "id": 2380,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19672,
+ "id": 2381,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -98346,7 +98726,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -98366,7 +98746,7 @@
{
"title": "Properties",
"children": [
- 19672
+ 2381
]
}
],
@@ -98375,7 +98755,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -98402,7 +98782,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98416,7 +98796,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98444,7 +98824,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98464,14 +98844,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19673,
+ "id": 2382,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19674,
+ "id": 2383,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -98481,7 +98861,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -98494,7 +98874,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98541,7 +98921,7 @@
{
"title": "Properties",
"children": [
- 19674
+ 2383
]
}
],
@@ -98550,7 +98930,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -98573,7 +98953,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98587,7 +98967,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98615,7 +98995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98635,14 +99015,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19675,
+ "id": 2384,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19676,
+ "id": 2385,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -98652,7 +99032,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -98665,7 +99045,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98700,7 +99080,7 @@
{
"title": "Properties",
"children": [
- 19676
+ 2385
]
}
],
@@ -98709,7 +99089,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -98733,7 +99113,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98747,7 +99127,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98775,7 +99155,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98795,14 +99175,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19677,
+ "id": 2386,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19678,
+ "id": 2387,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -98812,7 +99192,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -98825,7 +99205,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98849,11 +99229,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98889,7 +99269,7 @@
{
"title": "Properties",
"children": [
- 19678
+ 2387
]
}
],
@@ -98898,7 +99278,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -98921,7 +99301,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98935,7 +99315,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98963,7 +99343,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -98983,14 +99363,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19679,
+ "id": 2388,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19680,
+ "id": 2389,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99000,7 +99380,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99013,7 +99393,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99037,11 +99417,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99077,7 +99457,7 @@
{
"title": "Properties",
"children": [
- 19680
+ 2389
]
}
],
@@ -99086,7 +99466,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -99101,14 +99481,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19681,
+ "id": 2390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19682,
+ "id": 2391,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -99122,7 +99502,7 @@
],
"signatures": [
{
- "id": 19683,
+ "id": 2392,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -99136,7 +99516,7 @@
],
"parameters": [
{
- "id": 19684,
+ "id": 2393,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -99147,14 +99527,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19685,
+ "id": 2394,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19686,
+ "id": 2395,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -99178,7 +99558,7 @@
{
"title": "Properties",
"children": [
- 19686
+ 2395
]
}
],
@@ -99247,7 +99627,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99261,7 +99641,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99289,7 +99669,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99309,14 +99689,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19687,
+ "id": 2396,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19688,
+ "id": 2397,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99326,7 +99706,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99339,7 +99719,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99363,7 +99743,7 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "unknown",
@@ -99400,7 +99780,7 @@
{
"title": "Properties",
"children": [
- 19688
+ 2397
]
}
],
@@ -99409,7 +99789,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -99429,7 +99809,7 @@
{
"title": "Methods",
"children": [
- 19682
+ 2391
]
}
],
@@ -99457,7 +99837,7 @@
},
"extendsType": {
"type": "reference",
- "target": 19663,
+ "target": 2372,
"name": "TIsList",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99471,7 +99851,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99499,7 +99879,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99519,14 +99899,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19689,
+ "id": 2398,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19690,
+ "id": 2399,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99536,7 +99916,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99549,7 +99929,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99573,11 +99953,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99613,7 +99993,7 @@
{
"title": "Properties",
"children": [
- 19690
+ 2399
]
}
],
@@ -99622,7 +100002,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 27,
"character": 47,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L27"
}
]
}
@@ -99640,7 +100020,7 @@
]
},
{
- "id": 19666,
+ "id": 2375,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99650,7 +100030,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99663,7 +100043,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99687,11 +100067,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99723,7 +100103,7 @@
}
},
{
- "id": 19668,
+ "id": 2377,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99733,7 +100113,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99746,7 +100126,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99770,7 +100150,7 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "unknown",
@@ -99803,7 +100183,7 @@
}
},
{
- "id": 19670,
+ "id": 2379,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99813,7 +100193,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99844,7 +100224,7 @@
}
},
{
- "id": 19672,
+ "id": 2381,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99854,7 +100234,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99870,7 +100250,7 @@
}
},
{
- "id": 19674,
+ "id": 2383,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99880,7 +100260,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99893,7 +100273,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99936,7 +100316,7 @@
}
},
{
- "id": 19676,
+ "id": 2385,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -99946,7 +100326,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -99959,7 +100339,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -99990,7 +100370,7 @@
}
},
{
- "id": 19678,
+ "id": 2387,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -100000,7 +100380,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -100013,7 +100393,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -100037,11 +100417,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -100073,7 +100453,7 @@
}
},
{
- "id": 19680,
+ "id": 2389,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -100083,7 +100463,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -100096,7 +100476,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -100120,11 +100500,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -100156,7 +100536,7 @@
}
},
{
- "id": 19688,
+ "id": 2397,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -100166,7 +100546,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -100179,7 +100559,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -100203,7 +100583,7 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "unknown",
@@ -100236,7 +100616,7 @@
}
},
{
- "id": 19690,
+ "id": 2399,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -100246,7 +100626,7 @@
"fileName": "core-flows/src/common/steps/use-query-graph.ts",
"line": 28,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-query-graph.ts#L28"
}
],
"type": {
@@ -100259,7 +100639,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -100283,11 +100663,11 @@
"type": "indexedAccess",
"indexType": {
"type": "reference",
- "target": 19662,
+ "target": 2371,
"typeArguments": [
{
"type": "reference",
- "target": 19662,
+ "target": 2371,
"name": "TEntry",
"package": "@medusajs/core-flows",
"refersToTypeParameter": true
@@ -100319,7 +100699,7 @@
}
},
{
- "id": 19692,
+ "id": 2401,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -100337,7 +100717,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L14"
}
],
"type": {
@@ -100349,7 +100729,7 @@
}
},
{
- "id": 19693,
+ "id": 2402,
"name": "variables",
"variant": "declaration",
"kind": 1024,
@@ -100369,7 +100749,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L18"
}
],
"type": {
@@ -100393,7 +100773,7 @@
}
},
{
- "id": 19694,
+ "id": 2403,
"name": "throw_if_key_not_found",
"variant": "declaration",
"kind": 1024,
@@ -100413,7 +100793,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L22"
}
],
"type": {
@@ -100422,7 +100802,7 @@
}
},
{
- "id": 19695,
+ "id": 2404,
"name": "throw_if_relation_not_found",
"variant": "declaration",
"kind": 1024,
@@ -100442,7 +100822,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L26"
}
],
"type": {
@@ -100463,7 +100843,7 @@
}
},
{
- "id": 19696,
+ "id": 2405,
"name": "list",
"variant": "declaration",
"kind": 1024,
@@ -100494,7 +100874,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L32"
}
],
"type": {
@@ -100503,7 +100883,7 @@
}
},
{
- "id": 19698,
+ "id": 2407,
"name": "entry_point",
"variant": "declaration",
"kind": 1024,
@@ -100521,7 +100901,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L39"
}
],
"type": {
@@ -100530,7 +100910,7 @@
}
},
{
- "id": 19699,
+ "id": 2408,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -100550,7 +100930,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L14"
}
],
"type": {
@@ -100562,12 +100942,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19692,
+ "target": 2401,
"name": "RemoteStepInput.fields"
}
},
{
- "id": 19700,
+ "id": 2409,
"name": "variables",
"variant": "declaration",
"kind": 1024,
@@ -100588,7 +100968,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L18"
}
],
"type": {
@@ -100612,12 +100992,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19693,
+ "target": 2402,
"name": "RemoteStepInput.variables"
}
},
{
- "id": 19701,
+ "id": 2410,
"name": "throw_if_key_not_found",
"variant": "declaration",
"kind": 1024,
@@ -100638,7 +101018,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L22"
}
],
"type": {
@@ -100647,12 +101027,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19694,
+ "target": 2403,
"name": "RemoteStepInput.throw_if_key_not_found"
}
},
{
- "id": 19702,
+ "id": 2411,
"name": "throw_if_relation_not_found",
"variant": "declaration",
"kind": 1024,
@@ -100673,7 +101053,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L26"
}
],
"type": {
@@ -100694,12 +101074,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19695,
+ "target": 2404,
"name": "RemoteStepInput.throw_if_relation_not_found"
}
},
{
- "id": 19703,
+ "id": 2412,
"name": "list",
"variant": "declaration",
"kind": 1024,
@@ -100731,7 +101111,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L32"
}
],
"type": {
@@ -100740,12 +101120,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19696,
+ "target": 2405,
"name": "RemoteStepInput.list"
}
},
{
- "id": 19705,
+ "id": 2414,
"name": "service",
"variant": "declaration",
"kind": 1024,
@@ -100763,7 +101143,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L46"
}
],
"type": {
@@ -100772,7 +101152,7 @@
}
},
{
- "id": 19706,
+ "id": 2415,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -100792,7 +101172,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L14"
}
],
"type": {
@@ -100804,12 +101184,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19692,
+ "target": 2401,
"name": "RemoteStepInput.fields"
}
},
{
- "id": 19707,
+ "id": 2416,
"name": "variables",
"variant": "declaration",
"kind": 1024,
@@ -100830,7 +101210,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L18"
}
],
"type": {
@@ -100854,12 +101234,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19693,
+ "target": 2402,
"name": "RemoteStepInput.variables"
}
},
{
- "id": 19708,
+ "id": 2417,
"name": "throw_if_key_not_found",
"variant": "declaration",
"kind": 1024,
@@ -100880,7 +101260,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L22"
}
],
"type": {
@@ -100889,12 +101269,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19694,
+ "target": 2403,
"name": "RemoteStepInput.throw_if_key_not_found"
}
},
{
- "id": 19709,
+ "id": 2418,
"name": "throw_if_relation_not_found",
"variant": "declaration",
"kind": 1024,
@@ -100915,7 +101295,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L26"
}
],
"type": {
@@ -100936,12 +101316,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19695,
+ "target": 2404,
"name": "RemoteStepInput.throw_if_relation_not_found"
}
},
{
- "id": 19710,
+ "id": 2419,
"name": "list",
"variant": "declaration",
"kind": 1024,
@@ -100973,7 +101353,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L32"
}
],
"type": {
@@ -100982,12 +101362,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 19696,
+ "target": 2405,
"name": "RemoteStepInput.list"
}
},
{
- "id": 19711,
+ "id": 2420,
"name": "useRemoteQueryStepId",
"variant": "declaration",
"kind": 32,
@@ -100999,7 +101379,7 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L49"
}
],
"type": {
@@ -101009,7 +101389,7 @@
"defaultValue": "\"use-remote-query\""
},
{
- "id": 19712,
+ "id": 2421,
"name": "useRemoteQueryStep",
"variant": "declaration",
"kind": 64,
@@ -102225,7 +102605,7 @@
},
"children": [
{
- "id": 19715,
+ "id": 2424,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -102243,7 +102623,7 @@
}
},
{
- "id": 19716,
+ "id": 2425,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -102265,8 +102645,8 @@
{
"title": "Properties",
"children": [
- 19715,
- 19716
+ 2424,
+ 2425
]
}
],
@@ -102275,12 +102655,12 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L112"
}
],
"signatures": [
{
- "id": 19713,
+ "id": 2422,
"name": "useRemoteQueryStep",
"variant": "signature",
"kind": 4096,
@@ -103499,12 +103879,12 @@
"fileName": "core-flows/src/common/steps/use-remote-query.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/use-remote-query.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/use-remote-query.ts#L112"
}
],
"parameters": [
{
- "id": 19714,
+ "id": 2423,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -103514,13 +103894,13 @@
"types": [
{
"type": "reference",
- "target": 19697,
+ "target": 2406,
"name": "EntryStepInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 19704,
+ "target": 2413,
"name": "ServiceStepInput",
"package": "@medusajs/core-flows"
},
@@ -103536,13 +103916,13 @@
"types": [
{
"type": "reference",
- "target": 19697,
+ "target": 2406,
"name": "EntryStepInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 19704,
+ "target": 2413,
"name": "ServiceStepInput",
"package": "@medusajs/core-flows"
}
@@ -103564,7 +103944,7 @@
]
},
{
- "id": 19717,
+ "id": 2426,
"name": "validatePresenceOfStep",
"variant": "declaration",
"kind": 64,
@@ -103608,7 +103988,7 @@
},
"children": [
{
- "id": 19732,
+ "id": 2441,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -103626,7 +104006,7 @@
}
},
{
- "id": 19733,
+ "id": 2442,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -103648,8 +104028,8 @@
{
"title": "Properties",
"children": [
- 19732,
- 19733
+ 2441,
+ 2442
]
}
],
@@ -103658,12 +104038,12 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 7,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L7"
}
],
"signatures": [
{
- "id": 19718,
+ "id": 2427,
"name": "validatePresenceOfStep",
"variant": "signature",
"kind": 4096,
@@ -103710,12 +104090,12 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 7,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L7"
}
],
"parameters": [
{
- "id": 19719,
+ "id": 2428,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -103726,14 +104106,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19720,
+ "id": 2429,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19721,
+ "id": 2430,
"name": "entity",
"variant": "declaration",
"kind": 1024,
@@ -103743,7 +104123,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 13,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
}
],
"type": {
@@ -103767,7 +104147,7 @@
}
},
{
- "id": 19722,
+ "id": 2431,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -103777,7 +104157,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 14,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
}
],
"type": {
@@ -103793,8 +104173,8 @@
{
"title": "Properties",
"children": [
- 19721,
- 19722
+ 2430,
+ 2431
]
}
],
@@ -103803,7 +104183,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 12,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L12"
}
]
}
@@ -103818,14 +104198,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19723,
+ "id": 2432,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19724,
+ "id": 2433,
"name": "entity",
"variant": "declaration",
"kind": 1024,
@@ -103835,7 +104215,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 13,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
}
],
"type": {
@@ -103859,7 +104239,7 @@
}
},
{
- "id": 19725,
+ "id": 2434,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -103869,7 +104249,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 14,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
}
],
"type": {
@@ -103885,8 +104265,8 @@
{
"title": "Properties",
"children": [
- 19724,
- 19725
+ 2433,
+ 2434
]
}
],
@@ -103895,7 +104275,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 12,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L12"
}
]
}
@@ -103929,14 +104309,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19726,
+ "id": 2435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19727,
+ "id": 2436,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -103950,7 +104330,7 @@
],
"signatures": [
{
- "id": 19728,
+ "id": 2437,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -103964,7 +104344,7 @@
],
"parameters": [
{
- "id": 19729,
+ "id": 2438,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -103975,14 +104355,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19730,
+ "id": 2439,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19731,
+ "id": 2440,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -104006,7 +104386,7 @@
{
"title": "Properties",
"children": [
- 19731
+ 2440
]
}
],
@@ -104083,7 +104463,7 @@
{
"title": "Methods",
"children": [
- 19727
+ 2436
]
}
],
@@ -104117,7 +104497,7 @@
]
},
{
- "id": 19721,
+ "id": 2430,
"name": "entity",
"variant": "declaration",
"kind": 1024,
@@ -104127,7 +104507,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 13,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
}
],
"type": {
@@ -104151,7 +104531,7 @@
}
},
{
- "id": 19722,
+ "id": 2431,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -104161,7 +104541,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 14,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
}
],
"type": {
@@ -104173,7 +104553,7 @@
}
},
{
- "id": 19724,
+ "id": 2433,
"name": "entity",
"variant": "declaration",
"kind": 1024,
@@ -104183,7 +104563,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 13,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L13"
}
],
"type": {
@@ -104207,7 +104587,7 @@
}
},
{
- "id": 19725,
+ "id": 2434,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -104217,7 +104597,7 @@
"fileName": "core-flows/src/common/steps/validate-presence-of.ts",
"line": 14,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/steps/validate-presence-of.ts#L14"
}
],
"type": {
@@ -104231,14 +104611,14 @@
]
},
{
- "id": 17307,
+ "id": 12,
"name": "Workflows_Common",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 19734,
+ "id": 2443,
"name": "batchLinksWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -104250,7 +104630,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L15"
}
],
"type": {
@@ -104260,7 +104640,7 @@
"defaultValue": "\"batch-links\""
},
{
- "id": 19735,
+ "id": 2444,
"name": "batchLinksWorkflow",
"variant": "declaration",
"kind": 64,
@@ -104304,7 +104684,7 @@
},
"children": [
{
- "id": 19765,
+ "id": 2474,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -104327,7 +104707,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19766,
+ "id": 2475,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -104341,7 +104721,7 @@
],
"signatures": [
{
- "id": 19767,
+ "id": 2476,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -104369,7 +104749,7 @@
],
"parameters": [
{
- "id": 19768,
+ "id": 2477,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -104385,14 +104765,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19769,
+ "id": 2478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19770,
+ "id": 2479,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -104510,7 +104890,7 @@
{
"title": "Properties",
"children": [
- 19770
+ 2479
]
}
],
@@ -104531,14 +104911,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19771,
+ "id": 2480,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19772,
+ "id": 2481,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -104548,7 +104928,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -104632,14 +105012,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19773,
+ "id": 2482,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19774,
+ "id": 2483,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -104653,7 +105033,7 @@
],
"signatures": [
{
- "id": 19775,
+ "id": 2484,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -104667,7 +105047,7 @@
],
"parameters": [
{
- "id": 19776,
+ "id": 2485,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -104678,14 +105058,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19777,
+ "id": 2486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19778,
+ "id": 2487,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -104709,7 +105089,7 @@
{
"title": "Properties",
"children": [
- 19778
+ 2487
]
}
],
@@ -104794,7 +105174,7 @@
{
"title": "Methods",
"children": [
- 19774
+ 2483
]
}
],
@@ -104917,14 +105297,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19779,
+ "id": 2488,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19780,
+ "id": 2489,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -104938,7 +105318,7 @@
],
"signatures": [
{
- "id": 19781,
+ "id": 2490,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -104952,7 +105332,7 @@
],
"parameters": [
{
- "id": 19782,
+ "id": 2491,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -104963,14 +105343,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19783,
+ "id": 2492,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19784,
+ "id": 2493,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -104994,7 +105374,7 @@
{
"title": "Properties",
"children": [
- 19784
+ 2493
]
}
],
@@ -105079,7 +105459,7 @@
{
"title": "Methods",
"children": [
- 19780
+ 2489
]
}
],
@@ -105125,7 +105505,7 @@
}
},
{
- "id": 19785,
+ "id": 2494,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -105135,7 +105515,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -105219,14 +105599,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19786,
+ "id": 2495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19787,
+ "id": 2496,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -105240,7 +105620,7 @@
],
"signatures": [
{
- "id": 19788,
+ "id": 2497,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -105254,7 +105634,7 @@
],
"parameters": [
{
- "id": 19789,
+ "id": 2498,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -105265,14 +105645,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19790,
+ "id": 2499,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19791,
+ "id": 2500,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -105296,7 +105676,7 @@
{
"title": "Properties",
"children": [
- 19791
+ 2500
]
}
],
@@ -105381,7 +105761,7 @@
{
"title": "Methods",
"children": [
- 19787
+ 2496
]
}
],
@@ -105504,14 +105884,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19792,
+ "id": 2501,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19793,
+ "id": 2502,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -105525,7 +105905,7 @@
],
"signatures": [
{
- "id": 19794,
+ "id": 2503,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -105539,7 +105919,7 @@
],
"parameters": [
{
- "id": 19795,
+ "id": 2504,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -105550,14 +105930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19796,
+ "id": 2505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19797,
+ "id": 2506,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -105581,7 +105961,7 @@
{
"title": "Properties",
"children": [
- 19797
+ 2506
]
}
],
@@ -105666,7 +106046,7 @@
{
"title": "Methods",
"children": [
- 19793
+ 2502
]
}
],
@@ -105712,7 +106092,7 @@
}
},
{
- "id": 19798,
+ "id": 2507,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -105722,7 +106102,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -105806,14 +106186,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19799,
+ "id": 2508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19800,
+ "id": 2509,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -105827,7 +106207,7 @@
],
"signatures": [
{
- "id": 19801,
+ "id": 2510,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -105841,7 +106221,7 @@
],
"parameters": [
{
- "id": 19802,
+ "id": 2511,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -105852,14 +106232,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19803,
+ "id": 2512,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19804,
+ "id": 2513,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -105883,7 +106263,7 @@
{
"title": "Properties",
"children": [
- 19804
+ 2513
]
}
],
@@ -105968,7 +106348,7 @@
{
"title": "Methods",
"children": [
- 19800
+ 2509
]
}
],
@@ -106091,14 +106471,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19805,
+ "id": 2514,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19806,
+ "id": 2515,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -106112,7 +106492,7 @@
],
"signatures": [
{
- "id": 19807,
+ "id": 2516,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -106126,7 +106506,7 @@
],
"parameters": [
{
- "id": 19808,
+ "id": 2517,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -106137,14 +106517,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19809,
+ "id": 2518,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19810,
+ "id": 2519,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -106168,7 +106548,7 @@
{
"title": "Properties",
"children": [
- 19810
+ 2519
]
}
],
@@ -106253,7 +106633,7 @@
{
"title": "Methods",
"children": [
- 19806
+ 2515
]
}
],
@@ -106303,9 +106683,9 @@
{
"title": "Properties",
"children": [
- 19772,
- 19785,
- 19798
+ 2481,
+ 2494,
+ 2507
]
}
],
@@ -106321,14 +106701,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19811,
+ "id": 2520,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19812,
+ "id": 2521,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -106338,7 +106718,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -106419,14 +106799,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19813,
+ "id": 2522,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19814,
+ "id": 2523,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -106440,7 +106820,7 @@
],
"signatures": [
{
- "id": 19815,
+ "id": 2524,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -106454,7 +106834,7 @@
],
"parameters": [
{
- "id": 19816,
+ "id": 2525,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -106465,14 +106845,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19817,
+ "id": 2526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19818,
+ "id": 2527,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -106496,7 +106876,7 @@
{
"title": "Properties",
"children": [
- 19818
+ 2527
]
}
],
@@ -106581,7 +106961,7 @@
{
"title": "Methods",
"children": [
- 19814
+ 2523
]
}
],
@@ -106621,7 +107001,7 @@
}
},
{
- "id": 19819,
+ "id": 2528,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -106631,7 +107011,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -106712,14 +107092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19820,
+ "id": 2529,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19821,
+ "id": 2530,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -106733,7 +107113,7 @@
],
"signatures": [
{
- "id": 19822,
+ "id": 2531,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -106747,7 +107127,7 @@
],
"parameters": [
{
- "id": 19823,
+ "id": 2532,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -106758,14 +107138,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19824,
+ "id": 2533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19825,
+ "id": 2534,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -106789,7 +107169,7 @@
{
"title": "Properties",
"children": [
- 19825
+ 2534
]
}
],
@@ -106874,7 +107254,7 @@
{
"title": "Methods",
"children": [
- 19821
+ 2530
]
}
],
@@ -106914,7 +107294,7 @@
}
},
{
- "id": 19826,
+ "id": 2535,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -106924,7 +107304,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -107005,14 +107385,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19827,
+ "id": 2536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19828,
+ "id": 2537,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -107026,7 +107406,7 @@
],
"signatures": [
{
- "id": 19829,
+ "id": 2538,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -107040,7 +107420,7 @@
],
"parameters": [
{
- "id": 19830,
+ "id": 2539,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -107051,14 +107431,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19831,
+ "id": 2540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19832,
+ "id": 2541,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -107082,7 +107462,7 @@
{
"title": "Properties",
"children": [
- 19832
+ 2541
]
}
],
@@ -107167,7 +107547,7 @@
{
"title": "Methods",
"children": [
- 19828
+ 2537
]
}
],
@@ -107211,9 +107591,9 @@
{
"title": "Properties",
"children": [
- 19812,
- 19819,
- 19826
+ 2521,
+ 2528,
+ 2535
]
}
],
@@ -107222,7 +107602,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
}
@@ -107237,14 +107617,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19833,
+ "id": 2542,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19834,
+ "id": 2543,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -107254,7 +107634,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -107335,14 +107715,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19835,
+ "id": 2544,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19836,
+ "id": 2545,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -107356,7 +107736,7 @@
],
"signatures": [
{
- "id": 19837,
+ "id": 2546,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -107370,7 +107750,7 @@
],
"parameters": [
{
- "id": 19838,
+ "id": 2547,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -107381,14 +107761,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19839,
+ "id": 2548,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19840,
+ "id": 2549,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -107412,7 +107792,7 @@
{
"title": "Properties",
"children": [
- 19840
+ 2549
]
}
],
@@ -107497,7 +107877,7 @@
{
"title": "Methods",
"children": [
- 19836
+ 2545
]
}
],
@@ -107537,7 +107917,7 @@
}
},
{
- "id": 19841,
+ "id": 2550,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -107547,7 +107927,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -107628,14 +108008,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19842,
+ "id": 2551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19843,
+ "id": 2552,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -107649,7 +108029,7 @@
],
"signatures": [
{
- "id": 19844,
+ "id": 2553,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -107663,7 +108043,7 @@
],
"parameters": [
{
- "id": 19845,
+ "id": 2554,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -107674,14 +108054,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19846,
+ "id": 2555,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19847,
+ "id": 2556,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -107705,7 +108085,7 @@
{
"title": "Properties",
"children": [
- 19847
+ 2556
]
}
],
@@ -107790,7 +108170,7 @@
{
"title": "Methods",
"children": [
- 19843
+ 2552
]
}
],
@@ -107830,7 +108210,7 @@
}
},
{
- "id": 19848,
+ "id": 2557,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -107840,7 +108220,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -107921,14 +108301,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19849,
+ "id": 2558,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19850,
+ "id": 2559,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -107942,7 +108322,7 @@
],
"signatures": [
{
- "id": 19851,
+ "id": 2560,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -107956,7 +108336,7 @@
],
"parameters": [
{
- "id": 19852,
+ "id": 2561,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -107967,14 +108347,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19853,
+ "id": 2562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19854,
+ "id": 2563,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -107998,7 +108378,7 @@
{
"title": "Properties",
"children": [
- 19854
+ 2563
]
}
],
@@ -108083,7 +108463,7 @@
{
"title": "Methods",
"children": [
- 19850
+ 2559
]
}
],
@@ -108127,9 +108507,9 @@
{
"title": "Properties",
"children": [
- 19834,
- 19841,
- 19848
+ 2543,
+ 2550,
+ 2557
]
}
],
@@ -108138,7 +108518,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
}
@@ -108150,14 +108530,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19855,
+ "id": 2564,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19856,
+ "id": 2565,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -108171,7 +108551,7 @@
],
"signatures": [
{
- "id": 19857,
+ "id": 2566,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -108185,7 +108565,7 @@
],
"parameters": [
{
- "id": 19858,
+ "id": 2567,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -108196,14 +108576,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19859,
+ "id": 2568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19860,
+ "id": 2569,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -108227,7 +108607,7 @@
{
"title": "Properties",
"children": [
- 19860
+ 2569
]
}
],
@@ -108291,14 +108671,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19861,
+ "id": 2570,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19862,
+ "id": 2571,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -108308,7 +108688,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -108389,14 +108769,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19863,
+ "id": 2572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19864,
+ "id": 2573,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -108410,7 +108790,7 @@
],
"signatures": [
{
- "id": 19865,
+ "id": 2574,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -108424,7 +108804,7 @@
],
"parameters": [
{
- "id": 19866,
+ "id": 2575,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -108435,14 +108815,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19867,
+ "id": 2576,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19868,
+ "id": 2577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -108466,7 +108846,7 @@
{
"title": "Properties",
"children": [
- 19868
+ 2577
]
}
],
@@ -108551,7 +108931,7 @@
{
"title": "Methods",
"children": [
- 19864
+ 2573
]
}
],
@@ -108591,7 +108971,7 @@
}
},
{
- "id": 19869,
+ "id": 2578,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -108601,7 +108981,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -108682,14 +109062,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19870,
+ "id": 2579,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19871,
+ "id": 2580,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -108703,7 +109083,7 @@
],
"signatures": [
{
- "id": 19872,
+ "id": 2581,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -108717,7 +109097,7 @@
],
"parameters": [
{
- "id": 19873,
+ "id": 2582,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -108728,14 +109108,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19874,
+ "id": 2583,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19875,
+ "id": 2584,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -108759,7 +109139,7 @@
{
"title": "Properties",
"children": [
- 19875
+ 2584
]
}
],
@@ -108844,7 +109224,7 @@
{
"title": "Methods",
"children": [
- 19871
+ 2580
]
}
],
@@ -108884,7 +109264,7 @@
}
},
{
- "id": 19876,
+ "id": 2585,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -108894,7 +109274,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -108975,14 +109355,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19877,
+ "id": 2586,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19878,
+ "id": 2587,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -108996,7 +109376,7 @@
],
"signatures": [
{
- "id": 19879,
+ "id": 2588,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -109010,7 +109390,7 @@
],
"parameters": [
{
- "id": 19880,
+ "id": 2589,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -109021,14 +109401,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19881,
+ "id": 2590,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19882,
+ "id": 2591,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -109052,7 +109432,7 @@
{
"title": "Properties",
"children": [
- 19882
+ 2591
]
}
],
@@ -109137,7 +109517,7 @@
{
"title": "Methods",
"children": [
- 19878
+ 2587
]
}
],
@@ -109181,9 +109561,9 @@
{
"title": "Properties",
"children": [
- 19862,
- 19869,
- 19876
+ 2571,
+ 2578,
+ 2585
]
}
],
@@ -109192,7 +109572,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
}
@@ -109209,7 +109589,7 @@
{
"title": "Methods",
"children": [
- 19856
+ 2565
]
}
],
@@ -109232,14 +109612,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19883,
+ "id": 2592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19884,
+ "id": 2593,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -109249,7 +109629,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -109330,14 +109710,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19885,
+ "id": 2594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19886,
+ "id": 2595,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -109351,7 +109731,7 @@
],
"signatures": [
{
- "id": 19887,
+ "id": 2596,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -109365,7 +109745,7 @@
],
"parameters": [
{
- "id": 19888,
+ "id": 2597,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -109376,14 +109756,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19889,
+ "id": 2598,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19890,
+ "id": 2599,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -109407,7 +109787,7 @@
{
"title": "Properties",
"children": [
- 19890
+ 2599
]
}
],
@@ -109492,7 +109872,7 @@
{
"title": "Methods",
"children": [
- 19886
+ 2595
]
}
],
@@ -109532,7 +109912,7 @@
}
},
{
- "id": 19891,
+ "id": 2600,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -109542,7 +109922,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -109623,14 +110003,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19892,
+ "id": 2601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19893,
+ "id": 2602,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -109644,7 +110024,7 @@
],
"signatures": [
{
- "id": 19894,
+ "id": 2603,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -109658,7 +110038,7 @@
],
"parameters": [
{
- "id": 19895,
+ "id": 2604,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -109669,14 +110049,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19896,
+ "id": 2605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19897,
+ "id": 2606,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -109700,7 +110080,7 @@
{
"title": "Properties",
"children": [
- 19897
+ 2606
]
}
],
@@ -109785,7 +110165,7 @@
{
"title": "Methods",
"children": [
- 19893
+ 2602
]
}
],
@@ -109825,7 +110205,7 @@
}
},
{
- "id": 19898,
+ "id": 2607,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -109835,7 +110215,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -109916,14 +110296,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19899,
+ "id": 2608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19900,
+ "id": 2609,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -109937,7 +110317,7 @@
],
"signatures": [
{
- "id": 19901,
+ "id": 2610,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -109951,7 +110331,7 @@
],
"parameters": [
{
- "id": 19902,
+ "id": 2611,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -109962,14 +110342,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19903,
+ "id": 2612,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19904,
+ "id": 2613,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -109993,7 +110373,7 @@
{
"title": "Properties",
"children": [
- 19904
+ 2613
]
}
],
@@ -110078,7 +110458,7 @@
{
"title": "Methods",
"children": [
- 19900
+ 2609
]
}
],
@@ -110122,9 +110502,9 @@
{
"title": "Properties",
"children": [
- 19884,
- 19891,
- 19898
+ 2593,
+ 2600,
+ 2607
]
}
],
@@ -110133,7 +110513,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
}
@@ -110150,7 +110530,7 @@
}
},
{
- "id": 19905,
+ "id": 2614,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -110173,7 +110553,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19906,
+ "id": 2615,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -110187,7 +110567,7 @@
],
"signatures": [
{
- "id": 19907,
+ "id": 2616,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -110215,7 +110595,7 @@
],
"typeParameters": [
{
- "id": 19908,
+ "id": 2617,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -110226,7 +110606,7 @@
}
},
{
- "id": 19909,
+ "id": 2618,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -110239,7 +110619,7 @@
],
"parameters": [
{
- "id": 19910,
+ "id": 2619,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -110272,7 +110652,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -110321,7 +110701,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -110354,7 +110734,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -110366,14 +110746,14 @@
"trueType": {
"type": "reflection",
"declaration": {
- "id": 19911,
+ "id": 2620,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19912,
+ "id": 2621,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -110383,7 +110763,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -110464,14 +110844,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19913,
+ "id": 2622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19914,
+ "id": 2623,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -110485,7 +110865,7 @@
],
"signatures": [
{
- "id": 19915,
+ "id": 2624,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -110499,7 +110879,7 @@
],
"parameters": [
{
- "id": 19916,
+ "id": 2625,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -110510,14 +110890,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19917,
+ "id": 2626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19918,
+ "id": 2627,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -110541,7 +110921,7 @@
{
"title": "Properties",
"children": [
- 19918
+ 2627
]
}
],
@@ -110626,7 +111006,7 @@
{
"title": "Methods",
"children": [
- 19914
+ 2623
]
}
],
@@ -110666,7 +111046,7 @@
}
},
{
- "id": 19919,
+ "id": 2628,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -110676,7 +111056,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -110757,14 +111137,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19920,
+ "id": 2629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19921,
+ "id": 2630,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -110778,7 +111158,7 @@
],
"signatures": [
{
- "id": 19922,
+ "id": 2631,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -110792,7 +111172,7 @@
],
"parameters": [
{
- "id": 19923,
+ "id": 2632,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -110803,14 +111183,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19924,
+ "id": 2633,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19925,
+ "id": 2634,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -110834,7 +111214,7 @@
{
"title": "Properties",
"children": [
- 19925
+ 2634
]
}
],
@@ -110919,7 +111299,7 @@
{
"title": "Methods",
"children": [
- 19921
+ 2630
]
}
],
@@ -110959,7 +111339,7 @@
}
},
{
- "id": 19926,
+ "id": 2635,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -110969,7 +111349,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -111050,14 +111430,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19927,
+ "id": 2636,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19928,
+ "id": 2637,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -111071,7 +111451,7 @@
],
"signatures": [
{
- "id": 19929,
+ "id": 2638,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -111085,7 +111465,7 @@
],
"parameters": [
{
- "id": 19930,
+ "id": 2639,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -111096,14 +111476,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19931,
+ "id": 2640,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19932,
+ "id": 2641,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -111127,7 +111507,7 @@
{
"title": "Properties",
"children": [
- 19932
+ 2641
]
}
],
@@ -111212,7 +111592,7 @@
{
"title": "Methods",
"children": [
- 19928
+ 2637
]
}
],
@@ -111256,9 +111636,9 @@
{
"title": "Properties",
"children": [
- 19912,
- 19919,
- 19926
+ 2621,
+ 2628,
+ 2635
]
}
],
@@ -111267,14 +111647,14 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
}
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -111294,7 +111674,7 @@
}
},
{
- "id": 19933,
+ "id": 2642,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -111317,7 +111697,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19934,
+ "id": 2643,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -111331,7 +111711,7 @@
],
"signatures": [
{
- "id": 19935,
+ "id": 2644,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -111353,7 +111733,7 @@
}
},
{
- "id": 19936,
+ "id": 2645,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -111376,7 +111756,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19937,
+ "id": 2646,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -111390,7 +111770,7 @@
],
"signatures": [
{
- "id": 19938,
+ "id": 2647,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -111404,7 +111784,7 @@
],
"parameters": [
{
- "id": 19939,
+ "id": 2648,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -111430,7 +111810,7 @@
}
},
{
- "id": 19940,
+ "id": 2649,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -111453,7 +111833,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19941,
+ "id": 2650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -111464,7 +111844,7 @@
],
"documents": [
{
- "id": 42231,
+ "id": 25172,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -111490,7 +111870,7 @@
"frontmatter": {}
},
{
- "id": 42232,
+ "id": 25173,
"name": "updateRemoteLinksStep",
"variant": "document",
"kind": 8388608,
@@ -111516,7 +111896,7 @@
"frontmatter": {}
},
{
- "id": 42233,
+ "id": 25174,
"name": "dismissRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -111543,21 +111923,21 @@
}
],
"childrenIncludingDocuments": [
- 19765,
- 19905,
- 19933,
- 19936,
- 19940
+ 2474,
+ 2614,
+ 2642,
+ 2645,
+ 2649
],
"groups": [
{
"title": "Properties",
"children": [
- 19765,
- 19905,
- 19933,
- 19936,
- 19940
+ 2474,
+ 2614,
+ 2642,
+ 2645,
+ 2649
]
}
],
@@ -111566,12 +111946,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 70,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L70"
}
],
"signatures": [
{
- "id": 19736,
+ "id": 2445,
"name": "batchLinksWorkflow",
"variant": "signature",
"kind": 4096,
@@ -111618,12 +111998,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 70,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L70"
}
],
"typeParameters": [
{
- "id": 19737,
+ "id": 2446,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -111634,7 +112014,7 @@
}
},
{
- "id": 19738,
+ "id": 2447,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -111647,7 +112027,7 @@
],
"parameters": [
{
- "id": 19739,
+ "id": 2448,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -111671,14 +112051,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19740,
+ "id": 2449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19741,
+ "id": 2450,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -111701,7 +112081,7 @@
}
},
{
- "id": 19742,
+ "id": 2451,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -111728,8 +112108,8 @@
{
"title": "Properties",
"children": [
- 19741,
- 19742
+ 2450,
+ 2451
]
}
],
@@ -111843,14 +112223,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19743,
+ "id": 2452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19744,
+ "id": 2453,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -111860,7 +112240,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -111941,14 +112321,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19745,
+ "id": 2454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19746,
+ "id": 2455,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -111962,7 +112342,7 @@
],
"signatures": [
{
- "id": 19747,
+ "id": 2456,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -111976,7 +112356,7 @@
],
"parameters": [
{
- "id": 19748,
+ "id": 2457,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -111987,14 +112367,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19749,
+ "id": 2458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19750,
+ "id": 2459,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -112018,7 +112398,7 @@
{
"title": "Properties",
"children": [
- 19750
+ 2459
]
}
],
@@ -112103,7 +112483,7 @@
{
"title": "Methods",
"children": [
- 19746
+ 2455
]
}
],
@@ -112143,7 +112523,7 @@
}
},
{
- "id": 19751,
+ "id": 2460,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -112153,7 +112533,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -112234,14 +112614,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19752,
+ "id": 2461,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19753,
+ "id": 2462,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -112255,7 +112635,7 @@
],
"signatures": [
{
- "id": 19754,
+ "id": 2463,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -112269,7 +112649,7 @@
],
"parameters": [
{
- "id": 19755,
+ "id": 2464,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -112280,14 +112660,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19756,
+ "id": 2465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19757,
+ "id": 2466,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -112311,7 +112691,7 @@
{
"title": "Properties",
"children": [
- 19757
+ 2466
]
}
],
@@ -112396,7 +112776,7 @@
{
"title": "Methods",
"children": [
- 19753
+ 2462
]
}
],
@@ -112436,7 +112816,7 @@
}
},
{
- "id": 19758,
+ "id": 2467,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -112446,7 +112826,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -112527,14 +112907,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19759,
+ "id": 2468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19760,
+ "id": 2469,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -112548,7 +112928,7 @@
],
"signatures": [
{
- "id": 19761,
+ "id": 2470,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -112562,7 +112942,7 @@
],
"parameters": [
{
- "id": 19762,
+ "id": 2471,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -112573,14 +112953,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19763,
+ "id": 2472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19764,
+ "id": 2473,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -112604,7 +112984,7 @@
{
"title": "Properties",
"children": [
- 19764
+ 2473
]
}
],
@@ -112689,7 +113069,7 @@
{
"title": "Methods",
"children": [
- 19760
+ 2469
]
}
],
@@ -112733,9 +113113,9 @@
{
"title": "Properties",
"children": [
- 19744,
- 19751,
- 19758
+ 2453,
+ 2460,
+ 2467
]
}
],
@@ -112744,21 +113124,21 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
}
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -112773,14 +113153,14 @@
]
},
{
- "id": 19743,
+ "id": 2452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19744,
+ "id": 2453,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -112790,7 +113170,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -112871,14 +113251,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19745,
+ "id": 2454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19746,
+ "id": 2455,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -112892,7 +113272,7 @@
],
"signatures": [
{
- "id": 19747,
+ "id": 2456,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -112906,7 +113286,7 @@
],
"parameters": [
{
- "id": 19748,
+ "id": 2457,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -112917,14 +113297,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19749,
+ "id": 2458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19750,
+ "id": 2459,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -112948,7 +113328,7 @@
{
"title": "Properties",
"children": [
- 19750
+ 2459
]
}
],
@@ -113033,7 +113413,7 @@
{
"title": "Methods",
"children": [
- 19746
+ 2455
]
}
],
@@ -113073,7 +113453,7 @@
}
},
{
- "id": 19751,
+ "id": 2460,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -113083,7 +113463,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -113164,14 +113544,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19752,
+ "id": 2461,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19753,
+ "id": 2462,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -113185,7 +113565,7 @@
],
"signatures": [
{
- "id": 19754,
+ "id": 2463,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -113199,7 +113579,7 @@
],
"parameters": [
{
- "id": 19755,
+ "id": 2464,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -113210,14 +113590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19756,
+ "id": 2465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19757,
+ "id": 2466,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -113241,7 +113621,7 @@
{
"title": "Properties",
"children": [
- 19757
+ 2466
]
}
],
@@ -113326,7 +113706,7 @@
{
"title": "Methods",
"children": [
- 19753
+ 2462
]
}
],
@@ -113366,7 +113746,7 @@
}
},
{
- "id": 19758,
+ "id": 2467,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -113376,7 +113756,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -113457,14 +113837,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19759,
+ "id": 2468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19760,
+ "id": 2469,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -113478,7 +113858,7 @@
],
"signatures": [
{
- "id": 19761,
+ "id": 2470,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -113492,7 +113872,7 @@
],
"parameters": [
{
- "id": 19762,
+ "id": 2471,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -113503,14 +113883,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19763,
+ "id": 2472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19764,
+ "id": 2473,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -113534,7 +113914,7 @@
{
"title": "Properties",
"children": [
- 19764
+ 2473
]
}
],
@@ -113619,7 +113999,7 @@
{
"title": "Methods",
"children": [
- 19760
+ 2469
]
}
],
@@ -113663,9 +114043,9 @@
{
"title": "Properties",
"children": [
- 19744,
- 19751,
- 19758
+ 2453,
+ 2460,
+ 2467
]
}
],
@@ -113674,12 +114054,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
},
{
- "id": 19744,
+ "id": 2453,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -113689,7 +114069,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -113770,14 +114150,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19745,
+ "id": 2454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19746,
+ "id": 2455,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -113791,7 +114171,7 @@
],
"signatures": [
{
- "id": 19747,
+ "id": 2456,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -113805,7 +114185,7 @@
],
"parameters": [
{
- "id": 19748,
+ "id": 2457,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -113816,14 +114196,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19749,
+ "id": 2458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19750,
+ "id": 2459,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -113847,7 +114227,7 @@
{
"title": "Properties",
"children": [
- 19750
+ 2459
]
}
],
@@ -113932,7 +114312,7 @@
{
"title": "Methods",
"children": [
- 19746
+ 2455
]
}
],
@@ -113972,7 +114352,7 @@
}
},
{
- "id": 19751,
+ "id": 2460,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -113982,7 +114362,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -114063,14 +114443,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19752,
+ "id": 2461,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19753,
+ "id": 2462,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -114084,7 +114464,7 @@
],
"signatures": [
{
- "id": 19754,
+ "id": 2463,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -114098,7 +114478,7 @@
],
"parameters": [
{
- "id": 19755,
+ "id": 2464,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -114109,14 +114489,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19756,
+ "id": 2465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19757,
+ "id": 2466,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -114140,7 +114520,7 @@
{
"title": "Properties",
"children": [
- 19757
+ 2466
]
}
],
@@ -114225,7 +114605,7 @@
{
"title": "Methods",
"children": [
- 19753
+ 2462
]
}
],
@@ -114265,7 +114645,7 @@
}
},
{
- "id": 19758,
+ "id": 2467,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -114275,7 +114655,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -114356,14 +114736,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19759,
+ "id": 2468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19760,
+ "id": 2469,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -114377,7 +114757,7 @@
],
"signatures": [
{
- "id": 19761,
+ "id": 2470,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -114391,7 +114771,7 @@
],
"parameters": [
{
- "id": 19762,
+ "id": 2471,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -114402,14 +114782,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19763,
+ "id": 2472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19764,
+ "id": 2473,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -114433,7 +114813,7 @@
{
"title": "Properties",
"children": [
- 19764
+ 2473
]
}
],
@@ -114518,7 +114898,7 @@
{
"title": "Methods",
"children": [
- 19760
+ 2469
]
}
],
@@ -114558,14 +114938,14 @@
}
},
{
- "id": 19811,
+ "id": 2520,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19812,
+ "id": 2521,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -114575,7 +114955,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -114656,14 +115036,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19813,
+ "id": 2522,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19814,
+ "id": 2523,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -114677,7 +115057,7 @@
],
"signatures": [
{
- "id": 19815,
+ "id": 2524,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -114691,7 +115071,7 @@
],
"parameters": [
{
- "id": 19816,
+ "id": 2525,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -114702,14 +115082,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19817,
+ "id": 2526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19818,
+ "id": 2527,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -114733,7 +115113,7 @@
{
"title": "Properties",
"children": [
- 19818
+ 2527
]
}
],
@@ -114818,7 +115198,7 @@
{
"title": "Methods",
"children": [
- 19814
+ 2523
]
}
],
@@ -114858,7 +115238,7 @@
}
},
{
- "id": 19819,
+ "id": 2528,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -114868,7 +115248,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -114949,14 +115329,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19820,
+ "id": 2529,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19821,
+ "id": 2530,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -114970,7 +115350,7 @@
],
"signatures": [
{
- "id": 19822,
+ "id": 2531,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -114984,7 +115364,7 @@
],
"parameters": [
{
- "id": 19823,
+ "id": 2532,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -114995,14 +115375,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19824,
+ "id": 2533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19825,
+ "id": 2534,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -115026,7 +115406,7 @@
{
"title": "Properties",
"children": [
- 19825
+ 2534
]
}
],
@@ -115111,7 +115491,7 @@
{
"title": "Methods",
"children": [
- 19821
+ 2530
]
}
],
@@ -115151,7 +115531,7 @@
}
},
{
- "id": 19826,
+ "id": 2535,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -115161,7 +115541,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -115242,14 +115622,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19827,
+ "id": 2536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19828,
+ "id": 2537,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -115263,7 +115643,7 @@
],
"signatures": [
{
- "id": 19829,
+ "id": 2538,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -115277,7 +115657,7 @@
],
"parameters": [
{
- "id": 19830,
+ "id": 2539,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -115288,14 +115668,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19831,
+ "id": 2540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19832,
+ "id": 2541,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -115319,7 +115699,7 @@
{
"title": "Properties",
"children": [
- 19832
+ 2541
]
}
],
@@ -115404,7 +115784,7 @@
{
"title": "Methods",
"children": [
- 19828
+ 2537
]
}
],
@@ -115448,9 +115828,9 @@
{
"title": "Properties",
"children": [
- 19812,
- 19819,
- 19826
+ 2521,
+ 2528,
+ 2535
]
}
],
@@ -115459,12 +115839,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
},
{
- "id": 19812,
+ "id": 2521,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -115474,7 +115854,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -115555,14 +115935,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19813,
+ "id": 2522,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19814,
+ "id": 2523,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -115576,7 +115956,7 @@
],
"signatures": [
{
- "id": 19815,
+ "id": 2524,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -115590,7 +115970,7 @@
],
"parameters": [
{
- "id": 19816,
+ "id": 2525,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -115601,14 +115981,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19817,
+ "id": 2526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19818,
+ "id": 2527,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -115632,7 +116012,7 @@
{
"title": "Properties",
"children": [
- 19818
+ 2527
]
}
],
@@ -115717,7 +116097,7 @@
{
"title": "Methods",
"children": [
- 19814
+ 2523
]
}
],
@@ -115757,7 +116137,7 @@
}
},
{
- "id": 19819,
+ "id": 2528,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -115767,7 +116147,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -115848,14 +116228,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19820,
+ "id": 2529,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19821,
+ "id": 2530,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -115869,7 +116249,7 @@
],
"signatures": [
{
- "id": 19822,
+ "id": 2531,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -115883,7 +116263,7 @@
],
"parameters": [
{
- "id": 19823,
+ "id": 2532,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -115894,14 +116274,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19824,
+ "id": 2533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19825,
+ "id": 2534,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -115925,7 +116305,7 @@
{
"title": "Properties",
"children": [
- 19825
+ 2534
]
}
],
@@ -116010,7 +116390,7 @@
{
"title": "Methods",
"children": [
- 19821
+ 2530
]
}
],
@@ -116050,7 +116430,7 @@
}
},
{
- "id": 19826,
+ "id": 2535,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -116060,7 +116440,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -116141,14 +116521,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19827,
+ "id": 2536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19828,
+ "id": 2537,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -116162,7 +116542,7 @@
],
"signatures": [
{
- "id": 19829,
+ "id": 2538,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -116176,7 +116556,7 @@
],
"parameters": [
{
- "id": 19830,
+ "id": 2539,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -116187,14 +116567,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19831,
+ "id": 2540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19832,
+ "id": 2541,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -116218,7 +116598,7 @@
{
"title": "Properties",
"children": [
- 19832
+ 2541
]
}
],
@@ -116303,7 +116683,7 @@
{
"title": "Methods",
"children": [
- 19828
+ 2537
]
}
],
@@ -116343,14 +116723,14 @@
}
},
{
- "id": 19833,
+ "id": 2542,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19834,
+ "id": 2543,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -116360,7 +116740,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -116441,14 +116821,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19835,
+ "id": 2544,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19836,
+ "id": 2545,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -116462,7 +116842,7 @@
],
"signatures": [
{
- "id": 19837,
+ "id": 2546,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -116476,7 +116856,7 @@
],
"parameters": [
{
- "id": 19838,
+ "id": 2547,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -116487,14 +116867,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19839,
+ "id": 2548,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19840,
+ "id": 2549,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -116518,7 +116898,7 @@
{
"title": "Properties",
"children": [
- 19840
+ 2549
]
}
],
@@ -116603,7 +116983,7 @@
{
"title": "Methods",
"children": [
- 19836
+ 2545
]
}
],
@@ -116643,7 +117023,7 @@
}
},
{
- "id": 19841,
+ "id": 2550,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -116653,7 +117033,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -116734,14 +117114,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19842,
+ "id": 2551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19843,
+ "id": 2552,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -116755,7 +117135,7 @@
],
"signatures": [
{
- "id": 19844,
+ "id": 2553,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -116769,7 +117149,7 @@
],
"parameters": [
{
- "id": 19845,
+ "id": 2554,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -116780,14 +117160,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19846,
+ "id": 2555,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19847,
+ "id": 2556,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -116811,7 +117191,7 @@
{
"title": "Properties",
"children": [
- 19847
+ 2556
]
}
],
@@ -116896,7 +117276,7 @@
{
"title": "Methods",
"children": [
- 19843
+ 2552
]
}
],
@@ -116936,7 +117316,7 @@
}
},
{
- "id": 19848,
+ "id": 2557,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -116946,7 +117326,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -117027,14 +117407,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19849,
+ "id": 2558,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19850,
+ "id": 2559,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -117048,7 +117428,7 @@
],
"signatures": [
{
- "id": 19851,
+ "id": 2560,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -117062,7 +117442,7 @@
],
"parameters": [
{
- "id": 19852,
+ "id": 2561,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -117073,14 +117453,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19853,
+ "id": 2562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19854,
+ "id": 2563,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -117104,7 +117484,7 @@
{
"title": "Properties",
"children": [
- 19854
+ 2563
]
}
],
@@ -117189,7 +117569,7 @@
{
"title": "Methods",
"children": [
- 19850
+ 2559
]
}
],
@@ -117233,9 +117613,9 @@
{
"title": "Properties",
"children": [
- 19834,
- 19841,
- 19848
+ 2543,
+ 2550,
+ 2557
]
}
],
@@ -117244,12 +117624,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
},
{
- "id": 19834,
+ "id": 2543,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -117259,7 +117639,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -117340,14 +117720,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19835,
+ "id": 2544,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19836,
+ "id": 2545,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -117361,7 +117741,7 @@
],
"signatures": [
{
- "id": 19837,
+ "id": 2546,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -117375,7 +117755,7 @@
],
"parameters": [
{
- "id": 19838,
+ "id": 2547,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -117386,14 +117766,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19839,
+ "id": 2548,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19840,
+ "id": 2549,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -117417,7 +117797,7 @@
{
"title": "Properties",
"children": [
- 19840
+ 2549
]
}
],
@@ -117502,7 +117882,7 @@
{
"title": "Methods",
"children": [
- 19836
+ 2545
]
}
],
@@ -117542,7 +117922,7 @@
}
},
{
- "id": 19841,
+ "id": 2550,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -117552,7 +117932,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -117633,14 +118013,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19842,
+ "id": 2551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19843,
+ "id": 2552,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -117654,7 +118034,7 @@
],
"signatures": [
{
- "id": 19844,
+ "id": 2553,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -117668,7 +118048,7 @@
],
"parameters": [
{
- "id": 19845,
+ "id": 2554,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -117679,14 +118059,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19846,
+ "id": 2555,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19847,
+ "id": 2556,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -117710,7 +118090,7 @@
{
"title": "Properties",
"children": [
- 19847
+ 2556
]
}
],
@@ -117795,7 +118175,7 @@
{
"title": "Methods",
"children": [
- 19843
+ 2552
]
}
],
@@ -117835,7 +118215,7 @@
}
},
{
- "id": 19848,
+ "id": 2557,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -117845,7 +118225,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -117926,14 +118306,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19849,
+ "id": 2558,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19850,
+ "id": 2559,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -117947,7 +118327,7 @@
],
"signatures": [
{
- "id": 19851,
+ "id": 2560,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -117961,7 +118341,7 @@
],
"parameters": [
{
- "id": 19852,
+ "id": 2561,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -117972,14 +118352,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19853,
+ "id": 2562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19854,
+ "id": 2563,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -118003,7 +118383,7 @@
{
"title": "Properties",
"children": [
- 19854
+ 2563
]
}
],
@@ -118088,7 +118468,7 @@
{
"title": "Methods",
"children": [
- 19850
+ 2559
]
}
],
@@ -118128,14 +118508,14 @@
}
},
{
- "id": 19861,
+ "id": 2570,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19862,
+ "id": 2571,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -118145,7 +118525,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -118226,14 +118606,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19863,
+ "id": 2572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19864,
+ "id": 2573,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -118247,7 +118627,7 @@
],
"signatures": [
{
- "id": 19865,
+ "id": 2574,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -118261,7 +118641,7 @@
],
"parameters": [
{
- "id": 19866,
+ "id": 2575,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -118272,14 +118652,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19867,
+ "id": 2576,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19868,
+ "id": 2577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -118303,7 +118683,7 @@
{
"title": "Properties",
"children": [
- 19868
+ 2577
]
}
],
@@ -118388,7 +118768,7 @@
{
"title": "Methods",
"children": [
- 19864
+ 2573
]
}
],
@@ -118428,7 +118808,7 @@
}
},
{
- "id": 19869,
+ "id": 2578,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -118438,7 +118818,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -118519,14 +118899,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19870,
+ "id": 2579,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19871,
+ "id": 2580,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -118540,7 +118920,7 @@
],
"signatures": [
{
- "id": 19872,
+ "id": 2581,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -118554,7 +118934,7 @@
],
"parameters": [
{
- "id": 19873,
+ "id": 2582,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -118565,14 +118945,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19874,
+ "id": 2583,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19875,
+ "id": 2584,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -118596,7 +118976,7 @@
{
"title": "Properties",
"children": [
- 19875
+ 2584
]
}
],
@@ -118681,7 +119061,7 @@
{
"title": "Methods",
"children": [
- 19871
+ 2580
]
}
],
@@ -118721,7 +119101,7 @@
}
},
{
- "id": 19876,
+ "id": 2585,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -118731,7 +119111,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -118812,14 +119192,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19877,
+ "id": 2586,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19878,
+ "id": 2587,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -118833,7 +119213,7 @@
],
"signatures": [
{
- "id": 19879,
+ "id": 2588,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -118847,7 +119227,7 @@
],
"parameters": [
{
- "id": 19880,
+ "id": 2589,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -118858,14 +119238,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19881,
+ "id": 2590,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19882,
+ "id": 2591,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -118889,7 +119269,7 @@
{
"title": "Properties",
"children": [
- 19882
+ 2591
]
}
],
@@ -118974,7 +119354,7 @@
{
"title": "Methods",
"children": [
- 19878
+ 2587
]
}
],
@@ -119018,9 +119398,9 @@
{
"title": "Properties",
"children": [
- 19862,
- 19869,
- 19876
+ 2571,
+ 2578,
+ 2585
]
}
],
@@ -119029,12 +119409,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
},
{
- "id": 19862,
+ "id": 2571,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -119044,7 +119424,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -119125,14 +119505,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19863,
+ "id": 2572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19864,
+ "id": 2573,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -119146,7 +119526,7 @@
],
"signatures": [
{
- "id": 19865,
+ "id": 2574,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -119160,7 +119540,7 @@
],
"parameters": [
{
- "id": 19866,
+ "id": 2575,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -119171,14 +119551,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19867,
+ "id": 2576,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19868,
+ "id": 2577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -119202,7 +119582,7 @@
{
"title": "Properties",
"children": [
- 19868
+ 2577
]
}
],
@@ -119287,7 +119667,7 @@
{
"title": "Methods",
"children": [
- 19864
+ 2573
]
}
],
@@ -119327,7 +119707,7 @@
}
},
{
- "id": 19869,
+ "id": 2578,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -119337,7 +119717,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -119418,14 +119798,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19870,
+ "id": 2579,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19871,
+ "id": 2580,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -119439,7 +119819,7 @@
],
"signatures": [
{
- "id": 19872,
+ "id": 2581,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -119453,7 +119833,7 @@
],
"parameters": [
{
- "id": 19873,
+ "id": 2582,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -119464,14 +119844,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19874,
+ "id": 2583,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19875,
+ "id": 2584,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -119495,7 +119875,7 @@
{
"title": "Properties",
"children": [
- 19875
+ 2584
]
}
],
@@ -119580,7 +119960,7 @@
{
"title": "Methods",
"children": [
- 19871
+ 2580
]
}
],
@@ -119620,7 +120000,7 @@
}
},
{
- "id": 19876,
+ "id": 2585,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -119630,7 +120010,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -119711,14 +120091,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19877,
+ "id": 2586,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19878,
+ "id": 2587,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -119732,7 +120112,7 @@
],
"signatures": [
{
- "id": 19879,
+ "id": 2588,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -119746,7 +120126,7 @@
],
"parameters": [
{
- "id": 19880,
+ "id": 2589,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -119757,14 +120137,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19881,
+ "id": 2590,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19882,
+ "id": 2591,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -119788,7 +120168,7 @@
{
"title": "Properties",
"children": [
- 19882
+ 2591
]
}
],
@@ -119873,7 +120253,7 @@
{
"title": "Methods",
"children": [
- 19878
+ 2587
]
}
],
@@ -119913,14 +120293,14 @@
}
},
{
- "id": 19883,
+ "id": 2592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19884,
+ "id": 2593,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -119930,7 +120310,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -120011,14 +120391,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19885,
+ "id": 2594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19886,
+ "id": 2595,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -120032,7 +120412,7 @@
],
"signatures": [
{
- "id": 19887,
+ "id": 2596,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -120046,7 +120426,7 @@
],
"parameters": [
{
- "id": 19888,
+ "id": 2597,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -120057,14 +120437,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19889,
+ "id": 2598,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19890,
+ "id": 2599,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -120088,7 +120468,7 @@
{
"title": "Properties",
"children": [
- 19890
+ 2599
]
}
],
@@ -120173,7 +120553,7 @@
{
"title": "Methods",
"children": [
- 19886
+ 2595
]
}
],
@@ -120213,7 +120593,7 @@
}
},
{
- "id": 19891,
+ "id": 2600,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -120223,7 +120603,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -120304,14 +120684,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19892,
+ "id": 2601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19893,
+ "id": 2602,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -120325,7 +120705,7 @@
],
"signatures": [
{
- "id": 19894,
+ "id": 2603,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -120339,7 +120719,7 @@
],
"parameters": [
{
- "id": 19895,
+ "id": 2604,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -120350,14 +120730,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19896,
+ "id": 2605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19897,
+ "id": 2606,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -120381,7 +120761,7 @@
{
"title": "Properties",
"children": [
- 19897
+ 2606
]
}
],
@@ -120466,7 +120846,7 @@
{
"title": "Methods",
"children": [
- 19893
+ 2602
]
}
],
@@ -120506,7 +120886,7 @@
}
},
{
- "id": 19898,
+ "id": 2607,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -120516,7 +120896,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -120597,14 +120977,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19899,
+ "id": 2608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19900,
+ "id": 2609,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -120618,7 +120998,7 @@
],
"signatures": [
{
- "id": 19901,
+ "id": 2610,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -120632,7 +121012,7 @@
],
"parameters": [
{
- "id": 19902,
+ "id": 2611,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -120643,14 +121023,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19903,
+ "id": 2612,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19904,
+ "id": 2613,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -120674,7 +121054,7 @@
{
"title": "Properties",
"children": [
- 19904
+ 2613
]
}
],
@@ -120759,7 +121139,7 @@
{
"title": "Methods",
"children": [
- 19900
+ 2609
]
}
],
@@ -120803,9 +121183,9 @@
{
"title": "Properties",
"children": [
- 19884,
- 19891,
- 19898
+ 2593,
+ 2600,
+ 2607
]
}
],
@@ -120814,12 +121194,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
},
{
- "id": 19884,
+ "id": 2593,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -120829,7 +121209,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -120910,14 +121290,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19885,
+ "id": 2594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19886,
+ "id": 2595,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -120931,7 +121311,7 @@
],
"signatures": [
{
- "id": 19887,
+ "id": 2596,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -120945,7 +121325,7 @@
],
"parameters": [
{
- "id": 19888,
+ "id": 2597,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -120956,14 +121336,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19889,
+ "id": 2598,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19890,
+ "id": 2599,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -120987,7 +121367,7 @@
{
"title": "Properties",
"children": [
- 19890
+ 2599
]
}
],
@@ -121072,7 +121452,7 @@
{
"title": "Methods",
"children": [
- 19886
+ 2595
]
}
],
@@ -121112,7 +121492,7 @@
}
},
{
- "id": 19891,
+ "id": 2600,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -121122,7 +121502,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -121203,14 +121583,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19892,
+ "id": 2601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19893,
+ "id": 2602,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -121224,7 +121604,7 @@
],
"signatures": [
{
- "id": 19894,
+ "id": 2603,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -121238,7 +121618,7 @@
],
"parameters": [
{
- "id": 19895,
+ "id": 2604,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -121249,14 +121629,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19896,
+ "id": 2605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19897,
+ "id": 2606,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -121280,7 +121660,7 @@
{
"title": "Properties",
"children": [
- 19897
+ 2606
]
}
],
@@ -121365,7 +121745,7 @@
{
"title": "Methods",
"children": [
- 19893
+ 2602
]
}
],
@@ -121405,7 +121785,7 @@
}
},
{
- "id": 19898,
+ "id": 2607,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -121415,7 +121795,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -121496,14 +121876,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19899,
+ "id": 2608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19900,
+ "id": 2609,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -121517,7 +121897,7 @@
],
"signatures": [
{
- "id": 19901,
+ "id": 2610,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -121531,7 +121911,7 @@
],
"parameters": [
{
- "id": 19902,
+ "id": 2611,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -121542,14 +121922,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19903,
+ "id": 2612,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19904,
+ "id": 2613,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -121573,7 +121953,7 @@
{
"title": "Properties",
"children": [
- 19904
+ 2613
]
}
],
@@ -121658,7 +122038,7 @@
{
"title": "Methods",
"children": [
- 19900
+ 2609
]
}
],
@@ -121698,14 +122078,14 @@
}
},
{
- "id": 19911,
+ "id": 2620,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19912,
+ "id": 2621,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -121715,7 +122095,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -121796,14 +122176,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19913,
+ "id": 2622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19914,
+ "id": 2623,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -121817,7 +122197,7 @@
],
"signatures": [
{
- "id": 19915,
+ "id": 2624,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -121831,7 +122211,7 @@
],
"parameters": [
{
- "id": 19916,
+ "id": 2625,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -121842,14 +122222,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19917,
+ "id": 2626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19918,
+ "id": 2627,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -121873,7 +122253,7 @@
{
"title": "Properties",
"children": [
- 19918
+ 2627
]
}
],
@@ -121958,7 +122338,7 @@
{
"title": "Methods",
"children": [
- 19914
+ 2623
]
}
],
@@ -121998,7 +122378,7 @@
}
},
{
- "id": 19919,
+ "id": 2628,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -122008,7 +122388,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -122089,14 +122469,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19920,
+ "id": 2629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19921,
+ "id": 2630,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -122110,7 +122490,7 @@
],
"signatures": [
{
- "id": 19922,
+ "id": 2631,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -122124,7 +122504,7 @@
],
"parameters": [
{
- "id": 19923,
+ "id": 2632,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -122135,14 +122515,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19924,
+ "id": 2633,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19925,
+ "id": 2634,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -122166,7 +122546,7 @@
{
"title": "Properties",
"children": [
- 19925
+ 2634
]
}
],
@@ -122251,7 +122631,7 @@
{
"title": "Methods",
"children": [
- 19921
+ 2630
]
}
],
@@ -122291,7 +122671,7 @@
}
},
{
- "id": 19926,
+ "id": 2635,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -122301,7 +122681,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -122382,14 +122762,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19927,
+ "id": 2636,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19928,
+ "id": 2637,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -122403,7 +122783,7 @@
],
"signatures": [
{
- "id": 19929,
+ "id": 2638,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -122417,7 +122797,7 @@
],
"parameters": [
{
- "id": 19930,
+ "id": 2639,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -122428,14 +122808,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19931,
+ "id": 2640,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19932,
+ "id": 2641,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -122459,7 +122839,7 @@
{
"title": "Properties",
"children": [
- 19932
+ 2641
]
}
],
@@ -122544,7 +122924,7 @@
{
"title": "Methods",
"children": [
- 19928
+ 2637
]
}
],
@@ -122588,9 +122968,9 @@
{
"title": "Properties",
"children": [
- 19912,
- 19919,
- 19926
+ 2621,
+ 2628,
+ 2635
]
}
],
@@ -122599,12 +122979,12 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 83,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L83"
}
]
},
{
- "id": 19912,
+ "id": 2621,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -122614,7 +122994,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L84"
}
],
"type": {
@@ -122695,14 +123075,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19913,
+ "id": 2622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19914,
+ "id": 2623,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -122716,7 +123096,7 @@
],
"signatures": [
{
- "id": 19915,
+ "id": 2624,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -122730,7 +123110,7 @@
],
"parameters": [
{
- "id": 19916,
+ "id": 2625,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -122741,14 +123121,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19917,
+ "id": 2626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19918,
+ "id": 2627,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -122772,7 +123152,7 @@
{
"title": "Properties",
"children": [
- 19918
+ 2627
]
}
],
@@ -122857,7 +123237,7 @@
{
"title": "Methods",
"children": [
- 19914
+ 2623
]
}
],
@@ -122897,7 +123277,7 @@
}
},
{
- "id": 19919,
+ "id": 2628,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -122907,7 +123287,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 85,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L85"
}
],
"type": {
@@ -122988,14 +123368,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19920,
+ "id": 2629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19921,
+ "id": 2630,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -123009,7 +123389,7 @@
],
"signatures": [
{
- "id": 19922,
+ "id": 2631,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -123023,7 +123403,7 @@
],
"parameters": [
{
- "id": 19923,
+ "id": 2632,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -123034,14 +123414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19924,
+ "id": 2633,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19925,
+ "id": 2634,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -123065,7 +123445,7 @@
{
"title": "Properties",
"children": [
- 19925
+ 2634
]
}
],
@@ -123150,7 +123530,7 @@
{
"title": "Methods",
"children": [
- 19921
+ 2630
]
}
],
@@ -123190,7 +123570,7 @@
}
},
{
- "id": 19926,
+ "id": 2635,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -123200,7 +123580,7 @@
"fileName": "core-flows/src/common/workflows/batch-links.ts",
"line": 86,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/batch-links.ts#L86"
}
],
"type": {
@@ -123281,14 +123661,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19927,
+ "id": 2636,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19928,
+ "id": 2637,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -123302,7 +123682,7 @@
],
"signatures": [
{
- "id": 19929,
+ "id": 2638,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -123316,7 +123696,7 @@
],
"parameters": [
{
- "id": 19930,
+ "id": 2639,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -123327,14 +123707,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19931,
+ "id": 2640,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19932,
+ "id": 2641,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -123358,7 +123738,7 @@
{
"title": "Properties",
"children": [
- 19932
+ 2641
]
}
],
@@ -123443,7 +123823,7 @@
{
"title": "Methods",
"children": [
- 19928
+ 2637
]
}
],
@@ -123483,7 +123863,7 @@
}
},
{
- "id": 19942,
+ "id": 2651,
"name": "createLinksWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -123495,7 +123875,7 @@
"fileName": "core-flows/src/common/workflows/create-links.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/create-links.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/create-links.ts#L9"
}
],
"type": {
@@ -123505,7 +123885,7 @@
"defaultValue": "\"create-link\""
},
{
- "id": 19943,
+ "id": 2652,
"name": "createLinksWorkflow",
"variant": "declaration",
"kind": 64,
@@ -123549,7 +123929,7 @@
},
"children": [
{
- "id": 19951,
+ "id": 2660,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -123572,7 +123952,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19952,
+ "id": 2661,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -123586,7 +123966,7 @@
],
"signatures": [
{
- "id": 19953,
+ "id": 2662,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -123614,7 +123994,7 @@
],
"parameters": [
{
- "id": 19954,
+ "id": 2663,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -123630,14 +124010,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19955,
+ "id": 2664,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19956,
+ "id": 2665,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -123703,7 +124083,7 @@
{
"title": "Properties",
"children": [
- 19956
+ 2665
]
}
],
@@ -123796,14 +124176,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19957,
+ "id": 2666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19958,
+ "id": 2667,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -123817,7 +124197,7 @@
],
"signatures": [
{
- "id": 19959,
+ "id": 2668,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -123831,7 +124211,7 @@
],
"parameters": [
{
- "id": 19960,
+ "id": 2669,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -123842,14 +124222,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19961,
+ "id": 2670,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19962,
+ "id": 2671,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -123873,7 +124253,7 @@
{
"title": "Properties",
"children": [
- 19962
+ 2671
]
}
],
@@ -123958,7 +124338,7 @@
{
"title": "Methods",
"children": [
- 19958
+ 2667
]
}
],
@@ -124002,7 +124382,7 @@
}
},
{
- "id": 19963,
+ "id": 2672,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -124025,7 +124405,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19964,
+ "id": 2673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -124039,7 +124419,7 @@
],
"signatures": [
{
- "id": 19965,
+ "id": 2674,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -124067,7 +124447,7 @@
],
"typeParameters": [
{
- "id": 19966,
+ "id": 2675,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -124078,7 +124458,7 @@
}
},
{
- "id": 19967,
+ "id": 2676,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -124091,7 +124471,7 @@
],
"parameters": [
{
- "id": 19968,
+ "id": 2677,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -124124,7 +124504,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -124147,7 +124527,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -124180,7 +124560,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -124203,7 +124583,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -124223,7 +124603,7 @@
}
},
{
- "id": 19969,
+ "id": 2678,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -124246,7 +124626,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19970,
+ "id": 2679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -124260,7 +124640,7 @@
],
"signatures": [
{
- "id": 19971,
+ "id": 2680,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -124282,7 +124662,7 @@
}
},
{
- "id": 19972,
+ "id": 2681,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -124305,7 +124685,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19973,
+ "id": 2682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -124319,7 +124699,7 @@
],
"signatures": [
{
- "id": 19974,
+ "id": 2683,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -124333,7 +124713,7 @@
],
"parameters": [
{
- "id": 19975,
+ "id": 2684,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -124359,7 +124739,7 @@
}
},
{
- "id": 19976,
+ "id": 2685,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -124382,7 +124762,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19977,
+ "id": 2686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -124393,7 +124773,7 @@
],
"documents": [
{
- "id": 42234,
+ "id": 25175,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -124420,21 +124800,21 @@
}
],
"childrenIncludingDocuments": [
- 19951,
- 19963,
- 19969,
- 19972,
- 19976
+ 2660,
+ 2672,
+ 2678,
+ 2681,
+ 2685
],
"groups": [
{
"title": "Properties",
"children": [
- 19951,
- 19963,
- 19969,
- 19972,
- 19976
+ 2660,
+ 2672,
+ 2678,
+ 2681,
+ 2685
]
}
],
@@ -124443,12 +124823,12 @@
"fileName": "core-flows/src/common/workflows/create-links.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/create-links.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/create-links.ts#L38"
}
],
"signatures": [
{
- "id": 19944,
+ "id": 2653,
"name": "createLinksWorkflow",
"variant": "signature",
"kind": 4096,
@@ -124495,12 +124875,12 @@
"fileName": "core-flows/src/common/workflows/create-links.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/create-links.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/create-links.ts#L38"
}
],
"typeParameters": [
{
- "id": 19945,
+ "id": 2654,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -124511,7 +124891,7 @@
}
},
{
- "id": 19946,
+ "id": 2655,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -124524,7 +124904,7 @@
],
"parameters": [
{
- "id": 19947,
+ "id": 2656,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -124548,14 +124928,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19948,
+ "id": 2657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19949,
+ "id": 2658,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -124578,7 +124958,7 @@
}
},
{
- "id": 19950,
+ "id": 2659,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -124605,8 +124985,8 @@
{
"title": "Properties",
"children": [
- 19949,
- 19950
+ 2658,
+ 2659
]
}
],
@@ -124705,14 +125085,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -124727,7 +125107,7 @@
]
},
{
- "id": 19978,
+ "id": 2687,
"name": "dismissLinksWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -124739,7 +125119,7 @@
"fileName": "core-flows/src/common/workflows/dismiss-links.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/dismiss-links.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/dismiss-links.ts#L9"
}
],
"type": {
@@ -124749,7 +125129,7 @@
"defaultValue": "\"dismiss-link\""
},
{
- "id": 19979,
+ "id": 2688,
"name": "dismissLinksWorkflow",
"variant": "declaration",
"kind": 64,
@@ -124793,7 +125173,7 @@
},
"children": [
{
- "id": 19987,
+ "id": 2696,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -124816,7 +125196,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19988,
+ "id": 2697,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -124830,7 +125210,7 @@
],
"signatures": [
{
- "id": 19989,
+ "id": 2698,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -124858,7 +125238,7 @@
],
"parameters": [
{
- "id": 19990,
+ "id": 2699,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -124874,14 +125254,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 19991,
+ "id": 2700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19992,
+ "id": 2701,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -124947,7 +125327,7 @@
{
"title": "Properties",
"children": [
- 19992
+ 2701
]
}
],
@@ -125040,14 +125420,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19993,
+ "id": 2702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19994,
+ "id": 2703,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -125061,7 +125441,7 @@
],
"signatures": [
{
- "id": 19995,
+ "id": 2704,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -125075,7 +125455,7 @@
],
"parameters": [
{
- "id": 19996,
+ "id": 2705,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -125086,14 +125466,14 @@
{
"type": "reflection",
"declaration": {
- "id": 19997,
+ "id": 2706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19998,
+ "id": 2707,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -125117,7 +125497,7 @@
{
"title": "Properties",
"children": [
- 19998
+ 2707
]
}
],
@@ -125202,7 +125582,7 @@
{
"title": "Methods",
"children": [
- 19994
+ 2703
]
}
],
@@ -125246,7 +125626,7 @@
}
},
{
- "id": 19999,
+ "id": 2708,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -125269,7 +125649,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20000,
+ "id": 2709,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -125283,7 +125663,7 @@
],
"signatures": [
{
- "id": 20001,
+ "id": 2710,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -125311,7 +125691,7 @@
],
"typeParameters": [
{
- "id": 20002,
+ "id": 2711,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -125322,7 +125702,7 @@
}
},
{
- "id": 20003,
+ "id": 2712,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -125335,7 +125715,7 @@
],
"parameters": [
{
- "id": 20004,
+ "id": 2713,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -125368,7 +125748,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -125391,7 +125771,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -125424,7 +125804,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -125447,7 +125827,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -125467,7 +125847,7 @@
}
},
{
- "id": 20005,
+ "id": 2714,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -125490,7 +125870,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20006,
+ "id": 2715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -125504,7 +125884,7 @@
],
"signatures": [
{
- "id": 20007,
+ "id": 2716,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -125526,7 +125906,7 @@
}
},
{
- "id": 20008,
+ "id": 2717,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -125549,7 +125929,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20009,
+ "id": 2718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -125563,7 +125943,7 @@
],
"signatures": [
{
- "id": 20010,
+ "id": 2719,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -125577,7 +125957,7 @@
],
"parameters": [
{
- "id": 20011,
+ "id": 2720,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -125603,7 +125983,7 @@
}
},
{
- "id": 20012,
+ "id": 2721,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -125626,7 +126006,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20013,
+ "id": 2722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -125637,7 +126017,7 @@
],
"documents": [
{
- "id": 42235,
+ "id": 25176,
"name": "dismissRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -125664,21 +126044,21 @@
}
],
"childrenIncludingDocuments": [
- 19987,
- 19999,
- 20005,
- 20008,
- 20012
+ 2696,
+ 2708,
+ 2714,
+ 2717,
+ 2721
],
"groups": [
{
"title": "Properties",
"children": [
- 19987,
- 19999,
- 20005,
- 20008,
- 20012
+ 2696,
+ 2708,
+ 2714,
+ 2717,
+ 2721
]
}
],
@@ -125687,12 +126067,12 @@
"fileName": "core-flows/src/common/workflows/dismiss-links.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/dismiss-links.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/dismiss-links.ts#L38"
}
],
"signatures": [
{
- "id": 19980,
+ "id": 2689,
"name": "dismissLinksWorkflow",
"variant": "signature",
"kind": 4096,
@@ -125739,12 +126119,12 @@
"fileName": "core-flows/src/common/workflows/dismiss-links.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/dismiss-links.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/dismiss-links.ts#L38"
}
],
"typeParameters": [
{
- "id": 19981,
+ "id": 2690,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -125755,7 +126135,7 @@
}
},
{
- "id": 19982,
+ "id": 2691,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -125768,7 +126148,7 @@
],
"parameters": [
{
- "id": 19983,
+ "id": 2692,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -125792,14 +126172,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 19984,
+ "id": 2693,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 19985,
+ "id": 2694,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -125822,7 +126202,7 @@
}
},
{
- "id": 19986,
+ "id": 2695,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -125849,8 +126229,8 @@
{
"title": "Properties",
"children": [
- 19985,
- 19986
+ 2694,
+ 2695
]
}
],
@@ -125949,14 +126329,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -125971,7 +126351,7 @@
]
},
{
- "id": 20014,
+ "id": 2723,
"name": "updateLinksWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -125983,7 +126363,7 @@
"fileName": "core-flows/src/common/workflows/update-links.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/update-links.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/update-links.ts#L9"
}
],
"type": {
@@ -125993,7 +126373,7 @@
"defaultValue": "\"update-link\""
},
{
- "id": 20015,
+ "id": 2724,
"name": "updateLinksWorkflow",
"variant": "declaration",
"kind": 64,
@@ -126037,7 +126417,7 @@
},
"children": [
{
- "id": 20023,
+ "id": 2732,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -126060,7 +126440,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20024,
+ "id": 2733,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -126074,7 +126454,7 @@
],
"signatures": [
{
- "id": 20025,
+ "id": 2734,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -126102,7 +126482,7 @@
],
"parameters": [
{
- "id": 20026,
+ "id": 2735,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -126118,14 +126498,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20027,
+ "id": 2736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20028,
+ "id": 2737,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -126191,7 +126571,7 @@
{
"title": "Properties",
"children": [
- 20028
+ 2737
]
}
],
@@ -126284,14 +126664,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20029,
+ "id": 2738,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20030,
+ "id": 2739,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -126305,7 +126685,7 @@
],
"signatures": [
{
- "id": 20031,
+ "id": 2740,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -126319,7 +126699,7 @@
],
"parameters": [
{
- "id": 20032,
+ "id": 2741,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -126330,14 +126710,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20033,
+ "id": 2742,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20034,
+ "id": 2743,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -126361,7 +126741,7 @@
{
"title": "Properties",
"children": [
- 20034
+ 2743
]
}
],
@@ -126446,7 +126826,7 @@
{
"title": "Methods",
"children": [
- 20030
+ 2739
]
}
],
@@ -126490,7 +126870,7 @@
}
},
{
- "id": 20035,
+ "id": 2744,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -126513,7 +126893,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20036,
+ "id": 2745,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -126527,7 +126907,7 @@
],
"signatures": [
{
- "id": 20037,
+ "id": 2746,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -126555,7 +126935,7 @@
],
"typeParameters": [
{
- "id": 20038,
+ "id": 2747,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -126566,7 +126946,7 @@
}
},
{
- "id": 20039,
+ "id": 2748,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -126579,7 +126959,7 @@
],
"parameters": [
{
- "id": 20040,
+ "id": 2749,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -126612,7 +126992,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -126635,7 +127015,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -126668,7 +127048,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -126691,7 +127071,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -126711,7 +127091,7 @@
}
},
{
- "id": 20041,
+ "id": 2750,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -126734,7 +127114,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20042,
+ "id": 2751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -126748,7 +127128,7 @@
],
"signatures": [
{
- "id": 20043,
+ "id": 2752,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -126770,7 +127150,7 @@
}
},
{
- "id": 20044,
+ "id": 2753,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -126793,7 +127173,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20045,
+ "id": 2754,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -126807,7 +127187,7 @@
],
"signatures": [
{
- "id": 20046,
+ "id": 2755,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -126821,7 +127201,7 @@
],
"parameters": [
{
- "id": 20047,
+ "id": 2756,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -126847,7 +127227,7 @@
}
},
{
- "id": 20048,
+ "id": 2757,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -126870,7 +127250,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20049,
+ "id": 2758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -126881,7 +127261,7 @@
],
"documents": [
{
- "id": 42236,
+ "id": 25177,
"name": "updateRemoteLinksStep",
"variant": "document",
"kind": 8388608,
@@ -126908,21 +127288,21 @@
}
],
"childrenIncludingDocuments": [
- 20023,
- 20035,
- 20041,
- 20044,
- 20048
+ 2732,
+ 2744,
+ 2750,
+ 2753,
+ 2757
],
"groups": [
{
"title": "Properties",
"children": [
- 20023,
- 20035,
- 20041,
- 20044,
- 20048
+ 2732,
+ 2744,
+ 2750,
+ 2753,
+ 2757
]
}
],
@@ -126931,12 +127311,12 @@
"fileName": "core-flows/src/common/workflows/update-links.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/update-links.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/update-links.ts#L43"
}
],
"signatures": [
{
- "id": 20016,
+ "id": 2725,
"name": "updateLinksWorkflow",
"variant": "signature",
"kind": 4096,
@@ -126983,12 +127363,12 @@
"fileName": "core-flows/src/common/workflows/update-links.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/common/workflows/update-links.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/common/workflows/update-links.ts#L43"
}
],
"typeParameters": [
{
- "id": 20017,
+ "id": 2726,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -126999,7 +127379,7 @@
}
},
{
- "id": 20018,
+ "id": 2727,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -127012,7 +127392,7 @@
],
"parameters": [
{
- "id": 20019,
+ "id": 2728,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -127036,14 +127416,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20020,
+ "id": 2729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20021,
+ "id": 2730,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -127066,7 +127446,7 @@
}
},
{
- "id": 20022,
+ "id": 2731,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -127093,8 +127473,8 @@
{
"title": "Properties",
"children": [
- 20021,
- 20022
+ 2730,
+ 2731
]
}
],
@@ -127193,14 +127573,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -127219,21 +127599,21 @@
]
},
{
- "id": 17308,
+ "id": 13,
"name": "Customer",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17309,
+ "id": 14,
"name": "Steps_Customer",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20051,
+ "id": 2760,
"name": "createCustomersStepId",
"variant": "declaration",
"kind": 32,
@@ -127245,7 +127625,7 @@
"fileName": "core-flows/src/customer/steps/create-customers.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/create-customers.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/create-customers.ts#L13"
}
],
"type": {
@@ -127255,7 +127635,7 @@
"defaultValue": "\"create-customers\""
},
{
- "id": 20052,
+ "id": 2761,
"name": "createCustomersStep",
"variant": "declaration",
"kind": 64,
@@ -127290,7 +127670,7 @@
},
"children": [
{
- "id": 20061,
+ "id": 2770,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -127308,7 +127688,7 @@
}
},
{
- "id": 20062,
+ "id": 2771,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -127330,8 +127710,8 @@
{
"title": "Properties",
"children": [
- 20061,
- 20062
+ 2770,
+ 2771
]
}
],
@@ -127340,12 +127720,12 @@
"fileName": "core-flows/src/customer/steps/create-customers.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/create-customers.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/create-customers.ts#L26"
}
],
"signatures": [
{
- "id": 20053,
+ "id": 2762,
"name": "createCustomersStep",
"variant": "signature",
"kind": 4096,
@@ -127383,12 +127763,12 @@
"fileName": "core-flows/src/customer/steps/create-customers.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/create-customers.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/create-customers.ts#L26"
}
],
"parameters": [
{
- "id": 20054,
+ "id": 2763,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -127398,7 +127778,7 @@
"types": [
{
"type": "reference",
- "target": 20050,
+ "target": 2759,
"name": "CreateCustomersStepInput",
"package": "@medusajs/core-flows"
},
@@ -127411,7 +127791,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20050,
+ "target": 2759,
"name": "CreateCustomersStepInput",
"package": "@medusajs/core-flows"
}
@@ -127501,14 +127881,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20055,
+ "id": 2764,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20056,
+ "id": 2765,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -127522,7 +127902,7 @@
],
"signatures": [
{
- "id": 20057,
+ "id": 2766,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -127536,7 +127916,7 @@
],
"parameters": [
{
- "id": 20058,
+ "id": 2767,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -127547,14 +127927,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20059,
+ "id": 2768,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20060,
+ "id": 2769,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -127578,7 +127958,7 @@
{
"title": "Properties",
"children": [
- 20060
+ 2769
]
}
],
@@ -127663,7 +128043,7 @@
{
"title": "Methods",
"children": [
- 20056
+ 2765
]
}
],
@@ -127705,7 +128085,7 @@
]
},
{
- "id": 20065,
+ "id": 2774,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -127723,7 +128103,7 @@
"fileName": "core-flows/src/customer/steps/update-customers.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-customers.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-customers.ts#L20"
}
],
"type": {
@@ -127737,7 +128117,7 @@
}
},
{
- "id": 20066,
+ "id": 2775,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -127755,7 +128135,7 @@
"fileName": "core-flows/src/customer/steps/update-customers.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-customers.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-customers.ts#L24"
}
],
"type": {
@@ -127769,7 +128149,7 @@
}
},
{
- "id": 20067,
+ "id": 2776,
"name": "updateCustomersStepId",
"variant": "declaration",
"kind": 32,
@@ -127781,7 +128161,7 @@
"fileName": "core-flows/src/customer/steps/update-customers.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-customers.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-customers.ts#L27"
}
],
"type": {
@@ -127791,7 +128171,7 @@
"defaultValue": "\"update-customer\""
},
{
- "id": 20068,
+ "id": 2777,
"name": "updateCustomersStep",
"variant": "declaration",
"kind": 64,
@@ -127826,7 +128206,7 @@
},
"children": [
{
- "id": 20077,
+ "id": 2786,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -127844,7 +128224,7 @@
}
},
{
- "id": 20078,
+ "id": 2787,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -127866,8 +128246,8 @@
{
"title": "Properties",
"children": [
- 20077,
- 20078
+ 2786,
+ 2787
]
}
],
@@ -127876,12 +128256,12 @@
"fileName": "core-flows/src/customer/steps/update-customers.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-customers.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-customers.ts#L41"
}
],
"signatures": [
{
- "id": 20069,
+ "id": 2778,
"name": "updateCustomersStep",
"variant": "signature",
"kind": 4096,
@@ -127919,12 +128299,12 @@
"fileName": "core-flows/src/customer/steps/update-customers.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-customers.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-customers.ts#L41"
}
],
"parameters": [
{
- "id": 20070,
+ "id": 2779,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -127934,7 +128314,7 @@
"types": [
{
"type": "reference",
- "target": 20063,
+ "target": 2772,
"name": "UpdateCustomersStepInput",
"package": "@medusajs/core-flows"
},
@@ -127947,7 +128327,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20063,
+ "target": 2772,
"name": "UpdateCustomersStepInput",
"package": "@medusajs/core-flows"
}
@@ -128037,14 +128417,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20071,
+ "id": 2780,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20072,
+ "id": 2781,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -128058,7 +128438,7 @@
],
"signatures": [
{
- "id": 20073,
+ "id": 2782,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -128072,7 +128452,7 @@
],
"parameters": [
{
- "id": 20074,
+ "id": 2783,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -128083,14 +128463,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20075,
+ "id": 2784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20076,
+ "id": 2785,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -128114,7 +128494,7 @@
{
"title": "Properties",
"children": [
- 20076
+ 2785
]
}
],
@@ -128199,7 +128579,7 @@
{
"title": "Methods",
"children": [
- 20072
+ 2781
]
}
],
@@ -128241,7 +128621,7 @@
]
},
{
- "id": 20080,
+ "id": 2789,
"name": "deleteCustomersStepId",
"variant": "declaration",
"kind": 32,
@@ -128253,7 +128633,7 @@
"fileName": "core-flows/src/customer/steps/delete-customers.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/delete-customers.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/delete-customers.ts#L10"
}
],
"type": {
@@ -128263,7 +128643,7 @@
"defaultValue": "\"delete-customers\""
},
{
- "id": 20081,
+ "id": 2790,
"name": "deleteCustomersStep",
"variant": "declaration",
"kind": 64,
@@ -128289,7 +128669,7 @@
},
"children": [
{
- "id": 20084,
+ "id": 2793,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -128307,7 +128687,7 @@
}
},
{
- "id": 20085,
+ "id": 2794,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -128329,8 +128709,8 @@
{
"title": "Properties",
"children": [
- 20084,
- 20085
+ 2793,
+ 2794
]
}
],
@@ -128339,12 +128719,12 @@
"fileName": "core-flows/src/customer/steps/delete-customers.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/delete-customers.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/delete-customers.ts#L14"
}
],
"signatures": [
{
- "id": 20082,
+ "id": 2791,
"name": "deleteCustomersStep",
"variant": "signature",
"kind": 4096,
@@ -128373,12 +128753,12 @@
"fileName": "core-flows/src/customer/steps/delete-customers.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/delete-customers.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/delete-customers.ts#L14"
}
],
"parameters": [
{
- "id": 20083,
+ "id": 2792,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -128388,7 +128768,7 @@
"types": [
{
"type": "reference",
- "target": 20079,
+ "target": 2788,
"name": "DeleteCustomersStepInput",
"package": "@medusajs/core-flows"
},
@@ -128401,7 +128781,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20079,
+ "target": 2788,
"name": "DeleteCustomersStepInput",
"package": "@medusajs/core-flows"
}
@@ -128421,7 +128801,7 @@
]
},
{
- "id": 20087,
+ "id": 2796,
"name": "createCustomerAddressesStepId",
"variant": "declaration",
"kind": 32,
@@ -128433,7 +128813,7 @@
"fileName": "core-flows/src/customer/steps/create-addresses.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/create-addresses.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/create-addresses.ts#L13"
}
],
"type": {
@@ -128443,7 +128823,7 @@
"defaultValue": "\"create-customer-addresses\""
},
{
- "id": 20088,
+ "id": 2797,
"name": "createCustomerAddressesStep",
"variant": "declaration",
"kind": 64,
@@ -128478,7 +128858,7 @@
},
"children": [
{
- "id": 20097,
+ "id": 2806,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -128496,7 +128876,7 @@
}
},
{
- "id": 20098,
+ "id": 2807,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -128518,8 +128898,8 @@
{
"title": "Properties",
"children": [
- 20097,
- 20098
+ 2806,
+ 2807
]
}
],
@@ -128528,12 +128908,12 @@
"fileName": "core-flows/src/customer/steps/create-addresses.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/create-addresses.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/create-addresses.ts#L31"
}
],
"signatures": [
{
- "id": 20089,
+ "id": 2798,
"name": "createCustomerAddressesStep",
"variant": "signature",
"kind": 4096,
@@ -128571,12 +128951,12 @@
"fileName": "core-flows/src/customer/steps/create-addresses.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/create-addresses.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/create-addresses.ts#L31"
}
],
"parameters": [
{
- "id": 20090,
+ "id": 2799,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -128586,7 +128966,7 @@
"types": [
{
"type": "reference",
- "target": 20086,
+ "target": 2795,
"name": "CreateCustomerAddressesStepInput",
"package": "@medusajs/core-flows"
},
@@ -128599,7 +128979,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20086,
+ "target": 2795,
"name": "CreateCustomerAddressesStepInput",
"package": "@medusajs/core-flows"
}
@@ -128689,14 +129069,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20091,
+ "id": 2800,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20092,
+ "id": 2801,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -128710,7 +129090,7 @@
],
"signatures": [
{
- "id": 20093,
+ "id": 2802,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -128724,7 +129104,7 @@
],
"parameters": [
{
- "id": 20094,
+ "id": 2803,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -128735,14 +129115,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20095,
+ "id": 2804,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20096,
+ "id": 2805,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -128766,7 +129146,7 @@
{
"title": "Properties",
"children": [
- 20096
+ 2805
]
}
],
@@ -128851,7 +129231,7 @@
{
"title": "Methods",
"children": [
- 20092
+ 2801
]
}
],
@@ -128893,7 +129273,7 @@
]
},
{
- "id": 20101,
+ "id": 2810,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -128911,7 +129291,7 @@
"fileName": "core-flows/src/customer/steps/update-addresses.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-addresses.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-addresses.ts#L20"
}
],
"type": {
@@ -128925,7 +129305,7 @@
}
},
{
- "id": 20102,
+ "id": 2811,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -128943,7 +129323,7 @@
"fileName": "core-flows/src/customer/steps/update-addresses.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-addresses.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-addresses.ts#L24"
}
],
"type": {
@@ -128957,7 +129337,7 @@
}
},
{
- "id": 20103,
+ "id": 2812,
"name": "updateCustomerAddresseStepId",
"variant": "declaration",
"kind": 32,
@@ -128969,7 +129349,7 @@
"fileName": "core-flows/src/customer/steps/update-addresses.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-addresses.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-addresses.ts#L27"
}
],
"type": {
@@ -128979,7 +129359,7 @@
"defaultValue": "\"update-customer-addresses\""
},
{
- "id": 20104,
+ "id": 2813,
"name": "updateCustomerAddressesStep",
"variant": "declaration",
"kind": 64,
@@ -129014,7 +129394,7 @@
},
"children": [
{
- "id": 20113,
+ "id": 2822,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -129032,7 +129412,7 @@
}
},
{
- "id": 20114,
+ "id": 2823,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -129054,8 +129434,8 @@
{
"title": "Properties",
"children": [
- 20113,
- 20114
+ 2822,
+ 2823
]
}
],
@@ -129064,12 +129444,12 @@
"fileName": "core-flows/src/customer/steps/update-addresses.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-addresses.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-addresses.ts#L41"
}
],
"signatures": [
{
- "id": 20105,
+ "id": 2814,
"name": "updateCustomerAddressesStep",
"variant": "signature",
"kind": 4096,
@@ -129107,12 +129487,12 @@
"fileName": "core-flows/src/customer/steps/update-addresses.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/update-addresses.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/update-addresses.ts#L41"
}
],
"parameters": [
{
- "id": 20106,
+ "id": 2815,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -129122,7 +129502,7 @@
"types": [
{
"type": "reference",
- "target": 20099,
+ "target": 2808,
"name": "UpdateCustomerAddresseStepInput",
"package": "@medusajs/core-flows"
},
@@ -129135,7 +129515,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20099,
+ "target": 2808,
"name": "UpdateCustomerAddresseStepInput",
"package": "@medusajs/core-flows"
}
@@ -129225,14 +129605,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20107,
+ "id": 2816,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20108,
+ "id": 2817,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -129246,7 +129626,7 @@
],
"signatures": [
{
- "id": 20109,
+ "id": 2818,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -129260,7 +129640,7 @@
],
"parameters": [
{
- "id": 20110,
+ "id": 2819,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -129271,14 +129651,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20111,
+ "id": 2820,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20112,
+ "id": 2821,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -129302,7 +129682,7 @@
{
"title": "Properties",
"children": [
- 20112
+ 2821
]
}
],
@@ -129387,7 +129767,7 @@
{
"title": "Methods",
"children": [
- 20108
+ 2817
]
}
],
@@ -129429,7 +129809,7 @@
]
},
{
- "id": 20116,
+ "id": 2825,
"name": "deleteCustomerAddressesStepId",
"variant": "declaration",
"kind": 32,
@@ -129441,7 +129821,7 @@
"fileName": "core-flows/src/customer/steps/delete-addresses.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/delete-addresses.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/delete-addresses.ts#L10"
}
],
"type": {
@@ -129451,7 +129831,7 @@
"defaultValue": "\"delete-customer-addresses\""
},
{
- "id": 20117,
+ "id": 2826,
"name": "deleteCustomerAddressesStep",
"variant": "declaration",
"kind": 64,
@@ -129477,7 +129857,7 @@
},
"children": [
{
- "id": 20120,
+ "id": 2829,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -129495,7 +129875,7 @@
}
},
{
- "id": 20121,
+ "id": 2830,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -129517,8 +129897,8 @@
{
"title": "Properties",
"children": [
- 20120,
- 20121
+ 2829,
+ 2830
]
}
],
@@ -129527,12 +129907,12 @@
"fileName": "core-flows/src/customer/steps/delete-addresses.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/delete-addresses.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/delete-addresses.ts#L14"
}
],
"signatures": [
{
- "id": 20118,
+ "id": 2827,
"name": "deleteCustomerAddressesStep",
"variant": "signature",
"kind": 4096,
@@ -129561,12 +129941,12 @@
"fileName": "core-flows/src/customer/steps/delete-addresses.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/delete-addresses.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/delete-addresses.ts#L14"
}
],
"parameters": [
{
- "id": 20119,
+ "id": 2828,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -129576,7 +129956,7 @@
"types": [
{
"type": "reference",
- "target": 20115,
+ "target": 2824,
"name": "DeleteCustomerAddressesStepInput",
"package": "@medusajs/core-flows"
},
@@ -129589,7 +129969,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20115,
+ "target": 2824,
"name": "DeleteCustomerAddressesStepInput",
"package": "@medusajs/core-flows"
}
@@ -129609,7 +129989,7 @@
]
},
{
- "id": 20124,
+ "id": 2833,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -129645,7 +130025,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L20"
}
],
"type": {
@@ -129662,7 +130042,7 @@
}
},
{
- "id": 20127,
+ "id": 2836,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -129680,7 +130060,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 28,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L28"
}
],
"type": {
@@ -129694,7 +130074,7 @@
}
},
{
- "id": 20128,
+ "id": 2837,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -129736,7 +130116,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L34"
}
],
"type": {
@@ -129750,7 +130130,7 @@
}
},
{
- "id": 20125,
+ "id": 2834,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -129770,20 +130150,20 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L24"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 20126,
+ "id": 2835,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20127,
+ "id": 2836,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -129801,7 +130181,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 28,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L28"
}
],
"type": {
@@ -129815,7 +130195,7 @@
}
},
{
- "id": 20128,
+ "id": 2837,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -129857,7 +130237,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L34"
}
],
"type": {
@@ -129875,8 +130255,8 @@
{
"title": "Properties",
"children": [
- 20127,
- 20128
+ 2836,
+ 2837
]
}
],
@@ -129885,14 +130265,14 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 24,
"character": 11,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L24"
}
]
}
}
},
{
- "id": 20129,
+ "id": 2838,
"name": "maybeUnsetDefaultBillingAddressesStepId",
"variant": "declaration",
"kind": 32,
@@ -129904,7 +130284,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L38"
}
],
"type": {
@@ -129914,7 +130294,7 @@
"defaultValue": "\"maybe-unset-default-billing-customer-addresses\""
},
{
- "id": 20130,
+ "id": 2839,
"name": "maybeUnsetDefaultBillingAddressesStep",
"variant": "declaration",
"kind": 64,
@@ -129982,7 +130362,7 @@
},
"children": [
{
- "id": 20133,
+ "id": 2842,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -130000,7 +130380,7 @@
}
},
{
- "id": 20134,
+ "id": 2843,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -130022,8 +130402,8 @@
{
"title": "Properties",
"children": [
- 20133,
- 20134
+ 2842,
+ 2843
]
}
],
@@ -130032,12 +130412,12 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L67"
}
],
"signatures": [
{
- "id": 20131,
+ "id": 2840,
"name": "maybeUnsetDefaultBillingAddressesStep",
"variant": "signature",
"kind": 4096,
@@ -130108,12 +130488,12 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-billing-addresses.ts#L67"
}
],
"parameters": [
{
- "id": 20132,
+ "id": 2841,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -130123,7 +130503,7 @@
"types": [
{
"type": "reference",
- "target": 20122,
+ "target": 2831,
"name": "MaybeUnsetDefaultBillingAddressStepInput",
"package": "@medusajs/core-flows"
},
@@ -130136,7 +130516,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20122,
+ "target": 2831,
"name": "MaybeUnsetDefaultBillingAddressStepInput",
"package": "@medusajs/core-flows"
}
@@ -130156,7 +130536,7 @@
]
},
{
- "id": 20137,
+ "id": 2846,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -130192,7 +130572,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L20"
}
],
"type": {
@@ -130209,7 +130589,7 @@
}
},
{
- "id": 20140,
+ "id": 2849,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -130227,7 +130607,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 28,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L28"
}
],
"type": {
@@ -130241,7 +130621,7 @@
}
},
{
- "id": 20141,
+ "id": 2850,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -130283,7 +130663,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L34"
}
],
"type": {
@@ -130297,7 +130677,7 @@
}
},
{
- "id": 20138,
+ "id": 2847,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -130317,20 +130697,20 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L24"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 20139,
+ "id": 2848,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20140,
+ "id": 2849,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -130348,7 +130728,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 28,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L28"
}
],
"type": {
@@ -130362,7 +130742,7 @@
}
},
{
- "id": 20141,
+ "id": 2850,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -130404,7 +130784,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L34"
}
],
"type": {
@@ -130422,8 +130802,8 @@
{
"title": "Properties",
"children": [
- 20140,
- 20141
+ 2849,
+ 2850
]
}
],
@@ -130432,14 +130812,14 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 24,
"character": 11,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L24"
}
]
}
}
},
{
- "id": 20142,
+ "id": 2851,
"name": "maybeUnsetDefaultShippingAddressesStepId",
"variant": "declaration",
"kind": 32,
@@ -130451,7 +130831,7 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L38"
}
],
"type": {
@@ -130461,7 +130841,7 @@
"defaultValue": "\"maybe-unset-default-shipping-customer-addresses\""
},
{
- "id": 20143,
+ "id": 2852,
"name": "maybeUnsetDefaultShippingAddressesStep",
"variant": "declaration",
"kind": 64,
@@ -130529,7 +130909,7 @@
},
"children": [
{
- "id": 20146,
+ "id": 2855,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -130547,7 +130927,7 @@
}
},
{
- "id": 20147,
+ "id": 2856,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -130569,8 +130949,8 @@
{
"title": "Properties",
"children": [
- 20146,
- 20147
+ 2855,
+ 2856
]
}
],
@@ -130579,12 +130959,12 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L67"
}
],
"signatures": [
{
- "id": 20144,
+ "id": 2853,
"name": "maybeUnsetDefaultShippingAddressesStep",
"variant": "signature",
"kind": 4096,
@@ -130655,12 +131035,12 @@
"fileName": "core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/maybe-unset-default-shipping-addresses.ts#L67"
}
],
"parameters": [
{
- "id": 20145,
+ "id": 2854,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -130670,7 +131050,7 @@
"types": [
{
"type": "reference",
- "target": 20135,
+ "target": 2844,
"name": "MaybeUnsetDefaultShippingAddressesStepInput",
"package": "@medusajs/core-flows"
},
@@ -130683,7 +131063,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20135,
+ "target": 2844,
"name": "MaybeUnsetDefaultShippingAddressesStepInput",
"package": "@medusajs/core-flows"
}
@@ -130703,7 +131083,7 @@
]
},
{
- "id": 20148,
+ "id": 2857,
"name": "validateCustomerAccountCreationStepId",
"variant": "declaration",
"kind": 32,
@@ -130715,7 +131095,7 @@
"fileName": "core-flows/src/customer/steps/validate-customer-account-creation.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/validate-customer-account-creation.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/validate-customer-account-creation.ts#L5"
}
],
"type": {
@@ -130725,7 +131105,7 @@
"defaultValue": "\"validate-customer-account-creation\""
},
{
- "id": 20149,
+ "id": 2858,
"name": "validateCustomerAccountCreation",
"variant": "declaration",
"kind": 64,
@@ -130760,7 +131140,7 @@
},
"children": [
{
- "id": 20158,
+ "id": 2867,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -130778,7 +131158,7 @@
}
},
{
- "id": 20159,
+ "id": 2868,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -130800,8 +131180,8 @@
{
"title": "Properties",
"children": [
- 20158,
- 20159
+ 2867,
+ 2868
]
}
],
@@ -130810,12 +131190,12 @@
"fileName": "core-flows/src/customer/steps/validate-customer-account-creation.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/validate-customer-account-creation.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/validate-customer-account-creation.ts#L26"
}
],
"signatures": [
{
- "id": 20150,
+ "id": 2859,
"name": "validateCustomerAccountCreation",
"variant": "signature",
"kind": 4096,
@@ -130853,12 +131233,12 @@
"fileName": "core-flows/src/customer/steps/validate-customer-account-creation.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/steps/validate-customer-account-creation.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/steps/validate-customer-account-creation.ts#L26"
}
],
"parameters": [
{
- "id": 20151,
+ "id": 2860,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -130868,7 +131248,7 @@
"types": [
{
"type": "reference",
- "target": 20214,
+ "target": 2923,
"name": "CreateCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -130881,7 +131261,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20214,
+ "target": 2923,
"name": "CreateCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -130914,14 +131294,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20152,
+ "id": 2861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20153,
+ "id": 2862,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -130935,7 +131315,7 @@
],
"signatures": [
{
- "id": 20154,
+ "id": 2863,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -130949,7 +131329,7 @@
],
"parameters": [
{
- "id": 20155,
+ "id": 2864,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -130960,14 +131340,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20156,
+ "id": 2865,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20157,
+ "id": 2866,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -130991,7 +131371,7 @@
{
"title": "Properties",
"children": [
- 20157
+ 2866
]
}
],
@@ -131068,7 +131448,7 @@
{
"title": "Methods",
"children": [
- 20153
+ 2862
]
}
],
@@ -131104,14 +131484,14 @@
]
},
{
- "id": 17310,
+ "id": 15,
"name": "Workflows_Customer",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20162,
+ "id": 2871,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -131129,7 +131509,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L26"
}
],
"type": {
@@ -131146,7 +131526,7 @@
}
},
{
- "id": 20163,
+ "id": 2872,
"name": "createCustomerAddressesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -131158,7 +131538,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L29"
}
],
"type": {
@@ -131168,7 +131548,7 @@
"defaultValue": "\"create-customer-addresses\""
},
{
- "id": 20164,
+ "id": 2873,
"name": "createCustomerAddressesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -131220,7 +131600,7 @@
},
"children": [
{
- "id": 20172,
+ "id": 2881,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -131243,7 +131623,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20173,
+ "id": 2882,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -131257,7 +131637,7 @@
],
"signatures": [
{
- "id": 20174,
+ "id": 2883,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -131285,7 +131665,7 @@
],
"parameters": [
{
- "id": 20175,
+ "id": 2884,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -131301,14 +131681,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20176,
+ "id": 2885,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20177,
+ "id": 2886,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -131333,7 +131713,7 @@
"types": [
{
"type": "reference",
- "target": 20160,
+ "target": 2869,
"name": "CreateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -131346,7 +131726,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20160,
+ "target": 2869,
"name": "CreateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -131362,7 +131742,7 @@
{
"title": "Properties",
"children": [
- 20177
+ 2886
]
}
],
@@ -131455,14 +131835,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20178,
+ "id": 2887,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20179,
+ "id": 2888,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -131476,7 +131856,7 @@
],
"signatures": [
{
- "id": 20180,
+ "id": 2889,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -131490,7 +131870,7 @@
],
"parameters": [
{
- "id": 20181,
+ "id": 2890,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -131501,14 +131881,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20182,
+ "id": 2891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20183,
+ "id": 2892,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -131532,7 +131912,7 @@
{
"title": "Properties",
"children": [
- 20183
+ 2892
]
}
],
@@ -131617,7 +131997,7 @@
{
"title": "Methods",
"children": [
- 20179
+ 2888
]
}
],
@@ -131661,7 +132041,7 @@
}
},
{
- "id": 20184,
+ "id": 2893,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -131684,7 +132064,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20185,
+ "id": 2894,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -131698,7 +132078,7 @@
],
"signatures": [
{
- "id": 20186,
+ "id": 2895,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -131726,7 +132106,7 @@
],
"typeParameters": [
{
- "id": 20187,
+ "id": 2896,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -131737,7 +132117,7 @@
}
},
{
- "id": 20188,
+ "id": 2897,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -131750,7 +132130,7 @@
],
"parameters": [
{
- "id": 20189,
+ "id": 2898,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -131783,7 +132163,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -131794,13 +132174,13 @@
},
"trueType": {
"type": "reference",
- "target": 20160,
+ "target": 2869,
"name": "CreateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -131833,7 +132213,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -131856,7 +132236,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -131876,7 +132256,7 @@
}
},
{
- "id": 20190,
+ "id": 2899,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -131899,7 +132279,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20191,
+ "id": 2900,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -131913,7 +132293,7 @@
],
"signatures": [
{
- "id": 20192,
+ "id": 2901,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -131935,7 +132315,7 @@
}
},
{
- "id": 20193,
+ "id": 2902,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -131958,7 +132338,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20194,
+ "id": 2903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -131972,7 +132352,7 @@
],
"signatures": [
{
- "id": 20195,
+ "id": 2904,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -131986,7 +132366,7 @@
],
"parameters": [
{
- "id": 20196,
+ "id": 2905,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -132012,7 +132392,7 @@
}
},
{
- "id": 20197,
+ "id": 2906,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -132035,14 +132415,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20198,
+ "id": 2907,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20199,
+ "id": 2908,
"name": "addressesCreated",
"variant": "declaration",
"kind": 1024,
@@ -132050,7 +132430,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20200,
+ "id": 2909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -132064,7 +132444,7 @@
],
"signatures": [
{
- "id": 20201,
+ "id": 2910,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -132078,7 +132458,7 @@
],
"typeParameters": [
{
- "id": 20202,
+ "id": 2911,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -132087,7 +132467,7 @@
],
"parameters": [
{
- "id": 20203,
+ "id": 2912,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -132102,14 +132482,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20204,
+ "id": 2913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20205,
+ "id": 2914,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -132119,7 +132499,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 89,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L89"
}
],
"type": {
@@ -132200,14 +132580,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20206,
+ "id": 2915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20207,
+ "id": 2916,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -132221,7 +132601,7 @@
],
"signatures": [
{
- "id": 20208,
+ "id": 2917,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -132235,7 +132615,7 @@
],
"parameters": [
{
- "id": 20209,
+ "id": 2918,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -132246,14 +132626,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20210,
+ "id": 2919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20211,
+ "id": 2920,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -132277,7 +132657,7 @@
{
"title": "Properties",
"children": [
- 20211
+ 2920
]
}
],
@@ -132362,7 +132742,7 @@
{
"title": "Methods",
"children": [
- 20207
+ 2916
]
}
],
@@ -132403,7 +132783,7 @@
"defaultValue": "createdAddresses"
},
{
- "id": 20212,
+ "id": 2921,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -132421,7 +132801,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L90"
}
],
"type": {
@@ -132444,8 +132824,8 @@
{
"title": "Properties",
"children": [
- 20205,
- 20212
+ 2914,
+ 2921
]
}
],
@@ -132454,7 +132834,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 88,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L88"
}
]
}
@@ -132465,7 +132845,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -132476,7 +132856,7 @@
}
},
{
- "id": 20213,
+ "id": 2922,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -132492,7 +132872,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -132513,7 +132893,7 @@
}
},
{
- "id": 42240,
+ "id": 25181,
"name": "addressesCreated",
"variant": "declaration",
"kind": 64,
@@ -132548,14 +132928,14 @@
},
"signatures": [
{
- "id": 42241,
+ "id": 25182,
"name": "addressesCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42242,
+ "id": 25183,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -132570,7 +132950,7 @@
},
"type": {
"type": "reference",
- "target": 20204,
+ "target": 2913,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -132584,13 +132964,13 @@
{
"title": "Properties",
"children": [
- 20199
+ 2908
]
},
{
"title": "Functions",
"children": [
- 42240
+ 25181
]
}
],
@@ -132607,7 +132987,7 @@
],
"documents": [
{
- "id": 42237,
+ "id": 25178,
"name": "maybeUnsetDefaultShippingAddressesStep",
"variant": "document",
"kind": 8388608,
@@ -132633,7 +133013,7 @@
"frontmatter": {}
},
{
- "id": 42238,
+ "id": 25179,
"name": "maybeUnsetDefaultBillingAddressesStep",
"variant": "document",
"kind": 8388608,
@@ -132659,7 +133039,7 @@
"frontmatter": {}
},
{
- "id": 42239,
+ "id": 25180,
"name": "createCustomerAddressesStep",
"variant": "document",
"kind": 8388608,
@@ -132685,7 +133065,7 @@
"frontmatter": {}
},
{
- "id": 42243,
+ "id": 25184,
"name": "addressesCreated",
"variant": "document",
"kind": 8388608,
@@ -132712,21 +133092,21 @@
}
],
"childrenIncludingDocuments": [
- 20172,
- 20184,
- 20190,
- 20193,
- 20197
+ 2881,
+ 2893,
+ 2899,
+ 2902,
+ 2906
],
"groups": [
{
"title": "Properties",
"children": [
- 20172,
- 20184,
- 20190,
- 20193,
- 20197
+ 2881,
+ 2893,
+ 2899,
+ 2902,
+ 2906
]
}
],
@@ -132735,12 +133115,12 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 75,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L75"
}
],
"signatures": [
{
- "id": 20165,
+ "id": 2874,
"name": "createCustomerAddressesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -132795,12 +133175,12 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 75,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L75"
}
],
"typeParameters": [
{
- "id": 20166,
+ "id": 2875,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -132811,7 +133191,7 @@
}
},
{
- "id": 20167,
+ "id": 2876,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -132824,7 +133204,7 @@
],
"parameters": [
{
- "id": 20168,
+ "id": 2877,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -132848,14 +133228,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20169,
+ "id": 2878,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20170,
+ "id": 2879,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -132878,7 +133258,7 @@
}
},
{
- "id": 20171,
+ "id": 2880,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -132905,8 +133285,8 @@
{
"title": "Properties",
"children": [
- 20170,
- 20171
+ 2879,
+ 2880
]
}
],
@@ -132981,7 +133361,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20160,
+ "target": 2869,
"name": "CreateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -132999,14 +133379,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -133021,14 +133401,14 @@
]
},
{
- "id": 20204,
+ "id": 2913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20205,
+ "id": 2914,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -133038,7 +133418,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 89,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L89"
}
],
"type": {
@@ -133119,14 +133499,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20206,
+ "id": 2915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20207,
+ "id": 2916,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -133140,7 +133520,7 @@
],
"signatures": [
{
- "id": 20208,
+ "id": 2917,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -133154,7 +133534,7 @@
],
"parameters": [
{
- "id": 20209,
+ "id": 2918,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -133165,14 +133545,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20210,
+ "id": 2919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20211,
+ "id": 2920,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -133196,7 +133576,7 @@
{
"title": "Properties",
"children": [
- 20211
+ 2920
]
}
],
@@ -133281,7 +133661,7 @@
{
"title": "Methods",
"children": [
- 20207
+ 2916
]
}
],
@@ -133322,7 +133702,7 @@
"defaultValue": "createdAddresses"
},
{
- "id": 20212,
+ "id": 2921,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -133340,7 +133720,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L90"
}
],
"type": {
@@ -133363,8 +133743,8 @@
{
"title": "Properties",
"children": [
- 20205,
- 20212
+ 2914,
+ 2921
]
}
],
@@ -133373,12 +133753,12 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 88,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L88"
}
]
},
{
- "id": 20205,
+ "id": 2914,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -133388,7 +133768,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 89,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L89"
}
],
"type": {
@@ -133469,14 +133849,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20206,
+ "id": 2915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20207,
+ "id": 2916,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -133490,7 +133870,7 @@
],
"signatures": [
{
- "id": 20208,
+ "id": 2917,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -133504,7 +133884,7 @@
],
"parameters": [
{
- "id": 20209,
+ "id": 2918,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -133515,14 +133895,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20210,
+ "id": 2919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20211,
+ "id": 2920,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -133546,7 +133926,7 @@
{
"title": "Properties",
"children": [
- 20211
+ 2920
]
}
],
@@ -133631,7 +134011,7 @@
{
"title": "Methods",
"children": [
- 20207
+ 2916
]
}
],
@@ -133672,7 +134052,7 @@
"defaultValue": "createdAddresses"
},
{
- "id": 20212,
+ "id": 2921,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -133690,7 +134070,7 @@
"fileName": "core-flows/src/customer/workflows/create-addresses.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-addresses.ts#L90"
}
],
"type": {
@@ -133709,7 +134089,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 20216,
+ "id": 2925,
"name": "authIdentityId",
"variant": "declaration",
"kind": 1024,
@@ -133727,7 +134107,7 @@
"fileName": "core-flows/src/customer/workflows/create-customer-account.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L19"
}
],
"type": {
@@ -133736,7 +134116,7 @@
}
},
{
- "id": 20217,
+ "id": 2926,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -133754,7 +134134,7 @@
"fileName": "core-flows/src/customer/workflows/create-customer-account.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L23"
}
],
"type": {
@@ -133768,7 +134148,7 @@
}
},
{
- "id": 20218,
+ "id": 2927,
"name": "createCustomerAccountWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -133780,7 +134160,7 @@
"fileName": "core-flows/src/customer/workflows/create-customer-account.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L26"
}
],
"type": {
@@ -133790,7 +134170,7 @@
"defaultValue": "\"create-customer-account\""
},
{
- "id": 20219,
+ "id": 2928,
"name": "createCustomerAccountWorkflow",
"variant": "declaration",
"kind": 64,
@@ -133852,7 +134232,7 @@
},
"children": [
{
- "id": 20227,
+ "id": 2936,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -133875,7 +134255,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20228,
+ "id": 2937,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -133889,7 +134269,7 @@
],
"signatures": [
{
- "id": 20229,
+ "id": 2938,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -133917,7 +134297,7 @@
],
"parameters": [
{
- "id": 20230,
+ "id": 2939,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -133933,14 +134313,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20231,
+ "id": 2940,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20232,
+ "id": 2941,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -133965,7 +134345,7 @@
"types": [
{
"type": "reference",
- "target": 20214,
+ "target": 2923,
"name": "CreateCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -133978,7 +134358,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20214,
+ "target": 2923,
"name": "CreateCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -133994,7 +134374,7 @@
{
"title": "Properties",
"children": [
- 20232
+ 2941
]
}
],
@@ -134015,14 +134395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20233,
+ "id": 2942,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20234,
+ "id": 2943,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -134068,7 +134448,7 @@
}
},
{
- "id": 20235,
+ "id": 2944,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -134114,7 +134494,7 @@
}
},
{
- "id": 20236,
+ "id": 2945,
"name": "has_account",
"variant": "declaration",
"kind": 1024,
@@ -134160,7 +134540,7 @@
}
},
{
- "id": 20237,
+ "id": 2946,
"name": "default_billing_address_id",
"variant": "declaration",
"kind": 1024,
@@ -134219,7 +134599,7 @@
}
},
{
- "id": 20238,
+ "id": 2947,
"name": "default_shipping_address_id",
"variant": "declaration",
"kind": 1024,
@@ -134278,7 +134658,7 @@
}
},
{
- "id": 20239,
+ "id": 2948,
"name": "company_name",
"variant": "declaration",
"kind": 1024,
@@ -134337,7 +134717,7 @@
}
},
{
- "id": 20240,
+ "id": 2949,
"name": "first_name",
"variant": "declaration",
"kind": 1024,
@@ -134396,7 +134776,7 @@
}
},
{
- "id": 20241,
+ "id": 2950,
"name": "last_name",
"variant": "declaration",
"kind": 1024,
@@ -134455,7 +134835,7 @@
}
},
{
- "id": 20242,
+ "id": 2951,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -134517,7 +134897,7 @@
}
},
{
- "id": 20243,
+ "id": 2952,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -134576,7 +134956,7 @@
}
},
{
- "id": 20244,
+ "id": 2953,
"name": "groups",
"variant": "declaration",
"kind": 1024,
@@ -134604,14 +134984,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20245,
+ "id": 2954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20246,
+ "id": 2955,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -134637,7 +135017,7 @@
}
},
{
- "id": 20247,
+ "id": 2956,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -134667,8 +135047,8 @@
{
"title": "Properties",
"children": [
- 20246,
- 20247
+ 2955,
+ 2956
]
}
],
@@ -134694,14 +135074,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20248,
+ "id": 2957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20249,
+ "id": 2958,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -134727,7 +135107,7 @@
}
},
{
- "id": 20250,
+ "id": 2959,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -134757,8 +135137,8 @@
{
"title": "Properties",
"children": [
- 20249,
- 20250
+ 2958,
+ 2959
]
}
],
@@ -134780,7 +135160,7 @@
}
},
{
- "id": 20251,
+ "id": 2960,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -134856,7 +135236,7 @@
}
},
{
- "id": 20252,
+ "id": 2961,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -134915,7 +135295,7 @@
}
},
{
- "id": 20253,
+ "id": 2962,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -134992,7 +135372,7 @@
}
},
{
- "id": 20254,
+ "id": 2963,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -135061,7 +135441,7 @@
}
},
{
- "id": 20255,
+ "id": 2964,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -135134,22 +135514,22 @@
{
"title": "Properties",
"children": [
- 20234,
- 20235,
- 20236,
- 20237,
- 20238,
- 20239,
- 20240,
- 20241,
- 20242,
- 20243,
- 20244,
- 20251,
- 20252,
- 20253,
- 20254,
- 20255
+ 2943,
+ 2944,
+ 2945,
+ 2946,
+ 2947,
+ 2948,
+ 2949,
+ 2950,
+ 2951,
+ 2952,
+ 2953,
+ 2960,
+ 2961,
+ 2962,
+ 2963,
+ 2964
]
}
],
@@ -135194,14 +135574,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20256,
+ "id": 2965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20257,
+ "id": 2966,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -135215,7 +135595,7 @@
],
"signatures": [
{
- "id": 20258,
+ "id": 2967,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -135229,7 +135609,7 @@
],
"parameters": [
{
- "id": 20259,
+ "id": 2968,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -135240,14 +135620,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20260,
+ "id": 2969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20261,
+ "id": 2970,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -135271,7 +135651,7 @@
{
"title": "Properties",
"children": [
- 20261
+ 2970
]
}
],
@@ -135353,7 +135733,7 @@
{
"title": "Methods",
"children": [
- 20257
+ 2966
]
}
],
@@ -135394,7 +135774,7 @@
}
},
{
- "id": 20262,
+ "id": 2971,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -135417,7 +135797,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20263,
+ "id": 2972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -135431,7 +135811,7 @@
],
"signatures": [
{
- "id": 20264,
+ "id": 2973,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -135459,7 +135839,7 @@
],
"typeParameters": [
{
- "id": 20265,
+ "id": 2974,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -135470,7 +135850,7 @@
}
},
{
- "id": 20266,
+ "id": 2975,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -135483,7 +135863,7 @@
],
"parameters": [
{
- "id": 20267,
+ "id": 2976,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -135516,7 +135896,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -135527,13 +135907,13 @@
},
"trueType": {
"type": "reference",
- "target": 20214,
+ "target": 2923,
"name": "CreateCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -135566,7 +135946,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -135586,7 +135966,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -135606,7 +135986,7 @@
}
},
{
- "id": 20268,
+ "id": 2977,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -135629,7 +136009,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20269,
+ "id": 2978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -135643,7 +136023,7 @@
],
"signatures": [
{
- "id": 20270,
+ "id": 2979,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -135665,7 +136045,7 @@
}
},
{
- "id": 20271,
+ "id": 2980,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -135688,7 +136068,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20272,
+ "id": 2981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -135702,7 +136082,7 @@
],
"signatures": [
{
- "id": 20273,
+ "id": 2982,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -135716,7 +136096,7 @@
],
"parameters": [
{
- "id": 20274,
+ "id": 2983,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -135742,7 +136122,7 @@
}
},
{
- "id": 20275,
+ "id": 2984,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -135765,7 +136145,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20276,
+ "id": 2985,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -135776,7 +136156,7 @@
],
"documents": [
{
- "id": 42244,
+ "id": 25185,
"name": "validateCustomerAccountCreation",
"variant": "document",
"kind": 8388608,
@@ -135802,7 +136182,7 @@
"frontmatter": {}
},
{
- "id": 42245,
+ "id": 25186,
"name": "createCustomersWorkflow",
"variant": "document",
"kind": 8388608,
@@ -135828,7 +136208,7 @@
"frontmatter": {}
},
{
- "id": 42246,
+ "id": 25187,
"name": "setAuthAppMetadataStep",
"variant": "document",
"kind": 8388608,
@@ -135855,21 +136235,21 @@
}
],
"childrenIncludingDocuments": [
- 20227,
- 20262,
- 20268,
- 20271,
- 20275
+ 2936,
+ 2971,
+ 2977,
+ 2980,
+ 2984
],
"groups": [
{
"title": "Properties",
"children": [
- 20227,
- 20262,
- 20268,
- 20271,
- 20275
+ 2936,
+ 2971,
+ 2977,
+ 2980,
+ 2984
]
}
],
@@ -135878,12 +136258,12 @@
"fileName": "core-flows/src/customer/workflows/create-customer-account.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L54"
}
],
"signatures": [
{
- "id": 20220,
+ "id": 2929,
"name": "createCustomerAccountWorkflow",
"variant": "signature",
"kind": 4096,
@@ -135948,12 +136328,12 @@
"fileName": "core-flows/src/customer/workflows/create-customer-account.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customer-account.ts#L54"
}
],
"typeParameters": [
{
- "id": 20221,
+ "id": 2930,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -135964,7 +136344,7 @@
}
},
{
- "id": 20222,
+ "id": 2931,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -135977,7 +136357,7 @@
],
"parameters": [
{
- "id": 20223,
+ "id": 2932,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -136001,14 +136381,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20224,
+ "id": 2933,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20225,
+ "id": 2934,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -136031,7 +136411,7 @@
}
},
{
- "id": 20226,
+ "id": 2935,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -136058,8 +136438,8 @@
{
"title": "Properties",
"children": [
- 20225,
- 20226
+ 2934,
+ 2935
]
}
],
@@ -136134,7 +136514,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20214,
+ "target": 2923,
"name": "CreateCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -136149,14 +136529,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -136171,7 +136551,7 @@
]
},
{
- "id": 20279,
+ "id": 2988,
"name": "customersData",
"variant": "declaration",
"kind": 1024,
@@ -136189,7 +136569,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L23"
}
],
"type": {
@@ -136206,7 +136586,7 @@
}
},
{
- "id": 20280,
+ "id": 2989,
"name": "createCustomersWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -136218,7 +136598,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L26"
}
],
"type": {
@@ -136228,7 +136608,7 @@
"defaultValue": "\"create-customers\""
},
{
- "id": 20281,
+ "id": 2990,
"name": "createCustomersWorkflow",
"variant": "declaration",
"kind": 64,
@@ -136281,7 +136661,7 @@
},
"children": [
{
- "id": 20289,
+ "id": 2998,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -136304,7 +136684,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20290,
+ "id": 2999,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -136318,7 +136698,7 @@
],
"signatures": [
{
- "id": 20291,
+ "id": 3000,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -136346,7 +136726,7 @@
],
"parameters": [
{
- "id": 20292,
+ "id": 3001,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -136362,14 +136742,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20293,
+ "id": 3002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20294,
+ "id": 3003,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -136394,7 +136774,7 @@
"types": [
{
"type": "reference",
- "target": 20277,
+ "target": 2986,
"name": "CreateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -136407,7 +136787,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20277,
+ "target": 2986,
"name": "CreateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -136423,7 +136803,7 @@
{
"title": "Properties",
"children": [
- 20294
+ 3003
]
}
],
@@ -136516,14 +136896,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20295,
+ "id": 3004,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20296,
+ "id": 3005,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -136537,7 +136917,7 @@
],
"signatures": [
{
- "id": 20297,
+ "id": 3006,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -136551,7 +136931,7 @@
],
"parameters": [
{
- "id": 20298,
+ "id": 3007,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -136562,14 +136942,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20299,
+ "id": 3008,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20300,
+ "id": 3009,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -136593,7 +136973,7 @@
{
"title": "Properties",
"children": [
- 20300
+ 3009
]
}
],
@@ -136678,7 +137058,7 @@
{
"title": "Methods",
"children": [
- 20296
+ 3005
]
}
],
@@ -136722,7 +137102,7 @@
}
},
{
- "id": 20301,
+ "id": 3010,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -136745,7 +137125,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20302,
+ "id": 3011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -136759,7 +137139,7 @@
],
"signatures": [
{
- "id": 20303,
+ "id": 3012,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -136787,7 +137167,7 @@
],
"typeParameters": [
{
- "id": 20304,
+ "id": 3013,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -136798,7 +137178,7 @@
}
},
{
- "id": 20305,
+ "id": 3014,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -136811,7 +137191,7 @@
],
"parameters": [
{
- "id": 20306,
+ "id": 3015,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -136844,7 +137224,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -136855,13 +137235,13 @@
},
"trueType": {
"type": "reference",
- "target": 20277,
+ "target": 2986,
"name": "CreateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -136894,7 +137274,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -136917,7 +137297,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -136937,7 +137317,7 @@
}
},
{
- "id": 20307,
+ "id": 3016,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -136960,7 +137340,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20308,
+ "id": 3017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -136974,7 +137354,7 @@
],
"signatures": [
{
- "id": 20309,
+ "id": 3018,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -136996,7 +137376,7 @@
}
},
{
- "id": 20310,
+ "id": 3019,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -137019,7 +137399,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20311,
+ "id": 3020,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -137033,7 +137413,7 @@
],
"signatures": [
{
- "id": 20312,
+ "id": 3021,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -137047,7 +137427,7 @@
],
"parameters": [
{
- "id": 20313,
+ "id": 3022,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -137073,7 +137453,7 @@
}
},
{
- "id": 20314,
+ "id": 3023,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -137096,14 +137476,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20315,
+ "id": 3024,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20316,
+ "id": 3025,
"name": "customersCreated",
"variant": "declaration",
"kind": 1024,
@@ -137111,7 +137491,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20317,
+ "id": 3026,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -137125,7 +137505,7 @@
],
"signatures": [
{
- "id": 20318,
+ "id": 3027,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -137139,7 +137519,7 @@
],
"typeParameters": [
{
- "id": 20319,
+ "id": 3028,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -137148,7 +137528,7 @@
],
"parameters": [
{
- "id": 20320,
+ "id": 3029,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -137163,14 +137543,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20321,
+ "id": 3030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20322,
+ "id": 3031,
"name": "customers",
"variant": "declaration",
"kind": 1024,
@@ -137180,7 +137560,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L62"
}
],
"type": {
@@ -137261,14 +137641,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20323,
+ "id": 3032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20324,
+ "id": 3033,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -137282,7 +137662,7 @@
],
"signatures": [
{
- "id": 20325,
+ "id": 3034,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -137296,7 +137676,7 @@
],
"parameters": [
{
- "id": 20326,
+ "id": 3035,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -137307,14 +137687,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20327,
+ "id": 3036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20328,
+ "id": 3037,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -137338,7 +137718,7 @@
{
"title": "Properties",
"children": [
- 20328
+ 3037
]
}
],
@@ -137423,7 +137803,7 @@
{
"title": "Methods",
"children": [
- 20324
+ 3033
]
}
],
@@ -137464,7 +137844,7 @@
"defaultValue": "createdCustomers"
},
{
- "id": 20329,
+ "id": 3038,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -137482,7 +137862,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L63"
}
],
"type": {
@@ -137505,8 +137885,8 @@
{
"title": "Properties",
"children": [
- 20322,
- 20329
+ 3031,
+ 3038
]
}
],
@@ -137515,7 +137895,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 61,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L61"
}
]
}
@@ -137526,7 +137906,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -137537,7 +137917,7 @@
}
},
{
- "id": 20330,
+ "id": 3039,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -137553,7 +137933,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -137574,7 +137954,7 @@
}
},
{
- "id": 42248,
+ "id": 25189,
"name": "customersCreated",
"variant": "declaration",
"kind": 64,
@@ -137609,14 +137989,14 @@
},
"signatures": [
{
- "id": 42249,
+ "id": 25190,
"name": "customersCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42250,
+ "id": 25191,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -137631,7 +138011,7 @@
},
"type": {
"type": "reference",
- "target": 20321,
+ "target": 3030,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -137645,13 +138025,13 @@
{
"title": "Properties",
"children": [
- 20316
+ 3025
]
},
{
"title": "Functions",
"children": [
- 42248
+ 25189
]
}
],
@@ -137668,7 +138048,7 @@
],
"documents": [
{
- "id": 42247,
+ "id": 25188,
"name": "createCustomersStep",
"variant": "document",
"kind": 8388608,
@@ -137694,7 +138074,7 @@
"frontmatter": {}
},
{
- "id": 42251,
+ "id": 25192,
"name": "customersCreated",
"variant": "document",
"kind": 8388608,
@@ -137720,7 +138100,7 @@
"frontmatter": {}
},
{
- "id": 42252,
+ "id": 25193,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -137747,21 +138127,21 @@
}
],
"childrenIncludingDocuments": [
- 20289,
- 20301,
- 20307,
- 20310,
- 20314
+ 2998,
+ 3010,
+ 3016,
+ 3019,
+ 3023
],
"groups": [
{
"title": "Properties",
"children": [
- 20289,
- 20301,
- 20307,
- 20310,
- 20314
+ 2998,
+ 3010,
+ 3016,
+ 3019,
+ 3023
]
}
],
@@ -137770,12 +138150,12 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L57"
}
],
"signatures": [
{
- "id": 20282,
+ "id": 2991,
"name": "createCustomersWorkflow",
"variant": "signature",
"kind": 4096,
@@ -137831,12 +138211,12 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L57"
}
],
"typeParameters": [
{
- "id": 20283,
+ "id": 2992,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -137847,7 +138227,7 @@
}
},
{
- "id": 20284,
+ "id": 2993,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -137860,7 +138240,7 @@
],
"parameters": [
{
- "id": 20285,
+ "id": 2994,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -137884,14 +138264,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20286,
+ "id": 2995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20287,
+ "id": 2996,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -137914,7 +138294,7 @@
}
},
{
- "id": 20288,
+ "id": 2997,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -137941,8 +138321,8 @@
{
"title": "Properties",
"children": [
- 20287,
- 20288
+ 2996,
+ 2997
]
}
],
@@ -138017,7 +138397,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20277,
+ "target": 2986,
"name": "CreateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -138035,14 +138415,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -138057,14 +138437,14 @@
]
},
{
- "id": 20321,
+ "id": 3030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20322,
+ "id": 3031,
"name": "customers",
"variant": "declaration",
"kind": 1024,
@@ -138074,7 +138454,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L62"
}
],
"type": {
@@ -138155,14 +138535,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20323,
+ "id": 3032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20324,
+ "id": 3033,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -138176,7 +138556,7 @@
],
"signatures": [
{
- "id": 20325,
+ "id": 3034,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -138190,7 +138570,7 @@
],
"parameters": [
{
- "id": 20326,
+ "id": 3035,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -138201,14 +138581,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20327,
+ "id": 3036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20328,
+ "id": 3037,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -138232,7 +138612,7 @@
{
"title": "Properties",
"children": [
- 20328
+ 3037
]
}
],
@@ -138317,7 +138697,7 @@
{
"title": "Methods",
"children": [
- 20324
+ 3033
]
}
],
@@ -138358,7 +138738,7 @@
"defaultValue": "createdCustomers"
},
{
- "id": 20329,
+ "id": 3038,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -138376,7 +138756,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L63"
}
],
"type": {
@@ -138399,8 +138779,8 @@
{
"title": "Properties",
"children": [
- 20322,
- 20329
+ 3031,
+ 3038
]
}
],
@@ -138409,12 +138789,12 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 61,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L61"
}
]
},
{
- "id": 20322,
+ "id": 3031,
"name": "customers",
"variant": "declaration",
"kind": 1024,
@@ -138424,7 +138804,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L62"
}
],
"type": {
@@ -138505,14 +138885,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20323,
+ "id": 3032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20324,
+ "id": 3033,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -138526,7 +138906,7 @@
],
"signatures": [
{
- "id": 20325,
+ "id": 3034,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -138540,7 +138920,7 @@
],
"parameters": [
{
- "id": 20326,
+ "id": 3035,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -138551,14 +138931,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20327,
+ "id": 3036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20328,
+ "id": 3037,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -138582,7 +138962,7 @@
{
"title": "Properties",
"children": [
- 20328
+ 3037
]
}
],
@@ -138667,7 +139047,7 @@
{
"title": "Methods",
"children": [
- 20324
+ 3033
]
}
],
@@ -138708,7 +139088,7 @@
"defaultValue": "createdCustomers"
},
{
- "id": 20329,
+ "id": 3038,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -138726,7 +139106,7 @@
"fileName": "core-flows/src/customer/workflows/create-customers.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/create-customers.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/create-customers.ts#L63"
}
],
"type": {
@@ -138745,7 +139125,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 20333,
+ "id": 3042,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -138763,7 +139143,7 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L16"
}
],
"type": {
@@ -138775,7 +139155,7 @@
}
},
{
- "id": 20334,
+ "id": 3043,
"name": "deleteCustomerAddressesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -138787,7 +139167,7 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L19"
}
],
"type": {
@@ -138797,7 +139177,7 @@
"defaultValue": "\"delete-customer-addresses\""
},
{
- "id": 20335,
+ "id": 3044,
"name": "deleteCustomerAddressesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -138841,7 +139221,7 @@
},
"children": [
{
- "id": 20343,
+ "id": 3052,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -138864,7 +139244,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20344,
+ "id": 3053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -138878,7 +139258,7 @@
],
"signatures": [
{
- "id": 20345,
+ "id": 3054,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -138906,7 +139286,7 @@
],
"parameters": [
{
- "id": 20346,
+ "id": 3055,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -138922,14 +139302,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20347,
+ "id": 3056,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20348,
+ "id": 3057,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -138954,7 +139334,7 @@
"types": [
{
"type": "reference",
- "target": 20331,
+ "target": 3040,
"name": "DeleteCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -138967,7 +139347,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20331,
+ "target": 3040,
"name": "DeleteCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -138983,7 +139363,7 @@
{
"title": "Properties",
"children": [
- 20348
+ 3057
]
}
],
@@ -139008,7 +139388,7 @@
}
},
{
- "id": 20349,
+ "id": 3058,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -139031,7 +139411,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20350,
+ "id": 3059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -139045,7 +139425,7 @@
],
"signatures": [
{
- "id": 20351,
+ "id": 3060,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -139073,7 +139453,7 @@
],
"typeParameters": [
{
- "id": 20352,
+ "id": 3061,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -139084,7 +139464,7 @@
}
},
{
- "id": 20353,
+ "id": 3062,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -139097,7 +139477,7 @@
],
"parameters": [
{
- "id": 20354,
+ "id": 3063,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -139130,7 +139510,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -139141,13 +139521,13 @@
},
"trueType": {
"type": "reference",
- "target": 20331,
+ "target": 3040,
"name": "DeleteCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -139180,7 +139560,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -139195,7 +139575,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -139215,7 +139595,7 @@
}
},
{
- "id": 20355,
+ "id": 3064,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -139238,7 +139618,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20356,
+ "id": 3065,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -139252,7 +139632,7 @@
],
"signatures": [
{
- "id": 20357,
+ "id": 3066,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -139274,7 +139654,7 @@
}
},
{
- "id": 20358,
+ "id": 3067,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -139297,7 +139677,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20359,
+ "id": 3068,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -139311,7 +139691,7 @@
],
"signatures": [
{
- "id": 20360,
+ "id": 3069,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -139325,7 +139705,7 @@
],
"parameters": [
{
- "id": 20361,
+ "id": 3070,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -139351,7 +139731,7 @@
}
},
{
- "id": 20362,
+ "id": 3071,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -139374,14 +139754,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20363,
+ "id": 3072,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20364,
+ "id": 3073,
"name": "addressesDeleted",
"variant": "declaration",
"kind": 1024,
@@ -139389,7 +139769,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20365,
+ "id": 3074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -139403,7 +139783,7 @@
],
"signatures": [
{
- "id": 20366,
+ "id": 3075,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -139417,7 +139797,7 @@
],
"typeParameters": [
{
- "id": 20367,
+ "id": 3076,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -139426,7 +139806,7 @@
],
"parameters": [
{
- "id": 20368,
+ "id": 3077,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -139441,14 +139821,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20369,
+ "id": 3078,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20370,
+ "id": 3079,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -139458,7 +139838,7 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 57,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L57"
}
],
"type": {
@@ -139510,7 +139890,7 @@
{
"title": "Properties",
"children": [
- 20370
+ 3079
]
}
],
@@ -139519,7 +139899,7 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 56,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L56"
}
]
}
@@ -139530,7 +139910,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -139541,7 +139921,7 @@
}
},
{
- "id": 20371,
+ "id": 3080,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -139557,7 +139937,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -139578,7 +139958,7 @@
}
},
{
- "id": 42254,
+ "id": 25195,
"name": "addressesDeleted",
"variant": "declaration",
"kind": 64,
@@ -139613,14 +139993,14 @@
},
"signatures": [
{
- "id": 42255,
+ "id": 25196,
"name": "addressesDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42256,
+ "id": 25197,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -139635,7 +140015,7 @@
},
"type": {
"type": "reference",
- "target": 20369,
+ "target": 3078,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -139649,13 +140029,13 @@
{
"title": "Properties",
"children": [
- 20364
+ 3073
]
},
{
"title": "Functions",
"children": [
- 42254
+ 25195
]
}
],
@@ -139672,7 +140052,7 @@
],
"documents": [
{
- "id": 42253,
+ "id": 25194,
"name": "deleteCustomerAddressesStep",
"variant": "document",
"kind": 8388608,
@@ -139698,7 +140078,7 @@
"frontmatter": {}
},
{
- "id": 42257,
+ "id": 25198,
"name": "addressesDeleted",
"variant": "document",
"kind": 8388608,
@@ -139725,21 +140105,21 @@
}
],
"childrenIncludingDocuments": [
- 20343,
- 20349,
- 20355,
- 20358,
- 20362
+ 3052,
+ 3058,
+ 3064,
+ 3067,
+ 3071
],
"groups": [
{
"title": "Properties",
"children": [
- 20343,
- 20349,
- 20355,
- 20358,
- 20362
+ 3052,
+ 3058,
+ 3064,
+ 3067,
+ 3071
]
}
],
@@ -139748,12 +140128,12 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L52"
}
],
"signatures": [
{
- "id": 20336,
+ "id": 3045,
"name": "deleteCustomerAddressesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -139800,12 +140180,12 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L52"
}
],
"typeParameters": [
{
- "id": 20337,
+ "id": 3046,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -139816,7 +140196,7 @@
}
},
{
- "id": 20338,
+ "id": 3047,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -139829,7 +140209,7 @@
],
"parameters": [
{
- "id": 20339,
+ "id": 3048,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -139853,14 +140233,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20340,
+ "id": 3049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20341,
+ "id": 3050,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -139883,7 +140263,7 @@
}
},
{
- "id": 20342,
+ "id": 3051,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -139910,8 +140290,8 @@
{
"title": "Properties",
"children": [
- 20341,
- 20342
+ 3050,
+ 3051
]
}
],
@@ -139986,7 +140366,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20331,
+ "target": 3040,
"name": "DeleteCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -139996,14 +140376,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -140018,14 +140398,14 @@
]
},
{
- "id": 20369,
+ "id": 3078,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20370,
+ "id": 3079,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -140035,7 +140415,7 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 57,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L57"
}
],
"type": {
@@ -140087,7 +140467,7 @@
{
"title": "Properties",
"children": [
- 20370
+ 3079
]
}
],
@@ -140096,12 +140476,12 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 56,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L56"
}
]
},
{
- "id": 20370,
+ "id": 3079,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -140111,7 +140491,7 @@
"fileName": "core-flows/src/customer/workflows/delete-addresses.ts",
"line": 57,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-addresses.ts#L57"
}
],
"type": {
@@ -140159,7 +140539,7 @@
"defaultValue": "input.ids"
},
{
- "id": 20374,
+ "id": 3083,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -140177,7 +140557,7 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L19"
}
],
"type": {
@@ -140189,7 +140569,7 @@
}
},
{
- "id": 20375,
+ "id": 3084,
"name": "deleteCustomersWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -140201,7 +140581,7 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L22"
}
],
"type": {
@@ -140211,7 +140591,7 @@
"defaultValue": "\"delete-customers\""
},
{
- "id": 20376,
+ "id": 3085,
"name": "deleteCustomersWorkflow",
"variant": "declaration",
"kind": 64,
@@ -140273,7 +140653,7 @@
},
"children": [
{
- "id": 20384,
+ "id": 3093,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -140296,7 +140676,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20385,
+ "id": 3094,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -140310,7 +140690,7 @@
],
"signatures": [
{
- "id": 20386,
+ "id": 3095,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -140338,7 +140718,7 @@
],
"parameters": [
{
- "id": 20387,
+ "id": 3096,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -140354,14 +140734,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20388,
+ "id": 3097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20389,
+ "id": 3098,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -140386,7 +140766,7 @@
"types": [
{
"type": "reference",
- "target": 20372,
+ "target": 3081,
"name": "DeleteCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -140399,7 +140779,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20372,
+ "target": 3081,
"name": "DeleteCustomersWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -140415,7 +140795,7 @@
{
"title": "Properties",
"children": [
- 20389
+ 3098
]
}
],
@@ -140440,7 +140820,7 @@
}
},
{
- "id": 20390,
+ "id": 3099,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -140463,7 +140843,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20391,
+ "id": 3100,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -140477,7 +140857,7 @@
],
"signatures": [
{
- "id": 20392,
+ "id": 3101,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -140505,7 +140885,7 @@
],
"typeParameters": [
{
- "id": 20393,
+ "id": 3102,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -140516,7 +140896,7 @@
}
},
{
- "id": 20394,
+ "id": 3103,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -140529,7 +140909,7 @@
],
"parameters": [
{
- "id": 20395,
+ "id": 3104,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -140562,7 +140942,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -140573,13 +140953,13 @@
},
"trueType": {
"type": "reference",
- "target": 20372,
+ "target": 3081,
"name": "DeleteCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -140612,7 +140992,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -140627,7 +141007,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -140647,7 +141027,7 @@
}
},
{
- "id": 20396,
+ "id": 3105,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -140670,7 +141050,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20397,
+ "id": 3106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -140684,7 +141064,7 @@
],
"signatures": [
{
- "id": 20398,
+ "id": 3107,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -140706,7 +141086,7 @@
}
},
{
- "id": 20399,
+ "id": 3108,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -140729,7 +141109,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20400,
+ "id": 3109,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -140743,7 +141123,7 @@
],
"signatures": [
{
- "id": 20401,
+ "id": 3110,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -140757,7 +141137,7 @@
],
"parameters": [
{
- "id": 20402,
+ "id": 3111,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -140783,7 +141163,7 @@
}
},
{
- "id": 20403,
+ "id": 3112,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -140806,14 +141186,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20404,
+ "id": 3113,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20405,
+ "id": 3114,
"name": "customersDeleted",
"variant": "declaration",
"kind": 1024,
@@ -140821,7 +141201,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20406,
+ "id": 3115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -140835,7 +141215,7 @@
],
"signatures": [
{
- "id": 20407,
+ "id": 3116,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -140849,7 +141229,7 @@
],
"typeParameters": [
{
- "id": 20408,
+ "id": 3117,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -140858,7 +141238,7 @@
],
"parameters": [
{
- "id": 20409,
+ "id": 3118,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -140873,14 +141253,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20410,
+ "id": 3119,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20411,
+ "id": 3120,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -140890,7 +141270,7 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L51"
}
],
"type": {
@@ -140942,7 +141322,7 @@
{
"title": "Properties",
"children": [
- 20411
+ 3120
]
}
],
@@ -140951,7 +141331,7 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 50,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L50"
}
]
}
@@ -140962,7 +141342,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -140973,7 +141353,7 @@
}
},
{
- "id": 20412,
+ "id": 3121,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -140989,7 +141369,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -141010,7 +141390,7 @@
}
},
{
- "id": 42259,
+ "id": 25200,
"name": "customersDeleted",
"variant": "declaration",
"kind": 64,
@@ -141045,14 +141425,14 @@
},
"signatures": [
{
- "id": 42260,
+ "id": 25201,
"name": "customersDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42261,
+ "id": 25202,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -141067,7 +141447,7 @@
},
"type": {
"type": "reference",
- "target": 20410,
+ "target": 3119,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -141081,13 +141461,13 @@
{
"title": "Properties",
"children": [
- 20405
+ 3114
]
},
{
"title": "Functions",
"children": [
- 42259
+ 25200
]
}
],
@@ -141104,7 +141484,7 @@
],
"documents": [
{
- "id": 42258,
+ "id": 25199,
"name": "deleteCustomersStep",
"variant": "document",
"kind": 8388608,
@@ -141130,7 +141510,7 @@
"frontmatter": {}
},
{
- "id": 42262,
+ "id": 25203,
"name": "customersDeleted",
"variant": "document",
"kind": 8388608,
@@ -141156,7 +141536,7 @@
"frontmatter": {}
},
{
- "id": 42263,
+ "id": 25204,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -141183,21 +141563,21 @@
}
],
"childrenIncludingDocuments": [
- 20384,
- 20390,
- 20396,
- 20399,
- 20403
+ 3093,
+ 3099,
+ 3105,
+ 3108,
+ 3112
],
"groups": [
{
"title": "Properties",
"children": [
- 20384,
- 20390,
- 20396,
- 20399,
- 20403
+ 3093,
+ 3099,
+ 3105,
+ 3108,
+ 3112
]
}
],
@@ -141206,12 +141586,12 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L46"
}
],
"signatures": [
{
- "id": 20377,
+ "id": 3086,
"name": "deleteCustomersWorkflow",
"variant": "signature",
"kind": 4096,
@@ -141276,12 +141656,12 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L46"
}
],
"typeParameters": [
{
- "id": 20378,
+ "id": 3087,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -141292,7 +141672,7 @@
}
},
{
- "id": 20379,
+ "id": 3088,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -141305,7 +141685,7 @@
],
"parameters": [
{
- "id": 20380,
+ "id": 3089,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -141329,14 +141709,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20381,
+ "id": 3090,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20382,
+ "id": 3091,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -141359,7 +141739,7 @@
}
},
{
- "id": 20383,
+ "id": 3092,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -141386,8 +141766,8 @@
{
"title": "Properties",
"children": [
- 20382,
- 20383
+ 3091,
+ 3092
]
}
],
@@ -141462,7 +141842,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20372,
+ "target": 3081,
"name": "DeleteCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -141472,14 +141852,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -141494,14 +141874,14 @@
]
},
{
- "id": 20410,
+ "id": 3119,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20411,
+ "id": 3120,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -141511,7 +141891,7 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L51"
}
],
"type": {
@@ -141563,7 +141943,7 @@
{
"title": "Properties",
"children": [
- 20411
+ 3120
]
}
],
@@ -141572,12 +141952,12 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 50,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L50"
}
]
},
{
- "id": 20411,
+ "id": 3120,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -141587,7 +141967,7 @@
"fileName": "core-flows/src/customer/workflows/delete-customers.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/delete-customers.ts#L51"
}
],
"type": {
@@ -141635,7 +142015,7 @@
"defaultValue": "input.ids"
},
{
- "id": 20415,
+ "id": 3124,
"name": "customerId",
"variant": "declaration",
"kind": 1024,
@@ -141645,7 +142025,7 @@
"fileName": "core-flows/src/customer/workflows/remove-customer-account.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L14"
}
],
"type": {
@@ -141654,7 +142034,7 @@
}
},
{
- "id": 20416,
+ "id": 3125,
"name": "removeCustomerAccountWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -141666,7 +142046,7 @@
"fileName": "core-flows/src/customer/workflows/remove-customer-account.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L16"
}
],
"type": {
@@ -141676,7 +142056,7 @@
"defaultValue": "\"remove-customer-account\""
},
{
- "id": 20417,
+ "id": 3126,
"name": "removeCustomerAccountWorkflow",
"variant": "declaration",
"kind": 64,
@@ -141691,7 +142071,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "deleteCustomersWorkflow",
- "target": 20376
+ "target": 3085
},
{
"kind": "text",
@@ -141748,7 +142128,7 @@
},
"children": [
{
- "id": 20425,
+ "id": 3134,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -141771,7 +142151,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20426,
+ "id": 3135,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -141785,7 +142165,7 @@
],
"signatures": [
{
- "id": 20427,
+ "id": 3136,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -141813,7 +142193,7 @@
],
"parameters": [
{
- "id": 20428,
+ "id": 3137,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -141829,14 +142209,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20429,
+ "id": 3138,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20430,
+ "id": 3139,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -141861,7 +142241,7 @@
"types": [
{
"type": "reference",
- "target": 20413,
+ "target": 3122,
"name": "RemoveCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -141874,7 +142254,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20413,
+ "target": 3122,
"name": "RemoveCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -141890,7 +142270,7 @@
{
"title": "Properties",
"children": [
- 20430
+ 3139
]
}
],
@@ -141930,14 +142310,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20431,
+ "id": 3140,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20432,
+ "id": 3141,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -141951,7 +142331,7 @@
],
"signatures": [
{
- "id": 20433,
+ "id": 3142,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -141965,7 +142345,7 @@
],
"parameters": [
{
- "id": 20434,
+ "id": 3143,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -141976,14 +142356,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20435,
+ "id": 3144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20436,
+ "id": 3145,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -142007,7 +142387,7 @@
{
"title": "Properties",
"children": [
- 20436
+ 3145
]
}
],
@@ -142084,7 +142464,7 @@
{
"title": "Methods",
"children": [
- 20432
+ 3141
]
}
],
@@ -142120,7 +142500,7 @@
}
},
{
- "id": 20437,
+ "id": 3146,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -142143,7 +142523,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20438,
+ "id": 3147,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -142157,7 +142537,7 @@
],
"signatures": [
{
- "id": 20439,
+ "id": 3148,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -142185,7 +142565,7 @@
],
"typeParameters": [
{
- "id": 20440,
+ "id": 3149,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -142196,7 +142576,7 @@
}
},
{
- "id": 20441,
+ "id": 3150,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -142209,7 +142589,7 @@
],
"parameters": [
{
- "id": 20442,
+ "id": 3151,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -142242,7 +142622,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -142253,13 +142633,13 @@
},
"trueType": {
"type": "reference",
- "target": 20413,
+ "target": 3122,
"name": "RemoveCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -142292,7 +142672,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -142307,7 +142687,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -142327,7 +142707,7 @@
}
},
{
- "id": 20443,
+ "id": 3152,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -142350,7 +142730,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20444,
+ "id": 3153,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -142364,7 +142744,7 @@
],
"signatures": [
{
- "id": 20445,
+ "id": 3154,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -142386,7 +142766,7 @@
}
},
{
- "id": 20446,
+ "id": 3155,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -142409,7 +142789,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20447,
+ "id": 3156,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -142423,7 +142803,7 @@
],
"signatures": [
{
- "id": 20448,
+ "id": 3157,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -142437,7 +142817,7 @@
],
"parameters": [
{
- "id": 20449,
+ "id": 3158,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -142463,7 +142843,7 @@
}
},
{
- "id": 20450,
+ "id": 3159,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -142486,7 +142866,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20451,
+ "id": 3160,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -142497,7 +142877,7 @@
],
"documents": [
{
- "id": 42264,
+ "id": 25205,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -142523,7 +142903,7 @@
"frontmatter": {}
},
{
- "id": 42265,
+ "id": 25206,
"name": "deleteCustomersWorkflow",
"variant": "document",
"kind": 8388608,
@@ -142549,7 +142929,7 @@
"frontmatter": {}
},
{
- "id": 42266,
+ "id": 25207,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -142584,7 +142964,7 @@
"frontmatter": {},
"children": [
{
- "id": 42267,
+ "id": 25208,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -142610,7 +142990,7 @@
"frontmatter": {}
},
{
- "id": 42268,
+ "id": 25209,
"name": "setAuthAppMetadataStep",
"variant": "document",
"kind": 8388608,
@@ -142639,21 +143019,21 @@
}
],
"childrenIncludingDocuments": [
- 20425,
- 20437,
- 20443,
- 20446,
- 20450
+ 3134,
+ 3146,
+ 3152,
+ 3155,
+ 3159
],
"groups": [
{
"title": "Properties",
"children": [
- 20425,
- 20437,
- 20443,
- 20446,
- 20450
+ 3134,
+ 3146,
+ 3152,
+ 3155,
+ 3159
]
}
],
@@ -142662,12 +143042,12 @@
"fileName": "core-flows/src/customer/workflows/remove-customer-account.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L43"
}
],
"signatures": [
{
- "id": 20418,
+ "id": 3127,
"name": "removeCustomerAccountWorkflow",
"variant": "signature",
"kind": 4096,
@@ -142682,7 +143062,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "deleteCustomersWorkflow",
- "target": 20376
+ "target": 3085
},
{
"kind": "text",
@@ -142742,12 +143122,12 @@
"fileName": "core-flows/src/customer/workflows/remove-customer-account.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/remove-customer-account.ts#L43"
}
],
"typeParameters": [
{
- "id": 20419,
+ "id": 3128,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -142758,7 +143138,7 @@
}
},
{
- "id": 20420,
+ "id": 3129,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -142771,7 +143151,7 @@
],
"parameters": [
{
- "id": 20421,
+ "id": 3130,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -142795,14 +143175,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20422,
+ "id": 3131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20423,
+ "id": 3132,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -142825,7 +143205,7 @@
}
},
{
- "id": 20424,
+ "id": 3133,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -142852,8 +143232,8 @@
{
"title": "Properties",
"children": [
- 20423,
- 20424
+ 3132,
+ 3133
]
}
],
@@ -142928,7 +143308,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20413,
+ "target": 3122,
"name": "RemoveCustomerAccountWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -142938,14 +143318,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -142960,7 +143340,7 @@
]
},
{
- "id": 20454,
+ "id": 3163,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -142978,7 +143358,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L27"
}
],
"type": {
@@ -142992,7 +143372,7 @@
}
},
{
- "id": 20455,
+ "id": 3164,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -143010,7 +143390,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L31"
}
],
"type": {
@@ -143024,7 +143404,7 @@
}
},
{
- "id": 20456,
+ "id": 3165,
"name": "updateCustomerAddressesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -143036,7 +143416,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L34"
}
],
"type": {
@@ -143046,7 +143426,7 @@
"defaultValue": "\"update-customer-addresses\""
},
{
- "id": 20457,
+ "id": 3166,
"name": "updateCustomerAddressesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -143098,7 +143478,7 @@
},
"children": [
{
- "id": 20465,
+ "id": 3174,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -143121,7 +143501,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20466,
+ "id": 3175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -143135,7 +143515,7 @@
],
"signatures": [
{
- "id": 20467,
+ "id": 3176,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -143163,7 +143543,7 @@
],
"parameters": [
{
- "id": 20468,
+ "id": 3177,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -143179,14 +143559,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20469,
+ "id": 3178,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20470,
+ "id": 3179,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -143211,7 +143591,7 @@
"types": [
{
"type": "reference",
- "target": 20452,
+ "target": 3161,
"name": "UpdateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -143224,7 +143604,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20452,
+ "target": 3161,
"name": "UpdateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -143240,7 +143620,7 @@
{
"title": "Properties",
"children": [
- 20470
+ 3179
]
}
],
@@ -143333,14 +143713,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20471,
+ "id": 3180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20472,
+ "id": 3181,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -143354,7 +143734,7 @@
],
"signatures": [
{
- "id": 20473,
+ "id": 3182,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -143368,7 +143748,7 @@
],
"parameters": [
{
- "id": 20474,
+ "id": 3183,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -143379,14 +143759,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20475,
+ "id": 3184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20476,
+ "id": 3185,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -143410,7 +143790,7 @@
{
"title": "Properties",
"children": [
- 20476
+ 3185
]
}
],
@@ -143495,7 +143875,7 @@
{
"title": "Methods",
"children": [
- 20472
+ 3181
]
}
],
@@ -143539,7 +143919,7 @@
}
},
{
- "id": 20477,
+ "id": 3186,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -143562,7 +143942,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20478,
+ "id": 3187,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -143576,7 +143956,7 @@
],
"signatures": [
{
- "id": 20479,
+ "id": 3188,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -143604,7 +143984,7 @@
],
"typeParameters": [
{
- "id": 20480,
+ "id": 3189,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -143615,7 +143995,7 @@
}
},
{
- "id": 20481,
+ "id": 3190,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -143628,7 +144008,7 @@
],
"parameters": [
{
- "id": 20482,
+ "id": 3191,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -143661,7 +144041,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -143672,13 +144052,13 @@
},
"trueType": {
"type": "reference",
- "target": 20452,
+ "target": 3161,
"name": "UpdateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -143711,7 +144091,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -143734,7 +144114,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -143754,7 +144134,7 @@
}
},
{
- "id": 20483,
+ "id": 3192,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -143777,7 +144157,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20484,
+ "id": 3193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -143791,7 +144171,7 @@
],
"signatures": [
{
- "id": 20485,
+ "id": 3194,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -143813,7 +144193,7 @@
}
},
{
- "id": 20486,
+ "id": 3195,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -143836,7 +144216,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20487,
+ "id": 3196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -143850,7 +144230,7 @@
],
"signatures": [
{
- "id": 20488,
+ "id": 3197,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -143864,7 +144244,7 @@
],
"parameters": [
{
- "id": 20489,
+ "id": 3198,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -143890,7 +144270,7 @@
}
},
{
- "id": 20490,
+ "id": 3199,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -143913,14 +144293,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20491,
+ "id": 3200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20492,
+ "id": 3201,
"name": "addressesUpdated",
"variant": "declaration",
"kind": 1024,
@@ -143928,7 +144308,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20493,
+ "id": 3202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -143942,7 +144322,7 @@
],
"signatures": [
{
- "id": 20494,
+ "id": 3203,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -143956,7 +144336,7 @@
],
"typeParameters": [
{
- "id": 20495,
+ "id": 3204,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -143965,7 +144345,7 @@
],
"parameters": [
{
- "id": 20496,
+ "id": 3205,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -143980,14 +144360,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20497,
+ "id": 3206,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20498,
+ "id": 3207,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -143997,7 +144377,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 80,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L80"
}
],
"type": {
@@ -144078,14 +144458,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20499,
+ "id": 3208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20500,
+ "id": 3209,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -144099,7 +144479,7 @@
],
"signatures": [
{
- "id": 20501,
+ "id": 3210,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -144113,7 +144493,7 @@
],
"parameters": [
{
- "id": 20502,
+ "id": 3211,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -144124,14 +144504,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20503,
+ "id": 3212,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20504,
+ "id": 3213,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -144155,7 +144535,7 @@
{
"title": "Properties",
"children": [
- 20504
+ 3213
]
}
],
@@ -144240,7 +144620,7 @@
{
"title": "Methods",
"children": [
- 20500
+ 3209
]
}
],
@@ -144281,7 +144661,7 @@
"defaultValue": "updatedAddresses"
},
{
- "id": 20505,
+ "id": 3214,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -144299,7 +144679,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 81,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L81"
}
],
"type": {
@@ -144322,8 +144702,8 @@
{
"title": "Properties",
"children": [
- 20498,
- 20505
+ 3207,
+ 3214
]
}
],
@@ -144332,7 +144712,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 79,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L79"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L79"
}
]
}
@@ -144343,7 +144723,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -144354,7 +144734,7 @@
}
},
{
- "id": 20506,
+ "id": 3215,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -144370,7 +144750,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -144391,7 +144771,7 @@
}
},
{
- "id": 42272,
+ "id": 25213,
"name": "addressesUpdated",
"variant": "declaration",
"kind": 64,
@@ -144426,14 +144806,14 @@
},
"signatures": [
{
- "id": 42273,
+ "id": 25214,
"name": "addressesUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42274,
+ "id": 25215,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -144448,7 +144828,7 @@
},
"type": {
"type": "reference",
- "target": 20497,
+ "target": 3206,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -144462,13 +144842,13 @@
{
"title": "Properties",
"children": [
- 20492
+ 3201
]
},
{
"title": "Functions",
"children": [
- 42272
+ 25213
]
}
],
@@ -144485,7 +144865,7 @@
],
"documents": [
{
- "id": 42269,
+ "id": 25210,
"name": "maybeUnsetDefaultShippingAddressesStep",
"variant": "document",
"kind": 8388608,
@@ -144511,7 +144891,7 @@
"frontmatter": {}
},
{
- "id": 42270,
+ "id": 25211,
"name": "maybeUnsetDefaultBillingAddressesStep",
"variant": "document",
"kind": 8388608,
@@ -144537,7 +144917,7 @@
"frontmatter": {}
},
{
- "id": 42271,
+ "id": 25212,
"name": "updateCustomerAddressesStep",
"variant": "document",
"kind": 8388608,
@@ -144563,7 +144943,7 @@
"frontmatter": {}
},
{
- "id": 42275,
+ "id": 25216,
"name": "addressesUpdated",
"variant": "document",
"kind": 8388608,
@@ -144590,21 +144970,21 @@
}
],
"childrenIncludingDocuments": [
- 20465,
- 20477,
- 20483,
- 20486,
- 20490
+ 3174,
+ 3186,
+ 3192,
+ 3195,
+ 3199
],
"groups": [
{
"title": "Properties",
"children": [
- 20465,
- 20477,
- 20483,
- 20486,
- 20490
+ 3174,
+ 3186,
+ 3192,
+ 3195,
+ 3199
]
}
],
@@ -144613,12 +144993,12 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 66,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L66"
}
],
"signatures": [
{
- "id": 20458,
+ "id": 3167,
"name": "updateCustomerAddressesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -144673,12 +145053,12 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 66,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L66"
}
],
"typeParameters": [
{
- "id": 20459,
+ "id": 3168,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -144689,7 +145069,7 @@
}
},
{
- "id": 20460,
+ "id": 3169,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -144702,7 +145082,7 @@
],
"parameters": [
{
- "id": 20461,
+ "id": 3170,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -144726,14 +145106,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20462,
+ "id": 3171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20463,
+ "id": 3172,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -144756,7 +145136,7 @@
}
},
{
- "id": 20464,
+ "id": 3173,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -144783,8 +145163,8 @@
{
"title": "Properties",
"children": [
- 20463,
- 20464
+ 3172,
+ 3173
]
}
],
@@ -144859,7 +145239,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20452,
+ "target": 3161,
"name": "UpdateCustomerAddressesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -144877,14 +145257,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -144899,14 +145279,14 @@
]
},
{
- "id": 20497,
+ "id": 3206,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20498,
+ "id": 3207,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -144916,7 +145296,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 80,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L80"
}
],
"type": {
@@ -144997,14 +145377,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20499,
+ "id": 3208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20500,
+ "id": 3209,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -145018,7 +145398,7 @@
],
"signatures": [
{
- "id": 20501,
+ "id": 3210,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -145032,7 +145412,7 @@
],
"parameters": [
{
- "id": 20502,
+ "id": 3211,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -145043,14 +145423,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20503,
+ "id": 3212,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20504,
+ "id": 3213,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -145074,7 +145454,7 @@
{
"title": "Properties",
"children": [
- 20504
+ 3213
]
}
],
@@ -145159,7 +145539,7 @@
{
"title": "Methods",
"children": [
- 20500
+ 3209
]
}
],
@@ -145200,7 +145580,7 @@
"defaultValue": "updatedAddresses"
},
{
- "id": 20505,
+ "id": 3214,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -145218,7 +145598,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 81,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L81"
}
],
"type": {
@@ -145241,8 +145621,8 @@
{
"title": "Properties",
"children": [
- 20498,
- 20505
+ 3207,
+ 3214
]
}
],
@@ -145251,12 +145631,12 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 79,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L79"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L79"
}
]
},
{
- "id": 20498,
+ "id": 3207,
"name": "addresses",
"variant": "declaration",
"kind": 1024,
@@ -145266,7 +145646,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 80,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L80"
}
],
"type": {
@@ -145347,14 +145727,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20499,
+ "id": 3208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20500,
+ "id": 3209,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -145368,7 +145748,7 @@
],
"signatures": [
{
- "id": 20501,
+ "id": 3210,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -145382,7 +145762,7 @@
],
"parameters": [
{
- "id": 20502,
+ "id": 3211,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -145393,14 +145773,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20503,
+ "id": 3212,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20504,
+ "id": 3213,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -145424,7 +145804,7 @@
{
"title": "Properties",
"children": [
- 20504
+ 3213
]
}
],
@@ -145509,7 +145889,7 @@
{
"title": "Methods",
"children": [
- 20500
+ 3209
]
}
],
@@ -145550,7 +145930,7 @@
"defaultValue": "updatedAddresses"
},
{
- "id": 20505,
+ "id": 3214,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -145568,7 +145948,7 @@
"fileName": "core-flows/src/customer/workflows/update-addresses.ts",
"line": 81,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-addresses.ts#L81"
}
],
"type": {
@@ -145587,7 +145967,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 20509,
+ "id": 3218,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -145605,7 +145985,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L24"
}
],
"type": {
@@ -145619,7 +145999,7 @@
}
},
{
- "id": 20510,
+ "id": 3219,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -145637,7 +146017,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L28"
}
],
"type": {
@@ -145651,7 +146031,7 @@
}
},
{
- "id": 20511,
+ "id": 3220,
"name": "updateCustomersWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -145663,7 +146043,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L31"
}
],
"type": {
@@ -145673,7 +146053,7 @@
"defaultValue": "\"update-customers\""
},
{
- "id": 20512,
+ "id": 3221,
"name": "updateCustomersWorkflow",
"variant": "declaration",
"kind": 64,
@@ -145734,7 +146114,7 @@
},
"children": [
{
- "id": 20520,
+ "id": 3229,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -145757,7 +146137,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20521,
+ "id": 3230,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -145771,7 +146151,7 @@
],
"signatures": [
{
- "id": 20522,
+ "id": 3231,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -145799,7 +146179,7 @@
],
"parameters": [
{
- "id": 20523,
+ "id": 3232,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -145815,14 +146195,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20524,
+ "id": 3233,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20525,
+ "id": 3234,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -145847,7 +146227,7 @@
"types": [
{
"type": "reference",
- "target": 20507,
+ "target": 3216,
"name": "UpdateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -145860,7 +146240,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20507,
+ "target": 3216,
"name": "UpdateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -145876,7 +146256,7 @@
{
"title": "Properties",
"children": [
- 20525
+ 3234
]
}
],
@@ -145969,14 +146349,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20526,
+ "id": 3235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20527,
+ "id": 3236,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -145990,7 +146370,7 @@
],
"signatures": [
{
- "id": 20528,
+ "id": 3237,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -146004,7 +146384,7 @@
],
"parameters": [
{
- "id": 20529,
+ "id": 3238,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -146015,14 +146395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20530,
+ "id": 3239,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20531,
+ "id": 3240,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -146046,7 +146426,7 @@
{
"title": "Properties",
"children": [
- 20531
+ 3240
]
}
],
@@ -146131,7 +146511,7 @@
{
"title": "Methods",
"children": [
- 20527
+ 3236
]
}
],
@@ -146175,7 +146555,7 @@
}
},
{
- "id": 20532,
+ "id": 3241,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -146198,7 +146578,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20533,
+ "id": 3242,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -146212,7 +146592,7 @@
],
"signatures": [
{
- "id": 20534,
+ "id": 3243,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -146240,7 +146620,7 @@
],
"typeParameters": [
{
- "id": 20535,
+ "id": 3244,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -146251,7 +146631,7 @@
}
},
{
- "id": 20536,
+ "id": 3245,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -146264,7 +146644,7 @@
],
"parameters": [
{
- "id": 20537,
+ "id": 3246,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -146297,7 +146677,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -146308,13 +146688,13 @@
},
"trueType": {
"type": "reference",
- "target": 20507,
+ "target": 3216,
"name": "UpdateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -146347,7 +146727,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -146370,7 +146750,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -146390,7 +146770,7 @@
}
},
{
- "id": 20538,
+ "id": 3247,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -146413,7 +146793,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20539,
+ "id": 3248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -146427,7 +146807,7 @@
],
"signatures": [
{
- "id": 20540,
+ "id": 3249,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -146449,7 +146829,7 @@
}
},
{
- "id": 20541,
+ "id": 3250,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -146472,7 +146852,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20542,
+ "id": 3251,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -146486,7 +146866,7 @@
],
"signatures": [
{
- "id": 20543,
+ "id": 3252,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -146500,7 +146880,7 @@
],
"parameters": [
{
- "id": 20544,
+ "id": 3253,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -146526,7 +146906,7 @@
}
},
{
- "id": 20545,
+ "id": 3254,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -146549,14 +146929,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20546,
+ "id": 3255,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20547,
+ "id": 3256,
"name": "customersUpdated",
"variant": "declaration",
"kind": 1024,
@@ -146564,7 +146944,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20548,
+ "id": 3257,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -146578,7 +146958,7 @@
],
"signatures": [
{
- "id": 20549,
+ "id": 3258,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -146592,7 +146972,7 @@
],
"typeParameters": [
{
- "id": 20550,
+ "id": 3259,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -146601,7 +146981,7 @@
],
"parameters": [
{
- "id": 20551,
+ "id": 3260,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -146616,14 +146996,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20552,
+ "id": 3261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20553,
+ "id": 3262,
"name": "customers",
"variant": "declaration",
"kind": 1024,
@@ -146633,7 +147013,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L65"
}
],
"type": {
@@ -146714,14 +147094,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20554,
+ "id": 3263,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20555,
+ "id": 3264,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -146735,7 +147115,7 @@
],
"signatures": [
{
- "id": 20556,
+ "id": 3265,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -146749,7 +147129,7 @@
],
"parameters": [
{
- "id": 20557,
+ "id": 3266,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -146760,14 +147140,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20558,
+ "id": 3267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20559,
+ "id": 3268,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -146791,7 +147171,7 @@
{
"title": "Properties",
"children": [
- 20559
+ 3268
]
}
],
@@ -146876,7 +147256,7 @@
{
"title": "Methods",
"children": [
- 20555
+ 3264
]
}
],
@@ -146917,7 +147297,7 @@
"defaultValue": "updatedCustomers"
},
{
- "id": 20560,
+ "id": 3269,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -146935,7 +147315,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 66,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L66"
}
],
"type": {
@@ -146958,8 +147338,8 @@
{
"title": "Properties",
"children": [
- 20553,
- 20560
+ 3262,
+ 3269
]
}
],
@@ -146968,7 +147348,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 64,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L64"
}
]
}
@@ -146979,7 +147359,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -146990,7 +147370,7 @@
}
},
{
- "id": 20561,
+ "id": 3270,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -147006,7 +147386,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -147027,7 +147407,7 @@
}
},
{
- "id": 42277,
+ "id": 25218,
"name": "customersUpdated",
"variant": "declaration",
"kind": 64,
@@ -147062,14 +147442,14 @@
},
"signatures": [
{
- "id": 42278,
+ "id": 25219,
"name": "customersUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42279,
+ "id": 25220,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -147084,7 +147464,7 @@
},
"type": {
"type": "reference",
- "target": 20552,
+ "target": 3261,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -147098,13 +147478,13 @@
{
"title": "Properties",
"children": [
- 20547
+ 3256
]
},
{
"title": "Functions",
"children": [
- 42277
+ 25218
]
}
],
@@ -147121,7 +147501,7 @@
],
"documents": [
{
- "id": 42276,
+ "id": 25217,
"name": "updateCustomersStep",
"variant": "document",
"kind": 8388608,
@@ -147147,7 +147527,7 @@
"frontmatter": {}
},
{
- "id": 42280,
+ "id": 25221,
"name": "customersUpdated",
"variant": "document",
"kind": 8388608,
@@ -147173,7 +147553,7 @@
"frontmatter": {}
},
{
- "id": 42281,
+ "id": 25222,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -147200,21 +147580,21 @@
}
],
"childrenIncludingDocuments": [
- 20520,
- 20532,
- 20538,
- 20541,
- 20545
+ 3229,
+ 3241,
+ 3247,
+ 3250,
+ 3254
],
"groups": [
{
"title": "Properties",
"children": [
- 20520,
- 20532,
- 20538,
- 20541,
- 20545
+ 3229,
+ 3241,
+ 3247,
+ 3250,
+ 3254
]
}
],
@@ -147223,12 +147603,12 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 60,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L60"
}
],
"signatures": [
{
- "id": 20513,
+ "id": 3222,
"name": "updateCustomersWorkflow",
"variant": "signature",
"kind": 4096,
@@ -147292,12 +147672,12 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 60,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L60"
}
],
"typeParameters": [
{
- "id": 20514,
+ "id": 3223,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -147308,7 +147688,7 @@
}
},
{
- "id": 20515,
+ "id": 3224,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -147321,7 +147701,7 @@
],
"parameters": [
{
- "id": 20516,
+ "id": 3225,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -147345,14 +147725,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20517,
+ "id": 3226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20518,
+ "id": 3227,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -147375,7 +147755,7 @@
}
},
{
- "id": 20519,
+ "id": 3228,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -147402,8 +147782,8 @@
{
"title": "Properties",
"children": [
- 20518,
- 20519
+ 3227,
+ 3228
]
}
],
@@ -147478,7 +147858,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20507,
+ "target": 3216,
"name": "UpdateCustomersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -147496,14 +147876,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -147518,14 +147898,14 @@
]
},
{
- "id": 20552,
+ "id": 3261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20553,
+ "id": 3262,
"name": "customers",
"variant": "declaration",
"kind": 1024,
@@ -147535,7 +147915,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L65"
}
],
"type": {
@@ -147616,14 +147996,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20554,
+ "id": 3263,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20555,
+ "id": 3264,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -147637,7 +148017,7 @@
],
"signatures": [
{
- "id": 20556,
+ "id": 3265,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -147651,7 +148031,7 @@
],
"parameters": [
{
- "id": 20557,
+ "id": 3266,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -147662,14 +148042,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20558,
+ "id": 3267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20559,
+ "id": 3268,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -147693,7 +148073,7 @@
{
"title": "Properties",
"children": [
- 20559
+ 3268
]
}
],
@@ -147778,7 +148158,7 @@
{
"title": "Methods",
"children": [
- 20555
+ 3264
]
}
],
@@ -147819,7 +148199,7 @@
"defaultValue": "updatedCustomers"
},
{
- "id": 20560,
+ "id": 3269,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -147837,7 +148217,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 66,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L66"
}
],
"type": {
@@ -147860,8 +148240,8 @@
{
"title": "Properties",
"children": [
- 20553,
- 20560
+ 3262,
+ 3269
]
}
],
@@ -147870,12 +148250,12 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 64,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L64"
}
]
},
{
- "id": 20553,
+ "id": 3262,
"name": "customers",
"variant": "declaration",
"kind": 1024,
@@ -147885,7 +148265,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L65"
}
],
"type": {
@@ -147966,14 +148346,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20554,
+ "id": 3263,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20555,
+ "id": 3264,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -147987,7 +148367,7 @@
],
"signatures": [
{
- "id": 20556,
+ "id": 3265,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -148001,7 +148381,7 @@
],
"parameters": [
{
- "id": 20557,
+ "id": 3266,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -148012,14 +148392,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20558,
+ "id": 3267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20559,
+ "id": 3268,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -148043,7 +148423,7 @@
{
"title": "Properties",
"children": [
- 20559
+ 3268
]
}
],
@@ -148128,7 +148508,7 @@
{
"title": "Methods",
"children": [
- 20555
+ 3264
]
}
],
@@ -148169,7 +148549,7 @@
"defaultValue": "updatedCustomers"
},
{
- "id": 20560,
+ "id": 3269,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -148187,7 +148567,7 @@
"fileName": "core-flows/src/customer/workflows/update-customers.ts",
"line": 66,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer/workflows/update-customers.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer/workflows/update-customers.ts#L66"
}
],
"type": {
@@ -148210,21 +148590,21 @@
]
},
{
- "id": 17311,
+ "id": 16,
"name": "Customer Group",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17312,
+ "id": 17,
"name": "Steps_Customer Group",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20758,
+ "id": 3467,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -148242,7 +148622,7 @@
"fileName": "core-flows/src/customer-group/steps/update-customer-groups.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L20"
}
],
"type": {
@@ -148256,7 +148636,7 @@
}
},
{
- "id": 20759,
+ "id": 3468,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -148274,7 +148654,7 @@
"fileName": "core-flows/src/customer-group/steps/update-customer-groups.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L24"
}
],
"type": {
@@ -148288,7 +148668,7 @@
}
},
{
- "id": 20760,
+ "id": 3469,
"name": "updateCustomerGroupStepId",
"variant": "declaration",
"kind": 32,
@@ -148300,7 +148680,7 @@
"fileName": "core-flows/src/customer-group/steps/update-customer-groups.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L27"
}
],
"type": {
@@ -148310,7 +148690,7 @@
"defaultValue": "\"update-customer-groups\""
},
{
- "id": 20761,
+ "id": 3470,
"name": "updateCustomerGroupsStep",
"variant": "declaration",
"kind": 64,
@@ -148345,7 +148725,7 @@
},
"children": [
{
- "id": 20770,
+ "id": 3479,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -148363,7 +148743,7 @@
}
},
{
- "id": 20771,
+ "id": 3480,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -148385,8 +148765,8 @@
{
"title": "Properties",
"children": [
- 20770,
- 20771
+ 3479,
+ 3480
]
}
],
@@ -148395,12 +148775,12 @@
"fileName": "core-flows/src/customer-group/steps/update-customer-groups.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L41"
}
],
"signatures": [
{
- "id": 20762,
+ "id": 3471,
"name": "updateCustomerGroupsStep",
"variant": "signature",
"kind": 4096,
@@ -148438,12 +148818,12 @@
"fileName": "core-flows/src/customer-group/steps/update-customer-groups.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/update-customer-groups.ts#L41"
}
],
"parameters": [
{
- "id": 20763,
+ "id": 3472,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -148453,7 +148833,7 @@
"types": [
{
"type": "reference",
- "target": 20756,
+ "target": 3465,
"name": "UpdateCustomerGroupStepInput",
"package": "@medusajs/core-flows"
},
@@ -148466,7 +148846,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20756,
+ "target": 3465,
"name": "UpdateCustomerGroupStepInput",
"package": "@medusajs/core-flows"
}
@@ -148556,14 +148936,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20764,
+ "id": 3473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20765,
+ "id": 3474,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -148577,7 +148957,7 @@
],
"signatures": [
{
- "id": 20766,
+ "id": 3475,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -148591,7 +148971,7 @@
],
"parameters": [
{
- "id": 20767,
+ "id": 3476,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -148602,14 +148982,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20768,
+ "id": 3477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20769,
+ "id": 3478,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -148633,7 +149013,7 @@
{
"title": "Properties",
"children": [
- 20769
+ 3478
]
}
],
@@ -148718,7 +149098,7 @@
{
"title": "Methods",
"children": [
- 20765
+ 3474
]
}
],
@@ -148760,7 +149140,7 @@
]
},
{
- "id": 20773,
+ "id": 3482,
"name": "deleteCustomerGroupStepId",
"variant": "declaration",
"kind": 32,
@@ -148772,7 +149152,7 @@
"fileName": "core-flows/src/customer-group/steps/delete-customer-groups.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/delete-customer-groups.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/delete-customer-groups.ts#L10"
}
],
"type": {
@@ -148782,7 +149162,7 @@
"defaultValue": "\"delete-customer-groups\""
},
{
- "id": 20774,
+ "id": 3483,
"name": "deleteCustomerGroupStep",
"variant": "declaration",
"kind": 64,
@@ -148808,7 +149188,7 @@
},
"children": [
{
- "id": 20777,
+ "id": 3486,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -148826,7 +149206,7 @@
}
},
{
- "id": 20778,
+ "id": 3487,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -148848,8 +149228,8 @@
{
"title": "Properties",
"children": [
- 20777,
- 20778
+ 3486,
+ 3487
]
}
],
@@ -148858,12 +149238,12 @@
"fileName": "core-flows/src/customer-group/steps/delete-customer-groups.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/delete-customer-groups.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/delete-customer-groups.ts#L14"
}
],
"signatures": [
{
- "id": 20775,
+ "id": 3484,
"name": "deleteCustomerGroupStep",
"variant": "signature",
"kind": 4096,
@@ -148892,12 +149272,12 @@
"fileName": "core-flows/src/customer-group/steps/delete-customer-groups.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/delete-customer-groups.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/delete-customer-groups.ts#L14"
}
],
"parameters": [
{
- "id": 20776,
+ "id": 3485,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -148907,7 +149287,7 @@
"types": [
{
"type": "reference",
- "target": 20772,
+ "target": 3481,
"name": "DeleteCustomerGroupsStepInput",
"package": "@medusajs/core-flows"
},
@@ -148920,7 +149300,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20772,
+ "target": 3481,
"name": "DeleteCustomerGroupsStepInput",
"package": "@medusajs/core-flows"
}
@@ -148940,7 +149320,7 @@
]
},
{
- "id": 20780,
+ "id": 3489,
"name": "createCustomerGroupsStepId",
"variant": "declaration",
"kind": 32,
@@ -148952,7 +149332,7 @@
"fileName": "core-flows/src/customer-group/steps/create-customer-groups.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/create-customer-groups.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/create-customer-groups.ts#L13"
}
],
"type": {
@@ -148962,7 +149342,7 @@
"defaultValue": "\"create-customer-groups\""
},
{
- "id": 20781,
+ "id": 3490,
"name": "createCustomerGroupsStep",
"variant": "declaration",
"kind": 64,
@@ -148988,7 +149368,7 @@
},
"children": [
{
- "id": 20790,
+ "id": 3499,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -149006,7 +149386,7 @@
}
},
{
- "id": 20791,
+ "id": 3500,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -149028,8 +149408,8 @@
{
"title": "Properties",
"children": [
- 20790,
- 20791
+ 3499,
+ 3500
]
}
],
@@ -149038,12 +149418,12 @@
"fileName": "core-flows/src/customer-group/steps/create-customer-groups.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/create-customer-groups.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/create-customer-groups.ts#L17"
}
],
"signatures": [
{
- "id": 20782,
+ "id": 3491,
"name": "createCustomerGroupsStep",
"variant": "signature",
"kind": 4096,
@@ -149072,12 +149452,12 @@
"fileName": "core-flows/src/customer-group/steps/create-customer-groups.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/create-customer-groups.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/create-customer-groups.ts#L17"
}
],
"parameters": [
{
- "id": 20783,
+ "id": 3492,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -149087,7 +149467,7 @@
"types": [
{
"type": "reference",
- "target": 20779,
+ "target": 3488,
"name": "CreateCustomerGroupsStepInput",
"package": "@medusajs/core-flows"
},
@@ -149100,7 +149480,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20779,
+ "target": 3488,
"name": "CreateCustomerGroupsStepInput",
"package": "@medusajs/core-flows"
}
@@ -149190,14 +149570,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20784,
+ "id": 3493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20785,
+ "id": 3494,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -149211,7 +149591,7 @@
],
"signatures": [
{
- "id": 20786,
+ "id": 3495,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -149225,7 +149605,7 @@
],
"parameters": [
{
- "id": 20787,
+ "id": 3496,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -149236,14 +149616,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20788,
+ "id": 3497,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20789,
+ "id": 3498,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -149267,7 +149647,7 @@
{
"title": "Properties",
"children": [
- 20789
+ 3498
]
}
],
@@ -149352,7 +149732,7 @@
{
"title": "Methods",
"children": [
- 20785
+ 3494
]
}
],
@@ -149394,7 +149774,7 @@
]
},
{
- "id": 20792,
+ "id": 3501,
"name": "linkCustomersToCustomerGroupStepId",
"variant": "declaration",
"kind": 32,
@@ -149406,7 +149786,7 @@
"fileName": "core-flows/src/customer-group/steps/link-customers-customer-group.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/link-customers-customer-group.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/link-customers-customer-group.ts#L8"
}
],
"type": {
@@ -149416,7 +149796,7 @@
"defaultValue": "\"link-customers-to-customer-group\""
},
{
- "id": 20793,
+ "id": 3502,
"name": "linkCustomersToCustomerGroupStep",
"variant": "declaration",
"kind": 64,
@@ -149451,7 +149831,7 @@
},
"children": [
{
- "id": 20796,
+ "id": 3505,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -149469,7 +149849,7 @@
}
},
{
- "id": 20797,
+ "id": 3506,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -149491,8 +149871,8 @@
{
"title": "Properties",
"children": [
- 20796,
- 20797
+ 3505,
+ 3506
]
}
],
@@ -149501,12 +149881,12 @@
"fileName": "core-flows/src/customer-group/steps/link-customers-customer-group.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/link-customers-customer-group.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/link-customers-customer-group.ts#L20"
}
],
"signatures": [
{
- "id": 20794,
+ "id": 3503,
"name": "linkCustomersToCustomerGroupStep",
"variant": "signature",
"kind": 4096,
@@ -149544,12 +149924,12 @@
"fileName": "core-flows/src/customer-group/steps/link-customers-customer-group.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/link-customers-customer-group.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/link-customers-customer-group.ts#L20"
}
],
"parameters": [
{
- "id": 20795,
+ "id": 3504,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -149598,7 +149978,7 @@
]
},
{
- "id": 20798,
+ "id": 3507,
"name": "linkCustomerGroupsToCustomerStepId",
"variant": "declaration",
"kind": 32,
@@ -149610,7 +149990,7 @@
"fileName": "core-flows/src/customer-group/steps/link-customer-groups-customer.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/link-customer-groups-customer.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/link-customer-groups-customer.ts#L8"
}
],
"type": {
@@ -149620,7 +150000,7 @@
"defaultValue": "\"link-customers-to-customer-group\""
},
{
- "id": 20799,
+ "id": 3508,
"name": "linkCustomerGroupsToCustomerStep",
"variant": "declaration",
"kind": 64,
@@ -149655,7 +150035,7 @@
},
"children": [
{
- "id": 20802,
+ "id": 3511,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -149673,7 +150053,7 @@
}
},
{
- "id": 20803,
+ "id": 3512,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -149695,8 +150075,8 @@
{
"title": "Properties",
"children": [
- 20802,
- 20803
+ 3511,
+ 3512
]
}
],
@@ -149705,12 +150085,12 @@
"fileName": "core-flows/src/customer-group/steps/link-customer-groups-customer.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/link-customer-groups-customer.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/link-customer-groups-customer.ts#L20"
}
],
"signatures": [
{
- "id": 20800,
+ "id": 3509,
"name": "linkCustomerGroupsToCustomerStep",
"variant": "signature",
"kind": 4096,
@@ -149748,12 +150128,12 @@
"fileName": "core-flows/src/customer-group/steps/link-customer-groups-customer.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/steps/link-customer-groups-customer.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/steps/link-customer-groups-customer.ts#L20"
}
],
"parameters": [
{
- "id": 20801,
+ "id": 3510,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -149804,14 +150184,14 @@
]
},
{
- "id": 17313,
+ "id": 18,
"name": "Workflows_Customer Group",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20564,
+ "id": 3273,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -149829,7 +150209,7 @@
"fileName": "core-flows/src/customer-group/workflows/update-customer-groups.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L20"
}
],
"type": {
@@ -149843,7 +150223,7 @@
}
},
{
- "id": 20565,
+ "id": 3274,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -149861,7 +150241,7 @@
"fileName": "core-flows/src/customer-group/workflows/update-customer-groups.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L24"
}
],
"type": {
@@ -149875,7 +150255,7 @@
}
},
{
- "id": 20567,
+ "id": 3276,
"name": "updateCustomerGroupsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -149887,7 +150267,7 @@
"fileName": "core-flows/src/customer-group/workflows/update-customer-groups.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L32"
}
],
"type": {
@@ -149897,7 +150277,7 @@
"defaultValue": "\"update-customer-groups\""
},
{
- "id": 20568,
+ "id": 3277,
"name": "updateCustomerGroupsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -149941,7 +150321,7 @@
},
"children": [
{
- "id": 20576,
+ "id": 3285,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -149964,7 +150344,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20577,
+ "id": 3286,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -149978,7 +150358,7 @@
],
"signatures": [
{
- "id": 20578,
+ "id": 3287,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -150006,7 +150386,7 @@
],
"parameters": [
{
- "id": 20579,
+ "id": 3288,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -150022,14 +150402,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20580,
+ "id": 3289,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20581,
+ "id": 3290,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -150054,7 +150434,7 @@
"types": [
{
"type": "reference",
- "target": 20562,
+ "target": 3271,
"name": "UpdateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -150067,7 +150447,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20562,
+ "target": 3271,
"name": "UpdateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -150083,7 +150463,7 @@
{
"title": "Properties",
"children": [
- 20581
+ 3290
]
}
],
@@ -150140,7 +150520,7 @@
},
{
"type": "reference",
- "target": 20566,
+ "target": 3275,
"name": "UpdateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -150153,7 +150533,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20566,
+ "target": 3275,
"name": "UpdateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -150164,14 +150544,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20582,
+ "id": 3291,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20583,
+ "id": 3292,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -150185,7 +150565,7 @@
],
"signatures": [
{
- "id": 20584,
+ "id": 3293,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -150199,7 +150579,7 @@
],
"parameters": [
{
- "id": 20585,
+ "id": 3294,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -150210,14 +150590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20586,
+ "id": 3295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20587,
+ "id": 3296,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -150241,7 +150621,7 @@
{
"title": "Properties",
"children": [
- 20587
+ 3296
]
}
],
@@ -150304,7 +150684,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20566,
+ "target": 3275,
"name": "UpdateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -150320,7 +150700,7 @@
{
"title": "Methods",
"children": [
- 20583
+ 3292
]
}
],
@@ -150342,7 +150722,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20566,
+ "target": 3275,
"name": "UpdateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -150358,7 +150738,7 @@
}
},
{
- "id": 20588,
+ "id": 3297,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -150381,7 +150761,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20589,
+ "id": 3298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -150395,7 +150775,7 @@
],
"signatures": [
{
- "id": 20590,
+ "id": 3299,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -150423,7 +150803,7 @@
],
"typeParameters": [
{
- "id": 20591,
+ "id": 3300,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -150434,7 +150814,7 @@
}
},
{
- "id": 20592,
+ "id": 3301,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -150447,7 +150827,7 @@
],
"parameters": [
{
- "id": 20593,
+ "id": 3302,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -150480,7 +150860,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -150491,13 +150871,13 @@
},
"trueType": {
"type": "reference",
- "target": 20562,
+ "target": 3271,
"name": "UpdateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -150530,7 +150910,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -150541,13 +150921,13 @@
},
"trueType": {
"type": "reference",
- "target": 20566,
+ "target": 3275,
"name": "UpdateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -150567,7 +150947,7 @@
}
},
{
- "id": 20594,
+ "id": 3303,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -150590,7 +150970,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20595,
+ "id": 3304,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -150604,7 +150984,7 @@
],
"signatures": [
{
- "id": 20596,
+ "id": 3305,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -150626,7 +151006,7 @@
}
},
{
- "id": 20597,
+ "id": 3306,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -150649,7 +151029,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20598,
+ "id": 3307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -150663,7 +151043,7 @@
],
"signatures": [
{
- "id": 20599,
+ "id": 3308,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -150677,7 +151057,7 @@
],
"parameters": [
{
- "id": 20600,
+ "id": 3309,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -150703,7 +151083,7 @@
}
},
{
- "id": 20601,
+ "id": 3310,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -150726,7 +151106,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20602,
+ "id": 3311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -150737,7 +151117,7 @@
],
"documents": [
{
- "id": 42282,
+ "id": 25223,
"name": "updateCustomerGroupsStep",
"variant": "document",
"kind": 8388608,
@@ -150764,21 +151144,21 @@
}
],
"childrenIncludingDocuments": [
- 20576,
- 20588,
- 20594,
- 20597,
- 20601
+ 3285,
+ 3297,
+ 3303,
+ 3306,
+ 3310
],
"groups": [
{
"title": "Properties",
"children": [
- 20576,
- 20588,
- 20594,
- 20597,
- 20601
+ 3285,
+ 3297,
+ 3303,
+ 3306,
+ 3310
]
}
],
@@ -150787,12 +151167,12 @@
"fileName": "core-flows/src/customer-group/workflows/update-customer-groups.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L57"
}
],
"signatures": [
{
- "id": 20569,
+ "id": 3278,
"name": "updateCustomerGroupsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -150839,12 +151219,12 @@
"fileName": "core-flows/src/customer-group/workflows/update-customer-groups.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/update-customer-groups.ts#L57"
}
],
"typeParameters": [
{
- "id": 20570,
+ "id": 3279,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -150855,7 +151235,7 @@
}
},
{
- "id": 20571,
+ "id": 3280,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -150868,7 +151248,7 @@
],
"parameters": [
{
- "id": 20572,
+ "id": 3281,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -150892,14 +151272,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20573,
+ "id": 3282,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20574,
+ "id": 3283,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -150922,7 +151302,7 @@
}
},
{
- "id": 20575,
+ "id": 3284,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -150949,8 +151329,8 @@
{
"title": "Properties",
"children": [
- 20574,
- 20575
+ 3283,
+ 3284
]
}
],
@@ -151025,26 +151405,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 20562,
+ "target": 3271,
"name": "UpdateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 20566,
+ "target": 3275,
"name": "UpdateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -151059,7 +151439,7 @@
]
},
{
- "id": 20605,
+ "id": 3314,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -151077,7 +151457,7 @@
"fileName": "core-flows/src/customer-group/workflows/delete-customer-groups.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L11"
}
],
"type": {
@@ -151089,7 +151469,7 @@
}
},
{
- "id": 20606,
+ "id": 3315,
"name": "deleteCustomerGroupsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -151101,7 +151481,7 @@
"fileName": "core-flows/src/customer-group/workflows/delete-customer-groups.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L14"
}
],
"type": {
@@ -151111,7 +151491,7 @@
"defaultValue": "\"delete-customer-groups\""
},
{
- "id": 20607,
+ "id": 3316,
"name": "deleteCustomerGroupsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -151155,7 +151535,7 @@
},
"children": [
{
- "id": 20615,
+ "id": 3324,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -151178,7 +151558,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20616,
+ "id": 3325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -151192,7 +151572,7 @@
],
"signatures": [
{
- "id": 20617,
+ "id": 3326,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -151220,7 +151600,7 @@
],
"parameters": [
{
- "id": 20618,
+ "id": 3327,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -151236,14 +151616,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20619,
+ "id": 3328,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20620,
+ "id": 3329,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -151268,7 +151648,7 @@
"types": [
{
"type": "reference",
- "target": 20603,
+ "target": 3312,
"name": "DeleteCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -151281,7 +151661,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20603,
+ "target": 3312,
"name": "DeleteCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -151297,7 +151677,7 @@
{
"title": "Properties",
"children": [
- 20620
+ 3329
]
}
],
@@ -151333,14 +151713,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20621,
+ "id": 3330,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20622,
+ "id": 3331,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -151354,7 +151734,7 @@
],
"signatures": [
{
- "id": 20623,
+ "id": 3332,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -151368,7 +151748,7 @@
],
"parameters": [
{
- "id": 20624,
+ "id": 3333,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -151379,14 +151759,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20625,
+ "id": 3334,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20626,
+ "id": 3335,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -151410,7 +151790,7 @@
{
"title": "Properties",
"children": [
- 20626
+ 3335
]
}
],
@@ -151487,7 +151867,7 @@
{
"title": "Methods",
"children": [
- 20622
+ 3331
]
}
],
@@ -151523,7 +151903,7 @@
}
},
{
- "id": 20627,
+ "id": 3336,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -151546,7 +151926,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20628,
+ "id": 3337,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -151560,7 +151940,7 @@
],
"signatures": [
{
- "id": 20629,
+ "id": 3338,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -151588,7 +151968,7 @@
],
"typeParameters": [
{
- "id": 20630,
+ "id": 3339,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -151599,7 +151979,7 @@
}
},
{
- "id": 20631,
+ "id": 3340,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -151612,7 +151992,7 @@
],
"parameters": [
{
- "id": 20632,
+ "id": 3341,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -151645,7 +152025,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -151656,13 +152036,13 @@
},
"trueType": {
"type": "reference",
- "target": 20603,
+ "target": 3312,
"name": "DeleteCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -151695,7 +152075,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -151710,7 +152090,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -151730,7 +152110,7 @@
}
},
{
- "id": 20633,
+ "id": 3342,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -151753,7 +152133,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20634,
+ "id": 3343,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -151767,7 +152147,7 @@
],
"signatures": [
{
- "id": 20635,
+ "id": 3344,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -151789,7 +152169,7 @@
}
},
{
- "id": 20636,
+ "id": 3345,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -151812,7 +152192,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20637,
+ "id": 3346,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -151826,7 +152206,7 @@
],
"signatures": [
{
- "id": 20638,
+ "id": 3347,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -151840,7 +152220,7 @@
],
"parameters": [
{
- "id": 20639,
+ "id": 3348,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -151866,7 +152246,7 @@
}
},
{
- "id": 20640,
+ "id": 3349,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -151889,7 +152269,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20641,
+ "id": 3350,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -151900,7 +152280,7 @@
],
"documents": [
{
- "id": 42283,
+ "id": 25224,
"name": "deleteCustomerGroupStep",
"variant": "document",
"kind": 8388608,
@@ -151927,21 +152307,21 @@
}
],
"childrenIncludingDocuments": [
- 20615,
- 20627,
- 20633,
- 20636,
- 20640
+ 3324,
+ 3336,
+ 3342,
+ 3345,
+ 3349
],
"groups": [
{
"title": "Properties",
"children": [
- 20615,
- 20627,
- 20633,
- 20636,
- 20640
+ 3324,
+ 3336,
+ 3342,
+ 3345,
+ 3349
]
}
],
@@ -151950,12 +152330,12 @@
"fileName": "core-flows/src/customer-group/workflows/delete-customer-groups.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L34"
}
],
"signatures": [
{
- "id": 20608,
+ "id": 3317,
"name": "deleteCustomerGroupsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -152002,12 +152382,12 @@
"fileName": "core-flows/src/customer-group/workflows/delete-customer-groups.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/delete-customer-groups.ts#L34"
}
],
"typeParameters": [
{
- "id": 20609,
+ "id": 3318,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -152018,7 +152398,7 @@
}
},
{
- "id": 20610,
+ "id": 3319,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -152031,7 +152411,7 @@
],
"parameters": [
{
- "id": 20611,
+ "id": 3320,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -152055,14 +152435,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20612,
+ "id": 3321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20613,
+ "id": 3322,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -152085,7 +152465,7 @@
}
},
{
- "id": 20614,
+ "id": 3323,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -152112,8 +152492,8 @@
{
"title": "Properties",
"children": [
- 20613,
- 20614
+ 3322,
+ 3323
]
}
],
@@ -152188,7 +152568,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20603,
+ "target": 3312,
"name": "DeleteCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -152198,14 +152578,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -152220,7 +152600,7 @@
]
},
{
- "id": 20644,
+ "id": 3353,
"name": "customersData",
"variant": "declaration",
"kind": 1024,
@@ -152238,7 +152618,7 @@
"fileName": "core-flows/src/customer-group/workflows/create-customer-groups.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L19"
}
],
"type": {
@@ -152255,7 +152635,7 @@
}
},
{
- "id": 20646,
+ "id": 3355,
"name": "createCustomerGroupsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -152267,7 +152647,7 @@
"fileName": "core-flows/src/customer-group/workflows/create-customer-groups.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L27"
}
],
"type": {
@@ -152277,7 +152657,7 @@
"defaultValue": "\"create-customer-groups\""
},
{
- "id": 20647,
+ "id": 3356,
"name": "createCustomerGroupsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -152321,7 +152701,7 @@
},
"children": [
{
- "id": 20655,
+ "id": 3364,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -152344,7 +152724,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20656,
+ "id": 3365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -152358,7 +152738,7 @@
],
"signatures": [
{
- "id": 20657,
+ "id": 3366,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -152386,7 +152766,7 @@
],
"parameters": [
{
- "id": 20658,
+ "id": 3367,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -152402,14 +152782,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20659,
+ "id": 3368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20660,
+ "id": 3369,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -152434,7 +152814,7 @@
"types": [
{
"type": "reference",
- "target": 20642,
+ "target": 3351,
"name": "CreateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -152447,7 +152827,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20642,
+ "target": 3351,
"name": "CreateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -152463,7 +152843,7 @@
{
"title": "Properties",
"children": [
- 20660
+ 3369
]
}
],
@@ -152520,7 +152900,7 @@
},
{
"type": "reference",
- "target": 20645,
+ "target": 3354,
"name": "CreateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -152533,7 +152913,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20645,
+ "target": 3354,
"name": "CreateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -152544,14 +152924,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20661,
+ "id": 3370,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20662,
+ "id": 3371,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -152565,7 +152945,7 @@
],
"signatures": [
{
- "id": 20663,
+ "id": 3372,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -152579,7 +152959,7 @@
],
"parameters": [
{
- "id": 20664,
+ "id": 3373,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -152590,14 +152970,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20665,
+ "id": 3374,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20666,
+ "id": 3375,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -152621,7 +153001,7 @@
{
"title": "Properties",
"children": [
- 20666
+ 3375
]
}
],
@@ -152684,7 +153064,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20645,
+ "target": 3354,
"name": "CreateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -152700,7 +153080,7 @@
{
"title": "Methods",
"children": [
- 20662
+ 3371
]
}
],
@@ -152722,7 +153102,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20645,
+ "target": 3354,
"name": "CreateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -152738,7 +153118,7 @@
}
},
{
- "id": 20667,
+ "id": 3376,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -152761,7 +153141,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20668,
+ "id": 3377,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -152775,7 +153155,7 @@
],
"signatures": [
{
- "id": 20669,
+ "id": 3378,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -152803,7 +153183,7 @@
],
"typeParameters": [
{
- "id": 20670,
+ "id": 3379,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -152814,7 +153194,7 @@
}
},
{
- "id": 20671,
+ "id": 3380,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -152827,7 +153207,7 @@
],
"parameters": [
{
- "id": 20672,
+ "id": 3381,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -152860,7 +153240,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -152871,13 +153251,13 @@
},
"trueType": {
"type": "reference",
- "target": 20642,
+ "target": 3351,
"name": "CreateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -152910,7 +153290,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -152921,13 +153301,13 @@
},
"trueType": {
"type": "reference",
- "target": 20645,
+ "target": 3354,
"name": "CreateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -152947,7 +153327,7 @@
}
},
{
- "id": 20673,
+ "id": 3382,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -152970,7 +153350,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20674,
+ "id": 3383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -152984,7 +153364,7 @@
],
"signatures": [
{
- "id": 20675,
+ "id": 3384,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -153006,7 +153386,7 @@
}
},
{
- "id": 20676,
+ "id": 3385,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -153029,7 +153409,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20677,
+ "id": 3386,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -153043,7 +153423,7 @@
],
"signatures": [
{
- "id": 20678,
+ "id": 3387,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -153057,7 +153437,7 @@
],
"parameters": [
{
- "id": 20679,
+ "id": 3388,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -153083,7 +153463,7 @@
}
},
{
- "id": 20680,
+ "id": 3389,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -153106,7 +153486,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20681,
+ "id": 3390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -153117,7 +153497,7 @@
],
"documents": [
{
- "id": 42284,
+ "id": 25225,
"name": "createCustomerGroupsStep",
"variant": "document",
"kind": 8388608,
@@ -153144,21 +153524,21 @@
}
],
"childrenIncludingDocuments": [
- 20655,
- 20667,
- 20673,
- 20676,
- 20680
+ 3364,
+ 3376,
+ 3382,
+ 3385,
+ 3389
],
"groups": [
{
"title": "Properties",
"children": [
- 20655,
- 20667,
- 20673,
- 20676,
- 20680
+ 3364,
+ 3376,
+ 3382,
+ 3385,
+ 3389
]
}
],
@@ -153167,12 +153547,12 @@
"fileName": "core-flows/src/customer-group/workflows/create-customer-groups.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L52"
}
],
"signatures": [
{
- "id": 20648,
+ "id": 3357,
"name": "createCustomerGroupsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -153219,12 +153599,12 @@
"fileName": "core-flows/src/customer-group/workflows/create-customer-groups.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/create-customer-groups.ts#L52"
}
],
"typeParameters": [
{
- "id": 20649,
+ "id": 3358,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -153235,7 +153615,7 @@
}
},
{
- "id": 20650,
+ "id": 3359,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -153248,7 +153628,7 @@
],
"parameters": [
{
- "id": 20651,
+ "id": 3360,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -153272,14 +153652,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20652,
+ "id": 3361,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20653,
+ "id": 3362,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -153302,7 +153682,7 @@
}
},
{
- "id": 20654,
+ "id": 3363,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -153329,8 +153709,8 @@
{
"title": "Properties",
"children": [
- 20653,
- 20654
+ 3362,
+ 3363
]
}
],
@@ -153405,26 +153785,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 20642,
+ "target": 3351,
"name": "CreateCustomerGroupsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 20645,
+ "target": 3354,
"name": "CreateCustomerGroupsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -153439,7 +153819,7 @@
]
},
{
- "id": 20683,
+ "id": 3392,
"name": "linkCustomersToCustomerGroupWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -153451,7 +153831,7 @@
"fileName": "core-flows/src/customer-group/workflows/link-customers-customer-group.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/link-customers-customer-group.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/link-customers-customer-group.ts#L14"
}
],
"type": {
@@ -153461,7 +153841,7 @@
"defaultValue": "\"link-customers-to-customer-group\""
},
{
- "id": 20684,
+ "id": 3393,
"name": "linkCustomersToCustomerGroupWorkflow",
"variant": "declaration",
"kind": 64,
@@ -153505,7 +153885,7 @@
},
"children": [
{
- "id": 20692,
+ "id": 3401,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -153528,7 +153908,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20693,
+ "id": 3402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -153542,7 +153922,7 @@
],
"signatures": [
{
- "id": 20694,
+ "id": 3403,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -153570,7 +153950,7 @@
],
"parameters": [
{
- "id": 20695,
+ "id": 3404,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -153586,14 +153966,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20696,
+ "id": 3405,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20697,
+ "id": 3406,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -153653,7 +154033,7 @@
{
"title": "Properties",
"children": [
- 20697
+ 3406
]
}
],
@@ -153689,14 +154069,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20698,
+ "id": 3407,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20699,
+ "id": 3408,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -153710,7 +154090,7 @@
],
"signatures": [
{
- "id": 20700,
+ "id": 3409,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -153724,7 +154104,7 @@
],
"parameters": [
{
- "id": 20701,
+ "id": 3410,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -153735,14 +154115,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20702,
+ "id": 3411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20703,
+ "id": 3412,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -153766,7 +154146,7 @@
{
"title": "Properties",
"children": [
- 20703
+ 3412
]
}
],
@@ -153843,7 +154223,7 @@
{
"title": "Methods",
"children": [
- 20699
+ 3408
]
}
],
@@ -153879,7 +154259,7 @@
}
},
{
- "id": 20704,
+ "id": 3413,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -153902,7 +154282,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20705,
+ "id": 3414,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -153916,7 +154296,7 @@
],
"signatures": [
{
- "id": 20706,
+ "id": 3415,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -153944,7 +154324,7 @@
],
"typeParameters": [
{
- "id": 20707,
+ "id": 3416,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -153955,7 +154335,7 @@
}
},
{
- "id": 20708,
+ "id": 3417,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -153968,7 +154348,7 @@
],
"parameters": [
{
- "id": 20709,
+ "id": 3418,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -154001,7 +154381,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -154021,7 +154401,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -154054,7 +154434,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -154069,7 +154449,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -154089,7 +154469,7 @@
}
},
{
- "id": 20710,
+ "id": 3419,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -154112,7 +154492,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20711,
+ "id": 3420,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -154126,7 +154506,7 @@
],
"signatures": [
{
- "id": 20712,
+ "id": 3421,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -154148,7 +154528,7 @@
}
},
{
- "id": 20713,
+ "id": 3422,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -154171,7 +154551,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20714,
+ "id": 3423,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -154185,7 +154565,7 @@
],
"signatures": [
{
- "id": 20715,
+ "id": 3424,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -154199,7 +154579,7 @@
],
"parameters": [
{
- "id": 20716,
+ "id": 3425,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -154225,7 +154605,7 @@
}
},
{
- "id": 20717,
+ "id": 3426,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -154248,7 +154628,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20718,
+ "id": 3427,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -154259,7 +154639,7 @@
],
"documents": [
{
- "id": 42285,
+ "id": 25226,
"name": "linkCustomersToCustomerGroupStep",
"variant": "document",
"kind": 8388608,
@@ -154286,21 +154666,21 @@
}
],
"childrenIncludingDocuments": [
- 20692,
- 20704,
- 20710,
- 20713,
- 20717
+ 3401,
+ 3413,
+ 3419,
+ 3422,
+ 3426
],
"groups": [
{
"title": "Properties",
"children": [
- 20692,
- 20704,
- 20710,
- 20713,
- 20717
+ 3401,
+ 3413,
+ 3419,
+ 3422,
+ 3426
]
}
],
@@ -154309,12 +154689,12 @@
"fileName": "core-flows/src/customer-group/workflows/link-customers-customer-group.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/link-customers-customer-group.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/link-customers-customer-group.ts#L37"
}
],
"signatures": [
{
- "id": 20685,
+ "id": 3394,
"name": "linkCustomersToCustomerGroupWorkflow",
"variant": "signature",
"kind": 4096,
@@ -154361,12 +154741,12 @@
"fileName": "core-flows/src/customer-group/workflows/link-customers-customer-group.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/link-customers-customer-group.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/link-customers-customer-group.ts#L37"
}
],
"typeParameters": [
{
- "id": 20686,
+ "id": 3395,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -154377,7 +154757,7 @@
}
},
{
- "id": 20687,
+ "id": 3396,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -154390,7 +154770,7 @@
],
"parameters": [
{
- "id": 20688,
+ "id": 3397,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -154414,14 +154794,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20689,
+ "id": 3398,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20690,
+ "id": 3399,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -154444,7 +154824,7 @@
}
},
{
- "id": 20691,
+ "id": 3400,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -154471,8 +154851,8 @@
{
"title": "Properties",
"children": [
- 20690,
- 20691
+ 3399,
+ 3400
]
}
],
@@ -154560,14 +154940,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -154582,7 +154962,7 @@
]
},
{
- "id": 20720,
+ "id": 3429,
"name": "linkCustomerGroupsToCustomerWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -154594,7 +154974,7 @@
"fileName": "core-flows/src/customer-group/workflows/link-customer-groups-customer.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/link-customer-groups-customer.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/link-customer-groups-customer.ts#L14"
}
],
"type": {
@@ -154604,7 +154984,7 @@
"defaultValue": "\"link-customer-groups-to-customer\""
},
{
- "id": 20721,
+ "id": 3430,
"name": "linkCustomerGroupsToCustomerWorkflow",
"variant": "declaration",
"kind": 64,
@@ -154648,7 +155028,7 @@
},
"children": [
{
- "id": 20729,
+ "id": 3438,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -154671,7 +155051,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20730,
+ "id": 3439,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -154685,7 +155065,7 @@
],
"signatures": [
{
- "id": 20731,
+ "id": 3440,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -154713,7 +155093,7 @@
],
"parameters": [
{
- "id": 20732,
+ "id": 3441,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -154729,14 +155109,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20733,
+ "id": 3442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20734,
+ "id": 3443,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -154796,7 +155176,7 @@
{
"title": "Properties",
"children": [
- 20734
+ 3443
]
}
],
@@ -154832,14 +155212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20735,
+ "id": 3444,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20736,
+ "id": 3445,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -154853,7 +155233,7 @@
],
"signatures": [
{
- "id": 20737,
+ "id": 3446,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -154867,7 +155247,7 @@
],
"parameters": [
{
- "id": 20738,
+ "id": 3447,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -154878,14 +155258,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20739,
+ "id": 3448,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20740,
+ "id": 3449,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -154909,7 +155289,7 @@
{
"title": "Properties",
"children": [
- 20740
+ 3449
]
}
],
@@ -154986,7 +155366,7 @@
{
"title": "Methods",
"children": [
- 20736
+ 3445
]
}
],
@@ -155022,7 +155402,7 @@
}
},
{
- "id": 20741,
+ "id": 3450,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -155045,7 +155425,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20742,
+ "id": 3451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -155059,7 +155439,7 @@
],
"signatures": [
{
- "id": 20743,
+ "id": 3452,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -155087,7 +155467,7 @@
],
"typeParameters": [
{
- "id": 20744,
+ "id": 3453,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -155098,7 +155478,7 @@
}
},
{
- "id": 20745,
+ "id": 3454,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -155111,7 +155491,7 @@
],
"parameters": [
{
- "id": 20746,
+ "id": 3455,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -155144,7 +155524,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -155164,7 +155544,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -155197,7 +155577,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -155212,7 +155592,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -155232,7 +155612,7 @@
}
},
{
- "id": 20747,
+ "id": 3456,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -155255,7 +155635,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20748,
+ "id": 3457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -155269,7 +155649,7 @@
],
"signatures": [
{
- "id": 20749,
+ "id": 3458,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -155291,7 +155671,7 @@
}
},
{
- "id": 20750,
+ "id": 3459,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -155314,7 +155694,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20751,
+ "id": 3460,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -155328,7 +155708,7 @@
],
"signatures": [
{
- "id": 20752,
+ "id": 3461,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -155342,7 +155722,7 @@
],
"parameters": [
{
- "id": 20753,
+ "id": 3462,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -155368,7 +155748,7 @@
}
},
{
- "id": 20754,
+ "id": 3463,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -155391,7 +155771,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20755,
+ "id": 3464,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -155402,7 +155782,7 @@
],
"documents": [
{
- "id": 42286,
+ "id": 25227,
"name": "linkCustomerGroupsToCustomerStep",
"variant": "document",
"kind": 8388608,
@@ -155429,21 +155809,21 @@
}
],
"childrenIncludingDocuments": [
- 20729,
- 20741,
- 20747,
- 20750,
- 20754
+ 3438,
+ 3450,
+ 3456,
+ 3459,
+ 3463
],
"groups": [
{
"title": "Properties",
"children": [
- 20729,
- 20741,
- 20747,
- 20750,
- 20754
+ 3438,
+ 3450,
+ 3456,
+ 3459,
+ 3463
]
}
],
@@ -155452,12 +155832,12 @@
"fileName": "core-flows/src/customer-group/workflows/link-customer-groups-customer.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/link-customer-groups-customer.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/link-customer-groups-customer.ts#L37"
}
],
"signatures": [
{
- "id": 20722,
+ "id": 3431,
"name": "linkCustomerGroupsToCustomerWorkflow",
"variant": "signature",
"kind": 4096,
@@ -155504,12 +155884,12 @@
"fileName": "core-flows/src/customer-group/workflows/link-customer-groups-customer.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/customer-group/workflows/link-customer-groups-customer.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/customer-group/workflows/link-customer-groups-customer.ts#L37"
}
],
"typeParameters": [
{
- "id": 20723,
+ "id": 3432,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -155520,7 +155900,7 @@
}
},
{
- "id": 20724,
+ "id": 3433,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -155533,7 +155913,7 @@
],
"parameters": [
{
- "id": 20725,
+ "id": 3434,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -155557,14 +155937,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20726,
+ "id": 3435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20727,
+ "id": 3436,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -155587,7 +155967,7 @@
}
},
{
- "id": 20728,
+ "id": 3437,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -155614,8 +155994,8 @@
{
"title": "Properties",
"children": [
- 20727,
- 20728
+ 3436,
+ 3437
]
}
],
@@ -155703,14 +156083,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -155729,21 +156109,21 @@
]
},
{
- "id": 17314,
+ "id": 19,
"name": "Defaults",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17315,
+ "id": 20,
"name": "Steps_Defaults",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20804,
+ "id": 3513,
"name": "createDefaultStoreStepId",
"variant": "declaration",
"kind": 32,
@@ -155755,7 +156135,7 @@
"fileName": "core-flows/src/defaults/steps/create-default-store.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/defaults/steps/create-default-store.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/defaults/steps/create-default-store.ts#L20"
}
],
"type": {
@@ -155765,7 +156145,7 @@
"defaultValue": "\"create-default-store\""
},
{
- "id": 20805,
+ "id": 3514,
"name": "createDefaultStoreStep",
"variant": "declaration",
"kind": 64,
@@ -155800,7 +156180,7 @@
},
"children": [
{
- "id": 20824,
+ "id": 3534,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -155818,7 +156198,7 @@
}
},
{
- "id": 20825,
+ "id": 3535,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -155840,8 +156220,8 @@
{
"title": "Properties",
"children": [
- 20824,
- 20825
+ 3534,
+ 3535
]
}
],
@@ -155850,12 +156230,12 @@
"fileName": "core-flows/src/defaults/steps/create-default-store.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/defaults/steps/create-default-store.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/defaults/steps/create-default-store.ts#L38"
}
],
"signatures": [
{
- "id": 20806,
+ "id": 3515,
"name": "createDefaultStoreStep",
"variant": "signature",
"kind": 4096,
@@ -155893,12 +156273,12 @@
"fileName": "core-flows/src/defaults/steps/create-default-store.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/defaults/steps/create-default-store.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/defaults/steps/create-default-store.ts#L38"
}
],
"parameters": [
{
- "id": 20807,
+ "id": 3516,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -155945,14 +156325,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20808,
+ "id": 3517,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20809,
+ "id": 3518,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -155968,7 +156348,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 39,
+ "line": 69,
"character": 4
}
],
@@ -155998,7 +156378,7 @@
}
},
{
- "id": 20810,
+ "id": 3519,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -156014,7 +156394,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 43,
+ "line": 73,
"character": 4
}
],
@@ -156044,7 +156424,7 @@
}
},
{
- "id": 20811,
+ "id": 3520,
"name": "supported_currencies",
"variant": "declaration",
"kind": 1024,
@@ -156062,7 +156442,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 47,
+ "line": 77,
"character": 4
}
],
@@ -156117,7 +156497,80 @@
}
},
{
- "id": 20812,
+ "id": 3521,
+ "name": "supported_locales",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The supported locale codes of the store."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "types/dist/store/common/store.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts",
+ "qualifiedName": "StoreLocaleDTO"
+ },
+ "name": "StoreLocaleDTO",
+ "package": "@medusajs/types"
+ }
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts",
+ "qualifiedName": "WorkflowData"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts",
+ "qualifiedName": "StoreLocaleDTO"
+ },
+ "name": "StoreLocaleDTO",
+ "package": "@medusajs/types"
+ }
+ }
+ ]
+ }
+ ],
+ "name": "WorkflowData",
+ "package": "@medusajs/workflows-sdk"
+ }
+ ]
+ }
+ },
+ {
+ "id": 3522,
"name": "default_sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -156135,7 +156588,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 51,
+ "line": 85,
"character": 4
}
],
@@ -156174,7 +156627,7 @@
}
},
{
- "id": 20813,
+ "id": 3523,
"name": "default_region_id",
"variant": "declaration",
"kind": 1024,
@@ -156192,7 +156645,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 55,
+ "line": 89,
"character": 4
}
],
@@ -156231,7 +156684,7 @@
}
},
{
- "id": 20814,
+ "id": 3524,
"name": "default_location_id",
"variant": "declaration",
"kind": 1024,
@@ -156249,7 +156702,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 59,
+ "line": 93,
"character": 4
}
],
@@ -156288,7 +156741,7 @@
}
},
{
- "id": 20815,
+ "id": 3525,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -156304,7 +156757,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 63,
+ "line": 97,
"character": 4
}
],
@@ -156377,7 +156830,7 @@
}
},
{
- "id": 20816,
+ "id": 3526,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -156393,7 +156846,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 67,
+ "line": 101,
"character": 4
}
],
@@ -156423,7 +156876,7 @@
}
},
{
- "id": 20817,
+ "id": 3527,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -156439,7 +156892,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 71,
+ "line": 105,
"character": 4
}
],
@@ -156473,15 +156926,16 @@
{
"title": "Properties",
"children": [
- 20809,
- 20810,
- 20811,
- 20812,
- 20813,
- 20814,
- 20815,
- 20816,
- 20817
+ 3518,
+ 3519,
+ 3520,
+ 3521,
+ 3522,
+ 3523,
+ 3524,
+ 3525,
+ 3526,
+ 3527
]
}
],
@@ -156535,14 +156989,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20818,
+ "id": 3528,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20819,
+ "id": 3529,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -156556,7 +157010,7 @@
],
"signatures": [
{
- "id": 20820,
+ "id": 3530,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -156570,7 +157024,7 @@
],
"parameters": [
{
- "id": 20821,
+ "id": 3531,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -156581,14 +157035,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20822,
+ "id": 3532,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20823,
+ "id": 3533,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -156612,7 +157066,7 @@
{
"title": "Properties",
"children": [
- 20823
+ 3533
]
}
],
@@ -156703,7 +157157,7 @@
{
"title": "Methods",
"children": [
- 20819
+ 3529
]
}
],
@@ -156753,14 +157207,14 @@
]
},
{
- "id": 17316,
+ "id": 21,
"name": "Workflows_Defaults",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20826,
+ "id": 3536,
"name": "createDefaultsWorkflowID",
"variant": "declaration",
"kind": 32,
@@ -156772,7 +157226,7 @@
"fileName": "core-flows/src/defaults/workflows/create-defaults.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/defaults/workflows/create-defaults.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/defaults/workflows/create-defaults.ts#L8"
}
],
"type": {
@@ -156782,7 +157236,7 @@
"defaultValue": "\"create-defaults\""
},
{
- "id": 20827,
+ "id": 3537,
"name": "createDefaultsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -156826,7 +157280,7 @@
},
"children": [
{
- "id": 20835,
+ "id": 3545,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -156849,7 +157303,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20836,
+ "id": 3546,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -156863,7 +157317,7 @@
],
"signatures": [
{
- "id": 20837,
+ "id": 3547,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -156891,7 +157345,7 @@
],
"parameters": [
{
- "id": 20838,
+ "id": 3548,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -156907,14 +157361,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20839,
+ "id": 3549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20840,
+ "id": 3550,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -156944,7 +157398,7 @@
{
"title": "Properties",
"children": [
- 20840
+ 3550
]
}
],
@@ -156965,14 +157419,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20841,
+ "id": 3551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20842,
+ "id": 3552,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -156988,7 +157442,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 39,
+ "line": 69,
"character": 4
}
],
@@ -157018,7 +157472,7 @@
}
},
{
- "id": 20843,
+ "id": 3553,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -157034,7 +157488,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 43,
+ "line": 73,
"character": 4
}
],
@@ -157064,7 +157518,7 @@
}
},
{
- "id": 20844,
+ "id": 3554,
"name": "supported_currencies",
"variant": "declaration",
"kind": 1024,
@@ -157082,7 +157536,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 47,
+ "line": 77,
"character": 4
}
],
@@ -157137,7 +157591,80 @@
}
},
{
- "id": 20845,
+ "id": 3555,
+ "name": "supported_locales",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The supported locale codes of the store."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "types/dist/store/common/store.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts",
+ "qualifiedName": "StoreLocaleDTO"
+ },
+ "name": "StoreLocaleDTO",
+ "package": "@medusajs/types"
+ }
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts",
+ "qualifiedName": "WorkflowData"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts",
+ "qualifiedName": "StoreLocaleDTO"
+ },
+ "name": "StoreLocaleDTO",
+ "package": "@medusajs/types"
+ }
+ }
+ ]
+ }
+ ],
+ "name": "WorkflowData",
+ "package": "@medusajs/workflows-sdk"
+ }
+ ]
+ }
+ },
+ {
+ "id": 3556,
"name": "default_sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -157155,7 +157682,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 51,
+ "line": 85,
"character": 4
}
],
@@ -157194,7 +157721,7 @@
}
},
{
- "id": 20846,
+ "id": 3557,
"name": "default_region_id",
"variant": "declaration",
"kind": 1024,
@@ -157212,7 +157739,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 55,
+ "line": 89,
"character": 4
}
],
@@ -157251,7 +157778,7 @@
}
},
{
- "id": 20847,
+ "id": 3558,
"name": "default_location_id",
"variant": "declaration",
"kind": 1024,
@@ -157269,7 +157796,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 59,
+ "line": 93,
"character": 4
}
],
@@ -157308,7 +157835,7 @@
}
},
{
- "id": 20848,
+ "id": 3559,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -157324,7 +157851,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 63,
+ "line": 97,
"character": 4
}
],
@@ -157397,7 +157924,7 @@
}
},
{
- "id": 20849,
+ "id": 3560,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -157413,7 +157940,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 67,
+ "line": 101,
"character": 4
}
],
@@ -157443,7 +157970,7 @@
}
},
{
- "id": 20850,
+ "id": 3561,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -157459,7 +157986,7 @@
"sources": [
{
"fileName": "types/dist/store/common/store.d.ts",
- "line": 71,
+ "line": 105,
"character": 4
}
],
@@ -157493,15 +158020,16 @@
{
"title": "Properties",
"children": [
- 20842,
- 20843,
- 20844,
- 20845,
- 20846,
- 20847,
- 20848,
- 20849,
- 20850
+ 3552,
+ 3553,
+ 3554,
+ 3555,
+ 3556,
+ 3557,
+ 3558,
+ 3559,
+ 3560,
+ 3561
]
}
],
@@ -157555,14 +158083,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20851,
+ "id": 3562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20852,
+ "id": 3563,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -157576,7 +158104,7 @@
],
"signatures": [
{
- "id": 20853,
+ "id": 3564,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -157590,7 +158118,7 @@
],
"parameters": [
{
- "id": 20854,
+ "id": 3565,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -157601,14 +158129,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20855,
+ "id": 3566,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20856,
+ "id": 3567,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -157632,7 +158160,7 @@
{
"title": "Properties",
"children": [
- 20856
+ 3567
]
}
],
@@ -157723,7 +158251,7 @@
{
"title": "Methods",
"children": [
- 20852
+ 3563
]
}
],
@@ -157773,7 +158301,7 @@
}
},
{
- "id": 20857,
+ "id": 3568,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -157796,7 +158324,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20858,
+ "id": 3569,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -157810,7 +158338,7 @@
],
"signatures": [
{
- "id": 20859,
+ "id": 3570,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -157838,7 +158366,7 @@
],
"typeParameters": [
{
- "id": 20860,
+ "id": 3571,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -157849,7 +158377,7 @@
}
},
{
- "id": 20861,
+ "id": 3572,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -157862,7 +158390,7 @@
],
"parameters": [
{
- "id": 20862,
+ "id": 3573,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -157895,7 +158423,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -157910,7 +158438,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -157943,7 +158471,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -157972,7 +158500,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -157992,7 +158520,7 @@
}
},
{
- "id": 20863,
+ "id": 3574,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -158015,7 +158543,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20864,
+ "id": 3575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -158029,7 +158557,7 @@
],
"signatures": [
{
- "id": 20865,
+ "id": 3576,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -158051,7 +158579,7 @@
}
},
{
- "id": 20866,
+ "id": 3577,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -158074,7 +158602,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20867,
+ "id": 3578,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -158088,7 +158616,7 @@
],
"signatures": [
{
- "id": 20868,
+ "id": 3579,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -158102,7 +158630,7 @@
],
"parameters": [
{
- "id": 20869,
+ "id": 3580,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -158128,7 +158656,7 @@
}
},
{
- "id": 20870,
+ "id": 3581,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -158151,7 +158679,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20871,
+ "id": 3582,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -158162,7 +158690,7 @@
],
"documents": [
{
- "id": 42287,
+ "id": 25228,
"name": "createDefaultSalesChannelStep",
"variant": "document",
"kind": 8388608,
@@ -158188,7 +158716,7 @@
"frontmatter": {}
},
{
- "id": 42288,
+ "id": 25229,
"name": "createDefaultStoreStep",
"variant": "document",
"kind": 8388608,
@@ -158215,21 +158743,21 @@
}
],
"childrenIncludingDocuments": [
- 20835,
- 20857,
- 20863,
- 20866,
- 20870
+ 3545,
+ 3568,
+ 3574,
+ 3577,
+ 3581
],
"groups": [
{
"title": "Properties",
"children": [
- 20835,
- 20857,
- 20863,
- 20866,
- 20870
+ 3545,
+ 3568,
+ 3574,
+ 3577,
+ 3581
]
}
],
@@ -158238,12 +158766,12 @@
"fileName": "core-flows/src/defaults/workflows/create-defaults.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/defaults/workflows/create-defaults.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/defaults/workflows/create-defaults.ts#L25"
}
],
"signatures": [
{
- "id": 20828,
+ "id": 3538,
"name": "createDefaultsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -158290,12 +158818,12 @@
"fileName": "core-flows/src/defaults/workflows/create-defaults.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/defaults/workflows/create-defaults.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/defaults/workflows/create-defaults.ts#L25"
}
],
"typeParameters": [
{
- "id": 20829,
+ "id": 3539,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -158306,7 +158834,7 @@
}
},
{
- "id": 20830,
+ "id": 3540,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -158319,7 +158847,7 @@
],
"parameters": [
{
- "id": 20831,
+ "id": 3541,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -158343,14 +158871,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20832,
+ "id": 3542,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20833,
+ "id": 3543,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -158373,7 +158901,7 @@
}
},
{
- "id": 20834,
+ "id": 3544,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -158400,8 +158928,8 @@
{
"title": "Properties",
"children": [
- 20833,
- 20834
+ 3543,
+ 3544
]
}
],
@@ -158498,14 +159026,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -158524,21 +159052,21 @@
]
},
{
- "id": 17317,
+ "id": 22,
"name": "Draft Order",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17318,
+ "id": 23,
"name": "Steps_Draft Order",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20873,
+ "id": 3584,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -158556,7 +159084,7 @@
"fileName": "core-flows/src/draft-order/steps/validate-draft-order.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/steps/validate-draft-order.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/steps/validate-draft-order.ts#L12"
}
],
"type": {
@@ -158570,7 +159098,7 @@
}
},
{
- "id": 20874,
+ "id": 3585,
"name": "validateDraftOrderStep",
"variant": "declaration",
"kind": 64,
@@ -158623,7 +159151,7 @@
},
"children": [
{
- "id": 20883,
+ "id": 3594,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -158641,7 +159169,7 @@
}
},
{
- "id": 20884,
+ "id": 3595,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -158663,8 +159191,8 @@
{
"title": "Properties",
"children": [
- 20883,
- 20884
+ 3594,
+ 3595
]
}
],
@@ -158673,12 +159201,12 @@
"fileName": "core-flows/src/draft-order/steps/validate-draft-order.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/steps/validate-draft-order.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/steps/validate-draft-order.ts#L33"
}
],
"signatures": [
{
- "id": 20875,
+ "id": 3586,
"name": "validateDraftOrderStep",
"variant": "signature",
"kind": 4096,
@@ -158734,12 +159262,12 @@
"fileName": "core-flows/src/draft-order/steps/validate-draft-order.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/steps/validate-draft-order.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/steps/validate-draft-order.ts#L33"
}
],
"parameters": [
{
- "id": 20876,
+ "id": 3587,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -158749,7 +159277,7 @@
"types": [
{
"type": "reference",
- "target": 20872,
+ "target": 3583,
"name": "ValidateDraftOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -158762,7 +159290,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20872,
+ "target": 3583,
"name": "ValidateDraftOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -158795,14 +159323,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20877,
+ "id": 3588,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20878,
+ "id": 3589,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -158816,7 +159344,7 @@
],
"signatures": [
{
- "id": 20879,
+ "id": 3590,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -158830,7 +159358,7 @@
],
"parameters": [
{
- "id": 20880,
+ "id": 3591,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -158841,14 +159369,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20881,
+ "id": 3592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20882,
+ "id": 3593,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -158872,7 +159400,7 @@
{
"title": "Properties",
"children": [
- 20882
+ 3593
]
}
],
@@ -158949,7 +159477,7 @@
{
"title": "Methods",
"children": [
- 20878
+ 3589
]
}
],
@@ -158983,7 +159511,7 @@
]
},
{
- "id": 20887,
+ "id": 3598,
"name": "orderIds",
"variant": "declaration",
"kind": 1024,
@@ -159001,7 +159529,7 @@
"fileName": "core-flows/src/draft-order/steps/delete-draft-order.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L12"
}
],
"type": {
@@ -159013,7 +159541,7 @@
}
},
{
- "id": 20888,
+ "id": 3599,
"name": "deleteDraftOrdersStepId",
"variant": "declaration",
"kind": 32,
@@ -159025,7 +159553,7 @@
"fileName": "core-flows/src/draft-order/steps/delete-draft-order.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L15"
}
],
"type": {
@@ -159035,7 +159563,7 @@
"defaultValue": "\"delete-draft-orders\""
},
{
- "id": 20889,
+ "id": 3600,
"name": "deleteDraftOrdersStep",
"variant": "declaration",
"kind": 64,
@@ -159061,7 +159589,7 @@
},
"children": [
{
- "id": 20898,
+ "id": 3609,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -159079,7 +159607,7 @@
}
},
{
- "id": 20899,
+ "id": 3610,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -159101,8 +159629,8 @@
{
"title": "Properties",
"children": [
- 20898,
- 20899
+ 3609,
+ 3610
]
}
],
@@ -159111,12 +159639,12 @@
"fileName": "core-flows/src/draft-order/steps/delete-draft-order.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L19"
}
],
"signatures": [
{
- "id": 20890,
+ "id": 3601,
"name": "deleteDraftOrdersStep",
"variant": "signature",
"kind": 4096,
@@ -159145,12 +159673,12 @@
"fileName": "core-flows/src/draft-order/steps/delete-draft-order.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/steps/delete-draft-order.ts#L19"
}
],
"parameters": [
{
- "id": 20891,
+ "id": 3602,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -159160,7 +159688,7 @@
"types": [
{
"type": "reference",
- "target": 20885,
+ "target": 3596,
"name": "DeleteDraftOrdersStepInput",
"package": "@medusajs/core-flows"
},
@@ -159173,7 +159701,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 20885,
+ "target": 3596,
"name": "DeleteDraftOrdersStepInput",
"package": "@medusajs/core-flows"
}
@@ -159206,14 +159734,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20892,
+ "id": 3603,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20893,
+ "id": 3604,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -159227,7 +159755,7 @@
],
"signatures": [
{
- "id": 20894,
+ "id": 3605,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -159241,7 +159769,7 @@
],
"parameters": [
{
- "id": 20895,
+ "id": 3606,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -159252,14 +159780,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20896,
+ "id": 3607,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20897,
+ "id": 3608,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -159283,7 +159811,7 @@
{
"title": "Properties",
"children": [
- 20897
+ 3608
]
}
],
@@ -159360,7 +159888,7 @@
{
"title": "Methods",
"children": [
- 20893
+ 3604
]
}
],
@@ -159396,14 +159924,14 @@
]
},
{
- "id": 17319,
+ "id": 24,
"name": "Workflows_Draft Order",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 20900,
+ "id": 3611,
"name": "addDraftOrderItemsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -159415,7 +159943,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-items.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-items.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-items.ts#L26"
}
],
"type": {
@@ -159425,7 +159953,7 @@
"defaultValue": "\"add-draft-order-items\""
},
{
- "id": 20901,
+ "id": 3612,
"name": "addDraftOrderItemsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -159465,6 +159993,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -159478,7 +160015,7 @@
},
"children": [
{
- "id": 20909,
+ "id": 3620,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -159501,7 +160038,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20910,
+ "id": 3621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -159515,7 +160052,7 @@
],
"signatures": [
{
- "id": 20911,
+ "id": 3622,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -159543,7 +160080,7 @@
],
"parameters": [
{
- "id": 20912,
+ "id": 3623,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -159559,14 +160096,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 20913,
+ "id": 3624,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20914,
+ "id": 3625,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -159626,7 +160163,7 @@
{
"title": "Properties",
"children": [
- 20914
+ 3625
]
}
],
@@ -159647,14 +160184,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20915,
+ "id": 3626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20928,
+ "id": 3639,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -159700,7 +160237,7 @@
}
},
{
- "id": 20988,
+ "id": 3699,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -159746,7 +160283,7 @@
}
},
{
- "id": 20989,
+ "id": 3700,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -159792,7 +160329,7 @@
}
},
{
- "id": 20990,
+ "id": 3701,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -159849,7 +160386,7 @@
}
},
{
- "id": 20991,
+ "id": 3702,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -159905,7 +160442,7 @@
}
},
{
- "id": 20956,
+ "id": 3667,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -159962,7 +160499,7 @@
}
},
{
- "id": 20957,
+ "id": 3668,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -160019,7 +160556,7 @@
}
},
{
- "id": 20958,
+ "id": 3669,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -160076,7 +160613,7 @@
}
},
{
- "id": 20933,
+ "id": 3644,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -160133,7 +160670,7 @@
}
},
{
- "id": 20959,
+ "id": 3670,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -160179,7 +160716,7 @@
}
},
{
- "id": 20960,
+ "id": 3671,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -160249,7 +160786,7 @@
}
},
{
- "id": 20961,
+ "id": 3672,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -160319,7 +160856,7 @@
}
},
{
- "id": 20992,
+ "id": 3703,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -160395,7 +160932,7 @@
}
},
{
- "id": 20962,
+ "id": 3673,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -160471,7 +161008,7 @@
}
},
{
- "id": 20993,
+ "id": 3704,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -160541,7 +161078,7 @@
}
},
{
- "id": 20994,
+ "id": 3705,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -160598,7 +161135,7 @@
}
},
{
- "id": 20932,
+ "id": 3643,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -160693,7 +161230,7 @@
}
},
{
- "id": 20987,
+ "id": 3698,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -160768,7 +161305,7 @@
}
},
{
- "id": 20929,
+ "id": 3640,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -160837,7 +161374,7 @@
}
},
{
- "id": 20930,
+ "id": 3641,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -160906,7 +161443,7 @@
}
},
{
- "id": 20931,
+ "id": 3642,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -160981,7 +161518,7 @@
}
},
{
- "id": 20963,
+ "id": 3674,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -161037,7 +161574,7 @@
}
},
{
- "id": 20964,
+ "id": 3675,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -161093,7 +161630,7 @@
}
},
{
- "id": 20965,
+ "id": 3676,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -161149,7 +161686,7 @@
}
},
{
- "id": 20937,
+ "id": 3648,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -161205,7 +161742,7 @@
}
},
{
- "id": 20938,
+ "id": 3649,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -161261,7 +161798,7 @@
}
},
{
- "id": 20939,
+ "id": 3650,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -161317,7 +161854,7 @@
}
},
{
- "id": 20995,
+ "id": 3706,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -161373,7 +161910,7 @@
}
},
{
- "id": 20934,
+ "id": 3645,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -161429,7 +161966,7 @@
}
},
{
- "id": 20935,
+ "id": 3646,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -161485,7 +162022,7 @@
}
},
{
- "id": 20936,
+ "id": 3647,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -161541,7 +162078,7 @@
}
},
{
- "id": 20940,
+ "id": 3651,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -161597,7 +162134,7 @@
}
},
{
- "id": 20941,
+ "id": 3652,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -161653,7 +162190,7 @@
}
},
{
- "id": 20942,
+ "id": 3653,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -161709,7 +162246,7 @@
}
},
{
- "id": 20996,
+ "id": 3707,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -161765,7 +162302,7 @@
}
},
{
- "id": 20943,
+ "id": 3654,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -161821,7 +162358,7 @@
}
},
{
- "id": 20944,
+ "id": 3655,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -161877,7 +162414,7 @@
}
},
{
- "id": 20986,
+ "id": 3697,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -161933,7 +162470,7 @@
}
},
{
- "id": 20966,
+ "id": 3677,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -161989,7 +162526,7 @@
}
},
{
- "id": 20967,
+ "id": 3678,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -162045,7 +162582,7 @@
}
},
{
- "id": 20968,
+ "id": 3679,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -162101,7 +162638,7 @@
}
},
{
- "id": 20969,
+ "id": 3680,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -162157,7 +162694,7 @@
}
},
{
- "id": 20970,
+ "id": 3681,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -162213,7 +162750,7 @@
}
},
{
- "id": 20997,
+ "id": 3708,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -162269,7 +162806,7 @@
}
},
{
- "id": 20971,
+ "id": 3682,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -162325,7 +162862,7 @@
}
},
{
- "id": 20972,
+ "id": 3683,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -162381,7 +162918,7 @@
}
},
{
- "id": 20973,
+ "id": 3684,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -162437,7 +162974,7 @@
}
},
{
- "id": 20916,
+ "id": 3627,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -162493,7 +163030,7 @@
}
},
{
- "id": 20917,
+ "id": 3628,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -162533,14 +163070,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20918,
+ "id": 3629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20919,
+ "id": 3630,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -162572,7 +163109,7 @@
{
"title": "Properties",
"children": [
- 20919
+ 3630
]
}
],
@@ -162612,14 +163149,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20920,
+ "id": 3631,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20921,
+ "id": 3632,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -162651,7 +163188,7 @@
{
"title": "Properties",
"children": [
- 20921
+ 3632
]
}
],
@@ -162675,7 +163212,7 @@
}
},
{
- "id": 20922,
+ "id": 3633,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -162715,14 +163252,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20923,
+ "id": 3634,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20924,
+ "id": 3635,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -162754,7 +163291,7 @@
{
"title": "Properties",
"children": [
- 20924
+ 3635
]
}
],
@@ -162794,14 +163331,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20925,
+ "id": 3636,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20926,
+ "id": 3637,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -162833,7 +163370,7 @@
{
"title": "Properties",
"children": [
- 20926
+ 3637
]
}
],
@@ -162857,7 +163394,7 @@
}
},
{
- "id": 20927,
+ "id": 3638,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -162907,57 +163444,57 @@
{
"title": "Properties",
"children": [
- 20928,
- 20988,
- 20989,
- 20990,
- 20991,
- 20956,
- 20957,
- 20958,
- 20933,
- 20959,
- 20960,
- 20961,
- 20992,
- 20962,
- 20993,
- 20994,
- 20932,
- 20987,
- 20929,
- 20930,
- 20931,
- 20963,
- 20964,
- 20965,
- 20937,
- 20938,
- 20939,
- 20995,
- 20934,
- 20935,
- 20936,
- 20940,
- 20941,
- 20942,
- 20996,
- 20943,
- 20944,
- 20986,
- 20966,
- 20967,
- 20968,
- 20969,
- 20970,
- 20997,
- 20971,
- 20972,
- 20973,
- 20916,
- 20917,
- 20922,
- 20927
+ 3639,
+ 3699,
+ 3700,
+ 3701,
+ 3702,
+ 3667,
+ 3668,
+ 3669,
+ 3644,
+ 3670,
+ 3671,
+ 3672,
+ 3703,
+ 3673,
+ 3704,
+ 3705,
+ 3643,
+ 3698,
+ 3640,
+ 3641,
+ 3642,
+ 3674,
+ 3675,
+ 3676,
+ 3648,
+ 3649,
+ 3650,
+ 3706,
+ 3645,
+ 3646,
+ 3647,
+ 3651,
+ 3652,
+ 3653,
+ 3707,
+ 3654,
+ 3655,
+ 3697,
+ 3677,
+ 3678,
+ 3679,
+ 3680,
+ 3681,
+ 3708,
+ 3682,
+ 3683,
+ 3684,
+ 3627,
+ 3628,
+ 3633,
+ 3638
]
}
],
@@ -163002,14 +163539,14 @@
{
"type": "reflection",
"declaration": {
- "id": 20998,
+ "id": 3709,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20999,
+ "id": 3710,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -163023,7 +163560,7 @@
],
"signatures": [
{
- "id": 21000,
+ "id": 3711,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -163037,7 +163574,7 @@
],
"parameters": [
{
- "id": 21001,
+ "id": 3712,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -163048,14 +163585,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21002,
+ "id": 3713,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21003,
+ "id": 3714,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -163079,7 +163616,7 @@
{
"title": "Properties",
"children": [
- 21003
+ 3714
]
}
],
@@ -163161,7 +163698,7 @@
{
"title": "Methods",
"children": [
- 20999
+ 3710
]
}
],
@@ -163202,7 +163739,7 @@
}
},
{
- "id": 21004,
+ "id": 3715,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -163225,7 +163762,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21005,
+ "id": 3716,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -163239,7 +163776,7 @@
],
"signatures": [
{
- "id": 21006,
+ "id": 3717,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -163267,7 +163804,7 @@
],
"typeParameters": [
{
- "id": 21007,
+ "id": 3718,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -163278,7 +163815,7 @@
}
},
{
- "id": 21008,
+ "id": 3719,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -163291,7 +163828,7 @@
],
"parameters": [
{
- "id": 21009,
+ "id": 3720,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -163324,7 +163861,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -163344,7 +163881,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -163377,7 +163914,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -163397,7 +163934,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -163417,7 +163954,7 @@
}
},
{
- "id": 21010,
+ "id": 3721,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -163440,7 +163977,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21011,
+ "id": 3722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -163454,7 +163991,7 @@
],
"signatures": [
{
- "id": 21012,
+ "id": 3723,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -163476,7 +164013,7 @@
}
},
{
- "id": 21013,
+ "id": 3724,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -163499,7 +164036,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21014,
+ "id": 3725,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -163513,7 +164050,7 @@
],
"signatures": [
{
- "id": 21015,
+ "id": 3726,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -163527,7 +164064,7 @@
],
"parameters": [
{
- "id": 21016,
+ "id": 3727,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -163553,7 +164090,7 @@
}
},
{
- "id": 21017,
+ "id": 3728,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -163576,7 +164113,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21018,
+ "id": 3729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -163587,7 +164124,7 @@
],
"documents": [
{
- "id": 42289,
+ "id": 25230,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -163613,7 +164150,7 @@
"frontmatter": {}
},
{
- "id": 42290,
+ "id": 25231,
"name": "addOrderLineItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -163639,7 +164176,7 @@
"frontmatter": {}
},
{
- "id": 42291,
+ "id": 25232,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -163665,7 +164202,7 @@
"frontmatter": {}
},
{
- "id": 42292,
+ "id": 25233,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -163700,7 +164237,7 @@
"frontmatter": {},
"children": [
{
- "id": 42293,
+ "id": 25234,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -163728,7 +164265,7 @@
]
},
{
- "id": 42294,
+ "id": 25235,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -163754,7 +164291,7 @@
"frontmatter": {}
},
{
- "id": 42295,
+ "id": 25236,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -163780,7 +164317,7 @@
"frontmatter": {}
},
{
- "id": 42296,
+ "id": 25237,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -163807,21 +164344,21 @@
}
],
"childrenIncludingDocuments": [
- 20909,
- 21004,
- 21010,
- 21013,
- 21017
+ 3620,
+ 3715,
+ 3721,
+ 3724,
+ 3728
],
"groups": [
{
"title": "Properties",
"children": [
- 20909,
- 21004,
- 21010,
- 21013,
- 21017
+ 3620,
+ 3715,
+ 3721,
+ 3724,
+ 3728
]
}
],
@@ -163830,12 +164367,12 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-items.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-items.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-items.ts#L51"
}
],
"signatures": [
{
- "id": 20902,
+ "id": 3613,
"name": "addDraftOrderItemsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -163875,6 +164412,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -163891,12 +164437,12 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-items.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-items.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-items.ts#L51"
}
],
"typeParameters": [
{
- "id": 20903,
+ "id": 3614,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -163907,7 +164453,7 @@
}
},
{
- "id": 20904,
+ "id": 3615,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -163920,7 +164466,7 @@
],
"parameters": [
{
- "id": 20905,
+ "id": 3616,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -163944,14 +164490,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 20906,
+ "id": 3617,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 20907,
+ "id": 3618,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -163974,7 +164520,7 @@
}
},
{
- "id": 20908,
+ "id": 3619,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -164001,8 +164547,8 @@
{
"title": "Properties",
"children": [
- 20907,
- 20908
+ 3618,
+ 3619
]
}
],
@@ -164095,14 +164641,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -164117,7 +164663,7 @@
]
},
{
- "id": 21019,
+ "id": 3730,
"name": "addDraftOrderPromotionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -164129,7 +164675,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-promotions.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L29"
}
],
"type": {
@@ -164139,7 +164685,7 @@
"defaultValue": "\"add-draft-order-promotion\""
},
{
- "id": 21021,
+ "id": 3732,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -164157,7 +164703,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-promotions.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L38"
}
],
"type": {
@@ -164166,7 +164712,7 @@
}
},
{
- "id": 21022,
+ "id": 3733,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -164184,7 +164730,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-promotions.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L42"
}
],
"type": {
@@ -164196,7 +164742,7 @@
}
},
{
- "id": 21023,
+ "id": 3734,
"name": "addDraftOrderPromotionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -164236,6 +164782,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -164249,7 +164804,7 @@
},
"children": [
{
- "id": 21031,
+ "id": 3742,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -164272,7 +164827,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21032,
+ "id": 3743,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -164286,7 +164841,7 @@
],
"signatures": [
{
- "id": 21033,
+ "id": 3744,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -164314,7 +164869,7 @@
],
"parameters": [
{
- "id": 21034,
+ "id": 3745,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -164330,14 +164885,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21035,
+ "id": 3746,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21036,
+ "id": 3747,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -164362,7 +164917,7 @@
"types": [
{
"type": "reference",
- "target": 21020,
+ "target": 3731,
"name": "AddDraftOrderPromotionWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -164375,7 +164930,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21020,
+ "target": 3731,
"name": "AddDraftOrderPromotionWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -164391,7 +164946,7 @@
{
"title": "Properties",
"children": [
- 21036
+ 3747
]
}
],
@@ -164412,14 +164967,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21037,
+ "id": 3748,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21050,
+ "id": 3761,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -164465,7 +165020,7 @@
}
},
{
- "id": 21110,
+ "id": 3821,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -164511,7 +165066,7 @@
}
},
{
- "id": 21111,
+ "id": 3822,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -164557,7 +165112,7 @@
}
},
{
- "id": 21112,
+ "id": 3823,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -164614,7 +165169,7 @@
}
},
{
- "id": 21113,
+ "id": 3824,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -164670,7 +165225,7 @@
}
},
{
- "id": 21078,
+ "id": 3789,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -164727,7 +165282,7 @@
}
},
{
- "id": 21079,
+ "id": 3790,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -164784,7 +165339,7 @@
}
},
{
- "id": 21080,
+ "id": 3791,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -164841,7 +165396,7 @@
}
},
{
- "id": 21055,
+ "id": 3766,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -164898,7 +165453,7 @@
}
},
{
- "id": 21081,
+ "id": 3792,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -164944,7 +165499,7 @@
}
},
{
- "id": 21082,
+ "id": 3793,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -165014,7 +165569,7 @@
}
},
{
- "id": 21083,
+ "id": 3794,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -165084,7 +165639,7 @@
}
},
{
- "id": 21114,
+ "id": 3825,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -165160,7 +165715,7 @@
}
},
{
- "id": 21084,
+ "id": 3795,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -165236,7 +165791,7 @@
}
},
{
- "id": 21115,
+ "id": 3826,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -165306,7 +165861,7 @@
}
},
{
- "id": 21116,
+ "id": 3827,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -165363,7 +165918,7 @@
}
},
{
- "id": 21054,
+ "id": 3765,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -165458,7 +166013,7 @@
}
},
{
- "id": 21109,
+ "id": 3820,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -165533,7 +166088,7 @@
}
},
{
- "id": 21051,
+ "id": 3762,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -165602,7 +166157,7 @@
}
},
{
- "id": 21052,
+ "id": 3763,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -165671,7 +166226,7 @@
}
},
{
- "id": 21053,
+ "id": 3764,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -165746,7 +166301,7 @@
}
},
{
- "id": 21085,
+ "id": 3796,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -165802,7 +166357,7 @@
}
},
{
- "id": 21086,
+ "id": 3797,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -165858,7 +166413,7 @@
}
},
{
- "id": 21087,
+ "id": 3798,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -165914,7 +166469,7 @@
}
},
{
- "id": 21059,
+ "id": 3770,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -165970,7 +166525,7 @@
}
},
{
- "id": 21060,
+ "id": 3771,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -166026,7 +166581,7 @@
}
},
{
- "id": 21061,
+ "id": 3772,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -166082,7 +166637,7 @@
}
},
{
- "id": 21117,
+ "id": 3828,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -166138,7 +166693,7 @@
}
},
{
- "id": 21056,
+ "id": 3767,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -166194,7 +166749,7 @@
}
},
{
- "id": 21057,
+ "id": 3768,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -166250,7 +166805,7 @@
}
},
{
- "id": 21058,
+ "id": 3769,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -166306,7 +166861,7 @@
}
},
{
- "id": 21062,
+ "id": 3773,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -166362,7 +166917,7 @@
}
},
{
- "id": 21063,
+ "id": 3774,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -166418,7 +166973,7 @@
}
},
{
- "id": 21064,
+ "id": 3775,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -166474,7 +167029,7 @@
}
},
{
- "id": 21118,
+ "id": 3829,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -166530,7 +167085,7 @@
}
},
{
- "id": 21065,
+ "id": 3776,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -166586,7 +167141,7 @@
}
},
{
- "id": 21066,
+ "id": 3777,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -166642,7 +167197,7 @@
}
},
{
- "id": 21108,
+ "id": 3819,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -166698,7 +167253,7 @@
}
},
{
- "id": 21088,
+ "id": 3799,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -166754,7 +167309,7 @@
}
},
{
- "id": 21089,
+ "id": 3800,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -166810,7 +167365,7 @@
}
},
{
- "id": 21090,
+ "id": 3801,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -166866,7 +167421,7 @@
}
},
{
- "id": 21091,
+ "id": 3802,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -166922,7 +167477,7 @@
}
},
{
- "id": 21092,
+ "id": 3803,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -166978,7 +167533,7 @@
}
},
{
- "id": 21119,
+ "id": 3830,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -167034,7 +167589,7 @@
}
},
{
- "id": 21093,
+ "id": 3804,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -167090,7 +167645,7 @@
}
},
{
- "id": 21094,
+ "id": 3805,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -167146,7 +167701,7 @@
}
},
{
- "id": 21095,
+ "id": 3806,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -167202,7 +167757,7 @@
}
},
{
- "id": 21038,
+ "id": 3749,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -167258,7 +167813,7 @@
}
},
{
- "id": 21039,
+ "id": 3750,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -167298,14 +167853,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21040,
+ "id": 3751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21041,
+ "id": 3752,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -167337,7 +167892,7 @@
{
"title": "Properties",
"children": [
- 21041
+ 3752
]
}
],
@@ -167377,14 +167932,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21042,
+ "id": 3753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21043,
+ "id": 3754,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -167416,7 +167971,7 @@
{
"title": "Properties",
"children": [
- 21043
+ 3754
]
}
],
@@ -167440,7 +167995,7 @@
}
},
{
- "id": 21044,
+ "id": 3755,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -167480,14 +168035,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21045,
+ "id": 3756,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21046,
+ "id": 3757,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -167519,7 +168074,7 @@
{
"title": "Properties",
"children": [
- 21046
+ 3757
]
}
],
@@ -167559,14 +168114,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21047,
+ "id": 3758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21048,
+ "id": 3759,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -167598,7 +168153,7 @@
{
"title": "Properties",
"children": [
- 21048
+ 3759
]
}
],
@@ -167622,7 +168177,7 @@
}
},
{
- "id": 21049,
+ "id": 3760,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -167672,57 +168227,57 @@
{
"title": "Properties",
"children": [
- 21050,
- 21110,
- 21111,
- 21112,
- 21113,
- 21078,
- 21079,
- 21080,
- 21055,
- 21081,
- 21082,
- 21083,
- 21114,
- 21084,
- 21115,
- 21116,
- 21054,
- 21109,
- 21051,
- 21052,
- 21053,
- 21085,
- 21086,
- 21087,
- 21059,
- 21060,
- 21061,
- 21117,
- 21056,
- 21057,
- 21058,
- 21062,
- 21063,
- 21064,
- 21118,
- 21065,
- 21066,
- 21108,
- 21088,
- 21089,
- 21090,
- 21091,
- 21092,
- 21119,
- 21093,
- 21094,
- 21095,
- 21038,
- 21039,
- 21044,
- 21049
+ 3761,
+ 3821,
+ 3822,
+ 3823,
+ 3824,
+ 3789,
+ 3790,
+ 3791,
+ 3766,
+ 3792,
+ 3793,
+ 3794,
+ 3825,
+ 3795,
+ 3826,
+ 3827,
+ 3765,
+ 3820,
+ 3762,
+ 3763,
+ 3764,
+ 3796,
+ 3797,
+ 3798,
+ 3770,
+ 3771,
+ 3772,
+ 3828,
+ 3767,
+ 3768,
+ 3769,
+ 3773,
+ 3774,
+ 3775,
+ 3829,
+ 3776,
+ 3777,
+ 3819,
+ 3799,
+ 3800,
+ 3801,
+ 3802,
+ 3803,
+ 3830,
+ 3804,
+ 3805,
+ 3806,
+ 3749,
+ 3750,
+ 3755,
+ 3760
]
}
],
@@ -167767,14 +168322,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21120,
+ "id": 3831,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21121,
+ "id": 3832,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -167788,7 +168343,7 @@
],
"signatures": [
{
- "id": 21122,
+ "id": 3833,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -167802,7 +168357,7 @@
],
"parameters": [
{
- "id": 21123,
+ "id": 3834,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -167813,14 +168368,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21124,
+ "id": 3835,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21125,
+ "id": 3836,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -167844,7 +168399,7 @@
{
"title": "Properties",
"children": [
- 21125
+ 3836
]
}
],
@@ -167926,7 +168481,7 @@
{
"title": "Methods",
"children": [
- 21121
+ 3832
]
}
],
@@ -167967,7 +168522,7 @@
}
},
{
- "id": 21126,
+ "id": 3837,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -167990,7 +168545,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21127,
+ "id": 3838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -168004,7 +168559,7 @@
],
"signatures": [
{
- "id": 21128,
+ "id": 3839,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -168032,7 +168587,7 @@
],
"typeParameters": [
{
- "id": 21129,
+ "id": 3840,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -168043,7 +168598,7 @@
}
},
{
- "id": 21130,
+ "id": 3841,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -168056,7 +168611,7 @@
],
"parameters": [
{
- "id": 21131,
+ "id": 3842,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -168089,7 +168644,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -168100,13 +168655,13 @@
},
"trueType": {
"type": "reference",
- "target": 21020,
+ "target": 3731,
"name": "AddDraftOrderPromotionWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -168139,7 +168694,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -168159,7 +168714,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -168179,7 +168734,7 @@
}
},
{
- "id": 21132,
+ "id": 3843,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -168202,7 +168757,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21133,
+ "id": 3844,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -168216,7 +168771,7 @@
],
"signatures": [
{
- "id": 21134,
+ "id": 3845,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -168238,7 +168793,7 @@
}
},
{
- "id": 21135,
+ "id": 3846,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -168261,7 +168816,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21136,
+ "id": 3847,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -168275,7 +168830,7 @@
],
"signatures": [
{
- "id": 21137,
+ "id": 3848,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -168289,7 +168844,7 @@
],
"parameters": [
{
- "id": 21138,
+ "id": 3849,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -168315,7 +168870,7 @@
}
},
{
- "id": 21139,
+ "id": 3850,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -168338,7 +168893,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21140,
+ "id": 3851,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -168349,7 +168904,7 @@
],
"documents": [
{
- "id": 42297,
+ "id": 25238,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -168375,7 +168930,7 @@
"frontmatter": {}
},
{
- "id": 42298,
+ "id": 25239,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -168401,7 +168956,7 @@
"frontmatter": {}
},
{
- "id": 42299,
+ "id": 25240,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -168427,7 +168982,7 @@
"frontmatter": {}
},
{
- "id": 42300,
+ "id": 25241,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -168453,7 +169008,7 @@
"frontmatter": {}
},
{
- "id": 42301,
+ "id": 25242,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -168480,21 +169035,21 @@
}
],
"childrenIncludingDocuments": [
- 21031,
- 21126,
- 21132,
- 21135,
- 21139
+ 3742,
+ 3837,
+ 3843,
+ 3846,
+ 3850
],
"groups": [
{
"title": "Properties",
"children": [
- 21031,
- 21126,
- 21132,
- 21135,
- 21139
+ 3742,
+ 3837,
+ 3843,
+ 3846,
+ 3850
]
}
],
@@ -168503,12 +169058,12 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-promotions.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L65"
}
],
"signatures": [
{
- "id": 21024,
+ "id": 3735,
"name": "addDraftOrderPromotionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -168548,6 +169103,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -168564,12 +169128,12 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-promotions.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-promotions.ts#L65"
}
],
"typeParameters": [
{
- "id": 21025,
+ "id": 3736,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -168580,7 +169144,7 @@
}
},
{
- "id": 21026,
+ "id": 3737,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -168593,7 +169157,7 @@
],
"parameters": [
{
- "id": 21027,
+ "id": 3738,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -168617,14 +169181,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21028,
+ "id": 3739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21029,
+ "id": 3740,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -168647,7 +169211,7 @@
}
},
{
- "id": 21030,
+ "id": 3741,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -168674,8 +169238,8 @@
{
"title": "Properties",
"children": [
- 21029,
- 21030
+ 3740,
+ 3741
]
}
],
@@ -168750,7 +169314,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21020,
+ "target": 3731,
"name": "AddDraftOrderPromotionWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -168765,14 +169329,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -168787,7 +169351,7 @@
]
},
{
- "id": 21141,
+ "id": 3852,
"name": "addDraftOrderShippingMethodsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -168799,7 +169363,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts",
"line": 56,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L56"
}
],
"type": {
@@ -168809,7 +169373,7 @@
"defaultValue": "\"add-draft-order-shipping-methods\""
},
{
- "id": 21143,
+ "id": 3854,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -168827,7 +169391,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L66"
}
],
"type": {
@@ -168836,7 +169400,7 @@
}
},
{
- "id": 21144,
+ "id": 3855,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -168854,7 +169418,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L70"
}
],
"type": {
@@ -168863,7 +169427,7 @@
}
},
{
- "id": 21145,
+ "id": 3856,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -168883,7 +169447,7 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L75"
}
],
"type": {
@@ -168906,7 +169470,7 @@
}
},
{
- "id": 21146,
+ "id": 3857,
"name": "addDraftOrderShippingMethodsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -168946,6 +169510,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -168959,7 +169532,7 @@
},
"children": [
{
- "id": 21154,
+ "id": 3865,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -168982,7 +169555,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21155,
+ "id": 3866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -168996,7 +169569,7 @@
],
"signatures": [
{
- "id": 21156,
+ "id": 3867,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -169024,7 +169597,7 @@
],
"parameters": [
{
- "id": 21157,
+ "id": 3868,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -169040,14 +169613,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21158,
+ "id": 3869,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21159,
+ "id": 3870,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -169072,7 +169645,7 @@
"types": [
{
"type": "reference",
- "target": 21142,
+ "target": 3853,
"name": "AddDraftOrderShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -169085,7 +169658,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21142,
+ "target": 3853,
"name": "AddDraftOrderShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -169101,7 +169674,7 @@
{
"title": "Properties",
"children": [
- 21159
+ 3870
]
}
],
@@ -169122,14 +169695,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21160,
+ "id": 3871,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21173,
+ "id": 3884,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -169175,7 +169748,7 @@
}
},
{
- "id": 21233,
+ "id": 3944,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -169221,7 +169794,7 @@
}
},
{
- "id": 21234,
+ "id": 3945,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -169267,7 +169840,7 @@
}
},
{
- "id": 21235,
+ "id": 3946,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -169324,7 +169897,7 @@
}
},
{
- "id": 21236,
+ "id": 3947,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -169380,7 +169953,7 @@
}
},
{
- "id": 21201,
+ "id": 3912,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -169437,7 +170010,7 @@
}
},
{
- "id": 21202,
+ "id": 3913,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -169494,7 +170067,7 @@
}
},
{
- "id": 21203,
+ "id": 3914,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -169551,7 +170124,7 @@
}
},
{
- "id": 21178,
+ "id": 3889,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -169608,7 +170181,7 @@
}
},
{
- "id": 21204,
+ "id": 3915,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -169654,7 +170227,7 @@
}
},
{
- "id": 21205,
+ "id": 3916,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -169724,7 +170297,7 @@
}
},
{
- "id": 21206,
+ "id": 3917,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -169794,7 +170367,7 @@
}
},
{
- "id": 21237,
+ "id": 3948,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -169870,7 +170443,7 @@
}
},
{
- "id": 21207,
+ "id": 3918,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -169946,7 +170519,7 @@
}
},
{
- "id": 21238,
+ "id": 3949,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -170016,7 +170589,7 @@
}
},
{
- "id": 21239,
+ "id": 3950,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -170073,7 +170646,7 @@
}
},
{
- "id": 21177,
+ "id": 3888,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -170168,7 +170741,7 @@
}
},
{
- "id": 21232,
+ "id": 3943,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -170243,7 +170816,7 @@
}
},
{
- "id": 21174,
+ "id": 3885,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -170312,7 +170885,7 @@
}
},
{
- "id": 21175,
+ "id": 3886,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -170381,7 +170954,7 @@
}
},
{
- "id": 21176,
+ "id": 3887,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -170456,7 +171029,7 @@
}
},
{
- "id": 21208,
+ "id": 3919,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -170512,7 +171085,7 @@
}
},
{
- "id": 21209,
+ "id": 3920,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -170568,7 +171141,7 @@
}
},
{
- "id": 21210,
+ "id": 3921,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -170624,7 +171197,7 @@
}
},
{
- "id": 21182,
+ "id": 3893,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -170680,7 +171253,7 @@
}
},
{
- "id": 21183,
+ "id": 3894,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -170736,7 +171309,7 @@
}
},
{
- "id": 21184,
+ "id": 3895,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -170792,7 +171365,7 @@
}
},
{
- "id": 21240,
+ "id": 3951,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -170848,7 +171421,7 @@
}
},
{
- "id": 21179,
+ "id": 3890,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -170904,7 +171477,7 @@
}
},
{
- "id": 21180,
+ "id": 3891,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -170960,7 +171533,7 @@
}
},
{
- "id": 21181,
+ "id": 3892,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -171016,7 +171589,7 @@
}
},
{
- "id": 21185,
+ "id": 3896,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -171072,7 +171645,7 @@
}
},
{
- "id": 21186,
+ "id": 3897,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -171128,7 +171701,7 @@
}
},
{
- "id": 21187,
+ "id": 3898,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -171184,7 +171757,7 @@
}
},
{
- "id": 21241,
+ "id": 3952,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -171240,7 +171813,7 @@
}
},
{
- "id": 21188,
+ "id": 3899,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -171296,7 +171869,7 @@
}
},
{
- "id": 21189,
+ "id": 3900,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -171352,7 +171925,7 @@
}
},
{
- "id": 21231,
+ "id": 3942,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -171408,7 +171981,7 @@
}
},
{
- "id": 21211,
+ "id": 3922,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -171464,7 +172037,7 @@
}
},
{
- "id": 21212,
+ "id": 3923,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -171520,7 +172093,7 @@
}
},
{
- "id": 21213,
+ "id": 3924,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -171576,7 +172149,7 @@
}
},
{
- "id": 21214,
+ "id": 3925,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -171632,7 +172205,7 @@
}
},
{
- "id": 21215,
+ "id": 3926,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -171688,7 +172261,7 @@
}
},
{
- "id": 21242,
+ "id": 3953,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -171744,7 +172317,7 @@
}
},
{
- "id": 21216,
+ "id": 3927,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -171800,7 +172373,7 @@
}
},
{
- "id": 21217,
+ "id": 3928,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -171856,7 +172429,7 @@
}
},
{
- "id": 21218,
+ "id": 3929,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -171912,7 +172485,7 @@
}
},
{
- "id": 21161,
+ "id": 3872,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -171968,7 +172541,7 @@
}
},
{
- "id": 21162,
+ "id": 3873,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -172008,14 +172581,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21163,
+ "id": 3874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21164,
+ "id": 3875,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -172047,7 +172620,7 @@
{
"title": "Properties",
"children": [
- 21164
+ 3875
]
}
],
@@ -172087,14 +172660,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21165,
+ "id": 3876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21166,
+ "id": 3877,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -172126,7 +172699,7 @@
{
"title": "Properties",
"children": [
- 21166
+ 3877
]
}
],
@@ -172150,7 +172723,7 @@
}
},
{
- "id": 21167,
+ "id": 3878,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -172190,14 +172763,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21168,
+ "id": 3879,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21169,
+ "id": 3880,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -172229,7 +172802,7 @@
{
"title": "Properties",
"children": [
- 21169
+ 3880
]
}
],
@@ -172269,14 +172842,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21170,
+ "id": 3881,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21171,
+ "id": 3882,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -172308,7 +172881,7 @@
{
"title": "Properties",
"children": [
- 21171
+ 3882
]
}
],
@@ -172332,7 +172905,7 @@
}
},
{
- "id": 21172,
+ "id": 3883,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -172382,57 +172955,57 @@
{
"title": "Properties",
"children": [
- 21173,
- 21233,
- 21234,
- 21235,
- 21236,
- 21201,
- 21202,
- 21203,
- 21178,
- 21204,
- 21205,
- 21206,
- 21237,
- 21207,
- 21238,
- 21239,
- 21177,
- 21232,
- 21174,
- 21175,
- 21176,
- 21208,
- 21209,
- 21210,
- 21182,
- 21183,
- 21184,
- 21240,
- 21179,
- 21180,
- 21181,
- 21185,
- 21186,
- 21187,
- 21241,
- 21188,
- 21189,
- 21231,
- 21211,
- 21212,
- 21213,
- 21214,
- 21215,
- 21242,
- 21216,
- 21217,
- 21218,
- 21161,
- 21162,
- 21167,
- 21172
+ 3884,
+ 3944,
+ 3945,
+ 3946,
+ 3947,
+ 3912,
+ 3913,
+ 3914,
+ 3889,
+ 3915,
+ 3916,
+ 3917,
+ 3948,
+ 3918,
+ 3949,
+ 3950,
+ 3888,
+ 3943,
+ 3885,
+ 3886,
+ 3887,
+ 3919,
+ 3920,
+ 3921,
+ 3893,
+ 3894,
+ 3895,
+ 3951,
+ 3890,
+ 3891,
+ 3892,
+ 3896,
+ 3897,
+ 3898,
+ 3952,
+ 3899,
+ 3900,
+ 3942,
+ 3922,
+ 3923,
+ 3924,
+ 3925,
+ 3926,
+ 3953,
+ 3927,
+ 3928,
+ 3929,
+ 3872,
+ 3873,
+ 3878,
+ 3883
]
}
],
@@ -172477,14 +173050,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21243,
+ "id": 3954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21244,
+ "id": 3955,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -172498,7 +173071,7 @@
],
"signatures": [
{
- "id": 21245,
+ "id": 3956,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -172512,7 +173085,7 @@
],
"parameters": [
{
- "id": 21246,
+ "id": 3957,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -172523,14 +173096,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21247,
+ "id": 3958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21248,
+ "id": 3959,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -172554,7 +173127,7 @@
{
"title": "Properties",
"children": [
- 21248
+ 3959
]
}
],
@@ -172636,7 +173209,7 @@
{
"title": "Methods",
"children": [
- 21244
+ 3955
]
}
],
@@ -172677,7 +173250,7 @@
}
},
{
- "id": 21249,
+ "id": 3960,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -172700,7 +173273,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21250,
+ "id": 3961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -172714,7 +173287,7 @@
],
"signatures": [
{
- "id": 21251,
+ "id": 3962,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -172742,7 +173315,7 @@
],
"typeParameters": [
{
- "id": 21252,
+ "id": 3963,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -172753,7 +173326,7 @@
}
},
{
- "id": 21253,
+ "id": 3964,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -172766,7 +173339,7 @@
],
"parameters": [
{
- "id": 21254,
+ "id": 3965,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -172799,7 +173372,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -172810,13 +173383,13 @@
},
"trueType": {
"type": "reference",
- "target": 21142,
+ "target": 3853,
"name": "AddDraftOrderShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -172849,7 +173422,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -172869,7 +173442,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -172889,7 +173462,7 @@
}
},
{
- "id": 21255,
+ "id": 3966,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -172912,7 +173485,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21256,
+ "id": 3967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -172926,7 +173499,7 @@
],
"signatures": [
{
- "id": 21257,
+ "id": 3968,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -172948,7 +173521,7 @@
}
},
{
- "id": 21258,
+ "id": 3969,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -172971,7 +173544,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21259,
+ "id": 3970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -172985,7 +173558,7 @@
],
"signatures": [
{
- "id": 21260,
+ "id": 3971,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -172999,7 +173572,7 @@
],
"parameters": [
{
- "id": 21261,
+ "id": 3972,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -173025,7 +173598,7 @@
}
},
{
- "id": 21262,
+ "id": 3973,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -173048,7 +173621,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21263,
+ "id": 3974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -173059,7 +173632,7 @@
],
"documents": [
{
- "id": 42302,
+ "id": 25243,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -173085,7 +173658,7 @@
"frontmatter": {}
},
{
- "id": 42303,
+ "id": 25244,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -173111,7 +173684,7 @@
"frontmatter": {}
},
{
- "id": 42304,
+ "id": 25245,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -173146,7 +173719,7 @@
"frontmatter": {},
"children": [
{
- "id": 42305,
+ "id": 25246,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -173174,7 +173747,7 @@
]
},
{
- "id": 42306,
+ "id": 25247,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -173200,7 +173773,7 @@
"frontmatter": {}
},
{
- "id": 42307,
+ "id": 25248,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -173226,7 +173799,7 @@
"frontmatter": {}
},
{
- "id": 42308,
+ "id": 25249,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -173253,21 +173826,21 @@
}
],
"childrenIncludingDocuments": [
- 21154,
- 21249,
- 21255,
- 21258,
- 21262
+ 3865,
+ 3960,
+ 3966,
+ 3969,
+ 3973
],
"groups": [
{
"title": "Properties",
"children": [
- 21154,
- 21249,
- 21255,
- 21258,
- 21262
+ 3865,
+ 3960,
+ 3966,
+ 3969,
+ 3973
]
}
],
@@ -173276,12 +173849,12 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L99"
}
],
"signatures": [
{
- "id": 21147,
+ "id": 3858,
"name": "addDraftOrderShippingMethodsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -173321,6 +173894,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -173337,12 +173919,12 @@
"fileName": "core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/add-draft-order-shipping-methods.ts#L99"
}
],
"typeParameters": [
{
- "id": 21148,
+ "id": 3859,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -173353,7 +173935,7 @@
}
},
{
- "id": 21149,
+ "id": 3860,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -173366,7 +173948,7 @@
],
"parameters": [
{
- "id": 21150,
+ "id": 3861,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -173390,14 +173972,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21151,
+ "id": 3862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21152,
+ "id": 3863,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -173420,7 +174002,7 @@
}
},
{
- "id": 21153,
+ "id": 3864,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -173447,8 +174029,8 @@
{
"title": "Properties",
"children": [
- 21152,
- 21153
+ 3863,
+ 3864
]
}
],
@@ -173523,7 +174105,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21142,
+ "target": 3853,
"name": "AddDraftOrderShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -173538,14 +174120,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -173560,7 +174142,7 @@
]
},
{
- "id": 21264,
+ "id": 3975,
"name": "beginDraftOrderEditWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -173572,7 +174154,7 @@
"fileName": "core-flows/src/draft-order/workflows/begin-draft-order-edit.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/begin-draft-order-edit.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/begin-draft-order-edit.ts#L13"
}
],
"type": {
@@ -173582,7 +174164,7 @@
"defaultValue": "\"begin-draft-order-edit\""
},
{
- "id": 21265,
+ "id": 3976,
"name": "beginDraftOrderEditWorkflow",
"variant": "declaration",
"kind": 64,
@@ -173639,12 +174221,21 @@
"text": "locking,order,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 21273,
+ "id": 3984,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -173667,7 +174258,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21274,
+ "id": 3985,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -173681,7 +174272,7 @@
],
"signatures": [
{
- "id": 21275,
+ "id": 3986,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -173709,7 +174300,7 @@
],
"parameters": [
{
- "id": 21276,
+ "id": 3987,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -173725,14 +174316,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21277,
+ "id": 3988,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21278,
+ "id": 3989,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -173792,7 +174383,7 @@
{
"title": "Properties",
"children": [
- 21278
+ 3989
]
}
],
@@ -173813,14 +174404,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21279,
+ "id": 3990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21292,
+ "id": 4003,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -173866,7 +174457,7 @@
}
},
{
- "id": 21352,
+ "id": 4063,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -173912,7 +174503,7 @@
}
},
{
- "id": 21353,
+ "id": 4064,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -173958,7 +174549,7 @@
}
},
{
- "id": 21354,
+ "id": 4065,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -174015,7 +174606,7 @@
}
},
{
- "id": 21355,
+ "id": 4066,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -174071,7 +174662,7 @@
}
},
{
- "id": 21320,
+ "id": 4031,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -174128,7 +174719,7 @@
}
},
{
- "id": 21321,
+ "id": 4032,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -174185,7 +174776,7 @@
}
},
{
- "id": 21322,
+ "id": 4033,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -174242,7 +174833,7 @@
}
},
{
- "id": 21297,
+ "id": 4008,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -174299,7 +174890,7 @@
}
},
{
- "id": 21323,
+ "id": 4034,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -174345,7 +174936,7 @@
}
},
{
- "id": 21324,
+ "id": 4035,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -174415,7 +175006,7 @@
}
},
{
- "id": 21325,
+ "id": 4036,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -174485,7 +175076,7 @@
}
},
{
- "id": 21356,
+ "id": 4067,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -174561,7 +175152,7 @@
}
},
{
- "id": 21326,
+ "id": 4037,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -174637,7 +175228,7 @@
}
},
{
- "id": 21357,
+ "id": 4068,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -174707,7 +175298,7 @@
}
},
{
- "id": 21358,
+ "id": 4069,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -174764,7 +175355,7 @@
}
},
{
- "id": 21296,
+ "id": 4007,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -174859,7 +175450,7 @@
}
},
{
- "id": 21351,
+ "id": 4062,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -174934,7 +175525,7 @@
}
},
{
- "id": 21293,
+ "id": 4004,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -175003,7 +175594,7 @@
}
},
{
- "id": 21294,
+ "id": 4005,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -175072,7 +175663,7 @@
}
},
{
- "id": 21295,
+ "id": 4006,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -175147,7 +175738,7 @@
}
},
{
- "id": 21327,
+ "id": 4038,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -175203,7 +175794,7 @@
}
},
{
- "id": 21328,
+ "id": 4039,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -175259,7 +175850,7 @@
}
},
{
- "id": 21329,
+ "id": 4040,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -175315,7 +175906,7 @@
}
},
{
- "id": 21301,
+ "id": 4012,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -175371,7 +175962,7 @@
}
},
{
- "id": 21302,
+ "id": 4013,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -175427,7 +176018,7 @@
}
},
{
- "id": 21303,
+ "id": 4014,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -175483,7 +176074,7 @@
}
},
{
- "id": 21359,
+ "id": 4070,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -175539,7 +176130,7 @@
}
},
{
- "id": 21298,
+ "id": 4009,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -175595,7 +176186,7 @@
}
},
{
- "id": 21299,
+ "id": 4010,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -175651,7 +176242,7 @@
}
},
{
- "id": 21300,
+ "id": 4011,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -175707,7 +176298,7 @@
}
},
{
- "id": 21304,
+ "id": 4015,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -175763,7 +176354,7 @@
}
},
{
- "id": 21305,
+ "id": 4016,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -175819,7 +176410,7 @@
}
},
{
- "id": 21306,
+ "id": 4017,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -175875,7 +176466,7 @@
}
},
{
- "id": 21360,
+ "id": 4071,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -175931,7 +176522,7 @@
}
},
{
- "id": 21307,
+ "id": 4018,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -175987,7 +176578,7 @@
}
},
{
- "id": 21308,
+ "id": 4019,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -176043,7 +176634,7 @@
}
},
{
- "id": 21350,
+ "id": 4061,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -176099,7 +176690,7 @@
}
},
{
- "id": 21330,
+ "id": 4041,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -176155,7 +176746,7 @@
}
},
{
- "id": 21331,
+ "id": 4042,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -176211,7 +176802,7 @@
}
},
{
- "id": 21332,
+ "id": 4043,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -176267,7 +176858,7 @@
}
},
{
- "id": 21333,
+ "id": 4044,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -176323,7 +176914,7 @@
}
},
{
- "id": 21334,
+ "id": 4045,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -176379,7 +176970,7 @@
}
},
{
- "id": 21361,
+ "id": 4072,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -176435,7 +177026,7 @@
}
},
{
- "id": 21335,
+ "id": 4046,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -176491,7 +177082,7 @@
}
},
{
- "id": 21336,
+ "id": 4047,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -176547,7 +177138,7 @@
}
},
{
- "id": 21337,
+ "id": 4048,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -176603,7 +177194,7 @@
}
},
{
- "id": 21280,
+ "id": 3991,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -176659,7 +177250,7 @@
}
},
{
- "id": 21281,
+ "id": 3992,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -176699,14 +177290,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21282,
+ "id": 3993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21283,
+ "id": 3994,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -176738,7 +177329,7 @@
{
"title": "Properties",
"children": [
- 21283
+ 3994
]
}
],
@@ -176778,14 +177369,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21284,
+ "id": 3995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21285,
+ "id": 3996,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -176817,7 +177408,7 @@
{
"title": "Properties",
"children": [
- 21285
+ 3996
]
}
],
@@ -176841,7 +177432,7 @@
}
},
{
- "id": 21286,
+ "id": 3997,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -176881,14 +177472,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21287,
+ "id": 3998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21288,
+ "id": 3999,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -176920,7 +177511,7 @@
{
"title": "Properties",
"children": [
- 21288
+ 3999
]
}
],
@@ -176960,14 +177551,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21289,
+ "id": 4000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21290,
+ "id": 4001,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -176999,7 +177590,7 @@
{
"title": "Properties",
"children": [
- 21290
+ 4001
]
}
],
@@ -177023,7 +177614,7 @@
}
},
{
- "id": 21291,
+ "id": 4002,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -177073,57 +177664,57 @@
{
"title": "Properties",
"children": [
- 21292,
- 21352,
- 21353,
- 21354,
- 21355,
- 21320,
- 21321,
- 21322,
- 21297,
- 21323,
- 21324,
- 21325,
- 21356,
- 21326,
- 21357,
- 21358,
- 21296,
- 21351,
- 21293,
- 21294,
- 21295,
- 21327,
- 21328,
- 21329,
- 21301,
- 21302,
- 21303,
- 21359,
- 21298,
- 21299,
- 21300,
- 21304,
- 21305,
- 21306,
- 21360,
- 21307,
- 21308,
- 21350,
- 21330,
- 21331,
- 21332,
- 21333,
- 21334,
- 21361,
- 21335,
- 21336,
- 21337,
- 21280,
- 21281,
- 21286,
- 21291
+ 4003,
+ 4063,
+ 4064,
+ 4065,
+ 4066,
+ 4031,
+ 4032,
+ 4033,
+ 4008,
+ 4034,
+ 4035,
+ 4036,
+ 4067,
+ 4037,
+ 4068,
+ 4069,
+ 4007,
+ 4062,
+ 4004,
+ 4005,
+ 4006,
+ 4038,
+ 4039,
+ 4040,
+ 4012,
+ 4013,
+ 4014,
+ 4070,
+ 4009,
+ 4010,
+ 4011,
+ 4015,
+ 4016,
+ 4017,
+ 4071,
+ 4018,
+ 4019,
+ 4061,
+ 4041,
+ 4042,
+ 4043,
+ 4044,
+ 4045,
+ 4072,
+ 4046,
+ 4047,
+ 4048,
+ 3991,
+ 3992,
+ 3997,
+ 4002
]
}
],
@@ -177168,14 +177759,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21362,
+ "id": 4073,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21363,
+ "id": 4074,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -177189,7 +177780,7 @@
],
"signatures": [
{
- "id": 21364,
+ "id": 4075,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -177203,7 +177794,7 @@
],
"parameters": [
{
- "id": 21365,
+ "id": 4076,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -177214,14 +177805,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21366,
+ "id": 4077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21367,
+ "id": 4078,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -177245,7 +177836,7 @@
{
"title": "Properties",
"children": [
- 21367
+ 4078
]
}
],
@@ -177327,7 +177918,7 @@
{
"title": "Methods",
"children": [
- 21363
+ 4074
]
}
],
@@ -177368,7 +177959,7 @@
}
},
{
- "id": 21368,
+ "id": 4079,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -177391,7 +177982,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21369,
+ "id": 4080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -177405,7 +177996,7 @@
],
"signatures": [
{
- "id": 21370,
+ "id": 4081,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -177433,7 +178024,7 @@
],
"typeParameters": [
{
- "id": 21371,
+ "id": 4082,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -177444,7 +178035,7 @@
}
},
{
- "id": 21372,
+ "id": 4083,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -177457,7 +178048,7 @@
],
"parameters": [
{
- "id": 21373,
+ "id": 4084,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -177490,7 +178081,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -177510,7 +178101,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -177543,7 +178134,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -177563,7 +178154,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -177583,7 +178174,7 @@
}
},
{
- "id": 21374,
+ "id": 4085,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -177606,7 +178197,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21375,
+ "id": 4086,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -177620,7 +178211,7 @@
],
"signatures": [
{
- "id": 21376,
+ "id": 4087,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -177642,7 +178233,7 @@
}
},
{
- "id": 21377,
+ "id": 4088,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -177665,7 +178256,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21378,
+ "id": 4089,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -177679,7 +178270,7 @@
],
"signatures": [
{
- "id": 21379,
+ "id": 4090,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -177693,7 +178284,7 @@
],
"parameters": [
{
- "id": 21380,
+ "id": 4091,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -177719,7 +178310,7 @@
}
},
{
- "id": 21381,
+ "id": 4092,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -177742,7 +178333,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21382,
+ "id": 4093,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -177753,7 +178344,7 @@
],
"documents": [
{
- "id": 42309,
+ "id": 25250,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -177779,7 +178370,7 @@
"frontmatter": {}
},
{
- "id": 42310,
+ "id": 25251,
"name": "validateDraftOrderStep",
"variant": "document",
"kind": 8388608,
@@ -177805,7 +178396,7 @@
"frontmatter": {}
},
{
- "id": 42311,
+ "id": 25252,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -177831,7 +178422,7 @@
"frontmatter": {}
},
{
- "id": 42312,
+ "id": 25253,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -177857,7 +178448,7 @@
"frontmatter": {}
},
{
- "id": 42313,
+ "id": 25254,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -177884,21 +178475,21 @@
}
],
"childrenIncludingDocuments": [
- 21273,
- 21368,
- 21374,
- 21377,
- 21381
+ 3984,
+ 4079,
+ 4085,
+ 4088,
+ 4092
],
"groups": [
{
"title": "Properties",
"children": [
- 21273,
- 21368,
- 21374,
- 21377,
- 21381
+ 3984,
+ 4079,
+ 4085,
+ 4088,
+ 4092
]
}
],
@@ -177907,12 +178498,12 @@
"fileName": "core-flows/src/draft-order/workflows/begin-draft-order-edit.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/begin-draft-order-edit.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/begin-draft-order-edit.ts#L36"
}
],
"signatures": [
{
- "id": 21266,
+ "id": 3977,
"name": "beginDraftOrderEditWorkflow",
"variant": "signature",
"kind": 4096,
@@ -177969,6 +178560,15 @@
"text": "locking,order,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
@@ -177977,12 +178577,12 @@
"fileName": "core-flows/src/draft-order/workflows/begin-draft-order-edit.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/begin-draft-order-edit.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/begin-draft-order-edit.ts#L36"
}
],
"typeParameters": [
{
- "id": 21267,
+ "id": 3978,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -177993,7 +178593,7 @@
}
},
{
- "id": 21268,
+ "id": 3979,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -178006,7 +178606,7 @@
],
"parameters": [
{
- "id": 21269,
+ "id": 3980,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -178030,14 +178630,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21270,
+ "id": 3981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21271,
+ "id": 3982,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -178060,7 +178660,7 @@
}
},
{
- "id": 21272,
+ "id": 3983,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -178087,8 +178687,8 @@
{
"title": "Properties",
"children": [
- 21271,
- 21272
+ 3982,
+ 3983
]
}
],
@@ -178181,14 +178781,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -178203,7 +178803,7 @@
]
},
{
- "id": 21383,
+ "id": 4094,
"name": "cancelDraftOrderEditWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -178215,7 +178815,7 @@
"fileName": "core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L22"
}
],
"type": {
@@ -178225,7 +178825,7 @@
"defaultValue": "\"cancel-draft-order-edit\""
},
{
- "id": 21385,
+ "id": 4096,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -178243,7 +178843,7 @@
"fileName": "core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L31"
}
],
"type": {
@@ -178252,7 +178852,7 @@
}
},
{
- "id": 21386,
+ "id": 4097,
"name": "cancelDraftOrderEditWorkflow",
"variant": "declaration",
"kind": 64,
@@ -178291,12 +178891,21 @@
"text": "locking,order,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 21394,
+ "id": 4105,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -178319,7 +178928,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21395,
+ "id": 4106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -178333,7 +178942,7 @@
],
"signatures": [
{
- "id": 21396,
+ "id": 4107,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -178361,7 +178970,7 @@
],
"parameters": [
{
- "id": 21397,
+ "id": 4108,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -178377,14 +178986,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21398,
+ "id": 4109,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21399,
+ "id": 4110,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -178409,7 +179018,7 @@
"types": [
{
"type": "reference",
- "target": 21384,
+ "target": 4095,
"name": "CancelDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -178422,7 +179031,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21384,
+ "target": 4095,
"name": "CancelDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -178438,7 +179047,7 @@
{
"title": "Properties",
"children": [
- 21399
+ 4110
]
}
],
@@ -178474,14 +179083,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21400,
+ "id": 4111,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21401,
+ "id": 4112,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -178495,7 +179104,7 @@
],
"signatures": [
{
- "id": 21402,
+ "id": 4113,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -178509,7 +179118,7 @@
],
"parameters": [
{
- "id": 21403,
+ "id": 4114,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -178520,14 +179129,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21404,
+ "id": 4115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21405,
+ "id": 4116,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -178551,7 +179160,7 @@
{
"title": "Properties",
"children": [
- 21405
+ 4116
]
}
],
@@ -178628,7 +179237,7 @@
{
"title": "Methods",
"children": [
- 21401
+ 4112
]
}
],
@@ -178664,7 +179273,7 @@
}
},
{
- "id": 21406,
+ "id": 4117,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -178687,7 +179296,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21407,
+ "id": 4118,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -178701,7 +179310,7 @@
],
"signatures": [
{
- "id": 21408,
+ "id": 4119,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -178729,7 +179338,7 @@
],
"typeParameters": [
{
- "id": 21409,
+ "id": 4120,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -178740,7 +179349,7 @@
}
},
{
- "id": 21410,
+ "id": 4121,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -178753,7 +179362,7 @@
],
"parameters": [
{
- "id": 21411,
+ "id": 4122,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -178786,7 +179395,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -178797,13 +179406,13 @@
},
"trueType": {
"type": "reference",
- "target": 21384,
+ "target": 4095,
"name": "CancelDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -178836,7 +179445,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -178851,7 +179460,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -178871,7 +179480,7 @@
}
},
{
- "id": 21412,
+ "id": 4123,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -178894,7 +179503,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21413,
+ "id": 4124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -178908,7 +179517,7 @@
],
"signatures": [
{
- "id": 21414,
+ "id": 4125,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -178930,7 +179539,7 @@
}
},
{
- "id": 21415,
+ "id": 4126,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -178953,7 +179562,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21416,
+ "id": 4127,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -178967,7 +179576,7 @@
],
"signatures": [
{
- "id": 21417,
+ "id": 4128,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -178981,7 +179590,7 @@
],
"parameters": [
{
- "id": 21418,
+ "id": 4129,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -179007,7 +179616,7 @@
}
},
{
- "id": 21419,
+ "id": 4130,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -179030,7 +179639,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21420,
+ "id": 4131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -179041,7 +179650,7 @@
],
"documents": [
{
- "id": 42314,
+ "id": 25255,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -179067,7 +179676,7 @@
"frontmatter": {}
},
{
- "id": 42315,
+ "id": 25256,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -179093,7 +179702,7 @@
"frontmatter": {}
},
{
- "id": 42316,
+ "id": 25257,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -179119,7 +179728,7 @@
"frontmatter": {}
},
{
- "id": 42318,
+ "id": 25259,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -179146,21 +179755,21 @@
}
],
"childrenIncludingDocuments": [
- 21394,
- 21406,
- 21412,
- 21415,
- 21419
+ 4105,
+ 4117,
+ 4123,
+ 4126,
+ 4130
],
"groups": [
{
"title": "Properties",
"children": [
- 21394,
- 21406,
- 21412,
- 21415,
- 21419
+ 4105,
+ 4117,
+ 4123,
+ 4126,
+ 4130
]
}
],
@@ -179169,12 +179778,12 @@
"fileName": "core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L53"
}
],
"signatures": [
{
- "id": 21387,
+ "id": 4098,
"name": "cancelDraftOrderEditWorkflow",
"variant": "signature",
"kind": 4096,
@@ -179213,6 +179822,15 @@
"text": "locking,order,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
@@ -179221,12 +179839,12 @@
"fileName": "core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/cancel-draft-order-edit.ts#L53"
}
],
"typeParameters": [
{
- "id": 21388,
+ "id": 4099,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -179237,7 +179855,7 @@
}
},
{
- "id": 21389,
+ "id": 4100,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -179250,7 +179868,7 @@
],
"parameters": [
{
- "id": 21390,
+ "id": 4101,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -179274,14 +179892,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21391,
+ "id": 4102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21392,
+ "id": 4103,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -179304,7 +179922,7 @@
}
},
{
- "id": 21393,
+ "id": 4104,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -179331,8 +179949,8 @@
{
"title": "Properties",
"children": [
- 21392,
- 21393
+ 4103,
+ 4104
]
}
],
@@ -179407,7 +180025,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21384,
+ "target": 4095,
"name": "CancelDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -179417,14 +180035,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -179439,7 +180057,7 @@
]
},
{
- "id": 21421,
+ "id": 4132,
"name": "confirmDraftOrderEditWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -179451,7 +180069,7 @@
"fileName": "core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L10"
}
],
"type": {
@@ -179461,7 +180079,7 @@
"defaultValue": "\"confirm-draft-order-edit\""
},
{
- "id": 21423,
+ "id": 4134,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -179479,7 +180097,7 @@
"fileName": "core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L16"
}
],
"type": {
@@ -179488,7 +180106,7 @@
}
},
{
- "id": 21424,
+ "id": 4135,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -179506,7 +180124,7 @@
"fileName": "core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L20"
}
],
"type": {
@@ -179515,7 +180133,7 @@
}
},
{
- "id": 21425,
+ "id": 4136,
"name": "confirmDraftOrderEditWorkflow",
"variant": "declaration",
"kind": 64,
@@ -179555,6 +180173,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -179568,7 +180195,7 @@
},
"children": [
{
- "id": 21433,
+ "id": 4144,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -179591,7 +180218,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21434,
+ "id": 4145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -179605,7 +180232,7 @@
],
"signatures": [
{
- "id": 21435,
+ "id": 4146,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -179633,7 +180260,7 @@
],
"parameters": [
{
- "id": 21436,
+ "id": 4147,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -179649,14 +180276,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21437,
+ "id": 4148,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21438,
+ "id": 4149,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -179681,7 +180308,7 @@
"types": [
{
"type": "reference",
- "target": 21422,
+ "target": 4133,
"name": "ConfirmDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -179694,7 +180321,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21422,
+ "target": 4133,
"name": "ConfirmDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -179710,7 +180337,7 @@
{
"title": "Properties",
"children": [
- 21438
+ 4149
]
}
],
@@ -179731,14 +180358,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21439,
+ "id": 4150,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21452,
+ "id": 4163,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -179784,7 +180411,7 @@
}
},
{
- "id": 21512,
+ "id": 4223,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -179830,7 +180457,7 @@
}
},
{
- "id": 21513,
+ "id": 4224,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -179876,7 +180503,7 @@
}
},
{
- "id": 21514,
+ "id": 4225,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -179933,7 +180560,7 @@
}
},
{
- "id": 21515,
+ "id": 4226,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -179989,7 +180616,7 @@
}
},
{
- "id": 21480,
+ "id": 4191,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -180046,7 +180673,7 @@
}
},
{
- "id": 21481,
+ "id": 4192,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -180103,7 +180730,7 @@
}
},
{
- "id": 21482,
+ "id": 4193,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -180160,7 +180787,7 @@
}
},
{
- "id": 21457,
+ "id": 4168,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -180217,7 +180844,7 @@
}
},
{
- "id": 21483,
+ "id": 4194,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -180263,7 +180890,7 @@
}
},
{
- "id": 21484,
+ "id": 4195,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -180333,7 +180960,7 @@
}
},
{
- "id": 21485,
+ "id": 4196,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -180403,7 +181030,7 @@
}
},
{
- "id": 21516,
+ "id": 4227,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -180479,7 +181106,7 @@
}
},
{
- "id": 21486,
+ "id": 4197,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -180555,7 +181182,7 @@
}
},
{
- "id": 21517,
+ "id": 4228,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -180625,7 +181252,7 @@
}
},
{
- "id": 21518,
+ "id": 4229,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -180682,7 +181309,7 @@
}
},
{
- "id": 21456,
+ "id": 4167,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -180777,7 +181404,7 @@
}
},
{
- "id": 21511,
+ "id": 4222,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -180852,7 +181479,7 @@
}
},
{
- "id": 21453,
+ "id": 4164,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -180921,7 +181548,7 @@
}
},
{
- "id": 21454,
+ "id": 4165,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -180990,7 +181617,7 @@
}
},
{
- "id": 21455,
+ "id": 4166,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -181065,7 +181692,7 @@
}
},
{
- "id": 21487,
+ "id": 4198,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -181121,7 +181748,7 @@
}
},
{
- "id": 21488,
+ "id": 4199,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -181177,7 +181804,7 @@
}
},
{
- "id": 21489,
+ "id": 4200,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -181233,7 +181860,7 @@
}
},
{
- "id": 21461,
+ "id": 4172,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -181289,7 +181916,7 @@
}
},
{
- "id": 21462,
+ "id": 4173,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -181345,7 +181972,7 @@
}
},
{
- "id": 21463,
+ "id": 4174,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -181401,7 +182028,7 @@
}
},
{
- "id": 21519,
+ "id": 4230,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -181457,7 +182084,7 @@
}
},
{
- "id": 21458,
+ "id": 4169,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -181513,7 +182140,7 @@
}
},
{
- "id": 21459,
+ "id": 4170,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -181569,7 +182196,7 @@
}
},
{
- "id": 21460,
+ "id": 4171,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -181625,7 +182252,7 @@
}
},
{
- "id": 21464,
+ "id": 4175,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -181681,7 +182308,7 @@
}
},
{
- "id": 21465,
+ "id": 4176,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -181737,7 +182364,7 @@
}
},
{
- "id": 21466,
+ "id": 4177,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -181793,7 +182420,7 @@
}
},
{
- "id": 21520,
+ "id": 4231,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -181849,7 +182476,7 @@
}
},
{
- "id": 21467,
+ "id": 4178,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -181905,7 +182532,7 @@
}
},
{
- "id": 21468,
+ "id": 4179,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -181961,7 +182588,7 @@
}
},
{
- "id": 21510,
+ "id": 4221,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -182017,7 +182644,7 @@
}
},
{
- "id": 21490,
+ "id": 4201,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -182073,7 +182700,7 @@
}
},
{
- "id": 21491,
+ "id": 4202,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -182129,7 +182756,7 @@
}
},
{
- "id": 21492,
+ "id": 4203,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -182185,7 +182812,7 @@
}
},
{
- "id": 21493,
+ "id": 4204,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -182241,7 +182868,7 @@
}
},
{
- "id": 21494,
+ "id": 4205,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -182297,7 +182924,7 @@
}
},
{
- "id": 21521,
+ "id": 4232,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -182353,7 +182980,7 @@
}
},
{
- "id": 21495,
+ "id": 4206,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -182409,7 +183036,7 @@
}
},
{
- "id": 21496,
+ "id": 4207,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -182465,7 +183092,7 @@
}
},
{
- "id": 21497,
+ "id": 4208,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -182521,7 +183148,7 @@
}
},
{
- "id": 21440,
+ "id": 4151,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -182577,7 +183204,7 @@
}
},
{
- "id": 21441,
+ "id": 4152,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -182617,14 +183244,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21442,
+ "id": 4153,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21443,
+ "id": 4154,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -182656,7 +183283,7 @@
{
"title": "Properties",
"children": [
- 21443
+ 4154
]
}
],
@@ -182696,14 +183323,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21444,
+ "id": 4155,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21445,
+ "id": 4156,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -182735,7 +183362,7 @@
{
"title": "Properties",
"children": [
- 21445
+ 4156
]
}
],
@@ -182759,7 +183386,7 @@
}
},
{
- "id": 21446,
+ "id": 4157,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -182799,14 +183426,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21447,
+ "id": 4158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21448,
+ "id": 4159,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -182838,7 +183465,7 @@
{
"title": "Properties",
"children": [
- 21448
+ 4159
]
}
],
@@ -182878,14 +183505,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21449,
+ "id": 4160,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21450,
+ "id": 4161,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -182917,7 +183544,7 @@
{
"title": "Properties",
"children": [
- 21450
+ 4161
]
}
],
@@ -182941,7 +183568,7 @@
}
},
{
- "id": 21451,
+ "id": 4162,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -182991,57 +183618,57 @@
{
"title": "Properties",
"children": [
- 21452,
- 21512,
- 21513,
- 21514,
- 21515,
- 21480,
- 21481,
- 21482,
- 21457,
- 21483,
- 21484,
- 21485,
- 21516,
- 21486,
- 21517,
- 21518,
- 21456,
- 21511,
- 21453,
- 21454,
- 21455,
- 21487,
- 21488,
- 21489,
- 21461,
- 21462,
- 21463,
- 21519,
- 21458,
- 21459,
- 21460,
- 21464,
- 21465,
- 21466,
- 21520,
- 21467,
- 21468,
- 21510,
- 21490,
- 21491,
- 21492,
- 21493,
- 21494,
- 21521,
- 21495,
- 21496,
- 21497,
- 21440,
- 21441,
- 21446,
- 21451
+ 4163,
+ 4223,
+ 4224,
+ 4225,
+ 4226,
+ 4191,
+ 4192,
+ 4193,
+ 4168,
+ 4194,
+ 4195,
+ 4196,
+ 4227,
+ 4197,
+ 4228,
+ 4229,
+ 4167,
+ 4222,
+ 4164,
+ 4165,
+ 4166,
+ 4198,
+ 4199,
+ 4200,
+ 4172,
+ 4173,
+ 4174,
+ 4230,
+ 4169,
+ 4170,
+ 4171,
+ 4175,
+ 4176,
+ 4177,
+ 4231,
+ 4178,
+ 4179,
+ 4221,
+ 4201,
+ 4202,
+ 4203,
+ 4204,
+ 4205,
+ 4232,
+ 4206,
+ 4207,
+ 4208,
+ 4151,
+ 4152,
+ 4157,
+ 4162
]
}
],
@@ -183086,14 +183713,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21522,
+ "id": 4233,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21523,
+ "id": 4234,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -183107,7 +183734,7 @@
],
"signatures": [
{
- "id": 21524,
+ "id": 4235,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -183121,7 +183748,7 @@
],
"parameters": [
{
- "id": 21525,
+ "id": 4236,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -183132,14 +183759,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21526,
+ "id": 4237,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21527,
+ "id": 4238,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -183163,7 +183790,7 @@
{
"title": "Properties",
"children": [
- 21527
+ 4238
]
}
],
@@ -183245,7 +183872,7 @@
{
"title": "Methods",
"children": [
- 21523
+ 4234
]
}
],
@@ -183286,7 +183913,7 @@
}
},
{
- "id": 21528,
+ "id": 4239,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -183309,7 +183936,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21529,
+ "id": 4240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -183323,7 +183950,7 @@
],
"signatures": [
{
- "id": 21530,
+ "id": 4241,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -183351,7 +183978,7 @@
],
"typeParameters": [
{
- "id": 21531,
+ "id": 4242,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -183362,7 +183989,7 @@
}
},
{
- "id": 21532,
+ "id": 4243,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -183375,7 +184002,7 @@
],
"parameters": [
{
- "id": 21533,
+ "id": 4244,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -183408,7 +184035,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -183419,13 +184046,13 @@
},
"trueType": {
"type": "reference",
- "target": 21422,
+ "target": 4133,
"name": "ConfirmDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -183458,7 +184085,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -183478,7 +184105,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -183498,7 +184125,7 @@
}
},
{
- "id": 21534,
+ "id": 4245,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -183521,7 +184148,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21535,
+ "id": 4246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -183535,7 +184162,7 @@
],
"signatures": [
{
- "id": 21536,
+ "id": 4247,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -183557,7 +184184,7 @@
}
},
{
- "id": 21537,
+ "id": 4248,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -183580,7 +184207,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21538,
+ "id": 4249,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -183594,7 +184221,7 @@
],
"signatures": [
{
- "id": 21539,
+ "id": 4250,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -183608,7 +184235,7 @@
],
"parameters": [
{
- "id": 21540,
+ "id": 4251,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -183634,7 +184261,7 @@
}
},
{
- "id": 21541,
+ "id": 4252,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -183657,7 +184284,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21542,
+ "id": 4253,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -183668,7 +184295,7 @@
],
"documents": [
{
- "id": 42319,
+ "id": 25260,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -183694,7 +184321,7 @@
"frontmatter": {}
},
{
- "id": 42320,
+ "id": 25261,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -183720,7 +184347,7 @@
"frontmatter": {}
},
{
- "id": 42321,
+ "id": 25262,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -183746,7 +184373,7 @@
"frontmatter": {}
},
{
- "id": 42322,
+ "id": 25263,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -183773,21 +184400,21 @@
}
],
"childrenIncludingDocuments": [
- 21433,
- 21528,
- 21534,
- 21537,
- 21541
+ 4144,
+ 4239,
+ 4245,
+ 4248,
+ 4252
],
"groups": [
{
"title": "Properties",
"children": [
- 21433,
- 21528,
- 21534,
- 21537,
- 21541
+ 4144,
+ 4239,
+ 4245,
+ 4248,
+ 4252
]
}
],
@@ -183796,12 +184423,12 @@
"fileName": "core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L43"
}
],
"signatures": [
{
- "id": 21426,
+ "id": 4137,
"name": "confirmDraftOrderEditWorkflow",
"variant": "signature",
"kind": 4096,
@@ -183841,6 +184468,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -183857,12 +184493,12 @@
"fileName": "core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/confirm-draft-order-edit.ts#L43"
}
],
"typeParameters": [
{
- "id": 21427,
+ "id": 4138,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -183873,7 +184509,7 @@
}
},
{
- "id": 21428,
+ "id": 4139,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -183886,7 +184522,7 @@
],
"parameters": [
{
- "id": 21429,
+ "id": 4140,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -183910,14 +184546,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21430,
+ "id": 4141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21431,
+ "id": 4142,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -183940,7 +184576,7 @@
}
},
{
- "id": 21432,
+ "id": 4143,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -183967,8 +184603,8 @@
{
"title": "Properties",
"children": [
- 21431,
- 21432
+ 4142,
+ 4143
]
}
],
@@ -184043,7 +184679,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21422,
+ "target": 4133,
"name": "ConfirmDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -184058,14 +184694,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -184080,7 +184716,7 @@
]
},
{
- "id": 21543,
+ "id": 4254,
"name": "convertDraftOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -184092,7 +184728,7 @@
"fileName": "core-flows/src/draft-order/workflows/convert-draft-order.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L29"
}
],
"type": {
@@ -184102,7 +184738,7 @@
"defaultValue": "\"convert-draft-order\""
},
{
- "id": 21545,
+ "id": 4256,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -184120,7 +184756,7 @@
"fileName": "core-flows/src/draft-order/workflows/convert-draft-order.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L38"
}
],
"type": {
@@ -184129,7 +184765,7 @@
}
},
{
- "id": 21547,
+ "id": 4258,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -184147,7 +184783,7 @@
"fileName": "core-flows/src/draft-order/workflows/convert-draft-order.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L48"
}
],
"type": {
@@ -184156,7 +184792,7 @@
}
},
{
- "id": 21548,
+ "id": 4259,
"name": "convertDraftOrderStep",
"variant": "declaration",
"kind": 64,
@@ -184182,7 +184818,7 @@
},
"children": [
{
- "id": 21631,
+ "id": 4342,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -184200,7 +184836,7 @@
}
},
{
- "id": 21632,
+ "id": 4343,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -184222,8 +184858,8 @@
{
"title": "Properties",
"children": [
- 21631,
- 21632
+ 4342,
+ 4343
]
}
],
@@ -184232,12 +184868,12 @@
"fileName": "core-flows/src/draft-order/workflows/convert-draft-order.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L54"
}
],
"signatures": [
{
- "id": 21549,
+ "id": 4260,
"name": "convertDraftOrderStep",
"variant": "signature",
"kind": 4096,
@@ -184266,12 +184902,12 @@
"fileName": "core-flows/src/draft-order/workflows/convert-draft-order.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L54"
}
],
"parameters": [
{
- "id": 21550,
+ "id": 4261,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -184281,7 +184917,7 @@
"types": [
{
"type": "reference",
- "target": 21546,
+ "target": 4257,
"name": "ConvertDraftOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -184294,7 +184930,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21546,
+ "target": 4257,
"name": "ConvertDraftOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -184312,14 +184948,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21551,
+ "id": 4262,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21552,
+ "id": 4263,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -184365,7 +185001,7 @@
}
},
{
- "id": 21553,
+ "id": 4264,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -184411,7 +185047,7 @@
}
},
{
- "id": 21554,
+ "id": 4265,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -184457,7 +185093,7 @@
}
},
{
- "id": 21555,
+ "id": 4266,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -184514,7 +185150,7 @@
}
},
{
- "id": 21556,
+ "id": 4267,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -184584,7 +185220,7 @@
}
},
{
- "id": 21557,
+ "id": 4268,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -184640,7 +185276,7 @@
}
},
{
- "id": 21558,
+ "id": 4269,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -184697,7 +185333,7 @@
}
},
{
- "id": 21559,
+ "id": 4270,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -184754,7 +185390,7 @@
}
},
{
- "id": 21560,
+ "id": 4271,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -184811,7 +185447,7 @@
}
},
{
- "id": 21561,
+ "id": 4272,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -184868,7 +185504,7 @@
}
},
{
- "id": 21562,
+ "id": 4273,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -184914,7 +185550,7 @@
}
},
{
- "id": 21563,
+ "id": 4274,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -184984,7 +185620,7 @@
}
},
{
- "id": 21564,
+ "id": 4275,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -185054,7 +185690,7 @@
}
},
{
- "id": 21565,
+ "id": 4276,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -185130,7 +185766,7 @@
}
},
{
- "id": 21566,
+ "id": 4277,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -185206,7 +185842,7 @@
}
},
{
- "id": 21567,
+ "id": 4278,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -185282,7 +185918,7 @@
}
},
{
- "id": 21568,
+ "id": 4279,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -185358,7 +185994,7 @@
}
},
{
- "id": 21569,
+ "id": 4280,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -185428,7 +186064,7 @@
}
},
{
- "id": 21570,
+ "id": 4281,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -185485,7 +186121,7 @@
}
},
{
- "id": 21571,
+ "id": 4282,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -185580,7 +186216,7 @@
}
},
{
- "id": 21572,
+ "id": 4283,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -185655,7 +186291,7 @@
}
},
{
- "id": 21573,
+ "id": 4284,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -185724,7 +186360,7 @@
}
},
{
- "id": 21574,
+ "id": 4285,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -185793,7 +186429,7 @@
}
},
{
- "id": 21575,
+ "id": 4286,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -185868,7 +186504,7 @@
}
},
{
- "id": 21576,
+ "id": 4287,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -185924,7 +186560,7 @@
}
},
{
- "id": 21577,
+ "id": 4288,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -185980,7 +186616,7 @@
}
},
{
- "id": 21578,
+ "id": 4289,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -186036,7 +186672,7 @@
}
},
{
- "id": 21579,
+ "id": 4290,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -186092,7 +186728,7 @@
}
},
{
- "id": 21580,
+ "id": 4291,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -186148,7 +186784,7 @@
}
},
{
- "id": 21581,
+ "id": 4292,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -186204,7 +186840,7 @@
}
},
{
- "id": 21582,
+ "id": 4293,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -186260,7 +186896,7 @@
}
},
{
- "id": 21583,
+ "id": 4294,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -186316,7 +186952,7 @@
}
},
{
- "id": 21584,
+ "id": 4295,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -186372,7 +187008,7 @@
}
},
{
- "id": 21585,
+ "id": 4296,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -186428,7 +187064,7 @@
}
},
{
- "id": 21586,
+ "id": 4297,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -186484,7 +187120,7 @@
}
},
{
- "id": 21587,
+ "id": 4298,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -186540,7 +187176,7 @@
}
},
{
- "id": 21588,
+ "id": 4299,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -186596,7 +187232,7 @@
}
},
{
- "id": 21589,
+ "id": 4300,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -186652,7 +187288,7 @@
}
},
{
- "id": 21590,
+ "id": 4301,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -186708,7 +187344,7 @@
}
},
{
- "id": 21591,
+ "id": 4302,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -186764,7 +187400,7 @@
}
},
{
- "id": 21592,
+ "id": 4303,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -186820,7 +187456,7 @@
}
},
{
- "id": 21593,
+ "id": 4304,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -186876,7 +187512,7 @@
}
},
{
- "id": 21594,
+ "id": 4305,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -186932,7 +187568,7 @@
}
},
{
- "id": 21595,
+ "id": 4306,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -186988,7 +187624,7 @@
}
},
{
- "id": 21596,
+ "id": 4307,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -187044,7 +187680,7 @@
}
},
{
- "id": 21597,
+ "id": 4308,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -187100,7 +187736,7 @@
}
},
{
- "id": 21598,
+ "id": 4309,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -187156,7 +187792,7 @@
}
},
{
- "id": 21599,
+ "id": 4310,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -187212,7 +187848,7 @@
}
},
{
- "id": 21600,
+ "id": 4311,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -187268,7 +187904,7 @@
}
},
{
- "id": 21601,
+ "id": 4312,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -187328,56 +187964,56 @@
{
"title": "Properties",
"children": [
- 21552,
- 21553,
- 21554,
- 21555,
- 21556,
- 21557,
- 21558,
- 21559,
- 21560,
- 21561,
- 21562,
- 21563,
- 21564,
- 21565,
- 21566,
- 21567,
- 21568,
- 21569,
- 21570,
- 21571,
- 21572,
- 21573,
- 21574,
- 21575,
- 21576,
- 21577,
- 21578,
- 21579,
- 21580,
- 21581,
- 21582,
- 21583,
- 21584,
- 21585,
- 21586,
- 21587,
- 21588,
- 21589,
- 21590,
- 21591,
- 21592,
- 21593,
- 21594,
- 21595,
- 21596,
- 21597,
- 21598,
- 21599,
- 21600,
- 21601
+ 4263,
+ 4264,
+ 4265,
+ 4266,
+ 4267,
+ 4268,
+ 4269,
+ 4270,
+ 4271,
+ 4272,
+ 4273,
+ 4274,
+ 4275,
+ 4276,
+ 4277,
+ 4278,
+ 4279,
+ 4280,
+ 4281,
+ 4282,
+ 4283,
+ 4284,
+ 4285,
+ 4286,
+ 4287,
+ 4288,
+ 4289,
+ 4290,
+ 4291,
+ 4292,
+ 4293,
+ 4294,
+ 4295,
+ 4296,
+ 4297,
+ 4298,
+ 4299,
+ 4300,
+ 4301,
+ 4302,
+ 4303,
+ 4304,
+ 4305,
+ 4306,
+ 4307,
+ 4308,
+ 4309,
+ 4310,
+ 4311,
+ 4312
]
}
],
@@ -187422,14 +188058,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21625,
+ "id": 4336,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21626,
+ "id": 4337,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -187443,7 +188079,7 @@
],
"signatures": [
{
- "id": 21627,
+ "id": 4338,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -187457,7 +188093,7 @@
],
"parameters": [
{
- "id": 21628,
+ "id": 4339,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -187468,14 +188104,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21629,
+ "id": 4340,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21630,
+ "id": 4341,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -187499,7 +188135,7 @@
{
"title": "Properties",
"children": [
- 21630
+ 4341
]
}
],
@@ -187581,7 +188217,7 @@
{
"title": "Methods",
"children": [
- 21626
+ 4337
]
}
],
@@ -187620,7 +188256,7 @@
]
},
{
- "id": 21633,
+ "id": 4344,
"name": "convertDraftOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -187668,12 +188304,21 @@
"text": "order.placed -- Emitted when an order is placed, or when a draft order is converted to an\norder. -- ```ts\n{\n id, // The ID of the order\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 21641,
+ "id": 4352,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -187696,7 +188341,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21642,
+ "id": 4353,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -187710,7 +188355,7 @@
],
"signatures": [
{
- "id": 21643,
+ "id": 4354,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -187738,7 +188383,7 @@
],
"parameters": [
{
- "id": 21644,
+ "id": 4355,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -187754,14 +188399,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21645,
+ "id": 4356,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21646,
+ "id": 4357,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -187786,7 +188431,7 @@
"types": [
{
"type": "reference",
- "target": 21544,
+ "target": 4255,
"name": "ConvertDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -187799,7 +188444,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21544,
+ "target": 4255,
"name": "ConvertDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -187815,7 +188460,7 @@
{
"title": "Properties",
"children": [
- 21646
+ 4357
]
}
],
@@ -187836,14 +188481,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21647,
+ "id": 4358,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21648,
+ "id": 4359,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -187889,7 +188534,7 @@
}
},
{
- "id": 21649,
+ "id": 4360,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -187935,7 +188580,7 @@
}
},
{
- "id": 21650,
+ "id": 4361,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -187981,7 +188626,7 @@
}
},
{
- "id": 21651,
+ "id": 4362,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -188038,7 +188683,7 @@
}
},
{
- "id": 21652,
+ "id": 4363,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -188108,7 +188753,7 @@
}
},
{
- "id": 21653,
+ "id": 4364,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -188164,7 +188809,7 @@
}
},
{
- "id": 21654,
+ "id": 4365,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -188221,7 +188866,7 @@
}
},
{
- "id": 21655,
+ "id": 4366,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -188278,7 +188923,7 @@
}
},
{
- "id": 21656,
+ "id": 4367,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -188335,7 +188980,7 @@
}
},
{
- "id": 21657,
+ "id": 4368,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -188392,7 +189037,7 @@
}
},
{
- "id": 21658,
+ "id": 4369,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -188438,7 +189083,7 @@
}
},
{
- "id": 21659,
+ "id": 4370,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -188508,7 +189153,7 @@
}
},
{
- "id": 21660,
+ "id": 4371,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -188578,7 +189223,7 @@
}
},
{
- "id": 21661,
+ "id": 4372,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -188654,7 +189299,7 @@
}
},
{
- "id": 21662,
+ "id": 4373,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -188730,7 +189375,7 @@
}
},
{
- "id": 21663,
+ "id": 4374,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -188806,7 +189451,7 @@
}
},
{
- "id": 21664,
+ "id": 4375,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -188882,7 +189527,7 @@
}
},
{
- "id": 21665,
+ "id": 4376,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -188952,7 +189597,7 @@
}
},
{
- "id": 21666,
+ "id": 4377,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -189009,7 +189654,7 @@
}
},
{
- "id": 21667,
+ "id": 4378,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -189104,7 +189749,7 @@
}
},
{
- "id": 21668,
+ "id": 4379,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -189179,7 +189824,7 @@
}
},
{
- "id": 21669,
+ "id": 4380,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -189248,7 +189893,7 @@
}
},
{
- "id": 21670,
+ "id": 4381,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -189317,7 +189962,7 @@
}
},
{
- "id": 21671,
+ "id": 4382,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -189392,7 +190037,7 @@
}
},
{
- "id": 21672,
+ "id": 4383,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -189448,7 +190093,7 @@
}
},
{
- "id": 21673,
+ "id": 4384,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -189504,7 +190149,7 @@
}
},
{
- "id": 21674,
+ "id": 4385,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -189560,7 +190205,7 @@
}
},
{
- "id": 21675,
+ "id": 4386,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -189616,7 +190261,7 @@
}
},
{
- "id": 21676,
+ "id": 4387,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -189672,7 +190317,7 @@
}
},
{
- "id": 21677,
+ "id": 4388,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -189728,7 +190373,7 @@
}
},
{
- "id": 21678,
+ "id": 4389,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -189784,7 +190429,7 @@
}
},
{
- "id": 21679,
+ "id": 4390,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -189840,7 +190485,7 @@
}
},
{
- "id": 21680,
+ "id": 4391,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -189896,7 +190541,7 @@
}
},
{
- "id": 21681,
+ "id": 4392,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -189952,7 +190597,7 @@
}
},
{
- "id": 21682,
+ "id": 4393,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -190008,7 +190653,7 @@
}
},
{
- "id": 21683,
+ "id": 4394,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -190064,7 +190709,7 @@
}
},
{
- "id": 21684,
+ "id": 4395,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -190120,7 +190765,7 @@
}
},
{
- "id": 21685,
+ "id": 4396,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -190176,7 +190821,7 @@
}
},
{
- "id": 21686,
+ "id": 4397,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -190232,7 +190877,7 @@
}
},
{
- "id": 21687,
+ "id": 4398,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -190288,7 +190933,7 @@
}
},
{
- "id": 21688,
+ "id": 4399,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -190344,7 +190989,7 @@
}
},
{
- "id": 21689,
+ "id": 4400,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -190400,7 +191045,7 @@
}
},
{
- "id": 21690,
+ "id": 4401,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -190456,7 +191101,7 @@
}
},
{
- "id": 21691,
+ "id": 4402,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -190512,7 +191157,7 @@
}
},
{
- "id": 21692,
+ "id": 4403,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -190568,7 +191213,7 @@
}
},
{
- "id": 21693,
+ "id": 4404,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -190624,7 +191269,7 @@
}
},
{
- "id": 21694,
+ "id": 4405,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -190680,7 +191325,7 @@
}
},
{
- "id": 21695,
+ "id": 4406,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -190736,7 +191381,7 @@
}
},
{
- "id": 21696,
+ "id": 4407,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -190792,7 +191437,7 @@
}
},
{
- "id": 21697,
+ "id": 4408,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -190852,56 +191497,56 @@
{
"title": "Properties",
"children": [
- 21648,
- 21649,
- 21650,
- 21651,
- 21652,
- 21653,
- 21654,
- 21655,
- 21656,
- 21657,
- 21658,
- 21659,
- 21660,
- 21661,
- 21662,
- 21663,
- 21664,
- 21665,
- 21666,
- 21667,
- 21668,
- 21669,
- 21670,
- 21671,
- 21672,
- 21673,
- 21674,
- 21675,
- 21676,
- 21677,
- 21678,
- 21679,
- 21680,
- 21681,
- 21682,
- 21683,
- 21684,
- 21685,
- 21686,
- 21687,
- 21688,
- 21689,
- 21690,
- 21691,
- 21692,
- 21693,
- 21694,
- 21695,
- 21696,
- 21697
+ 4359,
+ 4360,
+ 4361,
+ 4362,
+ 4363,
+ 4364,
+ 4365,
+ 4366,
+ 4367,
+ 4368,
+ 4369,
+ 4370,
+ 4371,
+ 4372,
+ 4373,
+ 4374,
+ 4375,
+ 4376,
+ 4377,
+ 4378,
+ 4379,
+ 4380,
+ 4381,
+ 4382,
+ 4383,
+ 4384,
+ 4385,
+ 4386,
+ 4387,
+ 4388,
+ 4389,
+ 4390,
+ 4391,
+ 4392,
+ 4393,
+ 4394,
+ 4395,
+ 4396,
+ 4397,
+ 4398,
+ 4399,
+ 4400,
+ 4401,
+ 4402,
+ 4403,
+ 4404,
+ 4405,
+ 4406,
+ 4407,
+ 4408
]
}
],
@@ -190946,14 +191591,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21721,
+ "id": 4432,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21722,
+ "id": 4433,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -190967,7 +191612,7 @@
],
"signatures": [
{
- "id": 21723,
+ "id": 4434,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -190981,7 +191626,7 @@
],
"parameters": [
{
- "id": 21724,
+ "id": 4435,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -190992,14 +191637,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21725,
+ "id": 4436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21726,
+ "id": 4437,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -191023,7 +191668,7 @@
{
"title": "Properties",
"children": [
- 21726
+ 4437
]
}
],
@@ -191105,7 +191750,7 @@
{
"title": "Methods",
"children": [
- 21722
+ 4433
]
}
],
@@ -191146,7 +191791,7 @@
}
},
{
- "id": 21727,
+ "id": 4438,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -191169,7 +191814,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21728,
+ "id": 4439,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -191183,7 +191828,7 @@
],
"signatures": [
{
- "id": 21729,
+ "id": 4440,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -191211,7 +191856,7 @@
],
"typeParameters": [
{
- "id": 21730,
+ "id": 4441,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -191222,7 +191867,7 @@
}
},
{
- "id": 21731,
+ "id": 4442,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -191235,7 +191880,7 @@
],
"parameters": [
{
- "id": 21732,
+ "id": 4443,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -191268,7 +191913,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -191279,13 +191924,13 @@
},
"trueType": {
"type": "reference",
- "target": 21544,
+ "target": 4255,
"name": "ConvertDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -191318,7 +191963,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -191338,7 +191983,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -191358,7 +192003,7 @@
}
},
{
- "id": 21733,
+ "id": 4444,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -191381,7 +192026,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21734,
+ "id": 4445,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -191395,7 +192040,7 @@
],
"signatures": [
{
- "id": 21735,
+ "id": 4446,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -191417,7 +192062,7 @@
}
},
{
- "id": 21736,
+ "id": 4447,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -191440,7 +192085,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21737,
+ "id": 4448,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -191454,7 +192099,7 @@
],
"signatures": [
{
- "id": 21738,
+ "id": 4449,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -191468,7 +192113,7 @@
],
"parameters": [
{
- "id": 21739,
+ "id": 4450,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -191494,7 +192139,7 @@
}
},
{
- "id": 21740,
+ "id": 4451,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -191517,7 +192162,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21741,
+ "id": 4452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -191528,7 +192173,7 @@
],
"documents": [
{
- "id": 42323,
+ "id": 25264,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -191554,7 +192199,7 @@
"frontmatter": {}
},
{
- "id": 42324,
+ "id": 25265,
"name": "validateDraftOrderStep",
"variant": "document",
"kind": 8388608,
@@ -191580,7 +192225,7 @@
"frontmatter": {}
},
{
- "id": 42325,
+ "id": 25266,
"name": "reserveInventoryStep",
"variant": "document",
"kind": 8388608,
@@ -191606,7 +192251,7 @@
"frontmatter": {}
},
{
- "id": 42326,
+ "id": 25267,
"name": "convertDraftOrderStep",
"variant": "document",
"kind": 8388608,
@@ -191632,7 +192277,7 @@
"frontmatter": {}
},
{
- "id": 42327,
+ "id": 25268,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -191658,7 +192303,7 @@
"frontmatter": {}
},
{
- "id": 42328,
+ "id": 25269,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -191685,21 +192330,21 @@
}
],
"childrenIncludingDocuments": [
- 21641,
- 21727,
- 21733,
- 21736,
- 21740
+ 4352,
+ 4438,
+ 4444,
+ 4447,
+ 4451
],
"groups": [
{
"title": "Properties",
"children": [
- 21641,
- 21727,
- 21733,
- 21736,
- 21740
+ 4352,
+ 4438,
+ 4444,
+ 4447,
+ 4451
]
}
],
@@ -191708,12 +192353,12 @@
"fileName": "core-flows/src/draft-order/workflows/convert-draft-order.ts",
"line": 109,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L109"
}
],
"signatures": [
{
- "id": 21634,
+ "id": 4345,
"name": "convertDraftOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -191761,6 +192406,15 @@
"text": "order.placed -- Emitted when an order is placed, or when a draft order is converted to an\norder. -- ```ts\n{\n id, // The ID of the order\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
@@ -191769,12 +192423,12 @@
"fileName": "core-flows/src/draft-order/workflows/convert-draft-order.ts",
"line": 109,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/convert-draft-order.ts#L109"
}
],
"typeParameters": [
{
- "id": 21635,
+ "id": 4346,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -191785,7 +192439,7 @@
}
},
{
- "id": 21636,
+ "id": 4347,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -191798,7 +192452,7 @@
],
"parameters": [
{
- "id": 21637,
+ "id": 4348,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -191822,14 +192476,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21638,
+ "id": 4349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21639,
+ "id": 4350,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -191852,7 +192506,7 @@
}
},
{
- "id": 21640,
+ "id": 4351,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -191879,8 +192533,8 @@
{
"title": "Properties",
"children": [
- 21639,
- 21640
+ 4350,
+ 4351
]
}
],
@@ -191955,7 +192609,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21544,
+ "target": 4255,
"name": "ConvertDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -191970,14 +192624,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -191992,7 +192646,7 @@
]
},
{
- "id": 21742,
+ "id": 4453,
"name": "computeDraftOrderAdjustmentsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -192004,7 +192658,7 @@
"fileName": "core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L27"
}
],
"type": {
@@ -192014,7 +192668,7 @@
"defaultValue": "\"compute-draft-order-adjustments\""
},
{
- "id": 21744,
+ "id": 4455,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -192032,7 +192686,7 @@
"fileName": "core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L37"
}
],
"type": {
@@ -192041,7 +192695,7 @@
}
},
{
- "id": 21745,
+ "id": 4456,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -192080,12 +192734,21 @@
"text": "locking,order,promotion,query,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 21753,
+ "id": 4464,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -192108,7 +192771,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21754,
+ "id": 4465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -192122,7 +192785,7 @@
],
"signatures": [
{
- "id": 21755,
+ "id": 4466,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -192150,7 +192813,7 @@
],
"parameters": [
{
- "id": 21756,
+ "id": 4467,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -192166,14 +192829,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21757,
+ "id": 4468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21758,
+ "id": 4469,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -192198,7 +192861,7 @@
"types": [
{
"type": "reference",
- "target": 21743,
+ "target": 4454,
"name": "ComputeDraftOrderAdjustmentsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -192211,7 +192874,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21743,
+ "target": 4454,
"name": "ComputeDraftOrderAdjustmentsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -192227,7 +192890,7 @@
{
"title": "Properties",
"children": [
- 21758
+ 4469
]
}
],
@@ -192252,7 +192915,7 @@
}
},
{
- "id": 21759,
+ "id": 4470,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -192275,7 +192938,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21760,
+ "id": 4471,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -192289,7 +192952,7 @@
],
"signatures": [
{
- "id": 21761,
+ "id": 4472,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -192317,7 +192980,7 @@
],
"typeParameters": [
{
- "id": 21762,
+ "id": 4473,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -192328,7 +192991,7 @@
}
},
{
- "id": 21763,
+ "id": 4474,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -192341,7 +193004,7 @@
],
"parameters": [
{
- "id": 21764,
+ "id": 4475,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -192374,7 +193037,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -192385,13 +193048,13 @@
},
"trueType": {
"type": "reference",
- "target": 21743,
+ "target": 4454,
"name": "ComputeDraftOrderAdjustmentsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -192424,7 +193087,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -192439,7 +193102,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -192459,7 +193122,7 @@
}
},
{
- "id": 21765,
+ "id": 4476,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -192482,7 +193145,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21766,
+ "id": 4477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -192496,7 +193159,7 @@
],
"signatures": [
{
- "id": 21767,
+ "id": 4478,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -192518,7 +193181,7 @@
}
},
{
- "id": 21768,
+ "id": 4479,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -192541,7 +193204,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21769,
+ "id": 4480,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -192555,7 +193218,7 @@
],
"signatures": [
{
- "id": 21770,
+ "id": 4481,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -192569,7 +193232,7 @@
],
"parameters": [
{
- "id": 21771,
+ "id": 4482,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -192595,7 +193258,7 @@
}
},
{
- "id": 21772,
+ "id": 4483,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -192618,7 +193281,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21773,
+ "id": 4484,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -192629,7 +193292,7 @@
],
"documents": [
{
- "id": 42329,
+ "id": 25270,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -192655,7 +193318,7 @@
"frontmatter": {}
},
{
- "id": 42330,
+ "id": 25271,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -192690,7 +193353,7 @@
"frontmatter": {},
"children": [
{
- "id": 42331,
+ "id": 25272,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -192718,7 +193381,7 @@
]
},
{
- "id": 42332,
+ "id": 25273,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -192744,7 +193407,7 @@
"frontmatter": {}
},
{
- "id": 42334,
+ "id": 25275,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -192779,7 +193442,7 @@
"frontmatter": {},
"children": [
{
- "id": 42335,
+ "id": 25276,
"name": "getActionsToComputeFromPromotionsStep",
"variant": "document",
"kind": 8388608,
@@ -192805,7 +193468,7 @@
"frontmatter": {}
},
{
- "id": 42336,
+ "id": 25277,
"name": "prepareAdjustmentsFromPromotionActionsStep",
"variant": "document",
"kind": 8388608,
@@ -192833,7 +193496,7 @@
]
},
{
- "id": 42337,
+ "id": 25278,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -192860,21 +193523,21 @@
}
],
"childrenIncludingDocuments": [
- 21753,
- 21759,
- 21765,
- 21768,
- 21772
+ 4464,
+ 4470,
+ 4476,
+ 4479,
+ 4483
],
"groups": [
{
"title": "Properties",
"children": [
- 21753,
- 21759,
- 21765,
- 21768,
- 21772
+ 4464,
+ 4470,
+ 4476,
+ 4479,
+ 4483
]
}
],
@@ -192883,12 +193546,12 @@
"fileName": "core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts",
"line": 61,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L61"
}
],
"signatures": [
{
- "id": 21746,
+ "id": 4457,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -192927,6 +193590,15 @@
"text": "locking,order,promotion,query,workflow"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
@@ -192935,12 +193607,12 @@
"fileName": "core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts",
"line": 61,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/compute-draft-order-adjustments.ts#L61"
}
],
"typeParameters": [
{
- "id": 21747,
+ "id": 4458,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -192951,7 +193623,7 @@
}
},
{
- "id": 21748,
+ "id": 4459,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -192964,7 +193636,7 @@
],
"parameters": [
{
- "id": 21749,
+ "id": 4460,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -192988,14 +193660,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21750,
+ "id": 4461,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21751,
+ "id": 4462,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -193018,7 +193690,7 @@
}
},
{
- "id": 21752,
+ "id": 4463,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -193045,8 +193717,8 @@
{
"title": "Properties",
"children": [
- 21751,
- 21752
+ 4462,
+ 4463
]
}
],
@@ -193121,7 +193793,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 21743,
+ "target": 4454,
"name": "ComputeDraftOrderAdjustmentsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -193131,14 +193803,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -193153,7 +193825,7 @@
]
},
{
- "id": 21774,
+ "id": 4485,
"name": "removeDraftOrderActionItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -193165,7 +193837,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts#L26"
}
],
"type": {
@@ -193175,7 +193847,7 @@
"defaultValue": "\"remove-draft-order-action-item\""
},
{
- "id": 21775,
+ "id": 4486,
"name": "removeDraftOrderActionItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -193215,6 +193887,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -193228,7 +193909,7 @@
},
"children": [
{
- "id": 21783,
+ "id": 4494,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -193251,7 +193932,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21784,
+ "id": 4495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -193265,7 +193946,7 @@
],
"signatures": [
{
- "id": 21785,
+ "id": 4496,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -193293,7 +193974,7 @@
],
"parameters": [
{
- "id": 21786,
+ "id": 4497,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -193309,14 +193990,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21787,
+ "id": 4498,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21788,
+ "id": 4499,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -193376,7 +194057,7 @@
{
"title": "Properties",
"children": [
- 21788
+ 4499
]
}
],
@@ -193397,14 +194078,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21789,
+ "id": 4500,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21802,
+ "id": 4513,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -193450,7 +194131,7 @@
}
},
{
- "id": 21862,
+ "id": 4573,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -193496,7 +194177,7 @@
}
},
{
- "id": 21863,
+ "id": 4574,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -193542,7 +194223,7 @@
}
},
{
- "id": 21864,
+ "id": 4575,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -193599,7 +194280,7 @@
}
},
{
- "id": 21865,
+ "id": 4576,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -193655,7 +194336,7 @@
}
},
{
- "id": 21830,
+ "id": 4541,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -193712,7 +194393,7 @@
}
},
{
- "id": 21831,
+ "id": 4542,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -193769,7 +194450,7 @@
}
},
{
- "id": 21832,
+ "id": 4543,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -193826,7 +194507,7 @@
}
},
{
- "id": 21807,
+ "id": 4518,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -193883,7 +194564,7 @@
}
},
{
- "id": 21833,
+ "id": 4544,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -193929,7 +194610,7 @@
}
},
{
- "id": 21834,
+ "id": 4545,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -193999,7 +194680,7 @@
}
},
{
- "id": 21835,
+ "id": 4546,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -194069,7 +194750,7 @@
}
},
{
- "id": 21866,
+ "id": 4577,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -194145,7 +194826,7 @@
}
},
{
- "id": 21836,
+ "id": 4547,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -194221,7 +194902,7 @@
}
},
{
- "id": 21867,
+ "id": 4578,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -194291,7 +194972,7 @@
}
},
{
- "id": 21868,
+ "id": 4579,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -194348,7 +195029,7 @@
}
},
{
- "id": 21806,
+ "id": 4517,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -194443,7 +195124,7 @@
}
},
{
- "id": 21861,
+ "id": 4572,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -194518,7 +195199,7 @@
}
},
{
- "id": 21803,
+ "id": 4514,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -194587,7 +195268,7 @@
}
},
{
- "id": 21804,
+ "id": 4515,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -194656,7 +195337,7 @@
}
},
{
- "id": 21805,
+ "id": 4516,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -194731,7 +195412,7 @@
}
},
{
- "id": 21837,
+ "id": 4548,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -194787,7 +195468,7 @@
}
},
{
- "id": 21838,
+ "id": 4549,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -194843,7 +195524,7 @@
}
},
{
- "id": 21839,
+ "id": 4550,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -194899,7 +195580,7 @@
}
},
{
- "id": 21811,
+ "id": 4522,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -194955,7 +195636,7 @@
}
},
{
- "id": 21812,
+ "id": 4523,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -195011,7 +195692,7 @@
}
},
{
- "id": 21813,
+ "id": 4524,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -195067,7 +195748,7 @@
}
},
{
- "id": 21869,
+ "id": 4580,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -195123,7 +195804,7 @@
}
},
{
- "id": 21808,
+ "id": 4519,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -195179,7 +195860,7 @@
}
},
{
- "id": 21809,
+ "id": 4520,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -195235,7 +195916,7 @@
}
},
{
- "id": 21810,
+ "id": 4521,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -195291,7 +195972,7 @@
}
},
{
- "id": 21814,
+ "id": 4525,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -195347,7 +196028,7 @@
}
},
{
- "id": 21815,
+ "id": 4526,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -195403,7 +196084,7 @@
}
},
{
- "id": 21816,
+ "id": 4527,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -195459,7 +196140,7 @@
}
},
{
- "id": 21870,
+ "id": 4581,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -195515,7 +196196,7 @@
}
},
{
- "id": 21817,
+ "id": 4528,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -195571,7 +196252,7 @@
}
},
{
- "id": 21818,
+ "id": 4529,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -195627,7 +196308,7 @@
}
},
{
- "id": 21860,
+ "id": 4571,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -195683,7 +196364,7 @@
}
},
{
- "id": 21840,
+ "id": 4551,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -195739,7 +196420,7 @@
}
},
{
- "id": 21841,
+ "id": 4552,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -195795,7 +196476,7 @@
}
},
{
- "id": 21842,
+ "id": 4553,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -195851,7 +196532,7 @@
}
},
{
- "id": 21843,
+ "id": 4554,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -195907,7 +196588,7 @@
}
},
{
- "id": 21844,
+ "id": 4555,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -195963,7 +196644,7 @@
}
},
{
- "id": 21871,
+ "id": 4582,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -196019,7 +196700,7 @@
}
},
{
- "id": 21845,
+ "id": 4556,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -196075,7 +196756,7 @@
}
},
{
- "id": 21846,
+ "id": 4557,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -196131,7 +196812,7 @@
}
},
{
- "id": 21847,
+ "id": 4558,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -196187,7 +196868,7 @@
}
},
{
- "id": 21790,
+ "id": 4501,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -196243,7 +196924,7 @@
}
},
{
- "id": 21791,
+ "id": 4502,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -196283,14 +196964,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21792,
+ "id": 4503,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21793,
+ "id": 4504,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -196322,7 +197003,7 @@
{
"title": "Properties",
"children": [
- 21793
+ 4504
]
}
],
@@ -196362,14 +197043,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21794,
+ "id": 4505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21795,
+ "id": 4506,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -196401,7 +197082,7 @@
{
"title": "Properties",
"children": [
- 21795
+ 4506
]
}
],
@@ -196425,7 +197106,7 @@
}
},
{
- "id": 21796,
+ "id": 4507,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -196465,14 +197146,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21797,
+ "id": 4508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21798,
+ "id": 4509,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -196504,7 +197185,7 @@
{
"title": "Properties",
"children": [
- 21798
+ 4509
]
}
],
@@ -196544,14 +197225,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21799,
+ "id": 4510,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21800,
+ "id": 4511,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -196583,7 +197264,7 @@
{
"title": "Properties",
"children": [
- 21800
+ 4511
]
}
],
@@ -196607,7 +197288,7 @@
}
},
{
- "id": 21801,
+ "id": 4512,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -196657,57 +197338,57 @@
{
"title": "Properties",
"children": [
- 21802,
- 21862,
- 21863,
- 21864,
- 21865,
- 21830,
- 21831,
- 21832,
- 21807,
- 21833,
- 21834,
- 21835,
- 21866,
- 21836,
- 21867,
- 21868,
- 21806,
- 21861,
- 21803,
- 21804,
- 21805,
- 21837,
- 21838,
- 21839,
- 21811,
- 21812,
- 21813,
- 21869,
- 21808,
- 21809,
- 21810,
- 21814,
- 21815,
- 21816,
- 21870,
- 21817,
- 21818,
- 21860,
- 21840,
- 21841,
- 21842,
- 21843,
- 21844,
- 21871,
- 21845,
- 21846,
- 21847,
- 21790,
- 21791,
- 21796,
- 21801
+ 4513,
+ 4573,
+ 4574,
+ 4575,
+ 4576,
+ 4541,
+ 4542,
+ 4543,
+ 4518,
+ 4544,
+ 4545,
+ 4546,
+ 4577,
+ 4547,
+ 4578,
+ 4579,
+ 4517,
+ 4572,
+ 4514,
+ 4515,
+ 4516,
+ 4548,
+ 4549,
+ 4550,
+ 4522,
+ 4523,
+ 4524,
+ 4580,
+ 4519,
+ 4520,
+ 4521,
+ 4525,
+ 4526,
+ 4527,
+ 4581,
+ 4528,
+ 4529,
+ 4571,
+ 4551,
+ 4552,
+ 4553,
+ 4554,
+ 4555,
+ 4582,
+ 4556,
+ 4557,
+ 4558,
+ 4501,
+ 4502,
+ 4507,
+ 4512
]
}
],
@@ -196752,14 +197433,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21872,
+ "id": 4583,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21873,
+ "id": 4584,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -196773,7 +197454,7 @@
],
"signatures": [
{
- "id": 21874,
+ "id": 4585,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -196787,7 +197468,7 @@
],
"parameters": [
{
- "id": 21875,
+ "id": 4586,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -196798,14 +197479,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21876,
+ "id": 4587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21877,
+ "id": 4588,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -196829,7 +197510,7 @@
{
"title": "Properties",
"children": [
- 21877
+ 4588
]
}
],
@@ -196911,7 +197592,7 @@
{
"title": "Methods",
"children": [
- 21873
+ 4584
]
}
],
@@ -196952,7 +197633,7 @@
}
},
{
- "id": 21878,
+ "id": 4589,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -196975,7 +197656,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21879,
+ "id": 4590,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -196989,7 +197670,7 @@
],
"signatures": [
{
- "id": 21880,
+ "id": 4591,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -197017,7 +197698,7 @@
],
"typeParameters": [
{
- "id": 21881,
+ "id": 4592,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -197028,7 +197709,7 @@
}
},
{
- "id": 21882,
+ "id": 4593,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -197041,7 +197722,7 @@
],
"parameters": [
{
- "id": 21883,
+ "id": 4594,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -197074,7 +197755,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -197094,7 +197775,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -197127,7 +197808,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -197147,7 +197828,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -197167,7 +197848,7 @@
}
},
{
- "id": 21884,
+ "id": 4595,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -197190,7 +197871,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21885,
+ "id": 4596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -197204,7 +197885,7 @@
],
"signatures": [
{
- "id": 21886,
+ "id": 4597,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -197226,7 +197907,7 @@
}
},
{
- "id": 21887,
+ "id": 4598,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -197249,7 +197930,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21888,
+ "id": 4599,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -197263,7 +197944,7 @@
],
"signatures": [
{
- "id": 21889,
+ "id": 4600,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -197277,7 +197958,7 @@
],
"parameters": [
{
- "id": 21890,
+ "id": 4601,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -197303,7 +197984,7 @@
}
},
{
- "id": 21891,
+ "id": 4602,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -197326,7 +198007,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21892,
+ "id": 4603,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -197337,7 +198018,7 @@
],
"documents": [
{
- "id": 42338,
+ "id": 25279,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -197363,7 +198044,7 @@
"frontmatter": {}
},
{
- "id": 42339,
+ "id": 25280,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -197389,7 +198070,7 @@
"frontmatter": {}
},
{
- "id": 42340,
+ "id": 25281,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -197424,7 +198105,7 @@
"frontmatter": {},
"children": [
{
- "id": 42341,
+ "id": 25282,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -197452,7 +198133,7 @@
]
},
{
- "id": 42342,
+ "id": 25283,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -197478,7 +198159,7 @@
"frontmatter": {}
},
{
- "id": 42343,
+ "id": 25284,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -197505,21 +198186,21 @@
}
],
"childrenIncludingDocuments": [
- 21783,
- 21878,
- 21884,
- 21887,
- 21891
+ 4494,
+ 4589,
+ 4595,
+ 4598,
+ 4602
],
"groups": [
{
"title": "Properties",
"children": [
- 21783,
- 21878,
- 21884,
- 21887,
- 21891
+ 4494,
+ 4589,
+ 4595,
+ 4598,
+ 4602
]
}
],
@@ -197528,12 +198209,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts#L49"
}
],
"signatures": [
{
- "id": 21776,
+ "id": 4487,
"name": "removeDraftOrderActionItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -197573,6 +198254,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -197589,12 +198279,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-item.ts#L49"
}
],
"typeParameters": [
{
- "id": 21777,
+ "id": 4488,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -197605,7 +198295,7 @@
}
},
{
- "id": 21778,
+ "id": 4489,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -197618,7 +198308,7 @@
],
"parameters": [
{
- "id": 21779,
+ "id": 4490,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -197642,14 +198332,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21780,
+ "id": 4491,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21781,
+ "id": 4492,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -197672,7 +198362,7 @@
}
},
{
- "id": 21782,
+ "id": 4493,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -197699,8 +198389,8 @@
{
"title": "Properties",
"children": [
- 21781,
- 21782
+ 4492,
+ 4493
]
}
],
@@ -197793,14 +198483,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -197815,7 +198505,7 @@
]
},
{
- "id": 21893,
+ "id": 4604,
"name": "removeDraftOrderActionShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -197827,7 +198517,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts#L30"
}
],
"type": {
@@ -197837,7 +198527,7 @@
"defaultValue": "\"remove-draft-order-action-shipping-method\""
},
{
- "id": 21894,
+ "id": 4605,
"name": "removeDraftOrderActionShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -197877,6 +198567,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -197890,7 +198589,7 @@
},
"children": [
{
- "id": 21902,
+ "id": 4613,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -197913,7 +198612,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21903,
+ "id": 4614,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -197927,7 +198626,7 @@
],
"signatures": [
{
- "id": 21904,
+ "id": 4615,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -197955,7 +198654,7 @@
],
"parameters": [
{
- "id": 21905,
+ "id": 4616,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -197971,14 +198670,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21906,
+ "id": 4617,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21907,
+ "id": 4618,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -198038,7 +198737,7 @@
{
"title": "Properties",
"children": [
- 21907
+ 4618
]
}
],
@@ -198059,14 +198758,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21908,
+ "id": 4619,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21921,
+ "id": 4632,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -198112,7 +198811,7 @@
}
},
{
- "id": 21981,
+ "id": 4692,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -198158,7 +198857,7 @@
}
},
{
- "id": 21982,
+ "id": 4693,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -198204,7 +198903,7 @@
}
},
{
- "id": 21983,
+ "id": 4694,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -198261,7 +198960,7 @@
}
},
{
- "id": 21984,
+ "id": 4695,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -198317,7 +199016,7 @@
}
},
{
- "id": 21949,
+ "id": 4660,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -198374,7 +199073,7 @@
}
},
{
- "id": 21950,
+ "id": 4661,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -198431,7 +199130,7 @@
}
},
{
- "id": 21951,
+ "id": 4662,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -198488,7 +199187,7 @@
}
},
{
- "id": 21926,
+ "id": 4637,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -198545,7 +199244,7 @@
}
},
{
- "id": 21952,
+ "id": 4663,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -198591,7 +199290,7 @@
}
},
{
- "id": 21953,
+ "id": 4664,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -198661,7 +199360,7 @@
}
},
{
- "id": 21954,
+ "id": 4665,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -198731,7 +199430,7 @@
}
},
{
- "id": 21985,
+ "id": 4696,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -198807,7 +199506,7 @@
}
},
{
- "id": 21955,
+ "id": 4666,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -198883,7 +199582,7 @@
}
},
{
- "id": 21986,
+ "id": 4697,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -198953,7 +199652,7 @@
}
},
{
- "id": 21987,
+ "id": 4698,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -199010,7 +199709,7 @@
}
},
{
- "id": 21925,
+ "id": 4636,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -199105,7 +199804,7 @@
}
},
{
- "id": 21980,
+ "id": 4691,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -199180,7 +199879,7 @@
}
},
{
- "id": 21922,
+ "id": 4633,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -199249,7 +199948,7 @@
}
},
{
- "id": 21923,
+ "id": 4634,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -199318,7 +200017,7 @@
}
},
{
- "id": 21924,
+ "id": 4635,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -199393,7 +200092,7 @@
}
},
{
- "id": 21956,
+ "id": 4667,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -199449,7 +200148,7 @@
}
},
{
- "id": 21957,
+ "id": 4668,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -199505,7 +200204,7 @@
}
},
{
- "id": 21958,
+ "id": 4669,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -199561,7 +200260,7 @@
}
},
{
- "id": 21930,
+ "id": 4641,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -199617,7 +200316,7 @@
}
},
{
- "id": 21931,
+ "id": 4642,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -199673,7 +200372,7 @@
}
},
{
- "id": 21932,
+ "id": 4643,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -199729,7 +200428,7 @@
}
},
{
- "id": 21988,
+ "id": 4699,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -199785,7 +200484,7 @@
}
},
{
- "id": 21927,
+ "id": 4638,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -199841,7 +200540,7 @@
}
},
{
- "id": 21928,
+ "id": 4639,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -199897,7 +200596,7 @@
}
},
{
- "id": 21929,
+ "id": 4640,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -199953,7 +200652,7 @@
}
},
{
- "id": 21933,
+ "id": 4644,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -200009,7 +200708,7 @@
}
},
{
- "id": 21934,
+ "id": 4645,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -200065,7 +200764,7 @@
}
},
{
- "id": 21935,
+ "id": 4646,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -200121,7 +200820,7 @@
}
},
{
- "id": 21989,
+ "id": 4700,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -200177,7 +200876,7 @@
}
},
{
- "id": 21936,
+ "id": 4647,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -200233,7 +200932,7 @@
}
},
{
- "id": 21937,
+ "id": 4648,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -200289,7 +200988,7 @@
}
},
{
- "id": 21979,
+ "id": 4690,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -200345,7 +201044,7 @@
}
},
{
- "id": 21959,
+ "id": 4670,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -200401,7 +201100,7 @@
}
},
{
- "id": 21960,
+ "id": 4671,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -200457,7 +201156,7 @@
}
},
{
- "id": 21961,
+ "id": 4672,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -200513,7 +201212,7 @@
}
},
{
- "id": 21962,
+ "id": 4673,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -200569,7 +201268,7 @@
}
},
{
- "id": 21963,
+ "id": 4674,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -200625,7 +201324,7 @@
}
},
{
- "id": 21990,
+ "id": 4701,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -200681,7 +201380,7 @@
}
},
{
- "id": 21964,
+ "id": 4675,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -200737,7 +201436,7 @@
}
},
{
- "id": 21965,
+ "id": 4676,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -200793,7 +201492,7 @@
}
},
{
- "id": 21966,
+ "id": 4677,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -200849,7 +201548,7 @@
}
},
{
- "id": 21909,
+ "id": 4620,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -200905,7 +201604,7 @@
}
},
{
- "id": 21910,
+ "id": 4621,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -200945,14 +201644,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21911,
+ "id": 4622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21912,
+ "id": 4623,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -200984,7 +201683,7 @@
{
"title": "Properties",
"children": [
- 21912
+ 4623
]
}
],
@@ -201024,14 +201723,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21913,
+ "id": 4624,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21914,
+ "id": 4625,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -201063,7 +201762,7 @@
{
"title": "Properties",
"children": [
- 21914
+ 4625
]
}
],
@@ -201087,7 +201786,7 @@
}
},
{
- "id": 21915,
+ "id": 4626,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -201127,14 +201826,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21916,
+ "id": 4627,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21917,
+ "id": 4628,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -201166,7 +201865,7 @@
{
"title": "Properties",
"children": [
- 21917
+ 4628
]
}
],
@@ -201206,14 +201905,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21918,
+ "id": 4629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21919,
+ "id": 4630,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -201245,7 +201944,7 @@
{
"title": "Properties",
"children": [
- 21919
+ 4630
]
}
],
@@ -201269,7 +201968,7 @@
}
},
{
- "id": 21920,
+ "id": 4631,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -201319,57 +202018,57 @@
{
"title": "Properties",
"children": [
- 21921,
- 21981,
- 21982,
- 21983,
- 21984,
- 21949,
- 21950,
- 21951,
- 21926,
- 21952,
- 21953,
- 21954,
- 21985,
- 21955,
- 21986,
- 21987,
- 21925,
- 21980,
- 21922,
- 21923,
- 21924,
- 21956,
- 21957,
- 21958,
- 21930,
- 21931,
- 21932,
- 21988,
- 21927,
- 21928,
- 21929,
- 21933,
- 21934,
- 21935,
- 21989,
- 21936,
- 21937,
- 21979,
- 21959,
- 21960,
- 21961,
- 21962,
- 21963,
- 21990,
- 21964,
- 21965,
- 21966,
- 21909,
- 21910,
- 21915,
- 21920
+ 4632,
+ 4692,
+ 4693,
+ 4694,
+ 4695,
+ 4660,
+ 4661,
+ 4662,
+ 4637,
+ 4663,
+ 4664,
+ 4665,
+ 4696,
+ 4666,
+ 4697,
+ 4698,
+ 4636,
+ 4691,
+ 4633,
+ 4634,
+ 4635,
+ 4667,
+ 4668,
+ 4669,
+ 4641,
+ 4642,
+ 4643,
+ 4699,
+ 4638,
+ 4639,
+ 4640,
+ 4644,
+ 4645,
+ 4646,
+ 4700,
+ 4647,
+ 4648,
+ 4690,
+ 4670,
+ 4671,
+ 4672,
+ 4673,
+ 4674,
+ 4701,
+ 4675,
+ 4676,
+ 4677,
+ 4620,
+ 4621,
+ 4626,
+ 4631
]
}
],
@@ -201414,14 +202113,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21991,
+ "id": 4702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21992,
+ "id": 4703,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -201435,7 +202134,7 @@
],
"signatures": [
{
- "id": 21993,
+ "id": 4704,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -201449,7 +202148,7 @@
],
"parameters": [
{
- "id": 21994,
+ "id": 4705,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -201460,14 +202159,14 @@
{
"type": "reflection",
"declaration": {
- "id": 21995,
+ "id": 4706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21996,
+ "id": 4707,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -201491,7 +202190,7 @@
{
"title": "Properties",
"children": [
- 21996
+ 4707
]
}
],
@@ -201573,7 +202272,7 @@
{
"title": "Methods",
"children": [
- 21992
+ 4703
]
}
],
@@ -201614,7 +202313,7 @@
}
},
{
- "id": 21997,
+ "id": 4708,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -201637,7 +202336,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 21998,
+ "id": 4709,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -201651,7 +202350,7 @@
],
"signatures": [
{
- "id": 21999,
+ "id": 4710,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -201679,7 +202378,7 @@
],
"typeParameters": [
{
- "id": 22000,
+ "id": 4711,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -201690,7 +202389,7 @@
}
},
{
- "id": 22001,
+ "id": 4712,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -201703,7 +202402,7 @@
],
"parameters": [
{
- "id": 22002,
+ "id": 4713,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -201736,7 +202435,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -201756,7 +202455,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -201789,7 +202488,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -201809,7 +202508,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -201829,7 +202528,7 @@
}
},
{
- "id": 22003,
+ "id": 4714,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -201852,7 +202551,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22004,
+ "id": 4715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -201866,7 +202565,7 @@
],
"signatures": [
{
- "id": 22005,
+ "id": 4716,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -201888,7 +202587,7 @@
}
},
{
- "id": 22006,
+ "id": 4717,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -201911,7 +202610,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22007,
+ "id": 4718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -201925,7 +202624,7 @@
],
"signatures": [
{
- "id": 22008,
+ "id": 4719,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -201939,7 +202638,7 @@
],
"parameters": [
{
- "id": 22009,
+ "id": 4720,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -201965,7 +202664,7 @@
}
},
{
- "id": 22010,
+ "id": 4721,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -201988,7 +202687,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22011,
+ "id": 4722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -201999,7 +202698,7 @@
],
"documents": [
{
- "id": 42344,
+ "id": 25285,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -202025,7 +202724,7 @@
"frontmatter": {}
},
{
- "id": 42345,
+ "id": 25286,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -202051,7 +202750,7 @@
"frontmatter": {}
},
{
- "id": 42346,
+ "id": 25287,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -202077,7 +202776,7 @@
"frontmatter": {}
},
{
- "id": 42347,
+ "id": 25288,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -202112,7 +202811,7 @@
"frontmatter": {},
"children": [
{
- "id": 42348,
+ "id": 25289,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -202140,7 +202839,7 @@
]
},
{
- "id": 42349,
+ "id": 25290,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -202166,7 +202865,7 @@
"frontmatter": {}
},
{
- "id": 42350,
+ "id": 25291,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -202193,21 +202892,21 @@
}
],
"childrenIncludingDocuments": [
- 21902,
- 21997,
- 22003,
- 22006,
- 22010
+ 4613,
+ 4708,
+ 4714,
+ 4717,
+ 4721
],
"groups": [
{
"title": "Properties",
"children": [
- 21902,
- 21997,
- 22003,
- 22006,
- 22010
+ 4613,
+ 4708,
+ 4714,
+ 4717,
+ 4721
]
}
],
@@ -202216,12 +202915,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts#L53"
}
],
"signatures": [
{
- "id": 21895,
+ "id": 4606,
"name": "removeDraftOrderActionShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -202261,6 +202960,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -202277,12 +202985,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-action-shipping-method.ts#L53"
}
],
"typeParameters": [
{
- "id": 21896,
+ "id": 4607,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -202293,7 +203001,7 @@
}
},
{
- "id": 21897,
+ "id": 4608,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -202306,7 +203014,7 @@
],
"parameters": [
{
- "id": 21898,
+ "id": 4609,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -202330,14 +203038,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 21899,
+ "id": 4610,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 21900,
+ "id": 4611,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -202360,7 +203068,7 @@
}
},
{
- "id": 21901,
+ "id": 4612,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -202387,8 +203095,8 @@
{
"title": "Properties",
"children": [
- 21900,
- 21901
+ 4611,
+ 4612
]
}
],
@@ -202481,14 +203189,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -202503,7 +203211,7 @@
]
},
{
- "id": 22012,
+ "id": 4723,
"name": "removeDraftOrderPromotionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -202515,7 +203223,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L29"
}
],
"type": {
@@ -202525,7 +203233,7 @@
"defaultValue": "\"remove-draft-order-promotions\""
},
{
- "id": 22014,
+ "id": 4725,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -202543,7 +203251,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L39"
}
],
"type": {
@@ -202552,7 +203260,7 @@
}
},
{
- "id": 22015,
+ "id": 4726,
"name": "promo_codes",
"variant": "declaration",
"kind": 1024,
@@ -202570,7 +203278,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L43"
}
],
"type": {
@@ -202582,7 +203290,7 @@
}
},
{
- "id": 22016,
+ "id": 4727,
"name": "removeDraftOrderPromotionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -202622,6 +203330,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -202635,7 +203352,7 @@
},
"children": [
{
- "id": 22024,
+ "id": 4735,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -202658,7 +203375,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22025,
+ "id": 4736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -202672,7 +203389,7 @@
],
"signatures": [
{
- "id": 22026,
+ "id": 4737,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -202700,7 +203417,7 @@
],
"parameters": [
{
- "id": 22027,
+ "id": 4738,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -202716,14 +203433,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22028,
+ "id": 4739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22029,
+ "id": 4740,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -202748,7 +203465,7 @@
"types": [
{
"type": "reference",
- "target": 22013,
+ "target": 4724,
"name": "RemoveDraftOrderPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -202761,7 +203478,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22013,
+ "target": 4724,
"name": "RemoveDraftOrderPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -202777,7 +203494,7 @@
{
"title": "Properties",
"children": [
- 22029
+ 4740
]
}
],
@@ -202798,14 +203515,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22030,
+ "id": 4741,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22043,
+ "id": 4754,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -202851,7 +203568,7 @@
}
},
{
- "id": 22103,
+ "id": 4814,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -202897,7 +203614,7 @@
}
},
{
- "id": 22104,
+ "id": 4815,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -202943,7 +203660,7 @@
}
},
{
- "id": 22105,
+ "id": 4816,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -203000,7 +203717,7 @@
}
},
{
- "id": 22106,
+ "id": 4817,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -203056,7 +203773,7 @@
}
},
{
- "id": 22071,
+ "id": 4782,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -203113,7 +203830,7 @@
}
},
{
- "id": 22072,
+ "id": 4783,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -203170,7 +203887,7 @@
}
},
{
- "id": 22073,
+ "id": 4784,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -203227,7 +203944,7 @@
}
},
{
- "id": 22048,
+ "id": 4759,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -203284,7 +204001,7 @@
}
},
{
- "id": 22074,
+ "id": 4785,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -203330,7 +204047,7 @@
}
},
{
- "id": 22075,
+ "id": 4786,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -203400,7 +204117,7 @@
}
},
{
- "id": 22076,
+ "id": 4787,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -203470,7 +204187,7 @@
}
},
{
- "id": 22107,
+ "id": 4818,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -203546,7 +204263,7 @@
}
},
{
- "id": 22077,
+ "id": 4788,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -203622,7 +204339,7 @@
}
},
{
- "id": 22108,
+ "id": 4819,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -203692,7 +204409,7 @@
}
},
{
- "id": 22109,
+ "id": 4820,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -203749,7 +204466,7 @@
}
},
{
- "id": 22047,
+ "id": 4758,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -203844,7 +204561,7 @@
}
},
{
- "id": 22102,
+ "id": 4813,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -203919,7 +204636,7 @@
}
},
{
- "id": 22044,
+ "id": 4755,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -203988,7 +204705,7 @@
}
},
{
- "id": 22045,
+ "id": 4756,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -204057,7 +204774,7 @@
}
},
{
- "id": 22046,
+ "id": 4757,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -204132,7 +204849,7 @@
}
},
{
- "id": 22078,
+ "id": 4789,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -204188,7 +204905,7 @@
}
},
{
- "id": 22079,
+ "id": 4790,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -204244,7 +204961,7 @@
}
},
{
- "id": 22080,
+ "id": 4791,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -204300,7 +205017,7 @@
}
},
{
- "id": 22052,
+ "id": 4763,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -204356,7 +205073,7 @@
}
},
{
- "id": 22053,
+ "id": 4764,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -204412,7 +205129,7 @@
}
},
{
- "id": 22054,
+ "id": 4765,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -204468,7 +205185,7 @@
}
},
{
- "id": 22110,
+ "id": 4821,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -204524,7 +205241,7 @@
}
},
{
- "id": 22049,
+ "id": 4760,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -204580,7 +205297,7 @@
}
},
{
- "id": 22050,
+ "id": 4761,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -204636,7 +205353,7 @@
}
},
{
- "id": 22051,
+ "id": 4762,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -204692,7 +205409,7 @@
}
},
{
- "id": 22055,
+ "id": 4766,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -204748,7 +205465,7 @@
}
},
{
- "id": 22056,
+ "id": 4767,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -204804,7 +205521,7 @@
}
},
{
- "id": 22057,
+ "id": 4768,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -204860,7 +205577,7 @@
}
},
{
- "id": 22111,
+ "id": 4822,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -204916,7 +205633,7 @@
}
},
{
- "id": 22058,
+ "id": 4769,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -204972,7 +205689,7 @@
}
},
{
- "id": 22059,
+ "id": 4770,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -205028,7 +205745,7 @@
}
},
{
- "id": 22101,
+ "id": 4812,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -205084,7 +205801,7 @@
}
},
{
- "id": 22081,
+ "id": 4792,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -205140,7 +205857,7 @@
}
},
{
- "id": 22082,
+ "id": 4793,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -205196,7 +205913,7 @@
}
},
{
- "id": 22083,
+ "id": 4794,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -205252,7 +205969,7 @@
}
},
{
- "id": 22084,
+ "id": 4795,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -205308,7 +206025,7 @@
}
},
{
- "id": 22085,
+ "id": 4796,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -205364,7 +206081,7 @@
}
},
{
- "id": 22112,
+ "id": 4823,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -205420,7 +206137,7 @@
}
},
{
- "id": 22086,
+ "id": 4797,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -205476,7 +206193,7 @@
}
},
{
- "id": 22087,
+ "id": 4798,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -205532,7 +206249,7 @@
}
},
{
- "id": 22088,
+ "id": 4799,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -205588,7 +206305,7 @@
}
},
{
- "id": 22031,
+ "id": 4742,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -205644,7 +206361,7 @@
}
},
{
- "id": 22032,
+ "id": 4743,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -205684,14 +206401,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22033,
+ "id": 4744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22034,
+ "id": 4745,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -205723,7 +206440,7 @@
{
"title": "Properties",
"children": [
- 22034
+ 4745
]
}
],
@@ -205763,14 +206480,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22035,
+ "id": 4746,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22036,
+ "id": 4747,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -205802,7 +206519,7 @@
{
"title": "Properties",
"children": [
- 22036
+ 4747
]
}
],
@@ -205826,7 +206543,7 @@
}
},
{
- "id": 22037,
+ "id": 4748,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -205866,14 +206583,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22038,
+ "id": 4749,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22039,
+ "id": 4750,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -205905,7 +206622,7 @@
{
"title": "Properties",
"children": [
- 22039
+ 4750
]
}
],
@@ -205945,14 +206662,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22040,
+ "id": 4751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22041,
+ "id": 4752,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -205984,7 +206701,7 @@
{
"title": "Properties",
"children": [
- 22041
+ 4752
]
}
],
@@ -206008,7 +206725,7 @@
}
},
{
- "id": 22042,
+ "id": 4753,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -206058,57 +206775,57 @@
{
"title": "Properties",
"children": [
- 22043,
- 22103,
- 22104,
- 22105,
- 22106,
- 22071,
- 22072,
- 22073,
- 22048,
- 22074,
- 22075,
- 22076,
- 22107,
- 22077,
- 22108,
- 22109,
- 22047,
- 22102,
- 22044,
- 22045,
- 22046,
- 22078,
- 22079,
- 22080,
- 22052,
- 22053,
- 22054,
- 22110,
- 22049,
- 22050,
- 22051,
- 22055,
- 22056,
- 22057,
- 22111,
- 22058,
- 22059,
- 22101,
- 22081,
- 22082,
- 22083,
- 22084,
- 22085,
- 22112,
- 22086,
- 22087,
- 22088,
- 22031,
- 22032,
- 22037,
- 22042
+ 4754,
+ 4814,
+ 4815,
+ 4816,
+ 4817,
+ 4782,
+ 4783,
+ 4784,
+ 4759,
+ 4785,
+ 4786,
+ 4787,
+ 4818,
+ 4788,
+ 4819,
+ 4820,
+ 4758,
+ 4813,
+ 4755,
+ 4756,
+ 4757,
+ 4789,
+ 4790,
+ 4791,
+ 4763,
+ 4764,
+ 4765,
+ 4821,
+ 4760,
+ 4761,
+ 4762,
+ 4766,
+ 4767,
+ 4768,
+ 4822,
+ 4769,
+ 4770,
+ 4812,
+ 4792,
+ 4793,
+ 4794,
+ 4795,
+ 4796,
+ 4823,
+ 4797,
+ 4798,
+ 4799,
+ 4742,
+ 4743,
+ 4748,
+ 4753
]
}
],
@@ -206153,14 +206870,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22113,
+ "id": 4824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22114,
+ "id": 4825,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -206174,7 +206891,7 @@
],
"signatures": [
{
- "id": 22115,
+ "id": 4826,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -206188,7 +206905,7 @@
],
"parameters": [
{
- "id": 22116,
+ "id": 4827,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -206199,14 +206916,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22117,
+ "id": 4828,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22118,
+ "id": 4829,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -206230,7 +206947,7 @@
{
"title": "Properties",
"children": [
- 22118
+ 4829
]
}
],
@@ -206312,7 +207029,7 @@
{
"title": "Methods",
"children": [
- 22114
+ 4825
]
}
],
@@ -206353,7 +207070,7 @@
}
},
{
- "id": 22119,
+ "id": 4830,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -206376,7 +207093,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22120,
+ "id": 4831,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -206390,7 +207107,7 @@
],
"signatures": [
{
- "id": 22121,
+ "id": 4832,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -206418,7 +207135,7 @@
],
"typeParameters": [
{
- "id": 22122,
+ "id": 4833,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -206429,7 +207146,7 @@
}
},
{
- "id": 22123,
+ "id": 4834,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -206442,7 +207159,7 @@
],
"parameters": [
{
- "id": 22124,
+ "id": 4835,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -206475,7 +207192,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -206486,13 +207203,13 @@
},
"trueType": {
"type": "reference",
- "target": 22013,
+ "target": 4724,
"name": "RemoveDraftOrderPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -206525,7 +207242,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -206545,7 +207262,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -206565,7 +207282,7 @@
}
},
{
- "id": 22125,
+ "id": 4836,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -206588,7 +207305,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22126,
+ "id": 4837,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -206602,7 +207319,7 @@
],
"signatures": [
{
- "id": 22127,
+ "id": 4838,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -206624,7 +207341,7 @@
}
},
{
- "id": 22128,
+ "id": 4839,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -206647,7 +207364,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22129,
+ "id": 4840,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -206661,7 +207378,7 @@
],
"signatures": [
{
- "id": 22130,
+ "id": 4841,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -206675,7 +207392,7 @@
],
"parameters": [
{
- "id": 22131,
+ "id": 4842,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -206701,7 +207418,7 @@
}
},
{
- "id": 22132,
+ "id": 4843,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -206724,7 +207441,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22133,
+ "id": 4844,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -206735,7 +207452,7 @@
],
"documents": [
{
- "id": 42351,
+ "id": 25292,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -206761,7 +207478,7 @@
"frontmatter": {}
},
{
- "id": 42352,
+ "id": 25293,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -206787,7 +207504,7 @@
"frontmatter": {}
},
{
- "id": 42353,
+ "id": 25294,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -206813,7 +207530,7 @@
"frontmatter": {}
},
{
- "id": 42354,
+ "id": 25295,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -206839,7 +207556,7 @@
"frontmatter": {}
},
{
- "id": 42355,
+ "id": 25296,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -206866,21 +207583,21 @@
}
],
"childrenIncludingDocuments": [
- 22024,
- 22119,
- 22125,
- 22128,
- 22132
+ 4735,
+ 4830,
+ 4836,
+ 4839,
+ 4843
],
"groups": [
{
"title": "Properties",
"children": [
- 22024,
- 22119,
- 22125,
- 22128,
- 22132
+ 4735,
+ 4830,
+ 4836,
+ 4839,
+ 4843
]
}
],
@@ -206889,12 +207606,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts",
"line": 66,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L66"
}
],
"signatures": [
{
- "id": 22017,
+ "id": 4728,
"name": "removeDraftOrderPromotionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -206934,6 +207651,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -206950,12 +207676,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts",
"line": 66,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-promotions.ts#L66"
}
],
"typeParameters": [
{
- "id": 22018,
+ "id": 4729,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -206966,7 +207692,7 @@
}
},
{
- "id": 22019,
+ "id": 4730,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -206979,7 +207705,7 @@
],
"parameters": [
{
- "id": 22020,
+ "id": 4731,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -207003,14 +207729,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22021,
+ "id": 4732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22022,
+ "id": 4733,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -207033,7 +207759,7 @@
}
},
{
- "id": 22023,
+ "id": 4734,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -207060,8 +207786,8 @@
{
"title": "Properties",
"children": [
- 22022,
- 22023
+ 4733,
+ 4734
]
}
],
@@ -207136,7 +207862,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22013,
+ "target": 4724,
"name": "RemoveDraftOrderPromotionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -207151,14 +207877,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -207173,7 +207899,7 @@
]
},
{
- "id": 22134,
+ "id": 4845,
"name": "requestDraftOrderEditId",
"variant": "declaration",
"kind": 32,
@@ -207185,7 +207911,7 @@
"fileName": "core-flows/src/draft-order/workflows/request-draft-order-edit.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L17"
}
],
"type": {
@@ -207195,7 +207921,7 @@
"defaultValue": "\"request-draft-order-edit\""
},
{
- "id": 22137,
+ "id": 4848,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -207213,7 +207939,7 @@
"fileName": "core-flows/src/draft-order/workflows/request-draft-order-edit.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L45"
}
],
"type": {
@@ -207222,7 +207948,7 @@
}
},
{
- "id": 22138,
+ "id": 4849,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -207242,7 +207968,7 @@
"fileName": "core-flows/src/draft-order/workflows/request-draft-order-edit.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L49"
}
],
"type": {
@@ -207251,7 +207977,7 @@
}
},
{
- "id": 22139,
+ "id": 4850,
"name": "requestDraftOrderEditWorkflow",
"variant": "declaration",
"kind": 64,
@@ -207291,6 +208017,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -207304,7 +208039,7 @@
},
"children": [
{
- "id": 22147,
+ "id": 4858,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -207327,7 +208062,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22148,
+ "id": 4859,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -207341,7 +208076,7 @@
],
"signatures": [
{
- "id": 22149,
+ "id": 4860,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -207369,7 +208104,7 @@
],
"parameters": [
{
- "id": 22150,
+ "id": 4861,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -207385,14 +208120,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22151,
+ "id": 4862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22152,
+ "id": 4863,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -207417,7 +208152,7 @@
"types": [
{
"type": "reference",
- "target": 22135,
+ "target": 4846,
"name": "RequestDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -207430,7 +208165,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22135,
+ "target": 4846,
"name": "RequestDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -207446,7 +208181,7 @@
{
"title": "Properties",
"children": [
- 22152
+ 4863
]
}
],
@@ -207467,14 +208202,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22153,
+ "id": 4864,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22166,
+ "id": 4877,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -207520,7 +208255,7 @@
}
},
{
- "id": 22226,
+ "id": 4937,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -207566,7 +208301,7 @@
}
},
{
- "id": 22227,
+ "id": 4938,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -207612,7 +208347,7 @@
}
},
{
- "id": 22228,
+ "id": 4939,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -207669,7 +208404,7 @@
}
},
{
- "id": 22229,
+ "id": 4940,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -207725,7 +208460,7 @@
}
},
{
- "id": 22194,
+ "id": 4905,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -207782,7 +208517,7 @@
}
},
{
- "id": 22195,
+ "id": 4906,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -207839,7 +208574,7 @@
}
},
{
- "id": 22196,
+ "id": 4907,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -207896,7 +208631,7 @@
}
},
{
- "id": 22171,
+ "id": 4882,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -207953,7 +208688,7 @@
}
},
{
- "id": 22197,
+ "id": 4908,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -207999,7 +208734,7 @@
}
},
{
- "id": 22198,
+ "id": 4909,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -208069,7 +208804,7 @@
}
},
{
- "id": 22199,
+ "id": 4910,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -208139,7 +208874,7 @@
}
},
{
- "id": 22230,
+ "id": 4941,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -208215,7 +208950,7 @@
}
},
{
- "id": 22200,
+ "id": 4911,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -208291,7 +209026,7 @@
}
},
{
- "id": 22231,
+ "id": 4942,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -208361,7 +209096,7 @@
}
},
{
- "id": 22232,
+ "id": 4943,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -208418,7 +209153,7 @@
}
},
{
- "id": 22170,
+ "id": 4881,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -208513,7 +209248,7 @@
}
},
{
- "id": 22225,
+ "id": 4936,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -208588,7 +209323,7 @@
}
},
{
- "id": 22167,
+ "id": 4878,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -208657,7 +209392,7 @@
}
},
{
- "id": 22168,
+ "id": 4879,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -208726,7 +209461,7 @@
}
},
{
- "id": 22169,
+ "id": 4880,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -208801,7 +209536,7 @@
}
},
{
- "id": 22201,
+ "id": 4912,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -208857,7 +209592,7 @@
}
},
{
- "id": 22202,
+ "id": 4913,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -208913,7 +209648,7 @@
}
},
{
- "id": 22203,
+ "id": 4914,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -208969,7 +209704,7 @@
}
},
{
- "id": 22175,
+ "id": 4886,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -209025,7 +209760,7 @@
}
},
{
- "id": 22176,
+ "id": 4887,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -209081,7 +209816,7 @@
}
},
{
- "id": 22177,
+ "id": 4888,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -209137,7 +209872,7 @@
}
},
{
- "id": 22233,
+ "id": 4944,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -209193,7 +209928,7 @@
}
},
{
- "id": 22172,
+ "id": 4883,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -209249,7 +209984,7 @@
}
},
{
- "id": 22173,
+ "id": 4884,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -209305,7 +210040,7 @@
}
},
{
- "id": 22174,
+ "id": 4885,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -209361,7 +210096,7 @@
}
},
{
- "id": 22178,
+ "id": 4889,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -209417,7 +210152,7 @@
}
},
{
- "id": 22179,
+ "id": 4890,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -209473,7 +210208,7 @@
}
},
{
- "id": 22180,
+ "id": 4891,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -209529,7 +210264,7 @@
}
},
{
- "id": 22234,
+ "id": 4945,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -209585,7 +210320,7 @@
}
},
{
- "id": 22181,
+ "id": 4892,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -209641,7 +210376,7 @@
}
},
{
- "id": 22182,
+ "id": 4893,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -209697,7 +210432,7 @@
}
},
{
- "id": 22224,
+ "id": 4935,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -209753,7 +210488,7 @@
}
},
{
- "id": 22204,
+ "id": 4915,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -209809,7 +210544,7 @@
}
},
{
- "id": 22205,
+ "id": 4916,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -209865,7 +210600,7 @@
}
},
{
- "id": 22206,
+ "id": 4917,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -209921,7 +210656,7 @@
}
},
{
- "id": 22207,
+ "id": 4918,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -209977,7 +210712,7 @@
}
},
{
- "id": 22208,
+ "id": 4919,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -210033,7 +210768,7 @@
}
},
{
- "id": 22235,
+ "id": 4946,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -210089,7 +210824,7 @@
}
},
{
- "id": 22209,
+ "id": 4920,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -210145,7 +210880,7 @@
}
},
{
- "id": 22210,
+ "id": 4921,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -210201,7 +210936,7 @@
}
},
{
- "id": 22211,
+ "id": 4922,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -210257,7 +210992,7 @@
}
},
{
- "id": 22154,
+ "id": 4865,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -210313,7 +211048,7 @@
}
},
{
- "id": 22155,
+ "id": 4866,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -210353,14 +211088,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22156,
+ "id": 4867,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22157,
+ "id": 4868,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -210392,7 +211127,7 @@
{
"title": "Properties",
"children": [
- 22157
+ 4868
]
}
],
@@ -210432,14 +211167,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22158,
+ "id": 4869,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22159,
+ "id": 4870,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -210471,7 +211206,7 @@
{
"title": "Properties",
"children": [
- 22159
+ 4870
]
}
],
@@ -210495,7 +211230,7 @@
}
},
{
- "id": 22160,
+ "id": 4871,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -210535,14 +211270,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22161,
+ "id": 4872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22162,
+ "id": 4873,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -210574,7 +211309,7 @@
{
"title": "Properties",
"children": [
- 22162
+ 4873
]
}
],
@@ -210614,14 +211349,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22163,
+ "id": 4874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22164,
+ "id": 4875,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -210653,7 +211388,7 @@
{
"title": "Properties",
"children": [
- 22164
+ 4875
]
}
],
@@ -210677,7 +211412,7 @@
}
},
{
- "id": 22165,
+ "id": 4876,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -210727,57 +211462,57 @@
{
"title": "Properties",
"children": [
- 22166,
- 22226,
- 22227,
- 22228,
- 22229,
- 22194,
- 22195,
- 22196,
- 22171,
- 22197,
- 22198,
- 22199,
- 22230,
- 22200,
- 22231,
- 22232,
- 22170,
- 22225,
- 22167,
- 22168,
- 22169,
- 22201,
- 22202,
- 22203,
- 22175,
- 22176,
- 22177,
- 22233,
- 22172,
- 22173,
- 22174,
- 22178,
- 22179,
- 22180,
- 22234,
- 22181,
- 22182,
- 22224,
- 22204,
- 22205,
- 22206,
- 22207,
- 22208,
- 22235,
- 22209,
- 22210,
- 22211,
- 22154,
- 22155,
- 22160,
- 22165
+ 4877,
+ 4937,
+ 4938,
+ 4939,
+ 4940,
+ 4905,
+ 4906,
+ 4907,
+ 4882,
+ 4908,
+ 4909,
+ 4910,
+ 4941,
+ 4911,
+ 4942,
+ 4943,
+ 4881,
+ 4936,
+ 4878,
+ 4879,
+ 4880,
+ 4912,
+ 4913,
+ 4914,
+ 4886,
+ 4887,
+ 4888,
+ 4944,
+ 4883,
+ 4884,
+ 4885,
+ 4889,
+ 4890,
+ 4891,
+ 4945,
+ 4892,
+ 4893,
+ 4935,
+ 4915,
+ 4916,
+ 4917,
+ 4918,
+ 4919,
+ 4946,
+ 4920,
+ 4921,
+ 4922,
+ 4865,
+ 4866,
+ 4871,
+ 4876
]
}
],
@@ -210822,14 +211557,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22236,
+ "id": 4947,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22237,
+ "id": 4948,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -210843,7 +211578,7 @@
],
"signatures": [
{
- "id": 22238,
+ "id": 4949,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -210857,7 +211592,7 @@
],
"parameters": [
{
- "id": 22239,
+ "id": 4950,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -210868,14 +211603,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22240,
+ "id": 4951,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22241,
+ "id": 4952,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -210899,7 +211634,7 @@
{
"title": "Properties",
"children": [
- 22241
+ 4952
]
}
],
@@ -210981,7 +211716,7 @@
{
"title": "Methods",
"children": [
- 22237
+ 4948
]
}
],
@@ -211022,7 +211757,7 @@
}
},
{
- "id": 22242,
+ "id": 4953,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -211045,7 +211780,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22243,
+ "id": 4954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -211059,7 +211794,7 @@
],
"signatures": [
{
- "id": 22244,
+ "id": 4955,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -211087,7 +211822,7 @@
],
"typeParameters": [
{
- "id": 22245,
+ "id": 4956,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -211098,7 +211833,7 @@
}
},
{
- "id": 22246,
+ "id": 4957,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -211111,7 +211846,7 @@
],
"parameters": [
{
- "id": 22247,
+ "id": 4958,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -211144,7 +211879,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -211155,13 +211890,13 @@
},
"trueType": {
"type": "reference",
- "target": 22135,
+ "target": 4846,
"name": "RequestDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -211194,7 +211929,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -211214,7 +211949,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -211234,7 +211969,7 @@
}
},
{
- "id": 22248,
+ "id": 4959,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -211257,7 +211992,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22249,
+ "id": 4960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -211271,7 +212006,7 @@
],
"signatures": [
{
- "id": 22250,
+ "id": 4961,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -211293,7 +212028,7 @@
}
},
{
- "id": 22251,
+ "id": 4962,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -211316,7 +212051,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22252,
+ "id": 4963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -211330,7 +212065,7 @@
],
"signatures": [
{
- "id": 22253,
+ "id": 4964,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -211344,7 +212079,7 @@
],
"parameters": [
{
- "id": 22254,
+ "id": 4965,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -211370,7 +212105,7 @@
}
},
{
- "id": 22255,
+ "id": 4966,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -211393,7 +212128,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22256,
+ "id": 4967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -211404,7 +212139,7 @@
],
"documents": [
{
- "id": 42356,
+ "id": 25297,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -211430,7 +212165,7 @@
"frontmatter": {}
},
{
- "id": 42357,
+ "id": 25298,
"name": "updateOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -211456,7 +212191,7 @@
"frontmatter": {}
},
{
- "id": 42358,
+ "id": 25299,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -211482,7 +212217,7 @@
"frontmatter": {}
},
{
- "id": 42359,
+ "id": 25300,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -211508,7 +212243,7 @@
"frontmatter": {}
},
{
- "id": 42360,
+ "id": 25301,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -211535,21 +212270,21 @@
}
],
"childrenIncludingDocuments": [
- 22147,
- 22242,
- 22248,
- 22251,
- 22255
+ 4858,
+ 4953,
+ 4959,
+ 4962,
+ 4966
],
"groups": [
{
"title": "Properties",
"children": [
- 22147,
- 22242,
- 22248,
- 22251,
- 22255
+ 4858,
+ 4953,
+ 4959,
+ 4962,
+ 4966
]
}
],
@@ -211558,12 +212293,12 @@
"fileName": "core-flows/src/draft-order/workflows/request-draft-order-edit.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L72"
}
],
"signatures": [
{
- "id": 22140,
+ "id": 4851,
"name": "requestDraftOrderEditWorkflow",
"variant": "signature",
"kind": 4096,
@@ -211603,6 +212338,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -211619,12 +212363,12 @@
"fileName": "core-flows/src/draft-order/workflows/request-draft-order-edit.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/request-draft-order-edit.ts#L72"
}
],
"typeParameters": [
{
- "id": 22141,
+ "id": 4852,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -211635,7 +212379,7 @@
}
},
{
- "id": 22142,
+ "id": 4853,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -211648,7 +212392,7 @@
],
"parameters": [
{
- "id": 22143,
+ "id": 4854,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -211672,14 +212416,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22144,
+ "id": 4855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22145,
+ "id": 4856,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -211702,7 +212446,7 @@
}
},
{
- "id": 22146,
+ "id": 4857,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -211729,8 +212473,8 @@
{
"title": "Properties",
"children": [
- 22145,
- 22146
+ 4856,
+ 4857
]
}
],
@@ -211805,7 +212549,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22135,
+ "target": 4846,
"name": "RequestDraftOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -211820,14 +212564,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -211842,7 +212586,7 @@
]
},
{
- "id": 22257,
+ "id": 4968,
"name": "updateDraftOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -211854,7 +212598,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L22"
}
],
"type": {
@@ -211864,7 +212608,7 @@
"defaultValue": "\"update-draft-order\""
},
{
- "id": 22259,
+ "id": 4970,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -211882,7 +212626,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L31"
}
],
"type": {
@@ -211891,7 +212635,7 @@
}
},
{
- "id": 22260,
+ "id": 4971,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -211909,7 +212653,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L35"
}
],
"type": {
@@ -211918,7 +212662,7 @@
}
},
{
- "id": 22261,
+ "id": 4972,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -211938,7 +212682,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L39"
}
],
"type": {
@@ -211952,7 +212696,7 @@
}
},
{
- "id": 22262,
+ "id": 4973,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -211972,7 +212716,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L43"
}
],
"type": {
@@ -211986,7 +212730,7 @@
}
},
{
- "id": 22263,
+ "id": 4974,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -212006,7 +212750,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 47,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L47"
}
],
"type": {
@@ -212015,7 +212759,7 @@
}
},
{
- "id": 22264,
+ "id": 4975,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -212035,7 +212779,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L51"
}
],
"type": {
@@ -212044,7 +212788,7 @@
}
},
{
- "id": 22265,
+ "id": 4976,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -212064,7 +212808,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L55"
}
],
"type": {
@@ -212073,7 +212817,7 @@
}
},
{
- "id": 22266,
+ "id": 4977,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -212093,7 +212837,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L59"
}
],
"type": {
@@ -212126,7 +212870,7 @@
}
},
{
- "id": 22268,
+ "id": 4979,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -212144,7 +212888,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L69"
}
],
"type": {
@@ -212158,7 +212902,7 @@
}
},
{
- "id": 22269,
+ "id": 4980,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -212176,7 +212920,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L73"
}
],
"type": {
@@ -212190,7 +212934,7 @@
}
},
{
- "id": 22270,
+ "id": 4981,
"name": "updateDraftOrderStep",
"variant": "declaration",
"kind": 64,
@@ -212225,7 +212969,7 @@
},
"children": [
{
- "id": 22353,
+ "id": 5064,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -212243,7 +212987,7 @@
}
},
{
- "id": 22354,
+ "id": 5065,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -212265,8 +213009,8 @@
{
"title": "Properties",
"children": [
- 22353,
- 22354
+ 5064,
+ 5065
]
}
],
@@ -212275,12 +213019,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L97"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L97"
}
],
"signatures": [
{
- "id": 22271,
+ "id": 4982,
"name": "updateDraftOrderStep",
"variant": "signature",
"kind": 4096,
@@ -212318,12 +213062,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L97"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L97"
}
],
"parameters": [
{
- "id": 22272,
+ "id": 4983,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -212333,7 +213077,7 @@
"types": [
{
"type": "reference",
- "target": 22267,
+ "target": 4978,
"name": "UpdateDraftOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -212346,7 +213090,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22267,
+ "target": 4978,
"name": "UpdateDraftOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -212364,14 +213108,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22273,
+ "id": 4984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22274,
+ "id": 4985,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -212417,7 +213161,7 @@
}
},
{
- "id": 22275,
+ "id": 4986,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -212463,7 +213207,7 @@
}
},
{
- "id": 22276,
+ "id": 4987,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -212509,7 +213253,7 @@
}
},
{
- "id": 22277,
+ "id": 4988,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -212566,7 +213310,7 @@
}
},
{
- "id": 22278,
+ "id": 4989,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -212636,7 +213380,7 @@
}
},
{
- "id": 22279,
+ "id": 4990,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -212692,7 +213436,7 @@
}
},
{
- "id": 22280,
+ "id": 4991,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -212749,7 +213493,7 @@
}
},
{
- "id": 22281,
+ "id": 4992,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -212806,7 +213550,7 @@
}
},
{
- "id": 22282,
+ "id": 4993,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -212863,7 +213607,7 @@
}
},
{
- "id": 22283,
+ "id": 4994,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -212920,7 +213664,7 @@
}
},
{
- "id": 22284,
+ "id": 4995,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -212966,7 +213710,7 @@
}
},
{
- "id": 22285,
+ "id": 4996,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -213036,7 +213780,7 @@
}
},
{
- "id": 22286,
+ "id": 4997,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -213106,7 +213850,7 @@
}
},
{
- "id": 22287,
+ "id": 4998,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -213182,7 +213926,7 @@
}
},
{
- "id": 22288,
+ "id": 4999,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -213258,7 +214002,7 @@
}
},
{
- "id": 22289,
+ "id": 5000,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -213334,7 +214078,7 @@
}
},
{
- "id": 22290,
+ "id": 5001,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -213410,7 +214154,7 @@
}
},
{
- "id": 22291,
+ "id": 5002,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -213480,7 +214224,7 @@
}
},
{
- "id": 22292,
+ "id": 5003,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -213537,7 +214281,7 @@
}
},
{
- "id": 22293,
+ "id": 5004,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -213632,7 +214376,7 @@
}
},
{
- "id": 22294,
+ "id": 5005,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -213707,7 +214451,7 @@
}
},
{
- "id": 22295,
+ "id": 5006,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -213776,7 +214520,7 @@
}
},
{
- "id": 22296,
+ "id": 5007,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -213845,7 +214589,7 @@
}
},
{
- "id": 22297,
+ "id": 5008,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -213920,7 +214664,7 @@
}
},
{
- "id": 22298,
+ "id": 5009,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -213976,7 +214720,7 @@
}
},
{
- "id": 22299,
+ "id": 5010,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -214032,7 +214776,7 @@
}
},
{
- "id": 22300,
+ "id": 5011,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -214088,7 +214832,7 @@
}
},
{
- "id": 22301,
+ "id": 5012,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -214144,7 +214888,7 @@
}
},
{
- "id": 22302,
+ "id": 5013,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -214200,7 +214944,7 @@
}
},
{
- "id": 22303,
+ "id": 5014,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -214256,7 +215000,7 @@
}
},
{
- "id": 22304,
+ "id": 5015,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -214312,7 +215056,7 @@
}
},
{
- "id": 22305,
+ "id": 5016,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -214368,7 +215112,7 @@
}
},
{
- "id": 22306,
+ "id": 5017,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -214424,7 +215168,7 @@
}
},
{
- "id": 22307,
+ "id": 5018,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -214480,7 +215224,7 @@
}
},
{
- "id": 22308,
+ "id": 5019,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -214536,7 +215280,7 @@
}
},
{
- "id": 22309,
+ "id": 5020,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -214592,7 +215336,7 @@
}
},
{
- "id": 22310,
+ "id": 5021,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -214648,7 +215392,7 @@
}
},
{
- "id": 22311,
+ "id": 5022,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -214704,7 +215448,7 @@
}
},
{
- "id": 22312,
+ "id": 5023,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -214760,7 +215504,7 @@
}
},
{
- "id": 22313,
+ "id": 5024,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -214816,7 +215560,7 @@
}
},
{
- "id": 22314,
+ "id": 5025,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -214872,7 +215616,7 @@
}
},
{
- "id": 22315,
+ "id": 5026,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -214928,7 +215672,7 @@
}
},
{
- "id": 22316,
+ "id": 5027,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -214984,7 +215728,7 @@
}
},
{
- "id": 22317,
+ "id": 5028,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -215040,7 +215784,7 @@
}
},
{
- "id": 22318,
+ "id": 5029,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -215096,7 +215840,7 @@
}
},
{
- "id": 22319,
+ "id": 5030,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -215152,7 +215896,7 @@
}
},
{
- "id": 22320,
+ "id": 5031,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -215208,7 +215952,7 @@
}
},
{
- "id": 22321,
+ "id": 5032,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -215264,7 +216008,7 @@
}
},
{
- "id": 22322,
+ "id": 5033,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -215320,7 +216064,7 @@
}
},
{
- "id": 22323,
+ "id": 5034,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -215380,56 +216124,56 @@
{
"title": "Properties",
"children": [
- 22274,
- 22275,
- 22276,
- 22277,
- 22278,
- 22279,
- 22280,
- 22281,
- 22282,
- 22283,
- 22284,
- 22285,
- 22286,
- 22287,
- 22288,
- 22289,
- 22290,
- 22291,
- 22292,
- 22293,
- 22294,
- 22295,
- 22296,
- 22297,
- 22298,
- 22299,
- 22300,
- 22301,
- 22302,
- 22303,
- 22304,
- 22305,
- 22306,
- 22307,
- 22308,
- 22309,
- 22310,
- 22311,
- 22312,
- 22313,
- 22314,
- 22315,
- 22316,
- 22317,
- 22318,
- 22319,
- 22320,
- 22321,
- 22322,
- 22323
+ 4985,
+ 4986,
+ 4987,
+ 4988,
+ 4989,
+ 4990,
+ 4991,
+ 4992,
+ 4993,
+ 4994,
+ 4995,
+ 4996,
+ 4997,
+ 4998,
+ 4999,
+ 5000,
+ 5001,
+ 5002,
+ 5003,
+ 5004,
+ 5005,
+ 5006,
+ 5007,
+ 5008,
+ 5009,
+ 5010,
+ 5011,
+ 5012,
+ 5013,
+ 5014,
+ 5015,
+ 5016,
+ 5017,
+ 5018,
+ 5019,
+ 5020,
+ 5021,
+ 5022,
+ 5023,
+ 5024,
+ 5025,
+ 5026,
+ 5027,
+ 5028,
+ 5029,
+ 5030,
+ 5031,
+ 5032,
+ 5033,
+ 5034
]
}
],
@@ -215474,14 +216218,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22347,
+ "id": 5058,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22348,
+ "id": 5059,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -215495,7 +216239,7 @@
],
"signatures": [
{
- "id": 22349,
+ "id": 5060,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -215509,7 +216253,7 @@
],
"parameters": [
{
- "id": 22350,
+ "id": 5061,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -215520,14 +216264,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22351,
+ "id": 5062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22352,
+ "id": 5063,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -215551,7 +216295,7 @@
{
"title": "Properties",
"children": [
- 22352
+ 5063
]
}
],
@@ -215633,7 +216377,7 @@
{
"title": "Methods",
"children": [
- 22348
+ 5059
]
}
],
@@ -215672,7 +216416,7 @@
]
},
{
- "id": 22355,
+ "id": 5066,
"name": "updateDraftOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -215747,12 +216491,21 @@
"text": "order.updated -- Emitted when the details of an order or draft order is updated. This\ndoesn't include updates made by an edit. -- ```ts\n{\n id, // The ID of the order\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 22363,
+ "id": 5074,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -215775,7 +216528,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22364,
+ "id": 5075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -215789,7 +216542,7 @@
],
"signatures": [
{
- "id": 22365,
+ "id": 5076,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -215817,7 +216570,7 @@
],
"parameters": [
{
- "id": 22366,
+ "id": 5077,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -215833,14 +216586,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22367,
+ "id": 5078,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22368,
+ "id": 5079,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -215865,7 +216618,7 @@
"types": [
{
"type": "reference",
- "target": 22258,
+ "target": 4969,
"name": "UpdateDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -215878,7 +216631,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22258,
+ "target": 4969,
"name": "UpdateDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -215894,7 +216647,7 @@
{
"title": "Properties",
"children": [
- 22368
+ 5079
]
}
],
@@ -215915,14 +216668,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22369,
+ "id": 5080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22382,
+ "id": 5093,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -215968,7 +216721,7 @@
}
},
{
- "id": 22442,
+ "id": 5153,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -216014,7 +216767,7 @@
}
},
{
- "id": 22443,
+ "id": 5154,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -216060,7 +216813,7 @@
}
},
{
- "id": 22444,
+ "id": 5155,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -216117,7 +216870,7 @@
}
},
{
- "id": 22445,
+ "id": 5156,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -216173,7 +216926,7 @@
}
},
{
- "id": 22410,
+ "id": 5121,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -216230,7 +216983,7 @@
}
},
{
- "id": 22411,
+ "id": 5122,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -216287,7 +217040,7 @@
}
},
{
- "id": 22412,
+ "id": 5123,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -216344,7 +217097,7 @@
}
},
{
- "id": 22387,
+ "id": 5098,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -216401,7 +217154,7 @@
}
},
{
- "id": 22413,
+ "id": 5124,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -216447,7 +217200,7 @@
}
},
{
- "id": 22414,
+ "id": 5125,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -216517,7 +217270,7 @@
}
},
{
- "id": 22415,
+ "id": 5126,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -216587,7 +217340,7 @@
}
},
{
- "id": 22446,
+ "id": 5157,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -216663,7 +217416,7 @@
}
},
{
- "id": 22416,
+ "id": 5127,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -216739,7 +217492,7 @@
}
},
{
- "id": 22447,
+ "id": 5158,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -216809,7 +217562,7 @@
}
},
{
- "id": 22448,
+ "id": 5159,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -216866,7 +217619,7 @@
}
},
{
- "id": 22386,
+ "id": 5097,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -216961,7 +217714,7 @@
}
},
{
- "id": 22441,
+ "id": 5152,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -217036,7 +217789,7 @@
}
},
{
- "id": 22383,
+ "id": 5094,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -217105,7 +217858,7 @@
}
},
{
- "id": 22384,
+ "id": 5095,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -217174,7 +217927,7 @@
}
},
{
- "id": 22385,
+ "id": 5096,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -217249,7 +218002,7 @@
}
},
{
- "id": 22417,
+ "id": 5128,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -217305,7 +218058,7 @@
}
},
{
- "id": 22418,
+ "id": 5129,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -217361,7 +218114,7 @@
}
},
{
- "id": 22419,
+ "id": 5130,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -217417,7 +218170,7 @@
}
},
{
- "id": 22391,
+ "id": 5102,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -217473,7 +218226,7 @@
}
},
{
- "id": 22392,
+ "id": 5103,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -217529,7 +218282,7 @@
}
},
{
- "id": 22393,
+ "id": 5104,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -217585,7 +218338,7 @@
}
},
{
- "id": 22449,
+ "id": 5160,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -217641,7 +218394,7 @@
}
},
{
- "id": 22388,
+ "id": 5099,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -217697,7 +218450,7 @@
}
},
{
- "id": 22389,
+ "id": 5100,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -217753,7 +218506,7 @@
}
},
{
- "id": 22390,
+ "id": 5101,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -217809,7 +218562,7 @@
}
},
{
- "id": 22394,
+ "id": 5105,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -217865,7 +218618,7 @@
}
},
{
- "id": 22395,
+ "id": 5106,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -217921,7 +218674,7 @@
}
},
{
- "id": 22396,
+ "id": 5107,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -217977,7 +218730,7 @@
}
},
{
- "id": 22450,
+ "id": 5161,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -218033,7 +218786,7 @@
}
},
{
- "id": 22397,
+ "id": 5108,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -218089,7 +218842,7 @@
}
},
{
- "id": 22398,
+ "id": 5109,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -218145,7 +218898,7 @@
}
},
{
- "id": 22440,
+ "id": 5151,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -218201,7 +218954,7 @@
}
},
{
- "id": 22420,
+ "id": 5131,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -218257,7 +219010,7 @@
}
},
{
- "id": 22421,
+ "id": 5132,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -218313,7 +219066,7 @@
}
},
{
- "id": 22422,
+ "id": 5133,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -218369,7 +219122,7 @@
}
},
{
- "id": 22423,
+ "id": 5134,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -218425,7 +219178,7 @@
}
},
{
- "id": 22424,
+ "id": 5135,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -218481,7 +219234,7 @@
}
},
{
- "id": 22451,
+ "id": 5162,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -218537,7 +219290,7 @@
}
},
{
- "id": 22425,
+ "id": 5136,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -218593,7 +219346,7 @@
}
},
{
- "id": 22426,
+ "id": 5137,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -218649,7 +219402,7 @@
}
},
{
- "id": 22427,
+ "id": 5138,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -218705,7 +219458,7 @@
}
},
{
- "id": 22370,
+ "id": 5081,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -218761,7 +219514,7 @@
}
},
{
- "id": 22371,
+ "id": 5082,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -218801,14 +219554,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22372,
+ "id": 5083,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22373,
+ "id": 5084,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -218840,7 +219593,7 @@
{
"title": "Properties",
"children": [
- 22373
+ 5084
]
}
],
@@ -218880,14 +219633,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22374,
+ "id": 5085,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22375,
+ "id": 5086,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -218919,7 +219672,7 @@
{
"title": "Properties",
"children": [
- 22375
+ 5086
]
}
],
@@ -218943,7 +219696,7 @@
}
},
{
- "id": 22376,
+ "id": 5087,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -218983,14 +219736,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22377,
+ "id": 5088,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22378,
+ "id": 5089,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -219022,7 +219775,7 @@
{
"title": "Properties",
"children": [
- 22378
+ 5089
]
}
],
@@ -219062,14 +219815,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22379,
+ "id": 5090,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22380,
+ "id": 5091,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -219101,7 +219854,7 @@
{
"title": "Properties",
"children": [
- 22380
+ 5091
]
}
],
@@ -219125,7 +219878,7 @@
}
},
{
- "id": 22381,
+ "id": 5092,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -219175,57 +219928,57 @@
{
"title": "Properties",
"children": [
- 22382,
- 22442,
- 22443,
- 22444,
- 22445,
- 22410,
- 22411,
- 22412,
- 22387,
- 22413,
- 22414,
- 22415,
- 22446,
- 22416,
- 22447,
- 22448,
- 22386,
- 22441,
- 22383,
- 22384,
- 22385,
- 22417,
- 22418,
- 22419,
- 22391,
- 22392,
- 22393,
- 22449,
- 22388,
- 22389,
- 22390,
- 22394,
- 22395,
- 22396,
- 22450,
- 22397,
- 22398,
- 22440,
- 22420,
- 22421,
- 22422,
- 22423,
- 22424,
- 22451,
- 22425,
- 22426,
- 22427,
- 22370,
- 22371,
- 22376,
- 22381
+ 5093,
+ 5153,
+ 5154,
+ 5155,
+ 5156,
+ 5121,
+ 5122,
+ 5123,
+ 5098,
+ 5124,
+ 5125,
+ 5126,
+ 5157,
+ 5127,
+ 5158,
+ 5159,
+ 5097,
+ 5152,
+ 5094,
+ 5095,
+ 5096,
+ 5128,
+ 5129,
+ 5130,
+ 5102,
+ 5103,
+ 5104,
+ 5160,
+ 5099,
+ 5100,
+ 5101,
+ 5105,
+ 5106,
+ 5107,
+ 5161,
+ 5108,
+ 5109,
+ 5151,
+ 5131,
+ 5132,
+ 5133,
+ 5134,
+ 5135,
+ 5162,
+ 5136,
+ 5137,
+ 5138,
+ 5081,
+ 5082,
+ 5087,
+ 5092
]
}
],
@@ -219270,14 +220023,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22452,
+ "id": 5163,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22453,
+ "id": 5164,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -219291,7 +220044,7 @@
],
"signatures": [
{
- "id": 22454,
+ "id": 5165,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -219305,7 +220058,7 @@
],
"parameters": [
{
- "id": 22455,
+ "id": 5166,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -219316,14 +220069,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22456,
+ "id": 5167,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22457,
+ "id": 5168,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -219347,7 +220100,7 @@
{
"title": "Properties",
"children": [
- 22457
+ 5168
]
}
],
@@ -219429,7 +220182,7 @@
{
"title": "Methods",
"children": [
- 22453
+ 5164
]
}
],
@@ -219470,7 +220223,7 @@
}
},
{
- "id": 22458,
+ "id": 5169,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -219493,7 +220246,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22459,
+ "id": 5170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -219507,7 +220260,7 @@
],
"signatures": [
{
- "id": 22460,
+ "id": 5171,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -219535,7 +220288,7 @@
],
"typeParameters": [
{
- "id": 22461,
+ "id": 5172,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -219546,7 +220299,7 @@
}
},
{
- "id": 22462,
+ "id": 5173,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -219559,7 +220312,7 @@
],
"parameters": [
{
- "id": 22463,
+ "id": 5174,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -219592,7 +220345,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -219603,13 +220356,13 @@
},
"trueType": {
"type": "reference",
- "target": 22258,
+ "target": 4969,
"name": "UpdateDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -219642,7 +220395,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -219662,7 +220415,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -219682,7 +220435,7 @@
}
},
{
- "id": 22464,
+ "id": 5175,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -219705,7 +220458,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22465,
+ "id": 5176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -219719,7 +220472,7 @@
],
"signatures": [
{
- "id": 22466,
+ "id": 5177,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -219741,7 +220494,7 @@
}
},
{
- "id": 22467,
+ "id": 5178,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -219764,7 +220517,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22468,
+ "id": 5179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -219778,7 +220531,7 @@
],
"signatures": [
{
- "id": 22469,
+ "id": 5180,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -219792,7 +220545,7 @@
],
"parameters": [
{
- "id": 22470,
+ "id": 5181,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -219818,7 +220571,7 @@
}
},
{
- "id": 22471,
+ "id": 5182,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -219841,7 +220594,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22472,
+ "id": 5183,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -219852,7 +220605,7 @@
],
"documents": [
{
- "id": 42361,
+ "id": 25302,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -219878,7 +220631,7 @@
"frontmatter": {}
},
{
- "id": 42362,
+ "id": 25303,
"name": "validateDraftOrderStep",
"variant": "document",
"kind": 8388608,
@@ -219904,7 +220657,7 @@
"frontmatter": {}
},
{
- "id": 42363,
+ "id": 25304,
"name": "updateDraftOrderStep",
"variant": "document",
"kind": 8388608,
@@ -219930,7 +220683,7 @@
"frontmatter": {}
},
{
- "id": 42364,
+ "id": 25305,
"name": "registerOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -219956,7 +220709,7 @@
"frontmatter": {}
},
{
- "id": 42365,
+ "id": 25306,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -219982,7 +220735,7 @@
"frontmatter": {}
},
{
- "id": 42366,
+ "id": 25307,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -220008,7 +220761,7 @@
"frontmatter": {}
},
{
- "id": 42367,
+ "id": 25308,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -220035,21 +220788,21 @@
}
],
"childrenIncludingDocuments": [
- 22363,
- 22458,
- 22464,
- 22467,
- 22471
+ 5074,
+ 5169,
+ 5175,
+ 5178,
+ 5182
],
"groups": [
{
"title": "Properties",
"children": [
- 22363,
- 22458,
- 22464,
- 22467,
- 22471
+ 5074,
+ 5169,
+ 5175,
+ 5178,
+ 5182
]
}
],
@@ -220058,12 +220811,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 150,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L150"
}
],
"signatures": [
{
- "id": 22356,
+ "id": 5067,
"name": "updateDraftOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -220138,6 +220891,15 @@
"text": "order.updated -- Emitted when the details of an order or draft order is updated. This\ndoesn't include updates made by an edit. -- ```ts\n{\n id, // The ID of the order\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.id --- acquireLockStep({ key: input.id, timeout: 2, ttl: 10, })"
+ }
+ ]
}
]
},
@@ -220146,12 +220908,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order.ts",
"line": 150,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order.ts#L150"
}
],
"typeParameters": [
{
- "id": 22357,
+ "id": 5068,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -220162,7 +220924,7 @@
}
},
{
- "id": 22358,
+ "id": 5069,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -220175,7 +220937,7 @@
],
"parameters": [
{
- "id": 22359,
+ "id": 5070,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -220199,14 +220961,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22360,
+ "id": 5071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22361,
+ "id": 5072,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -220229,7 +220991,7 @@
}
},
{
- "id": 22362,
+ "id": 5073,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -220256,8 +221018,8 @@
{
"title": "Properties",
"children": [
- 22361,
- 22362
+ 5072,
+ 5073
]
}
],
@@ -220332,7 +221094,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22258,
+ "target": 4969,
"name": "UpdateDraftOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -220347,14 +221109,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -220369,7 +221131,7 @@
]
},
{
- "id": 22473,
+ "id": 5184,
"name": "updateDraftOrderActionItemId",
"variant": "declaration",
"kind": 32,
@@ -220381,7 +221143,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-action-item.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-item.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-item.ts#L27"
}
],
"type": {
@@ -220391,7 +221153,7 @@
"defaultValue": "\"update-draft-order-action-item\""
},
{
- "id": 22474,
+ "id": 5185,
"name": "updateDraftOrderActionItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -220431,6 +221193,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -220444,7 +221215,7 @@
},
"children": [
{
- "id": 22482,
+ "id": 5193,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -220467,7 +221238,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22483,
+ "id": 5194,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -220481,7 +221252,7 @@
],
"signatures": [
{
- "id": 22484,
+ "id": 5195,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -220509,7 +221280,7 @@
],
"parameters": [
{
- "id": 22485,
+ "id": 5196,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -220525,14 +221296,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22486,
+ "id": 5197,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22487,
+ "id": 5198,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -220592,7 +221363,7 @@
{
"title": "Properties",
"children": [
- 22487
+ 5198
]
}
],
@@ -220613,14 +221384,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22488,
+ "id": 5199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22501,
+ "id": 5212,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -220666,7 +221437,7 @@
}
},
{
- "id": 22561,
+ "id": 5272,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -220712,7 +221483,7 @@
}
},
{
- "id": 22562,
+ "id": 5273,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -220758,7 +221529,7 @@
}
},
{
- "id": 22563,
+ "id": 5274,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -220815,7 +221586,7 @@
}
},
{
- "id": 22564,
+ "id": 5275,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -220871,7 +221642,7 @@
}
},
{
- "id": 22529,
+ "id": 5240,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -220928,7 +221699,7 @@
}
},
{
- "id": 22530,
+ "id": 5241,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -220985,7 +221756,7 @@
}
},
{
- "id": 22531,
+ "id": 5242,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -221042,7 +221813,7 @@
}
},
{
- "id": 22506,
+ "id": 5217,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -221099,7 +221870,7 @@
}
},
{
- "id": 22532,
+ "id": 5243,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -221145,7 +221916,7 @@
}
},
{
- "id": 22533,
+ "id": 5244,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -221215,7 +221986,7 @@
}
},
{
- "id": 22534,
+ "id": 5245,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -221285,7 +222056,7 @@
}
},
{
- "id": 22565,
+ "id": 5276,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -221361,7 +222132,7 @@
}
},
{
- "id": 22535,
+ "id": 5246,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -221437,7 +222208,7 @@
}
},
{
- "id": 22566,
+ "id": 5277,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -221507,7 +222278,7 @@
}
},
{
- "id": 22567,
+ "id": 5278,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -221564,7 +222335,7 @@
}
},
{
- "id": 22505,
+ "id": 5216,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -221659,7 +222430,7 @@
}
},
{
- "id": 22560,
+ "id": 5271,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -221734,7 +222505,7 @@
}
},
{
- "id": 22502,
+ "id": 5213,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -221803,7 +222574,7 @@
}
},
{
- "id": 22503,
+ "id": 5214,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -221872,7 +222643,7 @@
}
},
{
- "id": 22504,
+ "id": 5215,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -221947,7 +222718,7 @@
}
},
{
- "id": 22536,
+ "id": 5247,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -222003,7 +222774,7 @@
}
},
{
- "id": 22537,
+ "id": 5248,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -222059,7 +222830,7 @@
}
},
{
- "id": 22538,
+ "id": 5249,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -222115,7 +222886,7 @@
}
},
{
- "id": 22510,
+ "id": 5221,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -222171,7 +222942,7 @@
}
},
{
- "id": 22511,
+ "id": 5222,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -222227,7 +222998,7 @@
}
},
{
- "id": 22512,
+ "id": 5223,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -222283,7 +223054,7 @@
}
},
{
- "id": 22568,
+ "id": 5279,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -222339,7 +223110,7 @@
}
},
{
- "id": 22507,
+ "id": 5218,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -222395,7 +223166,7 @@
}
},
{
- "id": 22508,
+ "id": 5219,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -222451,7 +223222,7 @@
}
},
{
- "id": 22509,
+ "id": 5220,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -222507,7 +223278,7 @@
}
},
{
- "id": 22513,
+ "id": 5224,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -222563,7 +223334,7 @@
}
},
{
- "id": 22514,
+ "id": 5225,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -222619,7 +223390,7 @@
}
},
{
- "id": 22515,
+ "id": 5226,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -222675,7 +223446,7 @@
}
},
{
- "id": 22569,
+ "id": 5280,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -222731,7 +223502,7 @@
}
},
{
- "id": 22516,
+ "id": 5227,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -222787,7 +223558,7 @@
}
},
{
- "id": 22517,
+ "id": 5228,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -222843,7 +223614,7 @@
}
},
{
- "id": 22559,
+ "id": 5270,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -222899,7 +223670,7 @@
}
},
{
- "id": 22539,
+ "id": 5250,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -222955,7 +223726,7 @@
}
},
{
- "id": 22540,
+ "id": 5251,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -223011,7 +223782,7 @@
}
},
{
- "id": 22541,
+ "id": 5252,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -223067,7 +223838,7 @@
}
},
{
- "id": 22542,
+ "id": 5253,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -223123,7 +223894,7 @@
}
},
{
- "id": 22543,
+ "id": 5254,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -223179,7 +223950,7 @@
}
},
{
- "id": 22570,
+ "id": 5281,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -223235,7 +224006,7 @@
}
},
{
- "id": 22544,
+ "id": 5255,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -223291,7 +224062,7 @@
}
},
{
- "id": 22545,
+ "id": 5256,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -223347,7 +224118,7 @@
}
},
{
- "id": 22546,
+ "id": 5257,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -223403,7 +224174,7 @@
}
},
{
- "id": 22489,
+ "id": 5200,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -223459,7 +224230,7 @@
}
},
{
- "id": 22490,
+ "id": 5201,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -223499,14 +224270,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22491,
+ "id": 5202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22492,
+ "id": 5203,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -223538,7 +224309,7 @@
{
"title": "Properties",
"children": [
- 22492
+ 5203
]
}
],
@@ -223578,14 +224349,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22493,
+ "id": 5204,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22494,
+ "id": 5205,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -223617,7 +224388,7 @@
{
"title": "Properties",
"children": [
- 22494
+ 5205
]
}
],
@@ -223641,7 +224412,7 @@
}
},
{
- "id": 22495,
+ "id": 5206,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -223681,14 +224452,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22496,
+ "id": 5207,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22497,
+ "id": 5208,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -223720,7 +224491,7 @@
{
"title": "Properties",
"children": [
- 22497
+ 5208
]
}
],
@@ -223760,14 +224531,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22498,
+ "id": 5209,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22499,
+ "id": 5210,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -223799,7 +224570,7 @@
{
"title": "Properties",
"children": [
- 22499
+ 5210
]
}
],
@@ -223823,7 +224594,7 @@
}
},
{
- "id": 22500,
+ "id": 5211,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -223873,57 +224644,57 @@
{
"title": "Properties",
"children": [
- 22501,
- 22561,
- 22562,
- 22563,
- 22564,
- 22529,
- 22530,
- 22531,
- 22506,
- 22532,
- 22533,
- 22534,
- 22565,
- 22535,
- 22566,
- 22567,
- 22505,
- 22560,
- 22502,
- 22503,
- 22504,
- 22536,
- 22537,
- 22538,
- 22510,
- 22511,
- 22512,
- 22568,
- 22507,
- 22508,
- 22509,
- 22513,
- 22514,
- 22515,
- 22569,
- 22516,
- 22517,
- 22559,
- 22539,
- 22540,
- 22541,
- 22542,
- 22543,
- 22570,
- 22544,
- 22545,
- 22546,
- 22489,
- 22490,
- 22495,
- 22500
+ 5212,
+ 5272,
+ 5273,
+ 5274,
+ 5275,
+ 5240,
+ 5241,
+ 5242,
+ 5217,
+ 5243,
+ 5244,
+ 5245,
+ 5276,
+ 5246,
+ 5277,
+ 5278,
+ 5216,
+ 5271,
+ 5213,
+ 5214,
+ 5215,
+ 5247,
+ 5248,
+ 5249,
+ 5221,
+ 5222,
+ 5223,
+ 5279,
+ 5218,
+ 5219,
+ 5220,
+ 5224,
+ 5225,
+ 5226,
+ 5280,
+ 5227,
+ 5228,
+ 5270,
+ 5250,
+ 5251,
+ 5252,
+ 5253,
+ 5254,
+ 5281,
+ 5255,
+ 5256,
+ 5257,
+ 5200,
+ 5201,
+ 5206,
+ 5211
]
}
],
@@ -223968,14 +224739,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22571,
+ "id": 5282,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22572,
+ "id": 5283,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -223989,7 +224760,7 @@
],
"signatures": [
{
- "id": 22573,
+ "id": 5284,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -224003,7 +224774,7 @@
],
"parameters": [
{
- "id": 22574,
+ "id": 5285,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -224014,14 +224785,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22575,
+ "id": 5286,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22576,
+ "id": 5287,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -224045,7 +224816,7 @@
{
"title": "Properties",
"children": [
- 22576
+ 5287
]
}
],
@@ -224127,7 +224898,7 @@
{
"title": "Methods",
"children": [
- 22572
+ 5283
]
}
],
@@ -224168,7 +224939,7 @@
}
},
{
- "id": 22577,
+ "id": 5288,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -224191,7 +224962,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22578,
+ "id": 5289,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -224205,7 +224976,7 @@
],
"signatures": [
{
- "id": 22579,
+ "id": 5290,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -224233,7 +225004,7 @@
],
"typeParameters": [
{
- "id": 22580,
+ "id": 5291,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -224244,7 +225015,7 @@
}
},
{
- "id": 22581,
+ "id": 5292,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -224257,7 +225028,7 @@
],
"parameters": [
{
- "id": 22582,
+ "id": 5293,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -224290,7 +225061,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -224310,7 +225081,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -224343,7 +225114,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -224363,7 +225134,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -224383,7 +225154,7 @@
}
},
{
- "id": 22583,
+ "id": 5294,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -224406,7 +225177,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22584,
+ "id": 5295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -224420,7 +225191,7 @@
],
"signatures": [
{
- "id": 22585,
+ "id": 5296,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -224442,7 +225213,7 @@
}
},
{
- "id": 22586,
+ "id": 5297,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -224465,7 +225236,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22587,
+ "id": 5298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -224479,7 +225250,7 @@
],
"signatures": [
{
- "id": 22588,
+ "id": 5299,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -224493,7 +225264,7 @@
],
"parameters": [
{
- "id": 22589,
+ "id": 5300,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -224519,7 +225290,7 @@
}
},
{
- "id": 22590,
+ "id": 5301,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -224542,7 +225313,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22591,
+ "id": 5302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -224553,7 +225324,7 @@
],
"documents": [
{
- "id": 42368,
+ "id": 25309,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -224579,7 +225350,7 @@
"frontmatter": {}
},
{
- "id": 42369,
+ "id": 25310,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -224605,7 +225376,7 @@
"frontmatter": {}
},
{
- "id": 42370,
+ "id": 25311,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -224640,7 +225411,7 @@
"frontmatter": {},
"children": [
{
- "id": 42371,
+ "id": 25312,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -224668,7 +225439,7 @@
]
},
{
- "id": 42372,
+ "id": 25313,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -224694,7 +225465,7 @@
"frontmatter": {}
},
{
- "id": 42373,
+ "id": 25314,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -224721,21 +225492,21 @@
}
],
"childrenIncludingDocuments": [
- 22482,
- 22577,
- 22583,
- 22586,
- 22590
+ 5193,
+ 5288,
+ 5294,
+ 5297,
+ 5301
],
"groups": [
{
"title": "Properties",
"children": [
- 22482,
- 22577,
- 22583,
- 22586,
- 22590
+ 5193,
+ 5288,
+ 5294,
+ 5297,
+ 5301
]
}
],
@@ -224744,12 +225515,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-action-item.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-item.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-item.ts#L52"
}
],
"signatures": [
{
- "id": 22475,
+ "id": 5186,
"name": "updateDraftOrderActionItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -224789,6 +225560,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -224805,12 +225585,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-action-item.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-item.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-item.ts#L52"
}
],
"typeParameters": [
{
- "id": 22476,
+ "id": 5187,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -224821,7 +225601,7 @@
}
},
{
- "id": 22477,
+ "id": 5188,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -224834,7 +225614,7 @@
],
"parameters": [
{
- "id": 22478,
+ "id": 5189,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -224858,14 +225638,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22479,
+ "id": 5190,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22480,
+ "id": 5191,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -224888,7 +225668,7 @@
}
},
{
- "id": 22481,
+ "id": 5192,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -224915,8 +225695,8 @@
{
"title": "Properties",
"children": [
- 22480,
- 22481
+ 5191,
+ 5192
]
}
],
@@ -225009,14 +225789,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -225031,7 +225811,7 @@
]
},
{
- "id": 22592,
+ "id": 5303,
"name": "updateDraftOrderActionShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -225043,7 +225823,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts#L31"
}
],
"type": {
@@ -225053,7 +225833,7 @@
"defaultValue": "\"update-draft-order-action-shipping-method\""
},
{
- "id": 22593,
+ "id": 5304,
"name": "updateDraftOrderActionShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -225093,6 +225873,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -225106,7 +225895,7 @@
},
"children": [
{
- "id": 22601,
+ "id": 5312,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -225129,7 +225918,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22602,
+ "id": 5313,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -225143,7 +225932,7 @@
],
"signatures": [
{
- "id": 22603,
+ "id": 5314,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -225171,7 +225960,7 @@
],
"parameters": [
{
- "id": 22604,
+ "id": 5315,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -225187,14 +225976,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22605,
+ "id": 5316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22606,
+ "id": 5317,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -225254,7 +226043,7 @@
{
"title": "Properties",
"children": [
- 22606
+ 5317
]
}
],
@@ -225275,14 +226064,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22607,
+ "id": 5318,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22620,
+ "id": 5331,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -225328,7 +226117,7 @@
}
},
{
- "id": 22680,
+ "id": 5391,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -225374,7 +226163,7 @@
}
},
{
- "id": 22681,
+ "id": 5392,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -225420,7 +226209,7 @@
}
},
{
- "id": 22682,
+ "id": 5393,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -225477,7 +226266,7 @@
}
},
{
- "id": 22683,
+ "id": 5394,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -225533,7 +226322,7 @@
}
},
{
- "id": 22648,
+ "id": 5359,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -225590,7 +226379,7 @@
}
},
{
- "id": 22649,
+ "id": 5360,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -225647,7 +226436,7 @@
}
},
{
- "id": 22650,
+ "id": 5361,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -225704,7 +226493,7 @@
}
},
{
- "id": 22625,
+ "id": 5336,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -225761,7 +226550,7 @@
}
},
{
- "id": 22651,
+ "id": 5362,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -225807,7 +226596,7 @@
}
},
{
- "id": 22652,
+ "id": 5363,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -225877,7 +226666,7 @@
}
},
{
- "id": 22653,
+ "id": 5364,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -225947,7 +226736,7 @@
}
},
{
- "id": 22684,
+ "id": 5395,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -226023,7 +226812,7 @@
}
},
{
- "id": 22654,
+ "id": 5365,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -226099,7 +226888,7 @@
}
},
{
- "id": 22685,
+ "id": 5396,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -226169,7 +226958,7 @@
}
},
{
- "id": 22686,
+ "id": 5397,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -226226,7 +227015,7 @@
}
},
{
- "id": 22624,
+ "id": 5335,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -226321,7 +227110,7 @@
}
},
{
- "id": 22679,
+ "id": 5390,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -226396,7 +227185,7 @@
}
},
{
- "id": 22621,
+ "id": 5332,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -226465,7 +227254,7 @@
}
},
{
- "id": 22622,
+ "id": 5333,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -226534,7 +227323,7 @@
}
},
{
- "id": 22623,
+ "id": 5334,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -226609,7 +227398,7 @@
}
},
{
- "id": 22655,
+ "id": 5366,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -226665,7 +227454,7 @@
}
},
{
- "id": 22656,
+ "id": 5367,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -226721,7 +227510,7 @@
}
},
{
- "id": 22657,
+ "id": 5368,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -226777,7 +227566,7 @@
}
},
{
- "id": 22629,
+ "id": 5340,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -226833,7 +227622,7 @@
}
},
{
- "id": 22630,
+ "id": 5341,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -226889,7 +227678,7 @@
}
},
{
- "id": 22631,
+ "id": 5342,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -226945,7 +227734,7 @@
}
},
{
- "id": 22687,
+ "id": 5398,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -227001,7 +227790,7 @@
}
},
{
- "id": 22626,
+ "id": 5337,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -227057,7 +227846,7 @@
}
},
{
- "id": 22627,
+ "id": 5338,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -227113,7 +227902,7 @@
}
},
{
- "id": 22628,
+ "id": 5339,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -227169,7 +227958,7 @@
}
},
{
- "id": 22632,
+ "id": 5343,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -227225,7 +228014,7 @@
}
},
{
- "id": 22633,
+ "id": 5344,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -227281,7 +228070,7 @@
}
},
{
- "id": 22634,
+ "id": 5345,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -227337,7 +228126,7 @@
}
},
{
- "id": 22688,
+ "id": 5399,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -227393,7 +228182,7 @@
}
},
{
- "id": 22635,
+ "id": 5346,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -227449,7 +228238,7 @@
}
},
{
- "id": 22636,
+ "id": 5347,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -227505,7 +228294,7 @@
}
},
{
- "id": 22678,
+ "id": 5389,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -227561,7 +228350,7 @@
}
},
{
- "id": 22658,
+ "id": 5369,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -227617,7 +228406,7 @@
}
},
{
- "id": 22659,
+ "id": 5370,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -227673,7 +228462,7 @@
}
},
{
- "id": 22660,
+ "id": 5371,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -227729,7 +228518,7 @@
}
},
{
- "id": 22661,
+ "id": 5372,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -227785,7 +228574,7 @@
}
},
{
- "id": 22662,
+ "id": 5373,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -227841,7 +228630,7 @@
}
},
{
- "id": 22689,
+ "id": 5400,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -227897,7 +228686,7 @@
}
},
{
- "id": 22663,
+ "id": 5374,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -227953,7 +228742,7 @@
}
},
{
- "id": 22664,
+ "id": 5375,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -228009,7 +228798,7 @@
}
},
{
- "id": 22665,
+ "id": 5376,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -228065,7 +228854,7 @@
}
},
{
- "id": 22608,
+ "id": 5319,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -228121,7 +228910,7 @@
}
},
{
- "id": 22609,
+ "id": 5320,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -228161,14 +228950,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22610,
+ "id": 5321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22611,
+ "id": 5322,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -228200,7 +228989,7 @@
{
"title": "Properties",
"children": [
- 22611
+ 5322
]
}
],
@@ -228240,14 +229029,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22612,
+ "id": 5323,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22613,
+ "id": 5324,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -228279,7 +229068,7 @@
{
"title": "Properties",
"children": [
- 22613
+ 5324
]
}
],
@@ -228303,7 +229092,7 @@
}
},
{
- "id": 22614,
+ "id": 5325,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -228343,14 +229132,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22615,
+ "id": 5326,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22616,
+ "id": 5327,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -228382,7 +229171,7 @@
{
"title": "Properties",
"children": [
- 22616
+ 5327
]
}
],
@@ -228422,14 +229211,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22617,
+ "id": 5328,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22618,
+ "id": 5329,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -228461,7 +229250,7 @@
{
"title": "Properties",
"children": [
- 22618
+ 5329
]
}
],
@@ -228485,7 +229274,7 @@
}
},
{
- "id": 22619,
+ "id": 5330,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -228535,57 +229324,57 @@
{
"title": "Properties",
"children": [
- 22620,
- 22680,
- 22681,
- 22682,
- 22683,
- 22648,
- 22649,
- 22650,
- 22625,
- 22651,
- 22652,
- 22653,
- 22684,
- 22654,
- 22685,
- 22686,
- 22624,
- 22679,
- 22621,
- 22622,
- 22623,
- 22655,
- 22656,
- 22657,
- 22629,
- 22630,
- 22631,
- 22687,
- 22626,
- 22627,
- 22628,
- 22632,
- 22633,
- 22634,
- 22688,
- 22635,
- 22636,
- 22678,
- 22658,
- 22659,
- 22660,
- 22661,
- 22662,
- 22689,
- 22663,
- 22664,
- 22665,
- 22608,
- 22609,
- 22614,
- 22619
+ 5331,
+ 5391,
+ 5392,
+ 5393,
+ 5394,
+ 5359,
+ 5360,
+ 5361,
+ 5336,
+ 5362,
+ 5363,
+ 5364,
+ 5395,
+ 5365,
+ 5396,
+ 5397,
+ 5335,
+ 5390,
+ 5332,
+ 5333,
+ 5334,
+ 5366,
+ 5367,
+ 5368,
+ 5340,
+ 5341,
+ 5342,
+ 5398,
+ 5337,
+ 5338,
+ 5339,
+ 5343,
+ 5344,
+ 5345,
+ 5399,
+ 5346,
+ 5347,
+ 5389,
+ 5369,
+ 5370,
+ 5371,
+ 5372,
+ 5373,
+ 5400,
+ 5374,
+ 5375,
+ 5376,
+ 5319,
+ 5320,
+ 5325,
+ 5330
]
}
],
@@ -228630,14 +229419,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22690,
+ "id": 5401,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22691,
+ "id": 5402,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -228651,7 +229440,7 @@
],
"signatures": [
{
- "id": 22692,
+ "id": 5403,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -228665,7 +229454,7 @@
],
"parameters": [
{
- "id": 22693,
+ "id": 5404,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -228676,14 +229465,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22694,
+ "id": 5405,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22695,
+ "id": 5406,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -228707,7 +229496,7 @@
{
"title": "Properties",
"children": [
- 22695
+ 5406
]
}
],
@@ -228789,7 +229578,7 @@
{
"title": "Methods",
"children": [
- 22691
+ 5402
]
}
],
@@ -228830,7 +229619,7 @@
}
},
{
- "id": 22696,
+ "id": 5407,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -228853,7 +229642,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22697,
+ "id": 5408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -228867,7 +229656,7 @@
],
"signatures": [
{
- "id": 22698,
+ "id": 5409,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -228895,7 +229684,7 @@
],
"typeParameters": [
{
- "id": 22699,
+ "id": 5410,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -228906,7 +229695,7 @@
}
},
{
- "id": 22700,
+ "id": 5411,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -228919,7 +229708,7 @@
],
"parameters": [
{
- "id": 22701,
+ "id": 5412,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -228952,7 +229741,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -228972,7 +229761,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -229005,7 +229794,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -229025,7 +229814,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -229045,7 +229834,7 @@
}
},
{
- "id": 22702,
+ "id": 5413,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -229068,7 +229857,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22703,
+ "id": 5414,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -229082,7 +229871,7 @@
],
"signatures": [
{
- "id": 22704,
+ "id": 5415,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -229104,7 +229893,7 @@
}
},
{
- "id": 22705,
+ "id": 5416,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -229127,7 +229916,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22706,
+ "id": 5417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -229141,7 +229930,7 @@
],
"signatures": [
{
- "id": 22707,
+ "id": 5418,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -229155,7 +229944,7 @@
],
"parameters": [
{
- "id": 22708,
+ "id": 5419,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -229181,7 +229970,7 @@
}
},
{
- "id": 22709,
+ "id": 5420,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -229204,7 +229993,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22710,
+ "id": 5421,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -229215,7 +230004,7 @@
],
"documents": [
{
- "id": 42374,
+ "id": 25315,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -229241,7 +230030,7 @@
"frontmatter": {}
},
{
- "id": 42376,
+ "id": 25317,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -229267,7 +230056,7 @@
"frontmatter": {}
},
{
- "id": 42377,
+ "id": 25318,
"name": "updateOrderShippingMethodsStep",
"variant": "document",
"kind": 8388608,
@@ -229293,7 +230082,7 @@
"frontmatter": {}
},
{
- "id": 42378,
+ "id": 25319,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -229328,7 +230117,7 @@
"frontmatter": {},
"children": [
{
- "id": 42379,
+ "id": 25320,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -229356,7 +230145,7 @@
]
},
{
- "id": 42380,
+ "id": 25321,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -229382,7 +230171,7 @@
"frontmatter": {}
},
{
- "id": 42381,
+ "id": 25322,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -229409,21 +230198,21 @@
}
],
"childrenIncludingDocuments": [
- 22601,
- 22696,
- 22702,
- 22705,
- 22709
+ 5312,
+ 5407,
+ 5413,
+ 5416,
+ 5420
],
"groups": [
{
"title": "Properties",
"children": [
- 22601,
- 22696,
- 22702,
- 22705,
- 22709
+ 5312,
+ 5407,
+ 5413,
+ 5416,
+ 5420
]
}
],
@@ -229432,12 +230221,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts#L57"
}
],
"signatures": [
{
- "id": 22594,
+ "id": 5305,
"name": "updateDraftOrderActionShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -229477,6 +230266,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -229493,12 +230291,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-action-shipping-method.ts#L57"
}
],
"typeParameters": [
{
- "id": 22595,
+ "id": 5306,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -229509,7 +230307,7 @@
}
},
{
- "id": 22596,
+ "id": 5307,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -229522,7 +230320,7 @@
],
"parameters": [
{
- "id": 22597,
+ "id": 5308,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -229546,14 +230344,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22598,
+ "id": 5309,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22599,
+ "id": 5310,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -229576,7 +230374,7 @@
}
},
{
- "id": 22600,
+ "id": 5311,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -229603,8 +230401,8 @@
{
"title": "Properties",
"children": [
- 22599,
- 22600
+ 5310,
+ 5311
]
}
],
@@ -229697,14 +230495,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -229719,7 +230517,7 @@
]
},
{
- "id": 22711,
+ "id": 5422,
"name": "updateDraftOrderItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -229731,7 +230529,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-item.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-item.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-item.ts#L31"
}
],
"type": {
@@ -229741,7 +230539,7 @@
"defaultValue": "\"update-draft-order-item\""
},
{
- "id": 22712,
+ "id": 5423,
"name": "updateDraftOrderItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -229781,6 +230579,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -229794,7 +230601,7 @@
},
"children": [
{
- "id": 22720,
+ "id": 5431,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -229817,7 +230624,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22721,
+ "id": 5432,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -229831,7 +230638,7 @@
],
"signatures": [
{
- "id": 22722,
+ "id": 5433,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -229859,7 +230666,7 @@
],
"parameters": [
{
- "id": 22723,
+ "id": 5434,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -229875,14 +230682,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22724,
+ "id": 5435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22725,
+ "id": 5436,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -229942,7 +230749,7 @@
{
"title": "Properties",
"children": [
- 22725
+ 5436
]
}
],
@@ -229963,14 +230770,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22726,
+ "id": 5437,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22739,
+ "id": 5450,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -230016,7 +230823,7 @@
}
},
{
- "id": 22799,
+ "id": 5510,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -230062,7 +230869,7 @@
}
},
{
- "id": 22800,
+ "id": 5511,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -230108,7 +230915,7 @@
}
},
{
- "id": 22801,
+ "id": 5512,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -230165,7 +230972,7 @@
}
},
{
- "id": 22802,
+ "id": 5513,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -230221,7 +231028,7 @@
}
},
{
- "id": 22767,
+ "id": 5478,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -230278,7 +231085,7 @@
}
},
{
- "id": 22768,
+ "id": 5479,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -230335,7 +231142,7 @@
}
},
{
- "id": 22769,
+ "id": 5480,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -230392,7 +231199,7 @@
}
},
{
- "id": 22744,
+ "id": 5455,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -230449,7 +231256,7 @@
}
},
{
- "id": 22770,
+ "id": 5481,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -230495,7 +231302,7 @@
}
},
{
- "id": 22771,
+ "id": 5482,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -230565,7 +231372,7 @@
}
},
{
- "id": 22772,
+ "id": 5483,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -230635,7 +231442,7 @@
}
},
{
- "id": 22803,
+ "id": 5514,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -230711,7 +231518,7 @@
}
},
{
- "id": 22773,
+ "id": 5484,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -230787,7 +231594,7 @@
}
},
{
- "id": 22804,
+ "id": 5515,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -230857,7 +231664,7 @@
}
},
{
- "id": 22805,
+ "id": 5516,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -230914,7 +231721,7 @@
}
},
{
- "id": 22743,
+ "id": 5454,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -231009,7 +231816,7 @@
}
},
{
- "id": 22798,
+ "id": 5509,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -231084,7 +231891,7 @@
}
},
{
- "id": 22740,
+ "id": 5451,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -231153,7 +231960,7 @@
}
},
{
- "id": 22741,
+ "id": 5452,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -231222,7 +232029,7 @@
}
},
{
- "id": 22742,
+ "id": 5453,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -231297,7 +232104,7 @@
}
},
{
- "id": 22774,
+ "id": 5485,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -231353,7 +232160,7 @@
}
},
{
- "id": 22775,
+ "id": 5486,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -231409,7 +232216,7 @@
}
},
{
- "id": 22776,
+ "id": 5487,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -231465,7 +232272,7 @@
}
},
{
- "id": 22748,
+ "id": 5459,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -231521,7 +232328,7 @@
}
},
{
- "id": 22749,
+ "id": 5460,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -231577,7 +232384,7 @@
}
},
{
- "id": 22750,
+ "id": 5461,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -231633,7 +232440,7 @@
}
},
{
- "id": 22806,
+ "id": 5517,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -231689,7 +232496,7 @@
}
},
{
- "id": 22745,
+ "id": 5456,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -231745,7 +232552,7 @@
}
},
{
- "id": 22746,
+ "id": 5457,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -231801,7 +232608,7 @@
}
},
{
- "id": 22747,
+ "id": 5458,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -231857,7 +232664,7 @@
}
},
{
- "id": 22751,
+ "id": 5462,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -231913,7 +232720,7 @@
}
},
{
- "id": 22752,
+ "id": 5463,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -231969,7 +232776,7 @@
}
},
{
- "id": 22753,
+ "id": 5464,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -232025,7 +232832,7 @@
}
},
{
- "id": 22807,
+ "id": 5518,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -232081,7 +232888,7 @@
}
},
{
- "id": 22754,
+ "id": 5465,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -232137,7 +232944,7 @@
}
},
{
- "id": 22755,
+ "id": 5466,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -232193,7 +233000,7 @@
}
},
{
- "id": 22797,
+ "id": 5508,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -232249,7 +233056,7 @@
}
},
{
- "id": 22777,
+ "id": 5488,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -232305,7 +233112,7 @@
}
},
{
- "id": 22778,
+ "id": 5489,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -232361,7 +233168,7 @@
}
},
{
- "id": 22779,
+ "id": 5490,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -232417,7 +233224,7 @@
}
},
{
- "id": 22780,
+ "id": 5491,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -232473,7 +233280,7 @@
}
},
{
- "id": 22781,
+ "id": 5492,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -232529,7 +233336,7 @@
}
},
{
- "id": 22808,
+ "id": 5519,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -232585,7 +233392,7 @@
}
},
{
- "id": 22782,
+ "id": 5493,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -232641,7 +233448,7 @@
}
},
{
- "id": 22783,
+ "id": 5494,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -232697,7 +233504,7 @@
}
},
{
- "id": 22784,
+ "id": 5495,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -232753,7 +233560,7 @@
}
},
{
- "id": 22727,
+ "id": 5438,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -232809,7 +233616,7 @@
}
},
{
- "id": 22728,
+ "id": 5439,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -232849,14 +233656,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22729,
+ "id": 5440,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22730,
+ "id": 5441,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -232888,7 +233695,7 @@
{
"title": "Properties",
"children": [
- 22730
+ 5441
]
}
],
@@ -232928,14 +233735,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22731,
+ "id": 5442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22732,
+ "id": 5443,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -232967,7 +233774,7 @@
{
"title": "Properties",
"children": [
- 22732
+ 5443
]
}
],
@@ -232991,7 +233798,7 @@
}
},
{
- "id": 22733,
+ "id": 5444,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -233031,14 +233838,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22734,
+ "id": 5445,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22735,
+ "id": 5446,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -233070,7 +233877,7 @@
{
"title": "Properties",
"children": [
- 22735
+ 5446
]
}
],
@@ -233110,14 +233917,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22736,
+ "id": 5447,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22737,
+ "id": 5448,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -233149,7 +233956,7 @@
{
"title": "Properties",
"children": [
- 22737
+ 5448
]
}
],
@@ -233173,7 +233980,7 @@
}
},
{
- "id": 22738,
+ "id": 5449,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -233223,57 +234030,57 @@
{
"title": "Properties",
"children": [
- 22739,
- 22799,
- 22800,
- 22801,
- 22802,
- 22767,
- 22768,
- 22769,
- 22744,
- 22770,
- 22771,
- 22772,
- 22803,
- 22773,
- 22804,
- 22805,
- 22743,
- 22798,
- 22740,
- 22741,
- 22742,
- 22774,
- 22775,
- 22776,
- 22748,
- 22749,
- 22750,
- 22806,
- 22745,
- 22746,
- 22747,
- 22751,
- 22752,
- 22753,
- 22807,
- 22754,
- 22755,
- 22797,
- 22777,
- 22778,
- 22779,
- 22780,
- 22781,
- 22808,
- 22782,
- 22783,
- 22784,
- 22727,
- 22728,
- 22733,
- 22738
+ 5450,
+ 5510,
+ 5511,
+ 5512,
+ 5513,
+ 5478,
+ 5479,
+ 5480,
+ 5455,
+ 5481,
+ 5482,
+ 5483,
+ 5514,
+ 5484,
+ 5515,
+ 5516,
+ 5454,
+ 5509,
+ 5451,
+ 5452,
+ 5453,
+ 5485,
+ 5486,
+ 5487,
+ 5459,
+ 5460,
+ 5461,
+ 5517,
+ 5456,
+ 5457,
+ 5458,
+ 5462,
+ 5463,
+ 5464,
+ 5518,
+ 5465,
+ 5466,
+ 5508,
+ 5488,
+ 5489,
+ 5490,
+ 5491,
+ 5492,
+ 5519,
+ 5493,
+ 5494,
+ 5495,
+ 5438,
+ 5439,
+ 5444,
+ 5449
]
}
],
@@ -233318,14 +234125,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22809,
+ "id": 5520,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22810,
+ "id": 5521,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -233339,7 +234146,7 @@
],
"signatures": [
{
- "id": 22811,
+ "id": 5522,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -233353,7 +234160,7 @@
],
"parameters": [
{
- "id": 22812,
+ "id": 5523,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -233364,14 +234171,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22813,
+ "id": 5524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22814,
+ "id": 5525,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -233395,7 +234202,7 @@
{
"title": "Properties",
"children": [
- 22814
+ 5525
]
}
],
@@ -233477,7 +234284,7 @@
{
"title": "Methods",
"children": [
- 22810
+ 5521
]
}
],
@@ -233518,7 +234325,7 @@
}
},
{
- "id": 22815,
+ "id": 5526,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -233541,7 +234348,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22816,
+ "id": 5527,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -233555,7 +234362,7 @@
],
"signatures": [
{
- "id": 22817,
+ "id": 5528,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -233583,7 +234390,7 @@
],
"typeParameters": [
{
- "id": 22818,
+ "id": 5529,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -233594,7 +234401,7 @@
}
},
{
- "id": 22819,
+ "id": 5530,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -233607,7 +234414,7 @@
],
"parameters": [
{
- "id": 22820,
+ "id": 5531,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -233640,7 +234447,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -233660,7 +234467,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -233693,7 +234500,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -233713,7 +234520,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -233733,7 +234540,7 @@
}
},
{
- "id": 22821,
+ "id": 5532,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -233756,7 +234563,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22822,
+ "id": 5533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -233770,7 +234577,7 @@
],
"signatures": [
{
- "id": 22823,
+ "id": 5534,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -233792,7 +234599,7 @@
}
},
{
- "id": 22824,
+ "id": 5535,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -233815,7 +234622,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22825,
+ "id": 5536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -233829,7 +234636,7 @@
],
"signatures": [
{
- "id": 22826,
+ "id": 5537,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -233843,7 +234650,7 @@
],
"parameters": [
{
- "id": 22827,
+ "id": 5538,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -233869,7 +234676,7 @@
}
},
{
- "id": 22828,
+ "id": 5539,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -233892,7 +234699,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22829,
+ "id": 5540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -233903,7 +234710,7 @@
],
"documents": [
{
- "id": 42382,
+ "id": 25323,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -233929,7 +234736,7 @@
"frontmatter": {}
},
{
- "id": 42383,
+ "id": 25324,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -233955,7 +234762,7 @@
"frontmatter": {}
},
{
- "id": 42384,
+ "id": 25325,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -233990,7 +234797,7 @@
"frontmatter": {},
"children": [
{
- "id": 42385,
+ "id": 25326,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -234018,7 +234825,7 @@
]
},
{
- "id": 42386,
+ "id": 25327,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -234044,7 +234851,7 @@
"frontmatter": {}
},
{
- "id": 42387,
+ "id": 25328,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -234071,21 +234878,21 @@
}
],
"childrenIncludingDocuments": [
- 22720,
- 22815,
- 22821,
- 22824,
- 22828
+ 5431,
+ 5526,
+ 5532,
+ 5535,
+ 5539
],
"groups": [
{
"title": "Properties",
"children": [
- 22720,
- 22815,
- 22821,
- 22824,
- 22828
+ 5431,
+ 5526,
+ 5532,
+ 5535,
+ 5539
]
}
],
@@ -234094,12 +234901,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-item.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-item.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-item.ts#L53"
}
],
"signatures": [
{
- "id": 22713,
+ "id": 5424,
"name": "updateDraftOrderItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -234139,6 +234946,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -234155,12 +234971,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-item.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-item.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-item.ts#L53"
}
],
"typeParameters": [
{
- "id": 22714,
+ "id": 5425,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -234171,7 +234987,7 @@
}
},
{
- "id": 22715,
+ "id": 5426,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -234184,7 +235000,7 @@
],
"parameters": [
{
- "id": 22716,
+ "id": 5427,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -234208,14 +235024,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22717,
+ "id": 5428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22718,
+ "id": 5429,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -234238,7 +235054,7 @@
}
},
{
- "id": 22719,
+ "id": 5430,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -234265,8 +235081,8 @@
{
"title": "Properties",
"children": [
- 22718,
- 22719
+ 5429,
+ 5430
]
}
],
@@ -234359,14 +235175,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -234381,7 +235197,7 @@
]
},
{
- "id": 22830,
+ "id": 5541,
"name": "updateDraftOrderShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -234393,7 +235209,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L26"
}
],
"type": {
@@ -234403,7 +235219,7 @@
"defaultValue": "\"update-draft-order-shipping-method\""
},
{
- "id": 22832,
+ "id": 5543,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -234421,7 +235237,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L36"
}
],
"type": {
@@ -234430,7 +235246,7 @@
}
},
{
- "id": 22835,
+ "id": 5546,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -234448,7 +235264,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L41"
}
],
"type": {
@@ -234457,7 +235273,7 @@
}
},
{
- "id": 22836,
+ "id": 5547,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -234477,7 +235293,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L45"
}
],
"type": {
@@ -234486,7 +235302,7 @@
}
},
{
- "id": 22837,
+ "id": 5548,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -234506,7 +235322,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L49"
}
],
"type": {
@@ -234520,7 +235336,7 @@
}
},
{
- "id": 22838,
+ "id": 5549,
"name": "internal_note",
"variant": "declaration",
"kind": 1024,
@@ -234540,7 +235356,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L53"
}
],
"type": {
@@ -234558,7 +235374,7 @@
}
},
{
- "id": 22833,
+ "id": 5544,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -234568,20 +235384,20 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L37"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 22834,
+ "id": 5545,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22835,
+ "id": 5546,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -234599,7 +235415,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L41"
}
],
"type": {
@@ -234608,7 +235424,7 @@
}
},
{
- "id": 22836,
+ "id": 5547,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -234628,7 +235444,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L45"
}
],
"type": {
@@ -234637,7 +235453,7 @@
}
},
{
- "id": 22837,
+ "id": 5548,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -234657,7 +235473,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L49"
}
],
"type": {
@@ -234671,7 +235487,7 @@
}
},
{
- "id": 22838,
+ "id": 5549,
"name": "internal_note",
"variant": "declaration",
"kind": 1024,
@@ -234691,7 +235507,7 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L53"
}
],
"type": {
@@ -234713,10 +235529,10 @@
{
"title": "Properties",
"children": [
- 22835,
- 22836,
- 22837,
- 22838
+ 5546,
+ 5547,
+ 5548,
+ 5549
]
}
],
@@ -234725,14 +235541,14 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 37,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L37"
}
]
}
}
},
{
- "id": 22839,
+ "id": 5550,
"name": "updateDraftOrderShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -234772,6 +235588,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -234785,7 +235610,7 @@
},
"children": [
{
- "id": 22847,
+ "id": 5558,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -234808,7 +235633,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22848,
+ "id": 5559,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -234822,7 +235647,7 @@
],
"signatures": [
{
- "id": 22849,
+ "id": 5560,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -234850,7 +235675,7 @@
],
"parameters": [
{
- "id": 22850,
+ "id": 5561,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -234866,14 +235691,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22851,
+ "id": 5562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22852,
+ "id": 5563,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -234898,7 +235723,7 @@
"types": [
{
"type": "reference",
- "target": 22831,
+ "target": 5542,
"name": "UpdateDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -234911,7 +235736,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22831,
+ "target": 5542,
"name": "UpdateDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -234927,7 +235752,7 @@
{
"title": "Properties",
"children": [
- 22852
+ 5563
]
}
],
@@ -234948,14 +235773,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22853,
+ "id": 5564,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22866,
+ "id": 5577,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -235001,7 +235826,7 @@
}
},
{
- "id": 22926,
+ "id": 5637,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -235047,7 +235872,7 @@
}
},
{
- "id": 22927,
+ "id": 5638,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -235093,7 +235918,7 @@
}
},
{
- "id": 22928,
+ "id": 5639,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -235150,7 +235975,7 @@
}
},
{
- "id": 22929,
+ "id": 5640,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -235206,7 +236031,7 @@
}
},
{
- "id": 22894,
+ "id": 5605,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -235263,7 +236088,7 @@
}
},
{
- "id": 22895,
+ "id": 5606,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -235320,7 +236145,7 @@
}
},
{
- "id": 22896,
+ "id": 5607,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -235377,7 +236202,7 @@
}
},
{
- "id": 22871,
+ "id": 5582,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -235434,7 +236259,7 @@
}
},
{
- "id": 22897,
+ "id": 5608,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -235480,7 +236305,7 @@
}
},
{
- "id": 22898,
+ "id": 5609,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -235550,7 +236375,7 @@
}
},
{
- "id": 22899,
+ "id": 5610,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -235620,7 +236445,7 @@
}
},
{
- "id": 22930,
+ "id": 5641,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -235696,7 +236521,7 @@
}
},
{
- "id": 22900,
+ "id": 5611,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -235772,7 +236597,7 @@
}
},
{
- "id": 22931,
+ "id": 5642,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -235842,7 +236667,7 @@
}
},
{
- "id": 22932,
+ "id": 5643,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -235899,7 +236724,7 @@
}
},
{
- "id": 22870,
+ "id": 5581,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -235994,7 +236819,7 @@
}
},
{
- "id": 22925,
+ "id": 5636,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -236069,7 +236894,7 @@
}
},
{
- "id": 22867,
+ "id": 5578,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -236138,7 +236963,7 @@
}
},
{
- "id": 22868,
+ "id": 5579,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -236207,7 +237032,7 @@
}
},
{
- "id": 22869,
+ "id": 5580,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -236282,7 +237107,7 @@
}
},
{
- "id": 22901,
+ "id": 5612,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -236338,7 +237163,7 @@
}
},
{
- "id": 22902,
+ "id": 5613,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -236394,7 +237219,7 @@
}
},
{
- "id": 22903,
+ "id": 5614,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -236450,7 +237275,7 @@
}
},
{
- "id": 22875,
+ "id": 5586,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -236506,7 +237331,7 @@
}
},
{
- "id": 22876,
+ "id": 5587,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -236562,7 +237387,7 @@
}
},
{
- "id": 22877,
+ "id": 5588,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -236618,7 +237443,7 @@
}
},
{
- "id": 22933,
+ "id": 5644,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -236674,7 +237499,7 @@
}
},
{
- "id": 22872,
+ "id": 5583,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -236730,7 +237555,7 @@
}
},
{
- "id": 22873,
+ "id": 5584,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -236786,7 +237611,7 @@
}
},
{
- "id": 22874,
+ "id": 5585,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -236842,7 +237667,7 @@
}
},
{
- "id": 22878,
+ "id": 5589,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -236898,7 +237723,7 @@
}
},
{
- "id": 22879,
+ "id": 5590,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -236954,7 +237779,7 @@
}
},
{
- "id": 22880,
+ "id": 5591,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -237010,7 +237835,7 @@
}
},
{
- "id": 22934,
+ "id": 5645,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -237066,7 +237891,7 @@
}
},
{
- "id": 22881,
+ "id": 5592,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -237122,7 +237947,7 @@
}
},
{
- "id": 22882,
+ "id": 5593,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -237178,7 +238003,7 @@
}
},
{
- "id": 22924,
+ "id": 5635,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -237234,7 +238059,7 @@
}
},
{
- "id": 22904,
+ "id": 5615,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -237290,7 +238115,7 @@
}
},
{
- "id": 22905,
+ "id": 5616,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -237346,7 +238171,7 @@
}
},
{
- "id": 22906,
+ "id": 5617,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -237402,7 +238227,7 @@
}
},
{
- "id": 22907,
+ "id": 5618,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -237458,7 +238283,7 @@
}
},
{
- "id": 22908,
+ "id": 5619,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -237514,7 +238339,7 @@
}
},
{
- "id": 22935,
+ "id": 5646,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -237570,7 +238395,7 @@
}
},
{
- "id": 22909,
+ "id": 5620,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -237626,7 +238451,7 @@
}
},
{
- "id": 22910,
+ "id": 5621,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -237682,7 +238507,7 @@
}
},
{
- "id": 22911,
+ "id": 5622,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -237738,7 +238563,7 @@
}
},
{
- "id": 22854,
+ "id": 5565,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -237794,7 +238619,7 @@
}
},
{
- "id": 22855,
+ "id": 5566,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -237834,14 +238659,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22856,
+ "id": 5567,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22857,
+ "id": 5568,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -237873,7 +238698,7 @@
{
"title": "Properties",
"children": [
- 22857
+ 5568
]
}
],
@@ -237913,14 +238738,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22858,
+ "id": 5569,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22859,
+ "id": 5570,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -237952,7 +238777,7 @@
{
"title": "Properties",
"children": [
- 22859
+ 5570
]
}
],
@@ -237976,7 +238801,7 @@
}
},
{
- "id": 22860,
+ "id": 5571,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -238016,14 +238841,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22861,
+ "id": 5572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22862,
+ "id": 5573,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -238055,7 +238880,7 @@
{
"title": "Properties",
"children": [
- 22862
+ 5573
]
}
],
@@ -238095,14 +238920,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22863,
+ "id": 5574,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22864,
+ "id": 5575,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -238134,7 +238959,7 @@
{
"title": "Properties",
"children": [
- 22864
+ 5575
]
}
],
@@ -238158,7 +238983,7 @@
}
},
{
- "id": 22865,
+ "id": 5576,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -238208,57 +239033,57 @@
{
"title": "Properties",
"children": [
- 22866,
- 22926,
- 22927,
- 22928,
- 22929,
- 22894,
- 22895,
- 22896,
- 22871,
- 22897,
- 22898,
- 22899,
- 22930,
- 22900,
- 22931,
- 22932,
- 22870,
- 22925,
- 22867,
- 22868,
- 22869,
- 22901,
- 22902,
- 22903,
- 22875,
- 22876,
- 22877,
- 22933,
- 22872,
- 22873,
- 22874,
- 22878,
- 22879,
- 22880,
- 22934,
- 22881,
- 22882,
- 22924,
- 22904,
- 22905,
- 22906,
- 22907,
- 22908,
- 22935,
- 22909,
- 22910,
- 22911,
- 22854,
- 22855,
- 22860,
- 22865
+ 5577,
+ 5637,
+ 5638,
+ 5639,
+ 5640,
+ 5605,
+ 5606,
+ 5607,
+ 5582,
+ 5608,
+ 5609,
+ 5610,
+ 5641,
+ 5611,
+ 5642,
+ 5643,
+ 5581,
+ 5636,
+ 5578,
+ 5579,
+ 5580,
+ 5612,
+ 5613,
+ 5614,
+ 5586,
+ 5587,
+ 5588,
+ 5644,
+ 5583,
+ 5584,
+ 5585,
+ 5589,
+ 5590,
+ 5591,
+ 5645,
+ 5592,
+ 5593,
+ 5635,
+ 5615,
+ 5616,
+ 5617,
+ 5618,
+ 5619,
+ 5646,
+ 5620,
+ 5621,
+ 5622,
+ 5565,
+ 5566,
+ 5571,
+ 5576
]
}
],
@@ -238303,14 +239128,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22936,
+ "id": 5647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22937,
+ "id": 5648,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -238324,7 +239149,7 @@
],
"signatures": [
{
- "id": 22938,
+ "id": 5649,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -238338,7 +239163,7 @@
],
"parameters": [
{
- "id": 22939,
+ "id": 5650,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -238349,14 +239174,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22940,
+ "id": 5651,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22941,
+ "id": 5652,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -238380,7 +239205,7 @@
{
"title": "Properties",
"children": [
- 22941
+ 5652
]
}
],
@@ -238462,7 +239287,7 @@
{
"title": "Methods",
"children": [
- 22937
+ 5648
]
}
],
@@ -238503,7 +239328,7 @@
}
},
{
- "id": 22942,
+ "id": 5653,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -238526,7 +239351,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22943,
+ "id": 5654,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -238540,7 +239365,7 @@
],
"signatures": [
{
- "id": 22944,
+ "id": 5655,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -238568,7 +239393,7 @@
],
"typeParameters": [
{
- "id": 22945,
+ "id": 5656,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -238579,7 +239404,7 @@
}
},
{
- "id": 22946,
+ "id": 5657,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -238592,7 +239417,7 @@
],
"parameters": [
{
- "id": 22947,
+ "id": 5658,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -238625,7 +239450,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -238636,13 +239461,13 @@
},
"trueType": {
"type": "reference",
- "target": 22831,
+ "target": 5542,
"name": "UpdateDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -238675,7 +239500,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -238695,7 +239520,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -238715,7 +239540,7 @@
}
},
{
- "id": 22948,
+ "id": 5659,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -238738,7 +239563,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22949,
+ "id": 5660,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -238752,7 +239577,7 @@
],
"signatures": [
{
- "id": 22950,
+ "id": 5661,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -238774,7 +239599,7 @@
}
},
{
- "id": 22951,
+ "id": 5662,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -238797,7 +239622,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22952,
+ "id": 5663,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -238811,7 +239636,7 @@
],
"signatures": [
{
- "id": 22953,
+ "id": 5664,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -238825,7 +239650,7 @@
],
"parameters": [
{
- "id": 22954,
+ "id": 5665,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -238851,7 +239676,7 @@
}
},
{
- "id": 22955,
+ "id": 5666,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -238874,7 +239699,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22956,
+ "id": 5667,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -238885,7 +239710,7 @@
],
"documents": [
{
- "id": 42388,
+ "id": 25329,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -238911,7 +239736,7 @@
"frontmatter": {}
},
{
- "id": 42389,
+ "id": 25330,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -238937,7 +239762,7 @@
"frontmatter": {}
},
{
- "id": 42390,
+ "id": 25331,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -238972,7 +239797,7 @@
"frontmatter": {},
"children": [
{
- "id": 42391,
+ "id": 25332,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -239000,7 +239825,7 @@
]
},
{
- "id": 42392,
+ "id": 25333,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -239026,7 +239851,7 @@
"frontmatter": {}
},
{
- "id": 42393,
+ "id": 25334,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -239052,7 +239877,7 @@
"frontmatter": {}
},
{
- "id": 42394,
+ "id": 25335,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -239079,21 +239904,21 @@
}
],
"childrenIncludingDocuments": [
- 22847,
- 22942,
- 22948,
- 22951,
- 22955
+ 5558,
+ 5653,
+ 5659,
+ 5662,
+ 5666
],
"groups": [
{
"title": "Properties",
"children": [
- 22847,
- 22942,
- 22948,
- 22951,
- 22955
+ 5558,
+ 5653,
+ 5659,
+ 5662,
+ 5666
]
}
],
@@ -239102,12 +239927,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 80,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L80"
}
],
"signatures": [
{
- "id": 22840,
+ "id": 5551,
"name": "updateDraftOrderShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -239147,6 +239972,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -239163,12 +239997,12 @@
"fileName": "core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts",
"line": 80,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/update-draft-order-shipping-method.ts#L80"
}
],
"typeParameters": [
{
- "id": 22841,
+ "id": 5552,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -239179,7 +240013,7 @@
}
},
{
- "id": 22842,
+ "id": 5553,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -239192,7 +240026,7 @@
],
"parameters": [
{
- "id": 22843,
+ "id": 5554,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -239216,14 +240050,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22844,
+ "id": 5555,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22845,
+ "id": 5556,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -239246,7 +240080,7 @@
}
},
{
- "id": 22846,
+ "id": 5557,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -239273,8 +240107,8 @@
{
"title": "Properties",
"children": [
- 22845,
- 22846
+ 5556,
+ 5557
]
}
],
@@ -239349,7 +240183,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22831,
+ "target": 5542,
"name": "UpdateDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -239364,14 +240198,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -239386,7 +240220,7 @@
]
},
{
- "id": 22957,
+ "id": 5668,
"name": "removeDraftOrderShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -239398,7 +240232,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L20"
}
],
"type": {
@@ -239408,7 +240242,7 @@
"defaultValue": "\"remove-draft-order-shipping-method\""
},
{
- "id": 22959,
+ "id": 5670,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -239426,7 +240260,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L30"
}
],
"type": {
@@ -239435,7 +240269,7 @@
}
},
{
- "id": 22960,
+ "id": 5671,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -239453,7 +240287,7 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L34"
}
],
"type": {
@@ -239462,7 +240296,7 @@
}
},
{
- "id": 22961,
+ "id": 5672,
"name": "removeDraftOrderShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -239502,6 +240336,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -239515,7 +240358,7 @@
},
"children": [
{
- "id": 22969,
+ "id": 5680,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -239538,7 +240381,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22970,
+ "id": 5681,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -239552,7 +240395,7 @@
],
"signatures": [
{
- "id": 22971,
+ "id": 5682,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -239580,7 +240423,7 @@
],
"parameters": [
{
- "id": 22972,
+ "id": 5683,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -239596,14 +240439,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 22973,
+ "id": 5684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22974,
+ "id": 5685,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -239628,7 +240471,7 @@
"types": [
{
"type": "reference",
- "target": 22958,
+ "target": 5669,
"name": "RemoveDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -239641,7 +240484,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22958,
+ "target": 5669,
"name": "RemoveDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -239657,7 +240500,7 @@
{
"title": "Properties",
"children": [
- 22974
+ 5685
]
}
],
@@ -239678,14 +240521,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22975,
+ "id": 5686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22988,
+ "id": 5699,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -239731,7 +240574,7 @@
}
},
{
- "id": 23048,
+ "id": 5759,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -239777,7 +240620,7 @@
}
},
{
- "id": 23049,
+ "id": 5760,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -239823,7 +240666,7 @@
}
},
{
- "id": 23050,
+ "id": 5761,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -239880,7 +240723,7 @@
}
},
{
- "id": 23051,
+ "id": 5762,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -239936,7 +240779,7 @@
}
},
{
- "id": 23016,
+ "id": 5727,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -239993,7 +240836,7 @@
}
},
{
- "id": 23017,
+ "id": 5728,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -240050,7 +240893,7 @@
}
},
{
- "id": 23018,
+ "id": 5729,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -240107,7 +240950,7 @@
}
},
{
- "id": 22993,
+ "id": 5704,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -240164,7 +241007,7 @@
}
},
{
- "id": 23019,
+ "id": 5730,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -240210,7 +241053,7 @@
}
},
{
- "id": 23020,
+ "id": 5731,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -240280,7 +241123,7 @@
}
},
{
- "id": 23021,
+ "id": 5732,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -240350,7 +241193,7 @@
}
},
{
- "id": 23052,
+ "id": 5763,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -240426,7 +241269,7 @@
}
},
{
- "id": 23022,
+ "id": 5733,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -240502,7 +241345,7 @@
}
},
{
- "id": 23053,
+ "id": 5764,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -240572,7 +241415,7 @@
}
},
{
- "id": 23054,
+ "id": 5765,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -240629,7 +241472,7 @@
}
},
{
- "id": 22992,
+ "id": 5703,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -240724,7 +241567,7 @@
}
},
{
- "id": 23047,
+ "id": 5758,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -240799,7 +241642,7 @@
}
},
{
- "id": 22989,
+ "id": 5700,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -240868,7 +241711,7 @@
}
},
{
- "id": 22990,
+ "id": 5701,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -240937,7 +241780,7 @@
}
},
{
- "id": 22991,
+ "id": 5702,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -241012,7 +241855,7 @@
}
},
{
- "id": 23023,
+ "id": 5734,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -241068,7 +241911,7 @@
}
},
{
- "id": 23024,
+ "id": 5735,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -241124,7 +241967,7 @@
}
},
{
- "id": 23025,
+ "id": 5736,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -241180,7 +242023,7 @@
}
},
{
- "id": 22997,
+ "id": 5708,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -241236,7 +242079,7 @@
}
},
{
- "id": 22998,
+ "id": 5709,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -241292,7 +242135,7 @@
}
},
{
- "id": 22999,
+ "id": 5710,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -241348,7 +242191,7 @@
}
},
{
- "id": 23055,
+ "id": 5766,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -241404,7 +242247,7 @@
}
},
{
- "id": 22994,
+ "id": 5705,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -241460,7 +242303,7 @@
}
},
{
- "id": 22995,
+ "id": 5706,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -241516,7 +242359,7 @@
}
},
{
- "id": 22996,
+ "id": 5707,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -241572,7 +242415,7 @@
}
},
{
- "id": 23000,
+ "id": 5711,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -241628,7 +242471,7 @@
}
},
{
- "id": 23001,
+ "id": 5712,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -241684,7 +242527,7 @@
}
},
{
- "id": 23002,
+ "id": 5713,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -241740,7 +242583,7 @@
}
},
{
- "id": 23056,
+ "id": 5767,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -241796,7 +242639,7 @@
}
},
{
- "id": 23003,
+ "id": 5714,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -241852,7 +242695,7 @@
}
},
{
- "id": 23004,
+ "id": 5715,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -241908,7 +242751,7 @@
}
},
{
- "id": 23046,
+ "id": 5757,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -241964,7 +242807,7 @@
}
},
{
- "id": 23026,
+ "id": 5737,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -242020,7 +242863,7 @@
}
},
{
- "id": 23027,
+ "id": 5738,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -242076,7 +242919,7 @@
}
},
{
- "id": 23028,
+ "id": 5739,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -242132,7 +242975,7 @@
}
},
{
- "id": 23029,
+ "id": 5740,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -242188,7 +243031,7 @@
}
},
{
- "id": 23030,
+ "id": 5741,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -242244,7 +243087,7 @@
}
},
{
- "id": 23057,
+ "id": 5768,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -242300,7 +243143,7 @@
}
},
{
- "id": 23031,
+ "id": 5742,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -242356,7 +243199,7 @@
}
},
{
- "id": 23032,
+ "id": 5743,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -242412,7 +243255,7 @@
}
},
{
- "id": 23033,
+ "id": 5744,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -242468,7 +243311,7 @@
}
},
{
- "id": 22976,
+ "id": 5687,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -242524,7 +243367,7 @@
}
},
{
- "id": 22977,
+ "id": 5688,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -242564,14 +243407,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22978,
+ "id": 5689,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22979,
+ "id": 5690,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -242603,7 +243446,7 @@
{
"title": "Properties",
"children": [
- 22979
+ 5690
]
}
],
@@ -242643,14 +243486,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22980,
+ "id": 5691,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22981,
+ "id": 5692,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -242682,7 +243525,7 @@
{
"title": "Properties",
"children": [
- 22981
+ 5692
]
}
],
@@ -242706,7 +243549,7 @@
}
},
{
- "id": 22982,
+ "id": 5693,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -242746,14 +243589,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22983,
+ "id": 5694,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22984,
+ "id": 5695,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -242785,7 +243628,7 @@
{
"title": "Properties",
"children": [
- 22984
+ 5695
]
}
],
@@ -242825,14 +243668,14 @@
{
"type": "reflection",
"declaration": {
- "id": 22985,
+ "id": 5696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22986,
+ "id": 5697,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -242864,7 +243707,7 @@
{
"title": "Properties",
"children": [
- 22986
+ 5697
]
}
],
@@ -242888,7 +243731,7 @@
}
},
{
- "id": 22987,
+ "id": 5698,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -242938,57 +243781,57 @@
{
"title": "Properties",
"children": [
- 22988,
- 23048,
- 23049,
- 23050,
- 23051,
- 23016,
- 23017,
- 23018,
- 22993,
- 23019,
- 23020,
- 23021,
- 23052,
- 23022,
- 23053,
- 23054,
- 22992,
- 23047,
- 22989,
- 22990,
- 22991,
- 23023,
- 23024,
- 23025,
- 22997,
- 22998,
- 22999,
- 23055,
- 22994,
- 22995,
- 22996,
- 23000,
- 23001,
- 23002,
- 23056,
- 23003,
- 23004,
- 23046,
- 23026,
- 23027,
- 23028,
- 23029,
- 23030,
- 23057,
- 23031,
- 23032,
- 23033,
- 22976,
- 22977,
- 22982,
- 22987
+ 5699,
+ 5759,
+ 5760,
+ 5761,
+ 5762,
+ 5727,
+ 5728,
+ 5729,
+ 5704,
+ 5730,
+ 5731,
+ 5732,
+ 5763,
+ 5733,
+ 5764,
+ 5765,
+ 5703,
+ 5758,
+ 5700,
+ 5701,
+ 5702,
+ 5734,
+ 5735,
+ 5736,
+ 5708,
+ 5709,
+ 5710,
+ 5766,
+ 5705,
+ 5706,
+ 5707,
+ 5711,
+ 5712,
+ 5713,
+ 5767,
+ 5714,
+ 5715,
+ 5757,
+ 5737,
+ 5738,
+ 5739,
+ 5740,
+ 5741,
+ 5768,
+ 5742,
+ 5743,
+ 5744,
+ 5687,
+ 5688,
+ 5693,
+ 5698
]
}
],
@@ -243033,14 +243876,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23058,
+ "id": 5769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23059,
+ "id": 5770,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -243054,7 +243897,7 @@
],
"signatures": [
{
- "id": 23060,
+ "id": 5771,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -243068,7 +243911,7 @@
],
"parameters": [
{
- "id": 23061,
+ "id": 5772,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -243079,14 +243922,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23062,
+ "id": 5773,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23063,
+ "id": 5774,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -243110,7 +243953,7 @@
{
"title": "Properties",
"children": [
- 23063
+ 5774
]
}
],
@@ -243192,7 +244035,7 @@
{
"title": "Methods",
"children": [
- 23059
+ 5770
]
}
],
@@ -243233,7 +244076,7 @@
}
},
{
- "id": 23064,
+ "id": 5775,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -243256,7 +244099,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23065,
+ "id": 5776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -243270,7 +244113,7 @@
],
"signatures": [
{
- "id": 23066,
+ "id": 5777,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -243298,7 +244141,7 @@
],
"typeParameters": [
{
- "id": 23067,
+ "id": 5778,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -243309,7 +244152,7 @@
}
},
{
- "id": 23068,
+ "id": 5779,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -243322,7 +244165,7 @@
],
"parameters": [
{
- "id": 23069,
+ "id": 5780,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -243355,7 +244198,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -243366,13 +244209,13 @@
},
"trueType": {
"type": "reference",
- "target": 22958,
+ "target": 5669,
"name": "RemoveDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -243405,7 +244248,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -243425,7 +244268,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -243445,7 +244288,7 @@
}
},
{
- "id": 23070,
+ "id": 5781,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -243468,7 +244311,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23071,
+ "id": 5782,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -243482,7 +244325,7 @@
],
"signatures": [
{
- "id": 23072,
+ "id": 5783,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -243504,7 +244347,7 @@
}
},
{
- "id": 23073,
+ "id": 5784,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -243527,7 +244370,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23074,
+ "id": 5785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -243541,7 +244384,7 @@
],
"signatures": [
{
- "id": 23075,
+ "id": 5786,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -243555,7 +244398,7 @@
],
"parameters": [
{
- "id": 23076,
+ "id": 5787,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -243581,7 +244424,7 @@
}
},
{
- "id": 23077,
+ "id": 5788,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -243604,7 +244447,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23078,
+ "id": 5789,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -243615,7 +244458,7 @@
],
"documents": [
{
- "id": 42395,
+ "id": 25336,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -243641,7 +244484,7 @@
"frontmatter": {}
},
{
- "id": 42396,
+ "id": 25337,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -243676,7 +244519,7 @@
"frontmatter": {},
"children": [
{
- "id": 42397,
+ "id": 25338,
"name": "computeDraftOrderAdjustmentsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -243704,7 +244547,7 @@
]
},
{
- "id": 42398,
+ "id": 25339,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -243730,7 +244573,7 @@
"frontmatter": {}
},
{
- "id": 42399,
+ "id": 25340,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -243756,7 +244599,7 @@
"frontmatter": {}
},
{
- "id": 42400,
+ "id": 25341,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -243783,21 +244626,21 @@
}
],
"childrenIncludingDocuments": [
- 22969,
- 23064,
- 23070,
- 23073,
- 23077
+ 5680,
+ 5775,
+ 5781,
+ 5784,
+ 5788
],
"groups": [
{
"title": "Properties",
"children": [
- 22969,
- 23064,
- 23070,
- 23073,
- 23077
+ 5680,
+ 5775,
+ 5781,
+ 5784,
+ 5788
]
}
],
@@ -243806,12 +244649,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L57"
}
],
"signatures": [
{
- "id": 22962,
+ "id": 5673,
"name": "removeDraftOrderShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -243851,6 +244694,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.order_id --- acquireLockStep({ key: input.order_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -243867,12 +244719,12 @@
"fileName": "core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/remove-draft-order-shipping-method.ts#L57"
}
],
"typeParameters": [
{
- "id": 22963,
+ "id": 5674,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -243883,7 +244735,7 @@
}
},
{
- "id": 22964,
+ "id": 5675,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -243896,7 +244748,7 @@
],
"parameters": [
{
- "id": 22965,
+ "id": 5676,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -243920,14 +244772,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 22966,
+ "id": 5677,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 22967,
+ "id": 5678,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -243950,7 +244802,7 @@
}
},
{
- "id": 22968,
+ "id": 5679,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -243977,8 +244829,8 @@
{
"title": "Properties",
"children": [
- 22967,
- 22968
+ 5678,
+ 5679
]
}
],
@@ -244053,7 +244905,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 22958,
+ "target": 5669,
"name": "RemoveDraftOrderShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -244068,14 +244920,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -244090,7 +244942,7 @@
]
},
{
- "id": 23081,
+ "id": 5792,
"name": "order_ids",
"variant": "declaration",
"kind": 1024,
@@ -244108,7 +244960,7 @@
"fileName": "core-flows/src/draft-order/workflows/delete-draft-order.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L21"
}
],
"type": {
@@ -244120,7 +244972,7 @@
}
},
{
- "id": 23082,
+ "id": 5793,
"name": "deleteDraftOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -244132,7 +244984,7 @@
"fileName": "core-flows/src/draft-order/workflows/delete-draft-order.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L41"
}
],
"type": {
@@ -244142,7 +244994,7 @@
"defaultValue": "\"delete-draft-order\""
},
{
- "id": 23083,
+ "id": 5794,
"name": "deleteDraftOrdersWorkflow",
"variant": "declaration",
"kind": 64,
@@ -244186,7 +245038,7 @@
},
"children": [
{
- "id": 23091,
+ "id": 5802,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -244209,7 +245061,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23092,
+ "id": 5803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -244223,7 +245075,7 @@
],
"signatures": [
{
- "id": 23093,
+ "id": 5804,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -244251,7 +245103,7 @@
],
"parameters": [
{
- "id": 23094,
+ "id": 5805,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -244267,14 +245119,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23095,
+ "id": 5806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23096,
+ "id": 5807,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -244299,7 +245151,7 @@
"types": [
{
"type": "reference",
- "target": 23079,
+ "target": 5790,
"name": "DeleteDraftOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -244312,7 +245164,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23079,
+ "target": 5790,
"name": "DeleteDraftOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -244328,7 +245180,7 @@
{
"title": "Properties",
"children": [
- 23096
+ 5807
]
}
],
@@ -244353,7 +245205,7 @@
}
},
{
- "id": 23097,
+ "id": 5808,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -244376,7 +245228,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23098,
+ "id": 5809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -244390,7 +245242,7 @@
],
"signatures": [
{
- "id": 23099,
+ "id": 5810,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -244418,7 +245270,7 @@
],
"typeParameters": [
{
- "id": 23100,
+ "id": 5811,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -244429,7 +245281,7 @@
}
},
{
- "id": 23101,
+ "id": 5812,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -244442,7 +245294,7 @@
],
"parameters": [
{
- "id": 23102,
+ "id": 5813,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -244475,7 +245327,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -244486,13 +245338,13 @@
},
"trueType": {
"type": "reference",
- "target": 23079,
+ "target": 5790,
"name": "DeleteDraftOrderStepInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -244525,7 +245377,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -244540,7 +245392,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -244560,7 +245412,7 @@
}
},
{
- "id": 23103,
+ "id": 5814,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -244583,7 +245435,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23104,
+ "id": 5815,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -244597,7 +245449,7 @@
],
"signatures": [
{
- "id": 23105,
+ "id": 5816,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -244619,7 +245471,7 @@
}
},
{
- "id": 23106,
+ "id": 5817,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -244642,7 +245494,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23107,
+ "id": 5818,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -244656,7 +245508,7 @@
],
"signatures": [
{
- "id": 23108,
+ "id": 5819,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -244670,7 +245522,7 @@
],
"parameters": [
{
- "id": 23109,
+ "id": 5820,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -244696,7 +245548,7 @@
}
},
{
- "id": 23110,
+ "id": 5821,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -244719,7 +245571,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23111,
+ "id": 5822,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -244730,7 +245582,7 @@
],
"documents": [
{
- "id": 42401,
+ "id": 25342,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -244756,7 +245608,7 @@
"frontmatter": {}
},
{
- "id": 42402,
+ "id": 25343,
"name": "deleteDraftOrdersStep",
"variant": "document",
"kind": 8388608,
@@ -244783,21 +245635,21 @@
}
],
"childrenIncludingDocuments": [
- 23091,
- 23097,
- 23103,
- 23106,
- 23110
+ 5802,
+ 5808,
+ 5814,
+ 5817,
+ 5821
],
"groups": [
{
"title": "Properties",
"children": [
- 23091,
- 23097,
- 23103,
- 23106,
- 23110
+ 5802,
+ 5808,
+ 5814,
+ 5817,
+ 5821
]
}
],
@@ -244806,12 +245658,12 @@
"fileName": "core-flows/src/draft-order/workflows/delete-draft-order.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L59"
}
],
"signatures": [
{
- "id": 23084,
+ "id": 5795,
"name": "deleteDraftOrdersWorkflow",
"variant": "signature",
"kind": 4096,
@@ -244858,12 +245710,12 @@
"fileName": "core-flows/src/draft-order/workflows/delete-draft-order.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/draft-order/workflows/delete-draft-order.ts#L59"
}
],
"typeParameters": [
{
- "id": 23085,
+ "id": 5796,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -244874,7 +245726,7 @@
}
},
{
- "id": 23086,
+ "id": 5797,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -244887,7 +245739,7 @@
],
"parameters": [
{
- "id": 23087,
+ "id": 5798,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -244911,14 +245763,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23088,
+ "id": 5799,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23089,
+ "id": 5800,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -244941,7 +245793,7 @@
}
},
{
- "id": 23090,
+ "id": 5801,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -244968,8 +245820,8 @@
{
"title": "Properties",
"children": [
- 23089,
- 23090
+ 5800,
+ 5801
]
}
],
@@ -245044,7 +245896,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23079,
+ "target": 5790,
"name": "DeleteDraftOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -245054,14 +245906,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -245080,21 +245932,21 @@
]
},
{
- "id": 17320,
+ "id": 25,
"name": "File",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17321,
+ "id": 26,
"name": "Steps_File",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 23116,
+ "id": 5827,
"name": "filename",
"variant": "declaration",
"kind": 1024,
@@ -245112,7 +245964,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 16,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L16"
}
],
"type": {
@@ -245121,7 +245973,7 @@
}
},
{
- "id": 23117,
+ "id": 5828,
"name": "mimeType",
"variant": "declaration",
"kind": 1024,
@@ -245150,7 +246002,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L23"
}
],
"type": {
@@ -245159,7 +246011,7 @@
}
},
{
- "id": 23118,
+ "id": 5829,
"name": "content",
"variant": "declaration",
"kind": 1024,
@@ -245177,7 +246029,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 28,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L28"
}
],
"type": {
@@ -245186,7 +246038,7 @@
}
},
{
- "id": 23119,
+ "id": 5830,
"name": "access",
"variant": "declaration",
"kind": 1024,
@@ -245220,7 +246072,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L36"
}
],
"type": {
@@ -245238,7 +246090,7 @@
}
},
{
- "id": 23114,
+ "id": 5825,
"name": "files",
"variant": "declaration",
"kind": 1024,
@@ -245256,7 +246108,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L12"
}
],
"type": {
@@ -245264,14 +246116,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23115,
+ "id": 5826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23116,
+ "id": 5827,
"name": "filename",
"variant": "declaration",
"kind": 1024,
@@ -245289,7 +246141,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 16,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L16"
}
],
"type": {
@@ -245298,7 +246150,7 @@
}
},
{
- "id": 23117,
+ "id": 5828,
"name": "mimeType",
"variant": "declaration",
"kind": 1024,
@@ -245327,7 +246179,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 23,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L23"
}
],
"type": {
@@ -245336,7 +246188,7 @@
}
},
{
- "id": 23118,
+ "id": 5829,
"name": "content",
"variant": "declaration",
"kind": 1024,
@@ -245354,7 +246206,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 28,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L28"
}
],
"type": {
@@ -245363,7 +246215,7 @@
}
},
{
- "id": 23119,
+ "id": 5830,
"name": "access",
"variant": "declaration",
"kind": 1024,
@@ -245397,7 +246249,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L36"
}
],
"type": {
@@ -245419,10 +246271,10 @@
{
"title": "Properties",
"children": [
- 23116,
- 23117,
- 23118,
- 23119
+ 5827,
+ 5828,
+ 5829,
+ 5830
]
}
],
@@ -245431,7 +246283,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L12"
}
]
}
@@ -245439,7 +246291,7 @@
}
},
{
- "id": 23120,
+ "id": 5831,
"name": "uploadFilesStepId",
"variant": "declaration",
"kind": 32,
@@ -245451,7 +246303,7 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L40"
}
],
"type": {
@@ -245461,7 +246313,7 @@
"defaultValue": "\"upload-files\""
},
{
- "id": 23121,
+ "id": 5832,
"name": "uploadFilesStep",
"variant": "declaration",
"kind": 64,
@@ -245496,7 +246348,7 @@
},
"children": [
{
- "id": 23130,
+ "id": 5841,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -245514,7 +246366,7 @@
}
},
{
- "id": 23131,
+ "id": 5842,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -245536,8 +246388,8 @@
{
"title": "Properties",
"children": [
- 23130,
- 23131
+ 5841,
+ 5842
]
}
],
@@ -245546,12 +246398,12 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L57"
}
],
"signatures": [
{
- "id": 23122,
+ "id": 5833,
"name": "uploadFilesStep",
"variant": "signature",
"kind": 4096,
@@ -245589,12 +246441,12 @@
"fileName": "core-flows/src/file/steps/upload-files.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/upload-files.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/upload-files.ts#L57"
}
],
"parameters": [
{
- "id": 23123,
+ "id": 5834,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -245604,7 +246456,7 @@
"types": [
{
"type": "reference",
- "target": 23112,
+ "target": 5823,
"name": "UploadFilesStepInput",
"package": "@medusajs/core-flows"
},
@@ -245617,7 +246469,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23112,
+ "target": 5823,
"name": "UploadFilesStepInput",
"package": "@medusajs/core-flows"
}
@@ -245707,14 +246559,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23124,
+ "id": 5835,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23125,
+ "id": 5836,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -245728,7 +246580,7 @@
],
"signatures": [
{
- "id": 23126,
+ "id": 5837,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -245742,7 +246594,7 @@
],
"parameters": [
{
- "id": 23127,
+ "id": 5838,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -245753,14 +246605,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23128,
+ "id": 5839,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23129,
+ "id": 5840,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -245784,7 +246636,7 @@
{
"title": "Properties",
"children": [
- 23129
+ 5840
]
}
],
@@ -245869,7 +246721,7 @@
{
"title": "Methods",
"children": [
- 23125
+ 5836
]
}
],
@@ -245911,7 +246763,7 @@
]
},
{
- "id": 23133,
+ "id": 5844,
"name": "deleteFilesStepId",
"variant": "declaration",
"kind": 32,
@@ -245923,7 +246775,7 @@
"fileName": "core-flows/src/file/steps/delete-files.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/delete-files.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/delete-files.ts#L10"
}
],
"type": {
@@ -245933,7 +246785,7 @@
"defaultValue": "\"delete-files\""
},
{
- "id": 23134,
+ "id": 5845,
"name": "deleteFilesStep",
"variant": "declaration",
"kind": 64,
@@ -245968,7 +246820,7 @@
},
"children": [
{
- "id": 23137,
+ "id": 5848,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -245986,7 +246838,7 @@
}
},
{
- "id": 23138,
+ "id": 5849,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -246008,8 +246860,8 @@
{
"title": "Properties",
"children": [
- 23137,
- 23138
+ 5848,
+ 5849
]
}
],
@@ -246018,12 +246870,12 @@
"fileName": "core-flows/src/file/steps/delete-files.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/delete-files.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/delete-files.ts#L21"
}
],
"signatures": [
{
- "id": 23135,
+ "id": 5846,
"name": "deleteFilesStep",
"variant": "signature",
"kind": 4096,
@@ -246061,12 +246913,12 @@
"fileName": "core-flows/src/file/steps/delete-files.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/steps/delete-files.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/steps/delete-files.ts#L21"
}
],
"parameters": [
{
- "id": 23136,
+ "id": 5847,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -246076,7 +246928,7 @@
"types": [
{
"type": "reference",
- "target": 23132,
+ "target": 5843,
"name": "DeleteFilesStepInput",
"package": "@medusajs/core-flows"
},
@@ -246089,7 +246941,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23132,
+ "target": 5843,
"name": "DeleteFilesStepInput",
"package": "@medusajs/core-flows"
}
@@ -246111,14 +246963,14 @@
]
},
{
- "id": 17322,
+ "id": 27,
"name": "Workflows_File",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 23143,
+ "id": 5854,
"name": "filename",
"variant": "declaration",
"kind": 1024,
@@ -246136,7 +246988,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 20,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L20"
}
],
"type": {
@@ -246145,7 +246997,7 @@
}
},
{
- "id": 23144,
+ "id": 5855,
"name": "mimeType",
"variant": "declaration",
"kind": 1024,
@@ -246174,7 +247026,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L27"
}
],
"type": {
@@ -246183,7 +247035,7 @@
}
},
{
- "id": 23145,
+ "id": 5856,
"name": "content",
"variant": "declaration",
"kind": 1024,
@@ -246201,7 +247053,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L32"
}
],
"type": {
@@ -246210,7 +247062,7 @@
}
},
{
- "id": 23146,
+ "id": 5857,
"name": "access",
"variant": "declaration",
"kind": 1024,
@@ -246244,7 +247096,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L40"
}
],
"type": {
@@ -246262,7 +247114,7 @@
}
},
{
- "id": 23141,
+ "id": 5852,
"name": "files",
"variant": "declaration",
"kind": 1024,
@@ -246280,7 +247132,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L16"
}
],
"type": {
@@ -246288,14 +247140,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23142,
+ "id": 5853,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23143,
+ "id": 5854,
"name": "filename",
"variant": "declaration",
"kind": 1024,
@@ -246313,7 +247165,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 20,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L20"
}
],
"type": {
@@ -246322,7 +247174,7 @@
}
},
{
- "id": 23144,
+ "id": 5855,
"name": "mimeType",
"variant": "declaration",
"kind": 1024,
@@ -246351,7 +247203,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 27,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L27"
}
],
"type": {
@@ -246360,7 +247212,7 @@
}
},
{
- "id": 23145,
+ "id": 5856,
"name": "content",
"variant": "declaration",
"kind": 1024,
@@ -246378,7 +247230,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L32"
}
],
"type": {
@@ -246387,7 +247239,7 @@
}
},
{
- "id": 23146,
+ "id": 5857,
"name": "access",
"variant": "declaration",
"kind": 1024,
@@ -246421,7 +247273,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L40"
}
],
"type": {
@@ -246443,10 +247295,10 @@
{
"title": "Properties",
"children": [
- 23143,
- 23144,
- 23145,
- 23146
+ 5854,
+ 5855,
+ 5856,
+ 5857
]
}
],
@@ -246455,7 +247307,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 16,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L16"
}
]
}
@@ -246463,7 +247315,7 @@
}
},
{
- "id": 23147,
+ "id": 5858,
"name": "uploadFilesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -246475,7 +247327,7 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L44"
}
],
"type": {
@@ -246485,7 +247337,7 @@
"defaultValue": "\"upload-files\""
},
{
- "id": 23148,
+ "id": 5859,
"name": "uploadFilesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -246529,7 +247381,7 @@
},
"children": [
{
- "id": 23156,
+ "id": 5867,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -246552,7 +247404,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23157,
+ "id": 5868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -246566,7 +247418,7 @@
],
"signatures": [
{
- "id": 23158,
+ "id": 5869,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -246594,7 +247446,7 @@
],
"parameters": [
{
- "id": 23159,
+ "id": 5870,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -246610,14 +247462,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23160,
+ "id": 5871,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23161,
+ "id": 5872,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -246642,7 +247494,7 @@
"types": [
{
"type": "reference",
- "target": 23139,
+ "target": 5850,
"name": "UploadFilesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -246655,7 +247507,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23139,
+ "target": 5850,
"name": "UploadFilesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -246671,7 +247523,7 @@
{
"title": "Properties",
"children": [
- 23161
+ 5872
]
}
],
@@ -246764,14 +247616,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23162,
+ "id": 5873,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23163,
+ "id": 5874,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -246785,7 +247637,7 @@
],
"signatures": [
{
- "id": 23164,
+ "id": 5875,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -246799,7 +247651,7 @@
],
"parameters": [
{
- "id": 23165,
+ "id": 5876,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -246810,14 +247662,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23166,
+ "id": 5877,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23167,
+ "id": 5878,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -246841,7 +247693,7 @@
{
"title": "Properties",
"children": [
- 23167
+ 5878
]
}
],
@@ -246926,7 +247778,7 @@
{
"title": "Methods",
"children": [
- 23163
+ 5874
]
}
],
@@ -246970,7 +247822,7 @@
}
},
{
- "id": 23168,
+ "id": 5879,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -246993,7 +247845,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23169,
+ "id": 5880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -247007,7 +247859,7 @@
],
"signatures": [
{
- "id": 23170,
+ "id": 5881,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -247035,7 +247887,7 @@
],
"typeParameters": [
{
- "id": 23171,
+ "id": 5882,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -247046,7 +247898,7 @@
}
},
{
- "id": 23172,
+ "id": 5883,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -247059,7 +247911,7 @@
],
"parameters": [
{
- "id": 23173,
+ "id": 5884,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -247092,7 +247944,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -247103,13 +247955,13 @@
},
"trueType": {
"type": "reference",
- "target": 23139,
+ "target": 5850,
"name": "UploadFilesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -247142,7 +247994,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -247165,7 +248017,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -247185,7 +248037,7 @@
}
},
{
- "id": 23174,
+ "id": 5885,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -247208,7 +248060,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23175,
+ "id": 5886,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -247222,7 +248074,7 @@
],
"signatures": [
{
- "id": 23176,
+ "id": 5887,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -247244,7 +248096,7 @@
}
},
{
- "id": 23177,
+ "id": 5888,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -247267,7 +248119,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23178,
+ "id": 5889,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -247281,7 +248133,7 @@
],
"signatures": [
{
- "id": 23179,
+ "id": 5890,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -247295,7 +248147,7 @@
],
"parameters": [
{
- "id": 23180,
+ "id": 5891,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -247321,7 +248173,7 @@
}
},
{
- "id": 23181,
+ "id": 5892,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -247344,7 +248196,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23182,
+ "id": 5893,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -247355,7 +248207,7 @@
],
"documents": [
{
- "id": 42403,
+ "id": 25344,
"name": "uploadFilesStep",
"variant": "document",
"kind": 8388608,
@@ -247382,21 +248234,21 @@
}
],
"childrenIncludingDocuments": [
- 23156,
- 23168,
- 23174,
- 23177,
- 23181
+ 5867,
+ 5879,
+ 5885,
+ 5888,
+ 5892
],
"groups": [
{
"title": "Properties",
"children": [
- 23156,
- 23168,
- 23174,
- 23177,
- 23181
+ 5867,
+ 5879,
+ 5885,
+ 5888,
+ 5892
]
}
],
@@ -247405,12 +248257,12 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L72"
}
],
"signatures": [
{
- "id": 23149,
+ "id": 5860,
"name": "uploadFilesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -247457,12 +248309,12 @@
"fileName": "core-flows/src/file/workflows/upload-files.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/upload-files.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/upload-files.ts#L72"
}
],
"typeParameters": [
{
- "id": 23150,
+ "id": 5861,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -247473,7 +248325,7 @@
}
},
{
- "id": 23151,
+ "id": 5862,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -247486,7 +248338,7 @@
],
"parameters": [
{
- "id": 23152,
+ "id": 5863,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -247510,14 +248362,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23153,
+ "id": 5864,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23154,
+ "id": 5865,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -247540,7 +248392,7 @@
}
},
{
- "id": 23155,
+ "id": 5866,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -247567,8 +248419,8 @@
{
"title": "Properties",
"children": [
- 23154,
- 23155
+ 5865,
+ 5866
]
}
],
@@ -247643,7 +248495,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23139,
+ "target": 5850,
"name": "UploadFilesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -247661,14 +248513,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -247683,7 +248535,7 @@
]
},
{
- "id": 23185,
+ "id": 5896,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -247693,7 +248545,7 @@
"fileName": "core-flows/src/file/workflows/delete-files.ts",
"line": 4,
"character": 41,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/delete-files.ts#L4"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/delete-files.ts#L4"
}
],
"type": {
@@ -247705,7 +248557,7 @@
}
},
{
- "id": 23186,
+ "id": 5897,
"name": "deleteFilesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -247717,7 +248569,7 @@
"fileName": "core-flows/src/file/workflows/delete-files.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/delete-files.ts#L6"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/delete-files.ts#L6"
}
],
"type": {
@@ -247727,7 +248579,7 @@
"defaultValue": "\"delete-files\""
},
{
- "id": 23187,
+ "id": 5898,
"name": "deleteFilesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -247771,7 +248623,7 @@
},
"children": [
{
- "id": 23195,
+ "id": 5906,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -247794,7 +248646,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23196,
+ "id": 5907,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -247808,7 +248660,7 @@
],
"signatures": [
{
- "id": 23197,
+ "id": 5908,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -247836,7 +248688,7 @@
],
"parameters": [
{
- "id": 23198,
+ "id": 5909,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -247852,14 +248704,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23199,
+ "id": 5910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23200,
+ "id": 5911,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -247884,7 +248736,7 @@
"types": [
{
"type": "reference",
- "target": 23183,
+ "target": 5894,
"name": "DeleteFilesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -247897,7 +248749,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23183,
+ "target": 5894,
"name": "DeleteFilesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -247913,7 +248765,7 @@
{
"title": "Properties",
"children": [
- 23200
+ 5911
]
}
],
@@ -247949,14 +248801,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23201,
+ "id": 5912,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23202,
+ "id": 5913,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -247970,7 +248822,7 @@
],
"signatures": [
{
- "id": 23203,
+ "id": 5914,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -247984,7 +248836,7 @@
],
"parameters": [
{
- "id": 23204,
+ "id": 5915,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -247995,14 +248847,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23205,
+ "id": 5916,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23206,
+ "id": 5917,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -248026,7 +248878,7 @@
{
"title": "Properties",
"children": [
- 23206
+ 5917
]
}
],
@@ -248103,7 +248955,7 @@
{
"title": "Methods",
"children": [
- 23202
+ 5913
]
}
],
@@ -248139,7 +248991,7 @@
}
},
{
- "id": 23207,
+ "id": 5918,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -248162,7 +249014,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23208,
+ "id": 5919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -248176,7 +249028,7 @@
],
"signatures": [
{
- "id": 23209,
+ "id": 5920,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -248204,7 +249056,7 @@
],
"typeParameters": [
{
- "id": 23210,
+ "id": 5921,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -248215,7 +249067,7 @@
}
},
{
- "id": 23211,
+ "id": 5922,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -248228,7 +249080,7 @@
],
"parameters": [
{
- "id": 23212,
+ "id": 5923,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -248261,7 +249113,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -248272,13 +249124,13 @@
},
"trueType": {
"type": "reference",
- "target": 23183,
+ "target": 5894,
"name": "DeleteFilesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -248311,7 +249163,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -248326,7 +249178,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -248346,7 +249198,7 @@
}
},
{
- "id": 23213,
+ "id": 5924,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -248369,7 +249221,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23214,
+ "id": 5925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -248383,7 +249235,7 @@
],
"signatures": [
{
- "id": 23215,
+ "id": 5926,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -248405,7 +249257,7 @@
}
},
{
- "id": 23216,
+ "id": 5927,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -248428,7 +249280,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23217,
+ "id": 5928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -248442,7 +249294,7 @@
],
"signatures": [
{
- "id": 23218,
+ "id": 5929,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -248456,7 +249308,7 @@
],
"parameters": [
{
- "id": 23219,
+ "id": 5930,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -248482,7 +249334,7 @@
}
},
{
- "id": 23220,
+ "id": 5931,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -248505,7 +249357,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23221,
+ "id": 5932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -248516,7 +249368,7 @@
],
"documents": [
{
- "id": 42404,
+ "id": 25345,
"name": "deleteFilesStep",
"variant": "document",
"kind": 8388608,
@@ -248543,21 +249395,21 @@
}
],
"childrenIncludingDocuments": [
- 23195,
- 23207,
- 23213,
- 23216,
- 23220
+ 5906,
+ 5918,
+ 5924,
+ 5927,
+ 5931
],
"groups": [
{
"title": "Properties",
"children": [
- 23195,
- 23207,
- 23213,
- 23216,
- 23220
+ 5906,
+ 5918,
+ 5924,
+ 5927,
+ 5931
]
}
],
@@ -248566,12 +249418,12 @@
"fileName": "core-flows/src/file/workflows/delete-files.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/delete-files.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/delete-files.ts#L29"
}
],
"signatures": [
{
- "id": 23188,
+ "id": 5899,
"name": "deleteFilesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -248618,12 +249470,12 @@
"fileName": "core-flows/src/file/workflows/delete-files.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/file/workflows/delete-files.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/file/workflows/delete-files.ts#L29"
}
],
"typeParameters": [
{
- "id": 23189,
+ "id": 5900,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -248634,7 +249486,7 @@
}
},
{
- "id": 23190,
+ "id": 5901,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -248647,7 +249499,7 @@
],
"parameters": [
{
- "id": 23191,
+ "id": 5902,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -248671,14 +249523,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23192,
+ "id": 5903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23193,
+ "id": 5904,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -248701,7 +249553,7 @@
}
},
{
- "id": 23194,
+ "id": 5905,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -248728,8 +249580,8 @@
{
"title": "Properties",
"children": [
- 23193,
- 23194
+ 5904,
+ 5905
]
}
],
@@ -248804,7 +249656,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23183,
+ "target": 5894,
"name": "DeleteFilesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -248814,14 +249666,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -248840,21 +249692,21 @@
]
},
{
- "id": 17323,
+ "id": 28,
"name": "Fulfillment",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17324,
+ "id": 29,
"name": "Steps_Fulfillment",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 23222,
+ "id": 5933,
"name": "buildPriceSet",
"variant": "declaration",
"kind": 64,
@@ -248864,12 +249716,12 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 78,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L78"
}
],
"signatures": [
{
- "id": 23223,
+ "id": 5934,
"name": "buildPriceSet",
"variant": "signature",
"kind": 4096,
@@ -248879,12 +249731,12 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 78,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L78"
}
],
"parameters": [
{
- "id": 23224,
+ "id": 5935,
"name": "prices",
"variant": "param",
"kind": 32768,
@@ -248896,7 +249748,7 @@
"types": [
{
"type": "reference",
- "target": 23226,
+ "target": 5937,
"name": "ShippingOptionsPriceCurrencyCode",
"package": "@medusajs/core-flows"
},
@@ -248914,7 +249766,7 @@
}
},
{
- "id": 23225,
+ "id": 5936,
"name": "regionToCurrencyMap",
"variant": "param",
"kind": 32768,
@@ -248953,7 +249805,7 @@
]
},
{
- "id": 23227,
+ "id": 5938,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -248982,7 +249834,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L21"
}
],
"type": {
@@ -248991,7 +249843,7 @@
}
},
{
- "id": 23228,
+ "id": 5939,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -249009,7 +249861,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L25"
}
],
"type": {
@@ -249018,7 +249870,7 @@
}
},
{
- "id": 23229,
+ "id": 5940,
"name": "rules",
"variant": "declaration",
"kind": 1024,
@@ -249038,7 +249890,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L29"
}
],
"type": {
@@ -249055,7 +249907,7 @@
}
},
{
- "id": 23232,
+ "id": 5943,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -249073,7 +249925,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L57"
}
],
"type": {
@@ -249082,7 +249934,7 @@
}
},
{
- "id": 23233,
+ "id": 5944,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -249100,7 +249952,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L61"
}
],
"type": {
@@ -249110,7 +249962,7 @@
"types": [
{
"type": "reference",
- "target": 23226,
+ "target": 5937,
"name": "ShippingOptionsPriceCurrencyCode",
"package": "@medusajs/core-flows"
},
@@ -249128,7 +249980,7 @@
}
},
{
- "id": 23236,
+ "id": 5947,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -249146,7 +249998,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
}
],
"type": {
@@ -249155,7 +250007,7 @@
}
},
{
- "id": 23237,
+ "id": 5948,
"name": "priceSetId",
"variant": "declaration",
"kind": 1024,
@@ -249173,7 +250025,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
}
],
"type": {
@@ -249182,7 +250034,7 @@
}
},
{
- "id": 23238,
+ "id": 5949,
"name": "createShippingOptionsPriceSetsStepId",
"variant": "declaration",
"kind": 32,
@@ -249194,7 +250046,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 124,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L124"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L124"
}
],
"type": {
@@ -249204,7 +250056,7 @@
"defaultValue": "\"add-shipping-options-prices-step\""
},
{
- "id": 23239,
+ "id": 5950,
"name": "createShippingOptionsPriceSetsStep",
"variant": "declaration",
"kind": 64,
@@ -249230,7 +250082,7 @@
},
"children": [
{
- "id": 23254,
+ "id": 5965,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -249248,7 +250100,7 @@
}
},
{
- "id": 23255,
+ "id": 5966,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -249270,8 +250122,8 @@
{
"title": "Properties",
"children": [
- 23254,
- 23255
+ 5965,
+ 5966
]
}
],
@@ -249280,12 +250132,12 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 136,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L136"
}
],
"signatures": [
{
- "id": 23240,
+ "id": 5951,
"name": "createShippingOptionsPriceSetsStep",
"variant": "signature",
"kind": 4096,
@@ -249314,12 +250166,12 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 136,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L136"
}
],
"parameters": [
{
- "id": 23241,
+ "id": 5952,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -249329,7 +250181,7 @@
"types": [
{
"type": "reference",
- "target": 23230,
+ "target": 5941,
"name": "CreateShippingOptionsPriceSetsStepInput",
"package": "@medusajs/core-flows"
},
@@ -249342,7 +250194,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23230,
+ "target": 5941,
"name": "CreateShippingOptionsPriceSetsStepInput",
"package": "@medusajs/core-flows"
}
@@ -249365,14 +250217,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23242,
+ "id": 5953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23243,
+ "id": 5954,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -249390,7 +250242,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
}
],
"type": {
@@ -249399,7 +250251,7 @@
}
},
{
- "id": 23244,
+ "id": 5955,
"name": "priceSetId",
"variant": "declaration",
"kind": 1024,
@@ -249417,7 +250269,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
}
],
"type": {
@@ -249430,8 +250282,8 @@
{
"title": "Properties",
"children": [
- 23243,
- 23244
+ 5954,
+ 5955
]
}
],
@@ -249440,7 +250292,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 67,
"character": 55,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L67"
}
]
}
@@ -249455,14 +250307,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23245,
+ "id": 5956,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23246,
+ "id": 5957,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -249480,7 +250332,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
}
],
"type": {
@@ -249489,7 +250341,7 @@
}
},
{
- "id": 23247,
+ "id": 5958,
"name": "priceSetId",
"variant": "declaration",
"kind": 1024,
@@ -249507,7 +250359,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
}
],
"type": {
@@ -249520,8 +250372,8 @@
{
"title": "Properties",
"children": [
- 23246,
- 23247
+ 5957,
+ 5958
]
}
],
@@ -249530,7 +250382,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 67,
"character": 55,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L67"
}
]
}
@@ -249544,7 +250396,7 @@
},
{
"type": "reference",
- "target": 23234,
+ "target": 5945,
"name": "CreateShippingOptionsPriceSetsStepOutput",
"package": "@medusajs/core-flows"
},
@@ -249557,7 +250409,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23234,
+ "target": 5945,
"name": "CreateShippingOptionsPriceSetsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -249568,14 +250420,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23248,
+ "id": 5959,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23249,
+ "id": 5960,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -249589,7 +250441,7 @@
],
"signatures": [
{
- "id": 23250,
+ "id": 5961,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -249603,7 +250455,7 @@
],
"parameters": [
{
- "id": 23251,
+ "id": 5962,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -249614,14 +250466,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23252,
+ "id": 5963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23253,
+ "id": 5964,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -249645,7 +250497,7 @@
{
"title": "Properties",
"children": [
- 23253
+ 5964
]
}
],
@@ -249708,7 +250560,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23234,
+ "target": 5945,
"name": "CreateShippingOptionsPriceSetsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -249724,7 +250576,7 @@
{
"title": "Methods",
"children": [
- 23249
+ 5960
]
}
],
@@ -249746,7 +250598,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23234,
+ "target": 5945,
"name": "CreateShippingOptionsPriceSetsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -249760,7 +250612,7 @@
]
},
{
- "id": 23243,
+ "id": 5954,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -249778,7 +250630,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
}
],
"type": {
@@ -249787,7 +250639,7 @@
}
},
{
- "id": 23244,
+ "id": 5955,
"name": "priceSetId",
"variant": "declaration",
"kind": 1024,
@@ -249805,7 +250657,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
}
],
"type": {
@@ -249814,7 +250666,7 @@
}
},
{
- "id": 23246,
+ "id": 5957,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -249832,7 +250684,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L71"
}
],
"type": {
@@ -249841,7 +250693,7 @@
}
},
{
- "id": 23247,
+ "id": 5958,
"name": "priceSetId",
"variant": "declaration",
"kind": 1024,
@@ -249859,7 +250711,7 @@
"fileName": "core-flows/src/fulfillment/steps/add-shipping-options-prices.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/add-shipping-options-prices.ts#L75"
}
],
"type": {
@@ -249868,7 +250720,7 @@
}
},
{
- "id": 23257,
+ "id": 5968,
"name": "cancelFulfillmentStepId",
"variant": "declaration",
"kind": 32,
@@ -249880,7 +250732,7 @@
"fileName": "core-flows/src/fulfillment/steps/cancel-fulfillment.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/cancel-fulfillment.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/cancel-fulfillment.ts#L10"
}
],
"type": {
@@ -249890,7 +250742,7 @@
"defaultValue": "\"cancel-fulfillment\""
},
{
- "id": 23258,
+ "id": 5969,
"name": "cancelFulfillmentStep",
"variant": "declaration",
"kind": 64,
@@ -249916,7 +250768,7 @@
},
"children": [
{
- "id": 23261,
+ "id": 5972,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -249934,7 +250786,7 @@
}
},
{
- "id": 23262,
+ "id": 5973,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -249956,8 +250808,8 @@
{
"title": "Properties",
"children": [
- 23261,
- 23262
+ 5972,
+ 5973
]
}
],
@@ -249966,12 +250818,12 @@
"fileName": "core-flows/src/fulfillment/steps/cancel-fulfillment.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/cancel-fulfillment.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/cancel-fulfillment.ts#L14"
}
],
"signatures": [
{
- "id": 23259,
+ "id": 5970,
"name": "cancelFulfillmentStep",
"variant": "signature",
"kind": 4096,
@@ -250000,12 +250852,12 @@
"fileName": "core-flows/src/fulfillment/steps/cancel-fulfillment.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/cancel-fulfillment.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/cancel-fulfillment.ts#L14"
}
],
"parameters": [
{
- "id": 23260,
+ "id": 5971,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -250044,7 +250896,7 @@
]
},
{
- "id": 23263,
+ "id": 5974,
"name": "createFulfillmentStepId",
"variant": "declaration",
"kind": 32,
@@ -250056,7 +250908,7 @@
"fileName": "core-flows/src/fulfillment/steps/create-fulfillment.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-fulfillment.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-fulfillment.ts#L8"
}
],
"type": {
@@ -250066,7 +250918,7 @@
"defaultValue": "\"create-fulfillment\""
},
{
- "id": 23264,
+ "id": 5975,
"name": "createFulfillmentStep",
"variant": "declaration",
"kind": 64,
@@ -250101,7 +250953,7 @@
},
"children": [
{
- "id": 23295,
+ "id": 6006,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -250119,7 +250971,7 @@
}
},
{
- "id": 23296,
+ "id": 6007,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -250141,8 +250993,8 @@
{
"title": "Properties",
"children": [
- 23295,
- 23296
+ 6006,
+ 6007
]
}
],
@@ -250151,12 +251003,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-fulfillment.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-fulfillment.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-fulfillment.ts#L35"
}
],
"signatures": [
{
- "id": 23265,
+ "id": 5976,
"name": "createFulfillmentStep",
"variant": "signature",
"kind": 4096,
@@ -250194,12 +251046,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-fulfillment.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-fulfillment.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-fulfillment.ts#L35"
}
],
"parameters": [
{
- "id": 23266,
+ "id": 5977,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -250246,14 +251098,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23267,
+ "id": 5978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23268,
+ "id": 5979,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -250299,7 +251151,7 @@
}
},
{
- "id": 23269,
+ "id": 5980,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -250345,7 +251197,7 @@
}
},
{
- "id": 23270,
+ "id": 5981,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -250414,7 +251266,7 @@
}
},
{
- "id": 23271,
+ "id": 5982,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -250483,7 +251335,7 @@
}
},
{
- "id": 23272,
+ "id": 5983,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -250552,7 +251404,7 @@
}
},
{
- "id": 23273,
+ "id": 5984,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -250621,7 +251473,7 @@
}
},
{
- "id": 23274,
+ "id": 5985,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -250686,7 +251538,7 @@
}
},
{
- "id": 23275,
+ "id": 5986,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -250751,7 +251603,7 @@
}
},
{
- "id": 23276,
+ "id": 5987,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -250840,7 +251692,7 @@
}
},
{
- "id": 23277,
+ "id": 5988,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -250886,7 +251738,7 @@
}
},
{
- "id": 23278,
+ "id": 5989,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -250945,7 +251797,7 @@
}
},
{
- "id": 23279,
+ "id": 5990,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -251034,7 +251886,7 @@
}
},
{
- "id": 23280,
+ "id": 5991,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -251103,7 +251955,7 @@
}
},
{
- "id": 23281,
+ "id": 5992,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -251149,7 +252001,7 @@
}
},
{
- "id": 23282,
+ "id": 5993,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -251205,7 +252057,7 @@
}
},
{
- "id": 23283,
+ "id": 5994,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -251261,7 +252113,7 @@
}
},
{
- "id": 23284,
+ "id": 5995,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -251323,7 +252175,7 @@
}
},
{
- "id": 23285,
+ "id": 5996,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -251385,7 +252237,7 @@
}
},
{
- "id": 23286,
+ "id": 5997,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -251441,7 +252293,7 @@
}
},
{
- "id": 23287,
+ "id": 5998,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -251497,7 +252349,7 @@
}
},
{
- "id": 23288,
+ "id": 5999,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -251570,27 +252422,27 @@
{
"title": "Properties",
"children": [
- 23268,
- 23269,
- 23270,
- 23271,
- 23272,
- 23273,
- 23274,
- 23275,
- 23276,
- 23277,
- 23278,
- 23279,
- 23280,
- 23281,
- 23282,
- 23283,
- 23284,
- 23285,
- 23286,
- 23287,
- 23288
+ 5979,
+ 5980,
+ 5981,
+ 5982,
+ 5983,
+ 5984,
+ 5985,
+ 5986,
+ 5987,
+ 5988,
+ 5989,
+ 5990,
+ 5991,
+ 5992,
+ 5993,
+ 5994,
+ 5995,
+ 5996,
+ 5997,
+ 5998,
+ 5999
]
}
],
@@ -251635,14 +252487,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23289,
+ "id": 6000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23290,
+ "id": 6001,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -251656,7 +252508,7 @@
],
"signatures": [
{
- "id": 23291,
+ "id": 6002,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -251670,7 +252522,7 @@
],
"parameters": [
{
- "id": 23292,
+ "id": 6003,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -251681,14 +252533,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23293,
+ "id": 6004,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23294,
+ "id": 6005,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -251712,7 +252564,7 @@
{
"title": "Properties",
"children": [
- 23294
+ 6005
]
}
],
@@ -251794,7 +252646,7 @@
{
"title": "Methods",
"children": [
- 23290
+ 6001
]
}
],
@@ -251833,7 +252685,7 @@
]
},
{
- "id": 23298,
+ "id": 6009,
"name": "createFulfillmentSetsId",
"variant": "declaration",
"kind": 32,
@@ -251845,7 +252697,7 @@
"fileName": "core-flows/src/fulfillment/steps/create-fulfillment-set.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-fulfillment-set.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-fulfillment-set.ts#L13"
}
],
"type": {
@@ -251855,7 +252707,7 @@
"defaultValue": "\"create-fulfillment-sets\""
},
{
- "id": 23299,
+ "id": 6010,
"name": "createFulfillmentSets",
"variant": "declaration",
"kind": 64,
@@ -251881,7 +252733,7 @@
},
"children": [
{
- "id": 23308,
+ "id": 6019,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -251899,7 +252751,7 @@
}
},
{
- "id": 23309,
+ "id": 6020,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -251921,8 +252773,8 @@
{
"title": "Properties",
"children": [
- 23308,
- 23309
+ 6019,
+ 6020
]
}
],
@@ -251931,12 +252783,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-fulfillment-set.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-fulfillment-set.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-fulfillment-set.ts#L17"
}
],
"signatures": [
{
- "id": 23300,
+ "id": 6011,
"name": "createFulfillmentSets",
"variant": "signature",
"kind": 4096,
@@ -251965,12 +252817,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-fulfillment-set.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-fulfillment-set.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-fulfillment-set.ts#L17"
}
],
"parameters": [
{
- "id": 23301,
+ "id": 6012,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -251980,7 +252832,7 @@
"types": [
{
"type": "reference",
- "target": 23297,
+ "target": 6008,
"name": "CreateFulfillmentSetsStepInput",
"package": "@medusajs/core-flows"
},
@@ -251993,7 +252845,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23297,
+ "target": 6008,
"name": "CreateFulfillmentSetsStepInput",
"package": "@medusajs/core-flows"
}
@@ -252083,14 +252935,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23302,
+ "id": 6013,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23303,
+ "id": 6014,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -252104,7 +252956,7 @@
],
"signatures": [
{
- "id": 23304,
+ "id": 6015,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -252118,7 +252970,7 @@
],
"parameters": [
{
- "id": 23305,
+ "id": 6016,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -252129,14 +252981,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23306,
+ "id": 6017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23307,
+ "id": 6018,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -252160,7 +253012,7 @@
{
"title": "Properties",
"children": [
- 23307
+ 6018
]
}
],
@@ -252245,7 +253097,7 @@
{
"title": "Methods",
"children": [
- 23303
+ 6014
]
}
],
@@ -252287,7 +253139,7 @@
]
},
{
- "id": 23310,
+ "id": 6021,
"name": "createReturnFulfillmentStepId",
"variant": "declaration",
"kind": 32,
@@ -252299,7 +253151,7 @@
"fileName": "core-flows/src/fulfillment/steps/create-return-fulfillment.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-return-fulfillment.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-return-fulfillment.ts#L8"
}
],
"type": {
@@ -252309,7 +253161,7 @@
"defaultValue": "\"create-return-fulfillment\""
},
{
- "id": 23311,
+ "id": 6022,
"name": "createReturnFulfillmentStep",
"variant": "declaration",
"kind": 64,
@@ -252344,7 +253196,7 @@
},
"children": [
{
- "id": 23342,
+ "id": 6053,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -252362,7 +253214,7 @@
}
},
{
- "id": 23343,
+ "id": 6054,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -252384,8 +253236,8 @@
{
"title": "Properties",
"children": [
- 23342,
- 23343
+ 6053,
+ 6054
]
}
],
@@ -252394,12 +253246,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-return-fulfillment.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-return-fulfillment.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-return-fulfillment.ts#L35"
}
],
"signatures": [
{
- "id": 23312,
+ "id": 6023,
"name": "createReturnFulfillmentStep",
"variant": "signature",
"kind": 4096,
@@ -252437,12 +253289,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-return-fulfillment.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-return-fulfillment.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-return-fulfillment.ts#L35"
}
],
"parameters": [
{
- "id": 23313,
+ "id": 6024,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -252489,14 +253341,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23314,
+ "id": 6025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23315,
+ "id": 6026,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -252542,7 +253394,7 @@
}
},
{
- "id": 23316,
+ "id": 6027,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -252588,7 +253440,7 @@
}
},
{
- "id": 23317,
+ "id": 6028,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -252657,7 +253509,7 @@
}
},
{
- "id": 23318,
+ "id": 6029,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -252726,7 +253578,7 @@
}
},
{
- "id": 23319,
+ "id": 6030,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -252795,7 +253647,7 @@
}
},
{
- "id": 23320,
+ "id": 6031,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -252864,7 +253716,7 @@
}
},
{
- "id": 23321,
+ "id": 6032,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -252929,7 +253781,7 @@
}
},
{
- "id": 23322,
+ "id": 6033,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -252994,7 +253846,7 @@
}
},
{
- "id": 23323,
+ "id": 6034,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -253083,7 +253935,7 @@
}
},
{
- "id": 23324,
+ "id": 6035,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -253129,7 +253981,7 @@
}
},
{
- "id": 23325,
+ "id": 6036,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -253188,7 +254040,7 @@
}
},
{
- "id": 23326,
+ "id": 6037,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -253277,7 +254129,7 @@
}
},
{
- "id": 23327,
+ "id": 6038,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -253346,7 +254198,7 @@
}
},
{
- "id": 23328,
+ "id": 6039,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -253392,7 +254244,7 @@
}
},
{
- "id": 23329,
+ "id": 6040,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -253448,7 +254300,7 @@
}
},
{
- "id": 23330,
+ "id": 6041,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -253504,7 +254356,7 @@
}
},
{
- "id": 23331,
+ "id": 6042,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -253566,7 +254418,7 @@
}
},
{
- "id": 23332,
+ "id": 6043,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -253628,7 +254480,7 @@
}
},
{
- "id": 23333,
+ "id": 6044,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -253684,7 +254536,7 @@
}
},
{
- "id": 23334,
+ "id": 6045,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -253740,7 +254592,7 @@
}
},
{
- "id": 23335,
+ "id": 6046,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -253813,27 +254665,27 @@
{
"title": "Properties",
"children": [
- 23315,
- 23316,
- 23317,
- 23318,
- 23319,
- 23320,
- 23321,
- 23322,
- 23323,
- 23324,
- 23325,
- 23326,
- 23327,
- 23328,
- 23329,
- 23330,
- 23331,
- 23332,
- 23333,
- 23334,
- 23335
+ 6026,
+ 6027,
+ 6028,
+ 6029,
+ 6030,
+ 6031,
+ 6032,
+ 6033,
+ 6034,
+ 6035,
+ 6036,
+ 6037,
+ 6038,
+ 6039,
+ 6040,
+ 6041,
+ 6042,
+ 6043,
+ 6044,
+ 6045,
+ 6046
]
}
],
@@ -253878,14 +254730,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23336,
+ "id": 6047,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23337,
+ "id": 6048,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -253899,7 +254751,7 @@
],
"signatures": [
{
- "id": 23338,
+ "id": 6049,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -253913,7 +254765,7 @@
],
"parameters": [
{
- "id": 23339,
+ "id": 6050,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -253924,14 +254776,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23340,
+ "id": 6051,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23341,
+ "id": 6052,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -253955,7 +254807,7 @@
{
"title": "Properties",
"children": [
- 23341
+ 6052
]
}
],
@@ -254037,7 +254889,7 @@
{
"title": "Methods",
"children": [
- 23337
+ 6048
]
}
],
@@ -254076,7 +254928,7 @@
]
},
{
- "id": 23345,
+ "id": 6056,
"name": "createServiceZonesStepId",
"variant": "declaration",
"kind": 32,
@@ -254088,7 +254940,7 @@
"fileName": "core-flows/src/fulfillment/steps/create-service-zones.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-service-zones.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-service-zones.ts#L13"
}
],
"type": {
@@ -254098,7 +254950,7 @@
"defaultValue": "\"create-service-zones\""
},
{
- "id": 23346,
+ "id": 6057,
"name": "createServiceZonesStep",
"variant": "declaration",
"kind": 64,
@@ -254124,7 +254976,7 @@
},
"children": [
{
- "id": 23355,
+ "id": 6066,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -254142,7 +254994,7 @@
}
},
{
- "id": 23356,
+ "id": 6067,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -254164,8 +255016,8 @@
{
"title": "Properties",
"children": [
- 23355,
- 23356
+ 6066,
+ 6067
]
}
],
@@ -254174,12 +255026,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-service-zones.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-service-zones.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-service-zones.ts#L17"
}
],
"signatures": [
{
- "id": 23347,
+ "id": 6058,
"name": "createServiceZonesStep",
"variant": "signature",
"kind": 4096,
@@ -254208,12 +255060,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-service-zones.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-service-zones.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-service-zones.ts#L17"
}
],
"parameters": [
{
- "id": 23348,
+ "id": 6059,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -254223,7 +255075,7 @@
"types": [
{
"type": "reference",
- "target": 23344,
+ "target": 6055,
"name": "CreateServiceZonesStepInput",
"package": "@medusajs/core-flows"
},
@@ -254236,7 +255088,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23344,
+ "target": 6055,
"name": "CreateServiceZonesStepInput",
"package": "@medusajs/core-flows"
}
@@ -254326,14 +255178,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23349,
+ "id": 6060,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23350,
+ "id": 6061,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -254347,7 +255199,7 @@
],
"signatures": [
{
- "id": 23351,
+ "id": 6062,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -254361,7 +255213,7 @@
],
"parameters": [
{
- "id": 23352,
+ "id": 6063,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -254372,14 +255224,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23353,
+ "id": 6064,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23354,
+ "id": 6065,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -254403,7 +255255,7 @@
{
"title": "Properties",
"children": [
- 23354
+ 6065
]
}
],
@@ -254488,7 +255340,7 @@
{
"title": "Methods",
"children": [
- 23350
+ 6061
]
}
],
@@ -254530,7 +255382,7 @@
]
},
{
- "id": 23357,
+ "id": 6068,
"name": "createShippingOptionRulesStepId",
"variant": "declaration",
"kind": 32,
@@ -254542,7 +255394,7 @@
"fileName": "core-flows/src/fulfillment/steps/create-shipping-option-rules.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-shipping-option-rules.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-shipping-option-rules.ts#L8"
}
],
"type": {
@@ -254552,7 +255404,7 @@
"defaultValue": "\"create-shipping-option-rules\""
},
{
- "id": 23358,
+ "id": 6069,
"name": "createShippingOptionRulesStep",
"variant": "declaration",
"kind": 64,
@@ -254578,7 +255430,7 @@
},
"children": [
{
- "id": 23367,
+ "id": 6078,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -254596,7 +255448,7 @@
}
},
{
- "id": 23368,
+ "id": 6079,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -254618,8 +255470,8 @@
{
"title": "Properties",
"children": [
- 23367,
- 23368
+ 6078,
+ 6079
]
}
],
@@ -254628,12 +255480,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-shipping-option-rules.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-shipping-option-rules.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-shipping-option-rules.ts#L12"
}
],
"signatures": [
{
- "id": 23359,
+ "id": 6070,
"name": "createShippingOptionRulesStep",
"variant": "signature",
"kind": 4096,
@@ -254662,12 +255514,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-shipping-option-rules.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-shipping-option-rules.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-shipping-option-rules.ts#L12"
}
],
"parameters": [
{
- "id": 23360,
+ "id": 6071,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -254786,14 +255638,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23361,
+ "id": 6072,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23362,
+ "id": 6073,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -254807,7 +255659,7 @@
],
"signatures": [
{
- "id": 23363,
+ "id": 6074,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -254821,7 +255673,7 @@
],
"parameters": [
{
- "id": 23364,
+ "id": 6075,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -254832,14 +255684,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23365,
+ "id": 6076,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23366,
+ "id": 6077,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -254863,7 +255715,7 @@
{
"title": "Properties",
"children": [
- 23366
+ 6077
]
}
],
@@ -254948,7 +255800,7 @@
{
"title": "Methods",
"children": [
- 23362
+ 6073
]
}
],
@@ -254990,7 +255842,7 @@
]
},
{
- "id": 23370,
+ "id": 6081,
"name": "createShippingProfilesStepId",
"variant": "declaration",
"kind": 32,
@@ -255002,7 +255854,7 @@
"fileName": "core-flows/src/fulfillment/steps/create-shipping-profiles.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-shipping-profiles.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-shipping-profiles.ts#L13"
}
],
"type": {
@@ -255012,7 +255864,7 @@
"defaultValue": "\"create-shipping-profiles\""
},
{
- "id": 23371,
+ "id": 6082,
"name": "createShippingProfilesStep",
"variant": "declaration",
"kind": 64,
@@ -255038,7 +255890,7 @@
},
"children": [
{
- "id": 23380,
+ "id": 6091,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -255056,7 +255908,7 @@
}
},
{
- "id": 23381,
+ "id": 6092,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -255078,8 +255930,8 @@
{
"title": "Properties",
"children": [
- 23380,
- 23381
+ 6091,
+ 6092
]
}
],
@@ -255088,12 +255940,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-shipping-profiles.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-shipping-profiles.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-shipping-profiles.ts#L17"
}
],
"signatures": [
{
- "id": 23372,
+ "id": 6083,
"name": "createShippingProfilesStep",
"variant": "signature",
"kind": 4096,
@@ -255122,12 +255974,12 @@
"fileName": "core-flows/src/fulfillment/steps/create-shipping-profiles.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/create-shipping-profiles.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/create-shipping-profiles.ts#L17"
}
],
"parameters": [
{
- "id": 23373,
+ "id": 6084,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -255137,7 +255989,7 @@
"types": [
{
"type": "reference",
- "target": 23369,
+ "target": 6080,
"name": "CreateShippingProfilesStepInput",
"package": "@medusajs/core-flows"
},
@@ -255150,7 +256002,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23369,
+ "target": 6080,
"name": "CreateShippingProfilesStepInput",
"package": "@medusajs/core-flows"
}
@@ -255240,14 +256092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23374,
+ "id": 6085,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23375,
+ "id": 6086,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -255261,7 +256113,7 @@
],
"signatures": [
{
- "id": 23376,
+ "id": 6087,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -255275,7 +256127,7 @@
],
"parameters": [
{
- "id": 23377,
+ "id": 6088,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -255286,14 +256138,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23378,
+ "id": 6089,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23379,
+ "id": 6090,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -255317,7 +256169,7 @@
{
"title": "Properties",
"children": [
- 23379
+ 6090
]
}
],
@@ -255402,7 +256254,7 @@
{
"title": "Methods",
"children": [
- 23375
+ 6086
]
}
],
@@ -255444,7 +256296,7 @@
]
},
{
- "id": 23383,
+ "id": 6094,
"name": "deleteFulfillmentSetsStepId",
"variant": "declaration",
"kind": 32,
@@ -255456,7 +256308,7 @@
"fileName": "core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts#L10"
}
],
"type": {
@@ -255466,7 +256318,7 @@
"defaultValue": "\"delete-fulfillment-sets\""
},
{
- "id": 23384,
+ "id": 6095,
"name": "deleteFulfillmentSetsStep",
"variant": "declaration",
"kind": 64,
@@ -255492,7 +256344,7 @@
},
"children": [
{
- "id": 23387,
+ "id": 6098,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -255510,7 +256362,7 @@
}
},
{
- "id": 23388,
+ "id": 6099,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -255532,8 +256384,8 @@
{
"title": "Properties",
"children": [
- 23387,
- 23388
+ 6098,
+ 6099
]
}
],
@@ -255542,12 +256394,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts#L14"
}
],
"signatures": [
{
- "id": 23385,
+ "id": 6096,
"name": "deleteFulfillmentSetsStep",
"variant": "signature",
"kind": 4096,
@@ -255576,12 +256428,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-fulfillment-sets.ts#L14"
}
],
"parameters": [
{
- "id": 23386,
+ "id": 6097,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -255591,7 +256443,7 @@
"types": [
{
"type": "reference",
- "target": 23382,
+ "target": 6093,
"name": "DeleteFulfillmentSetsStepInput",
"package": "@medusajs/core-flows"
},
@@ -255604,7 +256456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23382,
+ "target": 6093,
"name": "DeleteFulfillmentSetsStepInput",
"package": "@medusajs/core-flows"
}
@@ -255624,7 +256476,7 @@
]
},
{
- "id": 23390,
+ "id": 6101,
"name": "deleteServiceZonesStepId",
"variant": "declaration",
"kind": 32,
@@ -255636,7 +256488,7 @@
"fileName": "core-flows/src/fulfillment/steps/delete-service-zones.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-service-zones.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-service-zones.ts#L10"
}
],
"type": {
@@ -255646,7 +256498,7 @@
"defaultValue": "\"delete-service-zones\""
},
{
- "id": 23391,
+ "id": 6102,
"name": "deleteServiceZonesStep",
"variant": "declaration",
"kind": 64,
@@ -255672,7 +256524,7 @@
},
"children": [
{
- "id": 23394,
+ "id": 6105,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -255690,7 +256542,7 @@
}
},
{
- "id": 23395,
+ "id": 6106,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -255712,8 +256564,8 @@
{
"title": "Properties",
"children": [
- 23394,
- 23395
+ 6105,
+ 6106
]
}
],
@@ -255722,12 +256574,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-service-zones.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-service-zones.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-service-zones.ts#L14"
}
],
"signatures": [
{
- "id": 23392,
+ "id": 6103,
"name": "deleteServiceZonesStep",
"variant": "signature",
"kind": 4096,
@@ -255756,12 +256608,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-service-zones.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-service-zones.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-service-zones.ts#L14"
}
],
"parameters": [
{
- "id": 23393,
+ "id": 6104,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -255771,7 +256623,7 @@
"types": [
{
"type": "reference",
- "target": 23389,
+ "target": 6100,
"name": "DeleteServiceZonesStepInput",
"package": "@medusajs/core-flows"
},
@@ -255784,7 +256636,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23389,
+ "target": 6100,
"name": "DeleteServiceZonesStepInput",
"package": "@medusajs/core-flows"
}
@@ -255804,7 +256656,7 @@
]
},
{
- "id": 23396,
+ "id": 6107,
"name": "deleteShippingOptionRulesStepId",
"variant": "declaration",
"kind": 32,
@@ -255816,7 +256668,7 @@
"fileName": "core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts#L9"
}
],
"type": {
@@ -255826,7 +256678,7 @@
"defaultValue": "\"delete-shipping-option-rules\""
},
{
- "id": 23397,
+ "id": 6108,
"name": "deleteShippingOptionRulesStep",
"variant": "declaration",
"kind": 64,
@@ -255852,7 +256704,7 @@
},
"children": [
{
- "id": 23406,
+ "id": 6117,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -255870,7 +256722,7 @@
}
},
{
- "id": 23407,
+ "id": 6118,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -255892,8 +256744,8 @@
{
"title": "Properties",
"children": [
- 23406,
- 23407
+ 6117,
+ 6118
]
}
],
@@ -255902,12 +256754,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts#L13"
}
],
"signatures": [
{
- "id": 23398,
+ "id": 6109,
"name": "deleteShippingOptionRulesStep",
"variant": "signature",
"kind": 4096,
@@ -255936,12 +256788,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-shipping-option-rules.ts#L13"
}
],
"parameters": [
{
- "id": 23399,
+ "id": 6110,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -256040,14 +256892,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23400,
+ "id": 6111,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23401,
+ "id": 6112,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -256061,7 +256913,7 @@
],
"signatures": [
{
- "id": 23402,
+ "id": 6113,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -256075,7 +256927,7 @@
],
"parameters": [
{
- "id": 23403,
+ "id": 6114,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -256086,14 +256938,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23404,
+ "id": 6115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23405,
+ "id": 6116,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -256117,7 +256969,7 @@
{
"title": "Properties",
"children": [
- 23405
+ 6116
]
}
],
@@ -256197,7 +257049,7 @@
{
"title": "Methods",
"children": [
- 23401
+ 6112
]
}
],
@@ -256234,7 +257086,7 @@
]
},
{
- "id": 23409,
+ "id": 6120,
"name": "deleteShippingOptionsStepId",
"variant": "declaration",
"kind": 32,
@@ -256246,7 +257098,7 @@
"fileName": "core-flows/src/fulfillment/steps/delete-shipping-options.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-shipping-options.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-shipping-options.ts#L11"
}
],
"type": {
@@ -256256,7 +257108,7 @@
"defaultValue": "\"delete-shipping-options-step\""
},
{
- "id": 23410,
+ "id": 6121,
"name": "deleteShippingOptionsStep",
"variant": "declaration",
"kind": 64,
@@ -256282,7 +257134,7 @@
},
"children": [
{
- "id": 23422,
+ "id": 6133,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -256300,7 +257152,7 @@
}
},
{
- "id": 23423,
+ "id": 6134,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -256322,8 +257174,8 @@
{
"title": "Properties",
"children": [
- 23422,
- 23423
+ 6133,
+ 6134
]
}
],
@@ -256332,12 +257184,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-shipping-options.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-shipping-options.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-shipping-options.ts#L15"
}
],
"signatures": [
{
- "id": 23411,
+ "id": 6122,
"name": "deleteShippingOptionsStep",
"variant": "signature",
"kind": 4096,
@@ -256366,12 +257218,12 @@
"fileName": "core-flows/src/fulfillment/steps/delete-shipping-options.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/delete-shipping-options.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/delete-shipping-options.ts#L15"
}
],
"parameters": [
{
- "id": 23412,
+ "id": 6123,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -256381,7 +257233,7 @@
"types": [
{
"type": "reference",
- "target": 23408,
+ "target": 6119,
"name": "DeleteShippingOptionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -256394,7 +257246,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23408,
+ "target": 6119,
"name": "DeleteShippingOptionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -256412,7 +257264,7 @@
{
"type": "reflection",
"declaration": {
- "id": 23413,
+ "id": 6124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -256426,14 +257278,14 @@
],
"indexSignatures": [
{
- "id": 23414,
+ "id": 6125,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 23415,
+ "id": 6126,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -256558,14 +257410,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23416,
+ "id": 6127,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23417,
+ "id": 6128,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -256579,7 +257431,7 @@
],
"signatures": [
{
- "id": 23418,
+ "id": 6129,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -256593,7 +257445,7 @@
],
"parameters": [
{
- "id": 23419,
+ "id": 6130,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -256604,14 +257456,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23420,
+ "id": 6131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23421,
+ "id": 6132,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -256635,7 +257487,7 @@
{
"title": "Properties",
"children": [
- 23421
+ 6132
]
}
],
@@ -256717,7 +257569,7 @@
{
"title": "Methods",
"children": [
- 23417
+ 6128
]
}
],
@@ -256756,7 +257608,7 @@
]
},
{
- "id": 23426,
+ "id": 6137,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -256774,7 +257626,7 @@
"fileName": "core-flows/src/fulfillment/steps/set-shipping-options-prices.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L33"
}
],
"type": {
@@ -256783,7 +257635,7 @@
}
},
{
- "id": 23427,
+ "id": 6138,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -256803,7 +257655,7 @@
"fileName": "core-flows/src/fulfillment/steps/set-shipping-options-prices.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L37"
}
],
"type": {
@@ -256821,7 +257673,7 @@
}
},
{
- "id": 23428,
+ "id": 6139,
"name": "setShippingOptionsPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -256833,7 +257685,7 @@
"fileName": "core-flows/src/fulfillment/steps/set-shipping-options-prices.ts",
"line": 129,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L129"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L129"
}
],
"type": {
@@ -256843,7 +257695,7 @@
"defaultValue": "\"set-shipping-options-prices-step\""
},
{
- "id": 23429,
+ "id": 6140,
"name": "setShippingOptionsPricesStep",
"variant": "declaration",
"kind": 64,
@@ -256878,7 +257730,7 @@
},
"children": [
{
- "id": 23432,
+ "id": 6143,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -256896,7 +257748,7 @@
}
},
{
- "id": 23433,
+ "id": 6144,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -256918,8 +257770,8 @@
{
"title": "Properties",
"children": [
- 23432,
- 23433
+ 6143,
+ 6144
]
}
],
@@ -256928,12 +257780,12 @@
"fileName": "core-flows/src/fulfillment/steps/set-shipping-options-prices.ts",
"line": 146,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L146"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L146"
}
],
"signatures": [
{
- "id": 23430,
+ "id": 6141,
"name": "setShippingOptionsPricesStep",
"variant": "signature",
"kind": 4096,
@@ -256971,12 +257823,12 @@
"fileName": "core-flows/src/fulfillment/steps/set-shipping-options-prices.ts",
"line": 146,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L146"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/set-shipping-options-prices.ts#L146"
}
],
"parameters": [
{
- "id": 23431,
+ "id": 6142,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -256986,7 +257838,7 @@
"types": [
{
"type": "reference",
- "target": 23424,
+ "target": 6135,
"name": "SetShippingOptionsPricesStepInput",
"package": "@medusajs/core-flows"
},
@@ -256999,7 +257851,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23424,
+ "target": 6135,
"name": "SetShippingOptionsPricesStepInput",
"package": "@medusajs/core-flows"
}
@@ -257019,7 +257871,7 @@
]
},
{
- "id": 23434,
+ "id": 6145,
"name": "updateFulfillmentStepId",
"variant": "declaration",
"kind": 32,
@@ -257031,7 +257883,7 @@
"fileName": "core-flows/src/fulfillment/steps/update-fulfillment.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-fulfillment.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-fulfillment.ts#L11"
}
],
"type": {
@@ -257041,7 +257893,7 @@
"defaultValue": "\"update-fulfillment\""
},
{
- "id": 23435,
+ "id": 6146,
"name": "updateFulfillmentStep",
"variant": "declaration",
"kind": 64,
@@ -257076,7 +257928,7 @@
},
"children": [
{
- "id": 23466,
+ "id": 6177,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -257094,7 +257946,7 @@
}
},
{
- "id": 23467,
+ "id": 6178,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -257116,8 +257968,8 @@
{
"title": "Properties",
"children": [
- 23466,
- 23467
+ 6177,
+ 6178
]
}
],
@@ -257126,12 +257978,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-fulfillment.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-fulfillment.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-fulfillment.ts#L21"
}
],
"signatures": [
{
- "id": 23436,
+ "id": 6147,
"name": "updateFulfillmentStep",
"variant": "signature",
"kind": 4096,
@@ -257169,12 +258021,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-fulfillment.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-fulfillment.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-fulfillment.ts#L21"
}
],
"parameters": [
{
- "id": 23437,
+ "id": 6148,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -257221,14 +258073,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23438,
+ "id": 6149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23439,
+ "id": 6150,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -257274,7 +258126,7 @@
}
},
{
- "id": 23440,
+ "id": 6151,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -257320,7 +258172,7 @@
}
},
{
- "id": 23441,
+ "id": 6152,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -257389,7 +258241,7 @@
}
},
{
- "id": 23442,
+ "id": 6153,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -257458,7 +258310,7 @@
}
},
{
- "id": 23443,
+ "id": 6154,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -257527,7 +258379,7 @@
}
},
{
- "id": 23444,
+ "id": 6155,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -257596,7 +258448,7 @@
}
},
{
- "id": 23445,
+ "id": 6156,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -257661,7 +258513,7 @@
}
},
{
- "id": 23446,
+ "id": 6157,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -257726,7 +258578,7 @@
}
},
{
- "id": 23447,
+ "id": 6158,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -257815,7 +258667,7 @@
}
},
{
- "id": 23448,
+ "id": 6159,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -257861,7 +258713,7 @@
}
},
{
- "id": 23449,
+ "id": 6160,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -257920,7 +258772,7 @@
}
},
{
- "id": 23450,
+ "id": 6161,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -258009,7 +258861,7 @@
}
},
{
- "id": 23451,
+ "id": 6162,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -258078,7 +258930,7 @@
}
},
{
- "id": 23452,
+ "id": 6163,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -258124,7 +258976,7 @@
}
},
{
- "id": 23453,
+ "id": 6164,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -258180,7 +259032,7 @@
}
},
{
- "id": 23454,
+ "id": 6165,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -258236,7 +259088,7 @@
}
},
{
- "id": 23455,
+ "id": 6166,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -258298,7 +259150,7 @@
}
},
{
- "id": 23456,
+ "id": 6167,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -258360,7 +259212,7 @@
}
},
{
- "id": 23457,
+ "id": 6168,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -258416,7 +259268,7 @@
}
},
{
- "id": 23458,
+ "id": 6169,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -258472,7 +259324,7 @@
}
},
{
- "id": 23459,
+ "id": 6170,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -258545,27 +259397,27 @@
{
"title": "Properties",
"children": [
- 23439,
- 23440,
- 23441,
- 23442,
- 23443,
- 23444,
- 23445,
- 23446,
- 23447,
- 23448,
- 23449,
- 23450,
- 23451,
- 23452,
- 23453,
- 23454,
- 23455,
- 23456,
- 23457,
- 23458,
- 23459
+ 6150,
+ 6151,
+ 6152,
+ 6153,
+ 6154,
+ 6155,
+ 6156,
+ 6157,
+ 6158,
+ 6159,
+ 6160,
+ 6161,
+ 6162,
+ 6163,
+ 6164,
+ 6165,
+ 6166,
+ 6167,
+ 6168,
+ 6169,
+ 6170
]
}
],
@@ -258610,14 +259462,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23460,
+ "id": 6171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23461,
+ "id": 6172,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -258631,7 +259483,7 @@
],
"signatures": [
{
- "id": 23462,
+ "id": 6173,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -258645,7 +259497,7 @@
],
"parameters": [
{
- "id": 23463,
+ "id": 6174,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -258656,14 +259508,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23464,
+ "id": 6175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23465,
+ "id": 6176,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -258687,7 +259539,7 @@
{
"title": "Properties",
"children": [
- 23465
+ 6176
]
}
],
@@ -258769,7 +259621,7 @@
{
"title": "Methods",
"children": [
- 23461
+ 6172
]
}
],
@@ -258808,7 +259660,7 @@
]
},
{
- "id": 23470,
+ "id": 6181,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -258826,7 +259678,7 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-profiles.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L19"
}
],
"type": {
@@ -258840,7 +259692,7 @@
}
},
{
- "id": 23471,
+ "id": 6182,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -258858,7 +259710,7 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-profiles.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L23"
}
],
"type": {
@@ -258872,7 +259724,7 @@
}
},
{
- "id": 23472,
+ "id": 6183,
"name": "updateShippingProfilesStepId",
"variant": "declaration",
"kind": 32,
@@ -258884,7 +259736,7 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-profiles.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L26"
}
],
"type": {
@@ -258894,7 +259746,7 @@
"defaultValue": "\"update-shipping-profiles\""
},
{
- "id": 23473,
+ "id": 6184,
"name": "updateShippingProfilesStep",
"variant": "declaration",
"kind": 64,
@@ -258929,7 +259781,7 @@
},
"children": [
{
- "id": 23482,
+ "id": 6193,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -258947,7 +259799,7 @@
}
},
{
- "id": 23483,
+ "id": 6194,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -258969,8 +259821,8 @@
{
"title": "Properties",
"children": [
- 23482,
- 23483
+ 6193,
+ 6194
]
}
],
@@ -258979,12 +259831,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-profiles.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L40"
}
],
"signatures": [
{
- "id": 23474,
+ "id": 6185,
"name": "updateShippingProfilesStep",
"variant": "signature",
"kind": 4096,
@@ -259022,12 +259874,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-profiles.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-profiles.ts#L40"
}
],
"parameters": [
{
- "id": 23475,
+ "id": 6186,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -259037,7 +259889,7 @@
"types": [
{
"type": "reference",
- "target": 23468,
+ "target": 6179,
"name": "UpdateShippingProfilesStepInput",
"package": "@medusajs/core-flows"
},
@@ -259050,7 +259902,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23468,
+ "target": 6179,
"name": "UpdateShippingProfilesStepInput",
"package": "@medusajs/core-flows"
}
@@ -259140,14 +259992,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23476,
+ "id": 6187,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23477,
+ "id": 6188,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -259161,7 +260013,7 @@
],
"signatures": [
{
- "id": 23478,
+ "id": 6189,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -259175,7 +260027,7 @@
],
"parameters": [
{
- "id": 23479,
+ "id": 6190,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -259186,14 +260038,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23480,
+ "id": 6191,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23481,
+ "id": 6192,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -259217,7 +260069,7 @@
{
"title": "Properties",
"children": [
- 23481
+ 6192
]
}
],
@@ -259302,7 +260154,7 @@
{
"title": "Methods",
"children": [
- 23477
+ 6188
]
}
],
@@ -259344,7 +260196,7 @@
]
},
{
- "id": 23485,
+ "id": 6196,
"name": "upsertShippingOptionsStepId",
"variant": "declaration",
"kind": 32,
@@ -259356,7 +260208,7 @@
"fileName": "core-flows/src/fulfillment/steps/upsert-shipping-options.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/upsert-shipping-options.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/upsert-shipping-options.ts#L19"
}
],
"type": {
@@ -259366,7 +260218,7 @@
"defaultValue": "\"create-shipping-options-step\""
},
{
- "id": 23486,
+ "id": 6197,
"name": "upsertShippingOptionsStep",
"variant": "declaration",
"kind": 64,
@@ -259401,7 +260253,7 @@
},
"children": [
{
- "id": 23495,
+ "id": 6206,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -259419,7 +260271,7 @@
}
},
{
- "id": 23496,
+ "id": 6207,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -259441,8 +260293,8 @@
{
"title": "Properties",
"children": [
- 23495,
- 23496
+ 6206,
+ 6207
]
}
],
@@ -259451,12 +260303,12 @@
"fileName": "core-flows/src/fulfillment/steps/upsert-shipping-options.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/upsert-shipping-options.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/upsert-shipping-options.ts#L23"
}
],
"signatures": [
{
- "id": 23487,
+ "id": 6198,
"name": "upsertShippingOptionsStep",
"variant": "signature",
"kind": 4096,
@@ -259494,12 +260346,12 @@
"fileName": "core-flows/src/fulfillment/steps/upsert-shipping-options.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/upsert-shipping-options.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/upsert-shipping-options.ts#L23"
}
],
"parameters": [
{
- "id": 23488,
+ "id": 6199,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -259509,7 +260361,7 @@
"types": [
{
"type": "reference",
- "target": 23484,
+ "target": 6195,
"name": "UpsertShippingOptionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -259522,7 +260374,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23484,
+ "target": 6195,
"name": "UpsertShippingOptionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -259612,14 +260464,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23489,
+ "id": 6200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23490,
+ "id": 6201,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -259633,7 +260485,7 @@
],
"signatures": [
{
- "id": 23491,
+ "id": 6202,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -259647,7 +260499,7 @@
],
"parameters": [
{
- "id": 23492,
+ "id": 6203,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -259658,14 +260510,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23493,
+ "id": 6204,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23494,
+ "id": 6205,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -259689,7 +260541,7 @@
{
"title": "Properties",
"children": [
- 23494
+ 6205
]
}
],
@@ -259774,7 +260626,7 @@
{
"title": "Methods",
"children": [
- 23490
+ 6201
]
}
],
@@ -259816,7 +260668,7 @@
]
},
{
- "id": 23498,
+ "id": 6209,
"name": "validateShipmentStepId",
"variant": "declaration",
"kind": 32,
@@ -259828,7 +260680,7 @@
"fileName": "core-flows/src/fulfillment/steps/validate-shipment.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/validate-shipment.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/validate-shipment.ts#L10"
}
],
"type": {
@@ -259838,7 +260690,7 @@
"defaultValue": "\"validate-shipment\""
},
{
- "id": 23499,
+ "id": 6210,
"name": "validateShipmentStep",
"variant": "declaration",
"kind": 64,
@@ -259864,7 +260716,7 @@
},
"children": [
{
- "id": 23502,
+ "id": 6213,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -259882,7 +260734,7 @@
}
},
{
- "id": 23503,
+ "id": 6214,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -259904,8 +260756,8 @@
{
"title": "Properties",
"children": [
- 23502,
- 23503
+ 6213,
+ 6214
]
}
],
@@ -259914,12 +260766,12 @@
"fileName": "core-flows/src/fulfillment/steps/validate-shipment.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/validate-shipment.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/validate-shipment.ts#L16"
}
],
"signatures": [
{
- "id": 23500,
+ "id": 6211,
"name": "validateShipmentStep",
"variant": "signature",
"kind": 4096,
@@ -259948,12 +260800,12 @@
"fileName": "core-flows/src/fulfillment/steps/validate-shipment.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/validate-shipment.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/validate-shipment.ts#L16"
}
],
"parameters": [
{
- "id": 23501,
+ "id": 6212,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -259992,7 +260844,7 @@
]
},
{
- "id": 23505,
+ "id": 6216,
"name": "calculateShippingOptionsPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -260004,7 +260856,7 @@
"fileName": "core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts#L14"
}
],
"type": {
@@ -260014,7 +260866,7 @@
"defaultValue": "\"calculate-shipping-options-prices\""
},
{
- "id": 23506,
+ "id": 6217,
"name": "calculateShippingOptionsPricesStep",
"variant": "declaration",
"kind": 64,
@@ -260076,7 +260928,7 @@
},
"children": [
{
- "id": 23515,
+ "id": 6226,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -260094,7 +260946,7 @@
}
},
{
- "id": 23516,
+ "id": 6227,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -260116,8 +260968,8 @@
{
"title": "Properties",
"children": [
- 23515,
- 23516
+ 6226,
+ 6227
]
}
],
@@ -260126,12 +260978,12 @@
"fileName": "core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts#L39"
}
],
"signatures": [
{
- "id": 23507,
+ "id": 6218,
"name": "calculateShippingOptionsPricesStep",
"variant": "signature",
"kind": 4096,
@@ -260196,12 +261048,12 @@
"fileName": "core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/calculate-shipping-options-prices.ts#L39"
}
],
"parameters": [
{
- "id": 23508,
+ "id": 6219,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -260211,7 +261063,7 @@
"types": [
{
"type": "reference",
- "target": 23504,
+ "target": 6215,
"name": "CalculateShippingOptionsPriceStepInput",
"package": "@medusajs/core-flows"
},
@@ -260224,7 +261076,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23504,
+ "target": 6215,
"name": "CalculateShippingOptionsPriceStepInput",
"package": "@medusajs/core-flows"
}
@@ -260314,14 +261166,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23509,
+ "id": 6220,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23510,
+ "id": 6221,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -260335,7 +261187,7 @@
],
"signatures": [
{
- "id": 23511,
+ "id": 6222,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -260349,7 +261201,7 @@
],
"parameters": [
{
- "id": 23512,
+ "id": 6223,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -260360,14 +261212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23513,
+ "id": 6224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23514,
+ "id": 6225,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -260391,7 +261243,7 @@
{
"title": "Properties",
"children": [
- 23514
+ 6225
]
}
],
@@ -260476,7 +261328,7 @@
{
"title": "Methods",
"children": [
- 23510
+ 6221
]
}
],
@@ -260518,7 +261370,7 @@
]
},
{
- "id": 23517,
+ "id": 6228,
"name": "updateServiceZonesStepId",
"variant": "declaration",
"kind": 32,
@@ -260530,7 +261382,7 @@
"fileName": "core-flows/src/fulfillment/steps/update-service-zones.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-service-zones.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-service-zones.ts#L11"
}
],
"type": {
@@ -260540,7 +261392,7 @@
"defaultValue": "\"update-service-zones\""
},
{
- "id": 23518,
+ "id": 6229,
"name": "updateServiceZonesStep",
"variant": "declaration",
"kind": 64,
@@ -260575,7 +261427,7 @@
},
"children": [
{
- "id": 23527,
+ "id": 6238,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -260593,7 +261445,7 @@
}
},
{
- "id": 23528,
+ "id": 6239,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -260615,8 +261467,8 @@
{
"title": "Properties",
"children": [
- 23527,
- 23528
+ 6238,
+ 6239
]
}
],
@@ -260625,12 +261477,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-service-zones.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-service-zones.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-service-zones.ts#L25"
}
],
"signatures": [
{
- "id": 23519,
+ "id": 6230,
"name": "updateServiceZonesStep",
"variant": "signature",
"kind": 4096,
@@ -260668,12 +261520,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-service-zones.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-service-zones.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-service-zones.ts#L25"
}
],
"parameters": [
{
- "id": 23520,
+ "id": 6231,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -260792,14 +261644,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23521,
+ "id": 6232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23522,
+ "id": 6233,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -260813,7 +261665,7 @@
],
"signatures": [
{
- "id": 23523,
+ "id": 6234,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -260827,7 +261679,7 @@
],
"parameters": [
{
- "id": 23524,
+ "id": 6235,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -260838,14 +261690,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23525,
+ "id": 6236,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23526,
+ "id": 6237,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -260869,7 +261721,7 @@
{
"title": "Properties",
"children": [
- 23526
+ 6237
]
}
],
@@ -260954,7 +261806,7 @@
{
"title": "Methods",
"children": [
- 23522
+ 6233
]
}
],
@@ -260996,7 +261848,7 @@
]
},
{
- "id": 23529,
+ "id": 6240,
"name": "updateShippingOptionRulesStepId",
"variant": "declaration",
"kind": 32,
@@ -261008,7 +261860,7 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-option-rules.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-option-rules.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-option-rules.ts#L9"
}
],
"type": {
@@ -261018,7 +261870,7 @@
"defaultValue": "\"update-shipping-option-rules\""
},
{
- "id": 23530,
+ "id": 6241,
"name": "updateShippingOptionRulesStep",
"variant": "declaration",
"kind": 64,
@@ -261053,7 +261905,7 @@
},
"children": [
{
- "id": 23539,
+ "id": 6250,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -261071,7 +261923,7 @@
}
},
{
- "id": 23540,
+ "id": 6251,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -261093,8 +261945,8 @@
{
"title": "Properties",
"children": [
- 23539,
- 23540
+ 6250,
+ 6251
]
}
],
@@ -261103,12 +261955,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-option-rules.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-option-rules.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-option-rules.ts#L23"
}
],
"signatures": [
{
- "id": 23531,
+ "id": 6242,
"name": "updateShippingOptionRulesStep",
"variant": "signature",
"kind": 4096,
@@ -261146,12 +261998,12 @@
"fileName": "core-flows/src/fulfillment/steps/update-shipping-option-rules.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/update-shipping-option-rules.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/update-shipping-option-rules.ts#L23"
}
],
"parameters": [
{
- "id": 23532,
+ "id": 6243,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -261270,14 +262122,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23533,
+ "id": 6244,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23534,
+ "id": 6245,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -261291,7 +262143,7 @@
],
"signatures": [
{
- "id": 23535,
+ "id": 6246,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -261305,7 +262157,7 @@
],
"parameters": [
{
- "id": 23536,
+ "id": 6247,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -261316,14 +262168,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23537,
+ "id": 6248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23538,
+ "id": 6249,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -261347,7 +262199,7 @@
{
"title": "Properties",
"children": [
- 23538
+ 6249
]
}
],
@@ -261432,7 +262284,7 @@
{
"title": "Methods",
"children": [
- 23534
+ 6245
]
}
],
@@ -261474,7 +262326,7 @@
]
},
{
- "id": 23542,
+ "id": 6253,
"name": "validateShippingOptionPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -261486,7 +262338,7 @@
"fileName": "core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts#L18"
}
],
"type": {
@@ -261496,7 +262348,7 @@
"defaultValue": "\"validate-shipping-option-prices\""
},
{
- "id": 23543,
+ "id": 6254,
"name": "validateShippingOptionPricesStep",
"variant": "declaration",
"kind": 64,
@@ -261540,7 +262392,7 @@
},
"children": [
{
- "id": 23546,
+ "id": 6257,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -261558,7 +262410,7 @@
}
},
{
- "id": 23547,
+ "id": 6258,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -261580,8 +262432,8 @@
{
"title": "Properties",
"children": [
- 23546,
- 23547
+ 6257,
+ 6258
]
}
],
@@ -261590,12 +262442,12 @@
"fileName": "core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts#L45"
}
],
"signatures": [
{
- "id": 23544,
+ "id": 6255,
"name": "validateShippingOptionPricesStep",
"variant": "signature",
"kind": 4096,
@@ -261642,12 +262494,12 @@
"fileName": "core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/steps/validate-shipping-option-prices.ts#L45"
}
],
"parameters": [
{
- "id": 23545,
+ "id": 6256,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -261657,7 +262509,7 @@
"types": [
{
"type": "reference",
- "target": 23541,
+ "target": 6252,
"name": "ValidateShippingOptionPricesStepInput",
"package": "@medusajs/core-flows"
},
@@ -261670,7 +262522,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23541,
+ "target": 6252,
"name": "ValidateShippingOptionPricesStepInput",
"package": "@medusajs/core-flows"
}
@@ -261692,14 +262544,14 @@
]
},
{
- "id": 17325,
+ "id": 30,
"name": "Workflows_Fulfillment",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 23556,
+ "id": 6267,
"name": "batchShippingOptionRulesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -261711,7 +262563,7 @@
"fileName": "core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts",
"line": 42,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts#L42"
}
],
"type": {
@@ -261721,7 +262573,7 @@
"defaultValue": "\"batch-shipping-option-rules\""
},
{
- "id": 23557,
+ "id": 6268,
"name": "batchShippingOptionRulesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -261765,7 +262617,7 @@
},
"children": [
{
- "id": 23565,
+ "id": 6276,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -261788,7 +262640,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23566,
+ "id": 6277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -261802,7 +262654,7 @@
],
"signatures": [
{
- "id": 23567,
+ "id": 6278,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -261830,7 +262682,7 @@
],
"parameters": [
{
- "id": 23568,
+ "id": 6279,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -261846,14 +262698,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23569,
+ "id": 6280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23570,
+ "id": 6281,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -261878,7 +262730,7 @@
"types": [
{
"type": "reference",
- "target": 23548,
+ "target": 6259,
"name": "BatchShippingOptionRulesInput",
"package": "@medusajs/core-flows"
},
@@ -261891,7 +262743,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23548,
+ "target": 6259,
"name": "BatchShippingOptionRulesInput",
"package": "@medusajs/core-flows"
}
@@ -261907,7 +262759,7 @@
{
"title": "Properties",
"children": [
- 23570
+ 6281
]
}
],
@@ -261928,14 +262780,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23571,
+ "id": 6282,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23572,
+ "id": 6283,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -261997,7 +262849,7 @@
}
},
{
- "id": 23573,
+ "id": 6284,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -262059,7 +262911,7 @@
}
},
{
- "id": 23574,
+ "id": 6285,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -262115,9 +262967,9 @@
{
"title": "Properties",
"children": [
- 23572,
- 23573,
- 23574
+ 6283,
+ 6284,
+ 6285
]
}
],
@@ -262132,7 +262984,7 @@
},
{
"type": "reference",
- "target": 23552,
+ "target": 6263,
"name": "BatchShippingOptionRulesOutput",
"package": "@medusajs/core-flows"
},
@@ -262145,7 +262997,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23552,
+ "target": 6263,
"name": "BatchShippingOptionRulesOutput",
"package": "@medusajs/core-flows"
}
@@ -262156,14 +263008,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23575,
+ "id": 6286,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23576,
+ "id": 6287,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -262177,7 +263029,7 @@
],
"signatures": [
{
- "id": 23577,
+ "id": 6288,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -262191,7 +263043,7 @@
],
"parameters": [
{
- "id": 23578,
+ "id": 6289,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -262202,14 +263054,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23579,
+ "id": 6290,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23580,
+ "id": 6291,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -262233,7 +263085,7 @@
{
"title": "Properties",
"children": [
- 23580
+ 6291
]
}
],
@@ -262296,7 +263148,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23552,
+ "target": 6263,
"name": "BatchShippingOptionRulesOutput",
"package": "@medusajs/core-flows"
}
@@ -262312,7 +263164,7 @@
{
"title": "Methods",
"children": [
- 23576
+ 6287
]
}
],
@@ -262334,7 +263186,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23552,
+ "target": 6263,
"name": "BatchShippingOptionRulesOutput",
"package": "@medusajs/core-flows"
}
@@ -262350,7 +263202,7 @@
}
},
{
- "id": 23581,
+ "id": 6292,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -262373,7 +263225,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23582,
+ "id": 6293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -262387,7 +263239,7 @@
],
"signatures": [
{
- "id": 23583,
+ "id": 6294,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -262415,7 +263267,7 @@
],
"typeParameters": [
{
- "id": 23584,
+ "id": 6295,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -262426,7 +263278,7 @@
}
},
{
- "id": 23585,
+ "id": 6296,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -262439,7 +263291,7 @@
],
"parameters": [
{
- "id": 23586,
+ "id": 6297,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -262472,7 +263324,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -262483,13 +263335,13 @@
},
"trueType": {
"type": "reference",
- "target": 23548,
+ "target": 6259,
"name": "BatchShippingOptionRulesInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -262522,7 +263374,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -262533,13 +263385,13 @@
},
"trueType": {
"type": "reference",
- "target": 23552,
+ "target": 6263,
"name": "BatchShippingOptionRulesOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -262559,7 +263411,7 @@
}
},
{
- "id": 23587,
+ "id": 6298,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -262582,7 +263434,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23588,
+ "id": 6299,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -262596,7 +263448,7 @@
],
"signatures": [
{
- "id": 23589,
+ "id": 6300,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -262618,7 +263470,7 @@
}
},
{
- "id": 23590,
+ "id": 6301,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -262641,7 +263493,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23591,
+ "id": 6302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -262655,7 +263507,7 @@
],
"signatures": [
{
- "id": 23592,
+ "id": 6303,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -262669,7 +263521,7 @@
],
"parameters": [
{
- "id": 23593,
+ "id": 6304,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -262695,7 +263547,7 @@
}
},
{
- "id": 23594,
+ "id": 6305,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -262718,7 +263570,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23595,
+ "id": 6306,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -262729,7 +263581,7 @@
],
"documents": [
{
- "id": 42405,
+ "id": 25346,
"name": "createShippingOptionRulesStep",
"variant": "document",
"kind": 8388608,
@@ -262755,7 +263607,7 @@
"frontmatter": {}
},
{
- "id": 42406,
+ "id": 25347,
"name": "updateShippingOptionRulesStep",
"variant": "document",
"kind": 8388608,
@@ -262781,7 +263633,7 @@
"frontmatter": {}
},
{
- "id": 42407,
+ "id": 25348,
"name": "deleteShippingOptionRulesStep",
"variant": "document",
"kind": 8388608,
@@ -262808,21 +263660,21 @@
}
],
"childrenIncludingDocuments": [
- 23565,
- 23581,
- 23587,
- 23590,
- 23594
+ 6276,
+ 6292,
+ 6298,
+ 6301,
+ 6305
],
"groups": [
{
"title": "Properties",
"children": [
- 23565,
- 23581,
- 23587,
- 23590,
- 23594
+ 6276,
+ 6292,
+ 6298,
+ 6301,
+ 6305
]
}
],
@@ -262831,12 +263683,12 @@
"fileName": "core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts",
"line": 76,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts#L76"
}
],
"signatures": [
{
- "id": 23558,
+ "id": 6269,
"name": "batchShippingOptionRulesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -262883,12 +263735,12 @@
"fileName": "core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts",
"line": 76,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/batch-shipping-option-rules.ts#L76"
}
],
"typeParameters": [
{
- "id": 23559,
+ "id": 6270,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -262899,7 +263751,7 @@
}
},
{
- "id": 23560,
+ "id": 6271,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -262912,7 +263764,7 @@
],
"parameters": [
{
- "id": 23561,
+ "id": 6272,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -262936,14 +263788,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23562,
+ "id": 6273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23563,
+ "id": 6274,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -262966,7 +263818,7 @@
}
},
{
- "id": 23564,
+ "id": 6275,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -262993,8 +263845,8 @@
{
"title": "Properties",
"children": [
- 23563,
- 23564
+ 6274,
+ 6275
]
}
],
@@ -263069,26 +263921,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 23548,
+ "target": 6259,
"name": "BatchShippingOptionRulesInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 23552,
+ "target": 6263,
"name": "BatchShippingOptionRulesOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -263103,7 +263955,7 @@
]
},
{
- "id": 23598,
+ "id": 6309,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -263121,7 +263973,7 @@
"fileName": "core-flows/src/fulfillment/workflows/cancel-fulfillment.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L11"
}
],
"type": {
@@ -263130,7 +263982,7 @@
}
},
{
- "id": 23599,
+ "id": 6310,
"name": "cancelFulfillmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -263142,7 +263994,7 @@
"fileName": "core-flows/src/fulfillment/workflows/cancel-fulfillment.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L14"
}
],
"type": {
@@ -263152,7 +264004,7 @@
"defaultValue": "\"cancel-fulfillment-workflow\""
},
{
- "id": 23600,
+ "id": 6311,
"name": "cancelFulfillmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -263196,7 +264048,7 @@
},
"children": [
{
- "id": 23608,
+ "id": 6319,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -263219,7 +264071,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23609,
+ "id": 6320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -263233,7 +264085,7 @@
],
"signatures": [
{
- "id": 23610,
+ "id": 6321,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -263261,7 +264113,7 @@
],
"parameters": [
{
- "id": 23611,
+ "id": 6322,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -263277,14 +264129,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23612,
+ "id": 6323,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23613,
+ "id": 6324,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -263309,7 +264161,7 @@
"types": [
{
"type": "reference",
- "target": 23596,
+ "target": 6307,
"name": "CancelFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -263322,7 +264174,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23596,
+ "target": 6307,
"name": "CancelFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -263338,7 +264190,7 @@
{
"title": "Properties",
"children": [
- 23613
+ 6324
]
}
],
@@ -263374,14 +264226,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23614,
+ "id": 6325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23615,
+ "id": 6326,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -263395,7 +264247,7 @@
],
"signatures": [
{
- "id": 23616,
+ "id": 6327,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -263409,7 +264261,7 @@
],
"parameters": [
{
- "id": 23617,
+ "id": 6328,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -263420,14 +264272,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23618,
+ "id": 6329,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23619,
+ "id": 6330,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -263451,7 +264303,7 @@
{
"title": "Properties",
"children": [
- 23619
+ 6330
]
}
],
@@ -263528,7 +264380,7 @@
{
"title": "Methods",
"children": [
- 23615
+ 6326
]
}
],
@@ -263564,7 +264416,7 @@
}
},
{
- "id": 23620,
+ "id": 6331,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -263587,7 +264439,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23621,
+ "id": 6332,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -263601,7 +264453,7 @@
],
"signatures": [
{
- "id": 23622,
+ "id": 6333,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -263629,7 +264481,7 @@
],
"typeParameters": [
{
- "id": 23623,
+ "id": 6334,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -263640,7 +264492,7 @@
}
},
{
- "id": 23624,
+ "id": 6335,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -263653,7 +264505,7 @@
],
"parameters": [
{
- "id": 23625,
+ "id": 6336,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -263686,7 +264538,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -263697,13 +264549,13 @@
},
"trueType": {
"type": "reference",
- "target": 23596,
+ "target": 6307,
"name": "CancelFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -263736,7 +264588,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -263751,7 +264603,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -263771,7 +264623,7 @@
}
},
{
- "id": 23626,
+ "id": 6337,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -263794,7 +264646,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23627,
+ "id": 6338,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -263808,7 +264660,7 @@
],
"signatures": [
{
- "id": 23628,
+ "id": 6339,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -263830,7 +264682,7 @@
}
},
{
- "id": 23629,
+ "id": 6340,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -263853,7 +264705,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23630,
+ "id": 6341,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -263867,7 +264719,7 @@
],
"signatures": [
{
- "id": 23631,
+ "id": 6342,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -263881,7 +264733,7 @@
],
"parameters": [
{
- "id": 23632,
+ "id": 6343,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -263907,7 +264759,7 @@
}
},
{
- "id": 23633,
+ "id": 6344,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -263930,7 +264782,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23634,
+ "id": 6345,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -263941,7 +264793,7 @@
],
"documents": [
{
- "id": 42408,
+ "id": 25349,
"name": "cancelFulfillmentStep",
"variant": "document",
"kind": 8388608,
@@ -263968,21 +264820,21 @@
}
],
"childrenIncludingDocuments": [
- 23608,
- 23620,
- 23626,
- 23629,
- 23633
+ 6319,
+ 6331,
+ 6337,
+ 6340,
+ 6344
],
"groups": [
{
"title": "Properties",
"children": [
- 23608,
- 23620,
- 23626,
- 23629,
- 23633
+ 6319,
+ 6331,
+ 6337,
+ 6340,
+ 6344
]
}
],
@@ -263991,12 +264843,12 @@
"fileName": "core-flows/src/fulfillment/workflows/cancel-fulfillment.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L34"
}
],
"signatures": [
{
- "id": 23601,
+ "id": 6312,
"name": "cancelFulfillmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -264043,12 +264895,12 @@
"fileName": "core-flows/src/fulfillment/workflows/cancel-fulfillment.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/cancel-fulfillment.ts#L34"
}
],
"typeParameters": [
{
- "id": 23602,
+ "id": 6313,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -264059,7 +264911,7 @@
}
},
{
- "id": 23603,
+ "id": 6314,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -264072,7 +264924,7 @@
],
"parameters": [
{
- "id": 23604,
+ "id": 6315,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -264096,14 +264948,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23605,
+ "id": 6316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23606,
+ "id": 6317,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -264126,7 +264978,7 @@
}
},
{
- "id": 23607,
+ "id": 6318,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -264153,8 +265005,8 @@
{
"title": "Properties",
"children": [
- 23606,
- 23607
+ 6317,
+ 6318
]
}
],
@@ -264229,7 +265081,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23596,
+ "target": 6307,
"name": "CancelFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -264239,14 +265091,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -264261,7 +265113,7 @@
]
},
{
- "id": 23635,
+ "id": 6346,
"name": "createFulfillmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -264273,7 +265125,7 @@
"fileName": "core-flows/src/fulfillment/workflows/create-fulfillment.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-fulfillment.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-fulfillment.ts#L15"
}
],
"type": {
@@ -264283,7 +265135,7 @@
"defaultValue": "\"create-fulfillment-workflow\""
},
{
- "id": 23636,
+ "id": 6347,
"name": "createFulfillmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -264327,7 +265179,7 @@
},
"children": [
{
- "id": 23644,
+ "id": 6355,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -264350,7 +265202,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23645,
+ "id": 6356,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -264364,7 +265216,7 @@
],
"signatures": [
{
- "id": 23646,
+ "id": 6357,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -264392,7 +265244,7 @@
],
"parameters": [
{
- "id": 23647,
+ "id": 6358,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -264408,14 +265260,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23648,
+ "id": 6359,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23649,
+ "id": 6360,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -264475,7 +265327,7 @@
{
"title": "Properties",
"children": [
- 23649
+ 6360
]
}
],
@@ -264496,14 +265348,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23650,
+ "id": 6361,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23651,
+ "id": 6362,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -264549,7 +265401,7 @@
}
},
{
- "id": 23652,
+ "id": 6363,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -264595,7 +265447,7 @@
}
},
{
- "id": 23653,
+ "id": 6364,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -264664,7 +265516,7 @@
}
},
{
- "id": 23654,
+ "id": 6365,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -264733,7 +265585,7 @@
}
},
{
- "id": 23655,
+ "id": 6366,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -264802,7 +265654,7 @@
}
},
{
- "id": 23656,
+ "id": 6367,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -264871,7 +265723,7 @@
}
},
{
- "id": 23657,
+ "id": 6368,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -264936,7 +265788,7 @@
}
},
{
- "id": 23658,
+ "id": 6369,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -265001,7 +265853,7 @@
}
},
{
- "id": 23659,
+ "id": 6370,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -265090,7 +265942,7 @@
}
},
{
- "id": 23660,
+ "id": 6371,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -265136,7 +265988,7 @@
}
},
{
- "id": 23661,
+ "id": 6372,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -265195,7 +266047,7 @@
}
},
{
- "id": 23662,
+ "id": 6373,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -265284,7 +266136,7 @@
}
},
{
- "id": 23663,
+ "id": 6374,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -265353,7 +266205,7 @@
}
},
{
- "id": 23664,
+ "id": 6375,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -265399,7 +266251,7 @@
}
},
{
- "id": 23665,
+ "id": 6376,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -265455,7 +266307,7 @@
}
},
{
- "id": 23666,
+ "id": 6377,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -265511,7 +266363,7 @@
}
},
{
- "id": 23667,
+ "id": 6378,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -265573,7 +266425,7 @@
}
},
{
- "id": 23668,
+ "id": 6379,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -265635,7 +266487,7 @@
}
},
{
- "id": 23669,
+ "id": 6380,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -265691,7 +266543,7 @@
}
},
{
- "id": 23670,
+ "id": 6381,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -265747,7 +266599,7 @@
}
},
{
- "id": 23671,
+ "id": 6382,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -265820,27 +266672,27 @@
{
"title": "Properties",
"children": [
- 23651,
- 23652,
- 23653,
- 23654,
- 23655,
- 23656,
- 23657,
- 23658,
- 23659,
- 23660,
- 23661,
- 23662,
- 23663,
- 23664,
- 23665,
- 23666,
- 23667,
- 23668,
- 23669,
- 23670,
- 23671
+ 6362,
+ 6363,
+ 6364,
+ 6365,
+ 6366,
+ 6367,
+ 6368,
+ 6369,
+ 6370,
+ 6371,
+ 6372,
+ 6373,
+ 6374,
+ 6375,
+ 6376,
+ 6377,
+ 6378,
+ 6379,
+ 6380,
+ 6381,
+ 6382
]
}
],
@@ -265885,14 +266737,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23672,
+ "id": 6383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23673,
+ "id": 6384,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -265906,7 +266758,7 @@
],
"signatures": [
{
- "id": 23674,
+ "id": 6385,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -265920,7 +266772,7 @@
],
"parameters": [
{
- "id": 23675,
+ "id": 6386,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -265931,14 +266783,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23676,
+ "id": 6387,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23677,
+ "id": 6388,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -265962,7 +266814,7 @@
{
"title": "Properties",
"children": [
- 23677
+ 6388
]
}
],
@@ -266044,7 +266896,7 @@
{
"title": "Methods",
"children": [
- 23673
+ 6384
]
}
],
@@ -266085,7 +266937,7 @@
}
},
{
- "id": 23678,
+ "id": 6389,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -266108,7 +266960,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23679,
+ "id": 6390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -266122,7 +266974,7 @@
],
"signatures": [
{
- "id": 23680,
+ "id": 6391,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -266150,7 +267002,7 @@
],
"typeParameters": [
{
- "id": 23681,
+ "id": 6392,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -266161,7 +267013,7 @@
}
},
{
- "id": 23682,
+ "id": 6393,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -266174,7 +267026,7 @@
],
"parameters": [
{
- "id": 23683,
+ "id": 6394,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -266207,7 +267059,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -266227,7 +267079,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -266260,7 +267112,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -266280,7 +267132,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -266300,7 +267152,7 @@
}
},
{
- "id": 23684,
+ "id": 6395,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -266323,7 +267175,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23685,
+ "id": 6396,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -266337,7 +267189,7 @@
],
"signatures": [
{
- "id": 23686,
+ "id": 6397,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -266359,7 +267211,7 @@
}
},
{
- "id": 23687,
+ "id": 6398,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -266382,7 +267234,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23688,
+ "id": 6399,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -266396,7 +267248,7 @@
],
"signatures": [
{
- "id": 23689,
+ "id": 6400,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -266410,7 +267262,7 @@
],
"parameters": [
{
- "id": 23690,
+ "id": 6401,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -266436,7 +267288,7 @@
}
},
{
- "id": 23691,
+ "id": 6402,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -266459,7 +267311,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23692,
+ "id": 6403,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -266470,7 +267322,7 @@
],
"documents": [
{
- "id": 42409,
+ "id": 25350,
"name": "createFulfillmentStep",
"variant": "document",
"kind": 8388608,
@@ -266497,21 +267349,21 @@
}
],
"childrenIncludingDocuments": [
- 23644,
- 23678,
- 23684,
- 23687,
- 23691
+ 6355,
+ 6389,
+ 6395,
+ 6398,
+ 6402
],
"groups": [
{
"title": "Properties",
"children": [
- 23644,
- 23678,
- 23684,
- 23687,
- 23691
+ 6355,
+ 6389,
+ 6395,
+ 6398,
+ 6402
]
}
],
@@ -266520,12 +267372,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-fulfillment.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-fulfillment.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-fulfillment.ts#L64"
}
],
"signatures": [
{
- "id": 23637,
+ "id": 6348,
"name": "createFulfillmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -266572,12 +267424,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-fulfillment.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-fulfillment.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-fulfillment.ts#L64"
}
],
"typeParameters": [
{
- "id": 23638,
+ "id": 6349,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -266588,7 +267440,7 @@
}
},
{
- "id": 23639,
+ "id": 6350,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -266601,7 +267453,7 @@
],
"parameters": [
{
- "id": 23640,
+ "id": 6351,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -266625,14 +267477,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23641,
+ "id": 6352,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23642,
+ "id": 6353,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -266655,7 +267507,7 @@
}
},
{
- "id": 23643,
+ "id": 6354,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -266682,8 +267534,8 @@
{
"title": "Properties",
"children": [
- 23642,
- 23643
+ 6353,
+ 6354
]
}
],
@@ -266776,14 +267628,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -266798,7 +267650,7 @@
]
},
{
- "id": 23693,
+ "id": 6404,
"name": "createReturnFulfillmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -266810,7 +267662,7 @@
"fileName": "core-flows/src/fulfillment/workflows/create-return-fulfillment.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-return-fulfillment.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-return-fulfillment.ts#L15"
}
],
"type": {
@@ -266820,7 +267672,7 @@
"defaultValue": "\"create-return-fulfillment-workflow\""
},
{
- "id": 23694,
+ "id": 6405,
"name": "createReturnFulfillmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -266873,7 +267725,7 @@
},
"children": [
{
- "id": 23702,
+ "id": 6413,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -266896,7 +267748,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23703,
+ "id": 6414,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -266910,7 +267762,7 @@
],
"signatures": [
{
- "id": 23704,
+ "id": 6415,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -266938,7 +267790,7 @@
],
"parameters": [
{
- "id": 23705,
+ "id": 6416,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -266954,14 +267806,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23706,
+ "id": 6417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23707,
+ "id": 6418,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -267021,7 +267873,7 @@
{
"title": "Properties",
"children": [
- 23707
+ 6418
]
}
],
@@ -267042,14 +267894,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23708,
+ "id": 6419,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23709,
+ "id": 6420,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -267095,7 +267947,7 @@
}
},
{
- "id": 23710,
+ "id": 6421,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -267141,7 +267993,7 @@
}
},
{
- "id": 23711,
+ "id": 6422,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -267210,7 +268062,7 @@
}
},
{
- "id": 23712,
+ "id": 6423,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -267279,7 +268131,7 @@
}
},
{
- "id": 23713,
+ "id": 6424,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -267348,7 +268200,7 @@
}
},
{
- "id": 23714,
+ "id": 6425,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -267417,7 +268269,7 @@
}
},
{
- "id": 23715,
+ "id": 6426,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -267482,7 +268334,7 @@
}
},
{
- "id": 23716,
+ "id": 6427,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -267547,7 +268399,7 @@
}
},
{
- "id": 23717,
+ "id": 6428,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -267636,7 +268488,7 @@
}
},
{
- "id": 23718,
+ "id": 6429,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -267682,7 +268534,7 @@
}
},
{
- "id": 23719,
+ "id": 6430,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -267741,7 +268593,7 @@
}
},
{
- "id": 23720,
+ "id": 6431,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -267830,7 +268682,7 @@
}
},
{
- "id": 23721,
+ "id": 6432,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -267899,7 +268751,7 @@
}
},
{
- "id": 23722,
+ "id": 6433,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -267945,7 +268797,7 @@
}
},
{
- "id": 23723,
+ "id": 6434,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -268001,7 +268853,7 @@
}
},
{
- "id": 23724,
+ "id": 6435,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -268057,7 +268909,7 @@
}
},
{
- "id": 23725,
+ "id": 6436,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -268119,7 +268971,7 @@
}
},
{
- "id": 23726,
+ "id": 6437,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -268181,7 +269033,7 @@
}
},
{
- "id": 23727,
+ "id": 6438,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -268237,7 +269089,7 @@
}
},
{
- "id": 23728,
+ "id": 6439,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -268293,7 +269145,7 @@
}
},
{
- "id": 23729,
+ "id": 6440,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -268366,27 +269218,27 @@
{
"title": "Properties",
"children": [
- 23709,
- 23710,
- 23711,
- 23712,
- 23713,
- 23714,
- 23715,
- 23716,
- 23717,
- 23718,
- 23719,
- 23720,
- 23721,
- 23722,
- 23723,
- 23724,
- 23725,
- 23726,
- 23727,
- 23728,
- 23729
+ 6420,
+ 6421,
+ 6422,
+ 6423,
+ 6424,
+ 6425,
+ 6426,
+ 6427,
+ 6428,
+ 6429,
+ 6430,
+ 6431,
+ 6432,
+ 6433,
+ 6434,
+ 6435,
+ 6436,
+ 6437,
+ 6438,
+ 6439,
+ 6440
]
}
],
@@ -268431,14 +269283,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23730,
+ "id": 6441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23731,
+ "id": 6442,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -268452,7 +269304,7 @@
],
"signatures": [
{
- "id": 23732,
+ "id": 6443,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -268466,7 +269318,7 @@
],
"parameters": [
{
- "id": 23733,
+ "id": 6444,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -268477,14 +269329,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23734,
+ "id": 6445,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23735,
+ "id": 6446,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -268508,7 +269360,7 @@
{
"title": "Properties",
"children": [
- 23735
+ 6446
]
}
],
@@ -268590,7 +269442,7 @@
{
"title": "Methods",
"children": [
- 23731
+ 6442
]
}
],
@@ -268631,7 +269483,7 @@
}
},
{
- "id": 23736,
+ "id": 6447,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -268654,7 +269506,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23737,
+ "id": 6448,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -268668,7 +269520,7 @@
],
"signatures": [
{
- "id": 23738,
+ "id": 6449,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -268696,7 +269548,7 @@
],
"typeParameters": [
{
- "id": 23739,
+ "id": 6450,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -268707,7 +269559,7 @@
}
},
{
- "id": 23740,
+ "id": 6451,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -268720,7 +269572,7 @@
],
"parameters": [
{
- "id": 23741,
+ "id": 6452,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -268753,7 +269605,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -268773,7 +269625,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -268806,7 +269658,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -268826,7 +269678,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -268846,7 +269698,7 @@
}
},
{
- "id": 23742,
+ "id": 6453,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -268869,7 +269721,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23743,
+ "id": 6454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -268883,7 +269735,7 @@
],
"signatures": [
{
- "id": 23744,
+ "id": 6455,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -268905,7 +269757,7 @@
}
},
{
- "id": 23745,
+ "id": 6456,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -268928,7 +269780,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23746,
+ "id": 6457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -268942,7 +269794,7 @@
],
"signatures": [
{
- "id": 23747,
+ "id": 6458,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -268956,7 +269808,7 @@
],
"parameters": [
{
- "id": 23748,
+ "id": 6459,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -268982,7 +269834,7 @@
}
},
{
- "id": 23749,
+ "id": 6460,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -269005,7 +269857,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23750,
+ "id": 6461,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -269016,7 +269868,7 @@
],
"documents": [
{
- "id": 42410,
+ "id": 25351,
"name": "createReturnFulfillmentStep",
"variant": "document",
"kind": 8388608,
@@ -269043,21 +269895,21 @@
}
],
"childrenIncludingDocuments": [
- 23702,
- 23736,
- 23742,
- 23745,
- 23749
+ 6413,
+ 6447,
+ 6453,
+ 6456,
+ 6460
],
"groups": [
{
"title": "Properties",
"children": [
- 23702,
- 23736,
- 23742,
- 23745,
- 23749
+ 6413,
+ 6447,
+ 6453,
+ 6456,
+ 6460
]
}
],
@@ -269066,12 +269918,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-return-fulfillment.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-return-fulfillment.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-return-fulfillment.ts#L65"
}
],
"signatures": [
{
- "id": 23695,
+ "id": 6406,
"name": "createReturnFulfillmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -269127,12 +269979,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-return-fulfillment.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-return-fulfillment.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-return-fulfillment.ts#L65"
}
],
"typeParameters": [
{
- "id": 23696,
+ "id": 6407,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -269143,7 +269995,7 @@
}
},
{
- "id": 23697,
+ "id": 6408,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -269156,7 +270008,7 @@
],
"parameters": [
{
- "id": 23698,
+ "id": 6409,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -269180,14 +270032,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23699,
+ "id": 6410,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23700,
+ "id": 6411,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -269210,7 +270062,7 @@
}
},
{
- "id": 23701,
+ "id": 6412,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -269237,8 +270089,8 @@
{
"title": "Properties",
"children": [
- 23700,
- 23701
+ 6411,
+ 6412
]
}
],
@@ -269331,14 +270183,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -269353,7 +270205,7 @@
]
},
{
- "id": 23752,
+ "id": 6463,
"name": "createServiceZonesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -269365,7 +270217,7 @@
"fileName": "core-flows/src/fulfillment/workflows/create-service-zones.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-service-zones.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-service-zones.ts#L17"
}
],
"type": {
@@ -269375,7 +270227,7 @@
"defaultValue": "\"create-service-zones-workflow\""
},
{
- "id": 23753,
+ "id": 6464,
"name": "createServiceZonesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -269419,7 +270271,7 @@
},
"children": [
{
- "id": 23761,
+ "id": 6472,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -269442,7 +270294,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23762,
+ "id": 6473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -269456,7 +270308,7 @@
],
"signatures": [
{
- "id": 23763,
+ "id": 6474,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -269484,7 +270336,7 @@
],
"parameters": [
{
- "id": 23764,
+ "id": 6475,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -269500,14 +270352,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23765,
+ "id": 6476,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23766,
+ "id": 6477,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -269567,7 +270419,7 @@
{
"title": "Properties",
"children": [
- 23766
+ 6477
]
}
],
@@ -269624,7 +270476,7 @@
},
{
"type": "reference",
- "target": 23751,
+ "target": 6462,
"name": "CreateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -269637,7 +270489,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23751,
+ "target": 6462,
"name": "CreateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -269648,14 +270500,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23767,
+ "id": 6478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23768,
+ "id": 6479,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -269669,7 +270521,7 @@
],
"signatures": [
{
- "id": 23769,
+ "id": 6480,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -269683,7 +270535,7 @@
],
"parameters": [
{
- "id": 23770,
+ "id": 6481,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -269694,14 +270546,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23771,
+ "id": 6482,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23772,
+ "id": 6483,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -269725,7 +270577,7 @@
{
"title": "Properties",
"children": [
- 23772
+ 6483
]
}
],
@@ -269788,7 +270640,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23751,
+ "target": 6462,
"name": "CreateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -269804,7 +270656,7 @@
{
"title": "Methods",
"children": [
- 23768
+ 6479
]
}
],
@@ -269826,7 +270678,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23751,
+ "target": 6462,
"name": "CreateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -269842,7 +270694,7 @@
}
},
{
- "id": 23773,
+ "id": 6484,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -269865,7 +270717,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23774,
+ "id": 6485,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -269879,7 +270731,7 @@
],
"signatures": [
{
- "id": 23775,
+ "id": 6486,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -269907,7 +270759,7 @@
],
"typeParameters": [
{
- "id": 23776,
+ "id": 6487,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -269918,7 +270770,7 @@
}
},
{
- "id": 23777,
+ "id": 6488,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -269931,7 +270783,7 @@
],
"parameters": [
{
- "id": 23778,
+ "id": 6489,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -269964,7 +270816,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -269984,7 +270836,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -270017,7 +270869,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -270028,13 +270880,13 @@
},
"trueType": {
"type": "reference",
- "target": 23751,
+ "target": 6462,
"name": "CreateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -270054,7 +270906,7 @@
}
},
{
- "id": 23779,
+ "id": 6490,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -270077,7 +270929,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23780,
+ "id": 6491,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -270091,7 +270943,7 @@
],
"signatures": [
{
- "id": 23781,
+ "id": 6492,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -270113,7 +270965,7 @@
}
},
{
- "id": 23782,
+ "id": 6493,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -270136,7 +270988,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23783,
+ "id": 6494,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -270150,7 +271002,7 @@
],
"signatures": [
{
- "id": 23784,
+ "id": 6495,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -270164,7 +271016,7 @@
],
"parameters": [
{
- "id": 23785,
+ "id": 6496,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -270190,7 +271042,7 @@
}
},
{
- "id": 23786,
+ "id": 6497,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -270213,7 +271065,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23787,
+ "id": 6498,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -270224,7 +271076,7 @@
],
"documents": [
{
- "id": 42411,
+ "id": 25352,
"name": "createServiceZonesStep",
"variant": "document",
"kind": 8388608,
@@ -270251,21 +271103,21 @@
}
],
"childrenIncludingDocuments": [
- 23761,
- 23773,
- 23779,
- 23782,
- 23786
+ 6472,
+ 6484,
+ 6490,
+ 6493,
+ 6497
],
"groups": [
{
"title": "Properties",
"children": [
- 23761,
- 23773,
- 23779,
- 23782,
- 23786
+ 6472,
+ 6484,
+ 6490,
+ 6493,
+ 6497
]
}
],
@@ -270274,12 +271126,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-service-zones.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-service-zones.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-service-zones.ts#L48"
}
],
"signatures": [
{
- "id": 23754,
+ "id": 6465,
"name": "createServiceZonesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -270326,12 +271178,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-service-zones.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-service-zones.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-service-zones.ts#L48"
}
],
"typeParameters": [
{
- "id": 23755,
+ "id": 6466,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -270342,7 +271194,7 @@
}
},
{
- "id": 23756,
+ "id": 6467,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -270355,7 +271207,7 @@
],
"parameters": [
{
- "id": 23757,
+ "id": 6468,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -270379,14 +271231,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23758,
+ "id": 6469,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23759,
+ "id": 6470,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -270409,7 +271261,7 @@
}
},
{
- "id": 23760,
+ "id": 6471,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -270436,8 +271288,8 @@
{
"title": "Properties",
"children": [
- 23759,
- 23760
+ 6470,
+ 6471
]
}
],
@@ -270521,20 +271373,20 @@
},
{
"type": "reference",
- "target": 23751,
+ "target": 6462,
"name": "CreateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -270549,7 +271401,7 @@
]
},
{
- "id": 23788,
+ "id": 6499,
"name": "createShipmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -270561,7 +271413,7 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipment.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipment.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipment.ts#L11"
}
],
"type": {
@@ -270571,7 +271423,7 @@
"defaultValue": "\"create-shipment-workflow\""
},
{
- "id": 23789,
+ "id": 6500,
"name": "createShipmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -270624,7 +271476,7 @@
},
"children": [
{
- "id": 23797,
+ "id": 6508,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -270647,7 +271499,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23798,
+ "id": 6509,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -270661,7 +271513,7 @@
],
"signatures": [
{
- "id": 23799,
+ "id": 6510,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -270689,7 +271541,7 @@
],
"parameters": [
{
- "id": 23800,
+ "id": 6511,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -270705,14 +271557,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23801,
+ "id": 6512,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23802,
+ "id": 6513,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -270772,7 +271624,7 @@
{
"title": "Properties",
"children": [
- 23802
+ 6513
]
}
],
@@ -270793,14 +271645,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23803,
+ "id": 6514,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23804,
+ "id": 6515,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -270846,7 +271698,7 @@
}
},
{
- "id": 23805,
+ "id": 6516,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -270892,7 +271744,7 @@
}
},
{
- "id": 23806,
+ "id": 6517,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -270961,7 +271813,7 @@
}
},
{
- "id": 23807,
+ "id": 6518,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -271030,7 +271882,7 @@
}
},
{
- "id": 23808,
+ "id": 6519,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -271099,7 +271951,7 @@
}
},
{
- "id": 23809,
+ "id": 6520,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -271168,7 +272020,7 @@
}
},
{
- "id": 23810,
+ "id": 6521,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -271233,7 +272085,7 @@
}
},
{
- "id": 23811,
+ "id": 6522,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -271298,7 +272150,7 @@
}
},
{
- "id": 23812,
+ "id": 6523,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -271387,7 +272239,7 @@
}
},
{
- "id": 23813,
+ "id": 6524,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -271433,7 +272285,7 @@
}
},
{
- "id": 23814,
+ "id": 6525,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -271492,7 +272344,7 @@
}
},
{
- "id": 23815,
+ "id": 6526,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -271581,7 +272433,7 @@
}
},
{
- "id": 23816,
+ "id": 6527,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -271650,7 +272502,7 @@
}
},
{
- "id": 23817,
+ "id": 6528,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -271696,7 +272548,7 @@
}
},
{
- "id": 23818,
+ "id": 6529,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -271752,7 +272604,7 @@
}
},
{
- "id": 23819,
+ "id": 6530,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -271808,7 +272660,7 @@
}
},
{
- "id": 23820,
+ "id": 6531,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -271870,7 +272722,7 @@
}
},
{
- "id": 23821,
+ "id": 6532,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -271932,7 +272784,7 @@
}
},
{
- "id": 23822,
+ "id": 6533,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -271988,7 +272840,7 @@
}
},
{
- "id": 23823,
+ "id": 6534,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -272044,7 +272896,7 @@
}
},
{
- "id": 23824,
+ "id": 6535,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -272117,27 +272969,27 @@
{
"title": "Properties",
"children": [
- 23804,
- 23805,
- 23806,
- 23807,
- 23808,
- 23809,
- 23810,
- 23811,
- 23812,
- 23813,
- 23814,
- 23815,
- 23816,
- 23817,
- 23818,
- 23819,
- 23820,
- 23821,
- 23822,
- 23823,
- 23824
+ 6515,
+ 6516,
+ 6517,
+ 6518,
+ 6519,
+ 6520,
+ 6521,
+ 6522,
+ 6523,
+ 6524,
+ 6525,
+ 6526,
+ 6527,
+ 6528,
+ 6529,
+ 6530,
+ 6531,
+ 6532,
+ 6533,
+ 6534,
+ 6535
]
}
],
@@ -272182,14 +273034,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23825,
+ "id": 6536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23826,
+ "id": 6537,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -272203,7 +273055,7 @@
],
"signatures": [
{
- "id": 23827,
+ "id": 6538,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -272217,7 +273069,7 @@
],
"parameters": [
{
- "id": 23828,
+ "id": 6539,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -272228,14 +273080,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23829,
+ "id": 6540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23830,
+ "id": 6541,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -272259,7 +273111,7 @@
{
"title": "Properties",
"children": [
- 23830
+ 6541
]
}
],
@@ -272341,7 +273193,7 @@
{
"title": "Methods",
"children": [
- 23826
+ 6537
]
}
],
@@ -272382,7 +273234,7 @@
}
},
{
- "id": 23831,
+ "id": 6542,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -272405,7 +273257,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23832,
+ "id": 6543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -272419,7 +273271,7 @@
],
"signatures": [
{
- "id": 23833,
+ "id": 6544,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -272447,7 +273299,7 @@
],
"typeParameters": [
{
- "id": 23834,
+ "id": 6545,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -272458,7 +273310,7 @@
}
},
{
- "id": 23835,
+ "id": 6546,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -272471,7 +273323,7 @@
],
"parameters": [
{
- "id": 23836,
+ "id": 6547,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -272504,7 +273356,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -272524,7 +273376,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -272557,7 +273409,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -272577,7 +273429,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -272597,7 +273449,7 @@
}
},
{
- "id": 23837,
+ "id": 6548,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -272620,7 +273472,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23838,
+ "id": 6549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -272634,7 +273486,7 @@
],
"signatures": [
{
- "id": 23839,
+ "id": 6550,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -272656,7 +273508,7 @@
}
},
{
- "id": 23840,
+ "id": 6551,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -272679,7 +273531,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23841,
+ "id": 6552,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -272693,7 +273545,7 @@
],
"signatures": [
{
- "id": 23842,
+ "id": 6553,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -272707,7 +273559,7 @@
],
"parameters": [
{
- "id": 23843,
+ "id": 6554,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -272733,7 +273585,7 @@
}
},
{
- "id": 23844,
+ "id": 6555,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -272756,7 +273608,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23845,
+ "id": 6556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -272767,7 +273619,7 @@
],
"documents": [
{
- "id": 42412,
+ "id": 25353,
"name": "validateShipmentStep",
"variant": "document",
"kind": 8388608,
@@ -272793,7 +273645,7 @@
"frontmatter": {}
},
{
- "id": 42413,
+ "id": 25354,
"name": "updateFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -272820,21 +273672,21 @@
}
],
"childrenIncludingDocuments": [
- 23797,
- 23831,
- 23837,
- 23840,
- 23844
+ 6508,
+ 6542,
+ 6548,
+ 6551,
+ 6555
],
"groups": [
{
"title": "Properties",
"children": [
- 23797,
- 23831,
- 23837,
- 23840,
- 23844
+ 6508,
+ 6542,
+ 6548,
+ 6551,
+ 6555
]
}
],
@@ -272843,12 +273695,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipment.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipment.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipment.ts#L38"
}
],
"signatures": [
{
- "id": 23790,
+ "id": 6501,
"name": "createShipmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -272904,12 +273756,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipment.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipment.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipment.ts#L38"
}
],
"typeParameters": [
{
- "id": 23791,
+ "id": 6502,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -272920,7 +273772,7 @@
}
},
{
- "id": 23792,
+ "id": 6503,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -272933,7 +273785,7 @@
],
"parameters": [
{
- "id": 23793,
+ "id": 6504,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -272957,14 +273809,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23794,
+ "id": 6505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23795,
+ "id": 6506,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -272987,7 +273839,7 @@
}
},
{
- "id": 23796,
+ "id": 6507,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -273014,8 +273866,8 @@
{
"title": "Properties",
"children": [
- 23795,
- 23796
+ 6506,
+ 6507
]
}
],
@@ -273108,14 +273960,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -273130,7 +273982,7 @@
]
},
{
- "id": 23847,
+ "id": 6558,
"name": "createShippingOptionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -273142,7 +273994,7 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipping-options.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipping-options.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipping-options.ts#L23"
}
],
"type": {
@@ -273152,7 +274004,7 @@
"defaultValue": "\"create-shipping-options-workflow\""
},
{
- "id": 23848,
+ "id": 6559,
"name": "createShippingOptionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -273232,7 +274084,7 @@
},
"children": [
{
- "id": 23856,
+ "id": 6567,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -273255,7 +274107,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23857,
+ "id": 6568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -273269,7 +274121,7 @@
],
"signatures": [
{
- "id": 23858,
+ "id": 6569,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -273297,7 +274149,7 @@
],
"parameters": [
{
- "id": 23859,
+ "id": 6570,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -273313,14 +274165,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23860,
+ "id": 6571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23861,
+ "id": 6572,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -273345,7 +274197,7 @@
"types": [
{
"type": "reference",
- "target": 23846,
+ "target": 6557,
"name": "CreateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -273358,7 +274210,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23846,
+ "target": 6557,
"name": "CreateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -273374,7 +274226,7 @@
{
"title": "Properties",
"children": [
- 23861
+ 6572
]
}
],
@@ -273461,14 +274313,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23862,
+ "id": 6573,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23863,
+ "id": 6574,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -273482,7 +274334,7 @@
],
"signatures": [
{
- "id": 23864,
+ "id": 6575,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -273496,7 +274348,7 @@
],
"parameters": [
{
- "id": 23865,
+ "id": 6576,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -273507,14 +274359,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23866,
+ "id": 6577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23867,
+ "id": 6578,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -273538,7 +274390,7 @@
{
"title": "Properties",
"children": [
- 23867
+ 6578
]
}
],
@@ -273620,7 +274472,7 @@
{
"title": "Methods",
"children": [
- 23863
+ 6574
]
}
],
@@ -273661,7 +274513,7 @@
}
},
{
- "id": 23868,
+ "id": 6579,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -273684,7 +274536,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23869,
+ "id": 6580,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -273698,7 +274550,7 @@
],
"signatures": [
{
- "id": 23870,
+ "id": 6581,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -273726,7 +274578,7 @@
],
"typeParameters": [
{
- "id": 23871,
+ "id": 6582,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -273737,7 +274589,7 @@
}
},
{
- "id": 23872,
+ "id": 6583,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -273750,7 +274602,7 @@
],
"parameters": [
{
- "id": 23873,
+ "id": 6584,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -273783,7 +274635,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -273794,13 +274646,13 @@
},
"trueType": {
"type": "reference",
- "target": 23846,
+ "target": 6557,
"name": "CreateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -273833,7 +274685,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -273853,7 +274705,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -273873,7 +274725,7 @@
}
},
{
- "id": 23874,
+ "id": 6585,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -273896,7 +274748,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23875,
+ "id": 6586,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -273910,7 +274762,7 @@
],
"signatures": [
{
- "id": 23876,
+ "id": 6587,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -273932,7 +274784,7 @@
}
},
{
- "id": 23877,
+ "id": 6588,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -273955,7 +274807,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23878,
+ "id": 6589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -273969,7 +274821,7 @@
],
"signatures": [
{
- "id": 23879,
+ "id": 6590,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -273983,7 +274835,7 @@
],
"parameters": [
{
- "id": 23880,
+ "id": 6591,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -274009,7 +274861,7 @@
}
},
{
- "id": 23881,
+ "id": 6592,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -274032,7 +274884,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23882,
+ "id": 6593,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -274043,7 +274895,7 @@
],
"documents": [
{
- "id": 42414,
+ "id": 25355,
"name": "validateShippingOptionPricesStep",
"variant": "document",
"kind": 8388608,
@@ -274069,7 +274921,7 @@
"frontmatter": {}
},
{
- "id": 42415,
+ "id": 25356,
"name": "upsertShippingOptionsStep",
"variant": "document",
"kind": 8388608,
@@ -274095,7 +274947,7 @@
"frontmatter": {}
},
{
- "id": 42416,
+ "id": 25357,
"name": "createShippingOptionsPriceSetsStep",
"variant": "document",
"kind": 8388608,
@@ -274122,21 +274974,21 @@
}
],
"childrenIncludingDocuments": [
- 23856,
- 23868,
- 23874,
- 23877,
- 23881
+ 6567,
+ 6579,
+ 6585,
+ 6588,
+ 6592
],
"groups": [
{
"title": "Properties",
"children": [
- 23856,
- 23868,
- 23874,
- 23877,
- 23881
+ 6567,
+ 6579,
+ 6585,
+ 6588,
+ 6592
]
}
],
@@ -274145,12 +274997,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipping-options.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipping-options.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipping-options.ts#L100"
}
],
"signatures": [
{
- "id": 23849,
+ "id": 6560,
"name": "createShippingOptionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -274233,12 +275085,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipping-options.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipping-options.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipping-options.ts#L100"
}
],
"typeParameters": [
{
- "id": 23850,
+ "id": 6561,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -274249,7 +275101,7 @@
}
},
{
- "id": 23851,
+ "id": 6562,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -274262,7 +275114,7 @@
],
"parameters": [
{
- "id": 23852,
+ "id": 6563,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -274286,14 +275138,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23853,
+ "id": 6564,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23854,
+ "id": 6565,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -274316,7 +275168,7 @@
}
},
{
- "id": 23855,
+ "id": 6566,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -274343,8 +275195,8 @@
{
"title": "Properties",
"children": [
- 23854,
- 23855
+ 6565,
+ 6566
]
}
],
@@ -274419,7 +275271,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23846,
+ "target": 6557,
"name": "CreateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -274434,14 +275286,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -274456,7 +275308,7 @@
]
},
{
- "id": 23883,
+ "id": 6594,
"name": "createShippingProfilesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -274468,7 +275320,7 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipping-profiles.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipping-profiles.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipping-profiles.ts#L9"
}
],
"type": {
@@ -274478,7 +275330,7 @@
"defaultValue": "\"create-shipping-profiles-workflow\""
},
{
- "id": 23884,
+ "id": 6595,
"name": "createShippingProfilesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -274522,7 +275374,7 @@
},
"children": [
{
- "id": 23892,
+ "id": 6603,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -274545,7 +275397,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23893,
+ "id": 6604,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -274559,7 +275411,7 @@
],
"signatures": [
{
- "id": 23894,
+ "id": 6605,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -274587,7 +275439,7 @@
],
"parameters": [
{
- "id": 23895,
+ "id": 6606,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -274603,14 +275455,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23896,
+ "id": 6607,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23897,
+ "id": 6608,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -274670,7 +275522,7 @@
{
"title": "Properties",
"children": [
- 23897
+ 6608
]
}
],
@@ -274757,14 +275609,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23898,
+ "id": 6609,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23899,
+ "id": 6610,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -274778,7 +275630,7 @@
],
"signatures": [
{
- "id": 23900,
+ "id": 6611,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -274792,7 +275644,7 @@
],
"parameters": [
{
- "id": 23901,
+ "id": 6612,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -274803,14 +275655,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23902,
+ "id": 6613,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23903,
+ "id": 6614,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -274834,7 +275686,7 @@
{
"title": "Properties",
"children": [
- 23903
+ 6614
]
}
],
@@ -274916,7 +275768,7 @@
{
"title": "Methods",
"children": [
- 23899
+ 6610
]
}
],
@@ -274957,7 +275809,7 @@
}
},
{
- "id": 23904,
+ "id": 6615,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -274980,7 +275832,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23905,
+ "id": 6616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -274994,7 +275846,7 @@
],
"signatures": [
{
- "id": 23906,
+ "id": 6617,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -275022,7 +275874,7 @@
],
"typeParameters": [
{
- "id": 23907,
+ "id": 6618,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -275033,7 +275885,7 @@
}
},
{
- "id": 23908,
+ "id": 6619,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -275046,7 +275898,7 @@
],
"parameters": [
{
- "id": 23909,
+ "id": 6620,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -275079,7 +275931,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -275099,7 +275951,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -275132,7 +275984,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -275152,7 +276004,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -275172,7 +276024,7 @@
}
},
{
- "id": 23910,
+ "id": 6621,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -275195,7 +276047,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23911,
+ "id": 6622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -275209,7 +276061,7 @@
],
"signatures": [
{
- "id": 23912,
+ "id": 6623,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -275231,7 +276083,7 @@
}
},
{
- "id": 23913,
+ "id": 6624,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -275254,7 +276106,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23914,
+ "id": 6625,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -275268,7 +276120,7 @@
],
"signatures": [
{
- "id": 23915,
+ "id": 6626,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -275282,7 +276134,7 @@
],
"parameters": [
{
- "id": 23916,
+ "id": 6627,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -275308,7 +276160,7 @@
}
},
{
- "id": 23917,
+ "id": 6628,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -275331,7 +276183,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23918,
+ "id": 6629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -275342,7 +276194,7 @@
],
"documents": [
{
- "id": 42417,
+ "id": 25358,
"name": "createShippingProfilesStep",
"variant": "document",
"kind": 8388608,
@@ -275369,21 +276221,21 @@
}
],
"childrenIncludingDocuments": [
- 23892,
- 23904,
- 23910,
- 23913,
- 23917
+ 6603,
+ 6615,
+ 6621,
+ 6624,
+ 6628
],
"groups": [
{
"title": "Properties",
"children": [
- 23892,
- 23904,
- 23910,
- 23913,
- 23917
+ 6603,
+ 6615,
+ 6621,
+ 6624,
+ 6628
]
}
],
@@ -275392,12 +276244,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipping-profiles.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipping-profiles.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipping-profiles.ts#L35"
}
],
"signatures": [
{
- "id": 23885,
+ "id": 6596,
"name": "createShippingProfilesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -275444,12 +276296,12 @@
"fileName": "core-flows/src/fulfillment/workflows/create-shipping-profiles.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/create-shipping-profiles.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/create-shipping-profiles.ts#L35"
}
],
"typeParameters": [
{
- "id": 23886,
+ "id": 6597,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -275460,7 +276312,7 @@
}
},
{
- "id": 23887,
+ "id": 6598,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -275473,7 +276325,7 @@
],
"parameters": [
{
- "id": 23888,
+ "id": 6599,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -275497,14 +276349,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23889,
+ "id": 6600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23890,
+ "id": 6601,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -275527,7 +276379,7 @@
}
},
{
- "id": 23891,
+ "id": 6602,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -275554,8 +276406,8 @@
{
"title": "Properties",
"children": [
- 23890,
- 23891
+ 6601,
+ 6602
]
}
],
@@ -275648,14 +276500,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -275670,7 +276522,7 @@
]
},
{
- "id": 23921,
+ "id": 6632,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -275688,7 +276540,7 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L13"
}
],
"type": {
@@ -275700,7 +276552,7 @@
}
},
{
- "id": 23922,
+ "id": 6633,
"name": "deleteFulfillmentSetsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -275712,7 +276564,7 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L16"
}
],
"type": {
@@ -275722,7 +276574,7 @@
"defaultValue": "\"delete-fulfillment-sets-workflow\""
},
{
- "id": 23923,
+ "id": 6634,
"name": "deleteFulfillmentSetsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -275766,7 +276618,7 @@
},
"children": [
{
- "id": 23931,
+ "id": 6642,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -275789,7 +276641,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23932,
+ "id": 6643,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -275803,7 +276655,7 @@
],
"signatures": [
{
- "id": 23933,
+ "id": 6644,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -275831,7 +276683,7 @@
],
"parameters": [
{
- "id": 23934,
+ "id": 6645,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -275847,14 +276699,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23935,
+ "id": 6646,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23936,
+ "id": 6647,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -275879,7 +276731,7 @@
"types": [
{
"type": "reference",
- "target": 23919,
+ "target": 6630,
"name": "DeleteFulfillmentSetsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -275892,7 +276744,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23919,
+ "target": 6630,
"name": "DeleteFulfillmentSetsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -275908,7 +276760,7 @@
{
"title": "Properties",
"children": [
- 23936
+ 6647
]
}
],
@@ -275944,14 +276796,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23937,
+ "id": 6648,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23938,
+ "id": 6649,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -275965,7 +276817,7 @@
],
"signatures": [
{
- "id": 23939,
+ "id": 6650,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -275979,7 +276831,7 @@
],
"parameters": [
{
- "id": 23940,
+ "id": 6651,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -275990,14 +276842,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23941,
+ "id": 6652,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23942,
+ "id": 6653,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -276021,7 +276873,7 @@
{
"title": "Properties",
"children": [
- 23942
+ 6653
]
}
],
@@ -276098,7 +276950,7 @@
{
"title": "Methods",
"children": [
- 23938
+ 6649
]
}
],
@@ -276134,7 +276986,7 @@
}
},
{
- "id": 23943,
+ "id": 6654,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -276157,7 +277009,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23944,
+ "id": 6655,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -276171,7 +277023,7 @@
],
"signatures": [
{
- "id": 23945,
+ "id": 6656,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -276199,7 +277051,7 @@
],
"typeParameters": [
{
- "id": 23946,
+ "id": 6657,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -276210,7 +277062,7 @@
}
},
{
- "id": 23947,
+ "id": 6658,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -276223,7 +277075,7 @@
],
"parameters": [
{
- "id": 23948,
+ "id": 6659,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -276256,7 +277108,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -276267,13 +277119,13 @@
},
"trueType": {
"type": "reference",
- "target": 23919,
+ "target": 6630,
"name": "DeleteFulfillmentSetsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -276306,7 +277158,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -276321,7 +277173,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -276341,7 +277193,7 @@
}
},
{
- "id": 23949,
+ "id": 6660,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -276364,7 +277216,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23950,
+ "id": 6661,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -276378,7 +277230,7 @@
],
"signatures": [
{
- "id": 23951,
+ "id": 6662,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -276400,7 +277252,7 @@
}
},
{
- "id": 23952,
+ "id": 6663,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -276423,7 +277275,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23953,
+ "id": 6664,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -276437,7 +277289,7 @@
],
"signatures": [
{
- "id": 23954,
+ "id": 6665,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -276451,7 +277303,7 @@
],
"parameters": [
{
- "id": 23955,
+ "id": 6666,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -276477,7 +277329,7 @@
}
},
{
- "id": 23956,
+ "id": 6667,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -276500,7 +277352,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23957,
+ "id": 6668,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -276511,7 +277363,7 @@
],
"documents": [
{
- "id": 42418,
+ "id": 25359,
"name": "deleteFulfillmentSetsStep",
"variant": "document",
"kind": 8388608,
@@ -276537,7 +277389,7 @@
"frontmatter": {}
},
{
- "id": 42419,
+ "id": 25360,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -276564,21 +277416,21 @@
}
],
"childrenIncludingDocuments": [
- 23931,
- 23943,
- 23949,
- 23952,
- 23956
+ 6642,
+ 6654,
+ 6660,
+ 6663,
+ 6667
],
"groups": [
{
"title": "Properties",
"children": [
- 23931,
- 23943,
- 23949,
- 23952,
- 23956
+ 6642,
+ 6654,
+ 6660,
+ 6663,
+ 6667
]
}
],
@@ -276587,12 +277439,12 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L37"
}
],
"signatures": [
{
- "id": 23924,
+ "id": 6635,
"name": "deleteFulfillmentSetsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -276639,12 +277491,12 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-fulfillment-sets.ts#L37"
}
],
"typeParameters": [
{
- "id": 23925,
+ "id": 6636,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -276655,7 +277507,7 @@
}
},
{
- "id": 23926,
+ "id": 6637,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -276668,7 +277520,7 @@
],
"parameters": [
{
- "id": 23927,
+ "id": 6638,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -276692,14 +277544,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23928,
+ "id": 6639,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23929,
+ "id": 6640,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -276722,7 +277574,7 @@
}
},
{
- "id": 23930,
+ "id": 6641,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -276749,8 +277601,8 @@
{
"title": "Properties",
"children": [
- 23929,
- 23930
+ 6640,
+ 6641
]
}
],
@@ -276825,7 +277677,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23919,
+ "target": 6630,
"name": "DeleteFulfillmentSetsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -276835,14 +277687,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -276857,7 +277709,7 @@
]
},
{
- "id": 23960,
+ "id": 6671,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -276875,7 +277727,7 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-service-zones.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L11"
}
],
"type": {
@@ -276887,7 +277739,7 @@
}
},
{
- "id": 23961,
+ "id": 6672,
"name": "deleteServiceZonesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -276899,7 +277751,7 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-service-zones.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L14"
}
],
"type": {
@@ -276909,7 +277761,7 @@
"defaultValue": "\"delete-service-zones-workflow\""
},
{
- "id": 23962,
+ "id": 6673,
"name": "deleteServiceZonesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -276953,7 +277805,7 @@
},
"children": [
{
- "id": 23970,
+ "id": 6681,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -276976,7 +277828,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23971,
+ "id": 6682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -276990,7 +277842,7 @@
],
"signatures": [
{
- "id": 23972,
+ "id": 6683,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -277018,7 +277870,7 @@
],
"parameters": [
{
- "id": 23973,
+ "id": 6684,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -277034,14 +277886,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23974,
+ "id": 6685,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23975,
+ "id": 6686,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -277066,7 +277918,7 @@
"types": [
{
"type": "reference",
- "target": 23958,
+ "target": 6669,
"name": "DeleteServiceZonesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -277079,7 +277931,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23958,
+ "target": 6669,
"name": "DeleteServiceZonesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -277095,7 +277947,7 @@
{
"title": "Properties",
"children": [
- 23975
+ 6686
]
}
],
@@ -277131,14 +277983,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23976,
+ "id": 6687,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23977,
+ "id": 6688,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -277152,7 +278004,7 @@
],
"signatures": [
{
- "id": 23978,
+ "id": 6689,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -277166,7 +278018,7 @@
],
"parameters": [
{
- "id": 23979,
+ "id": 6690,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -277177,14 +278029,14 @@
{
"type": "reflection",
"declaration": {
- "id": 23980,
+ "id": 6691,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23981,
+ "id": 6692,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -277208,7 +278060,7 @@
{
"title": "Properties",
"children": [
- 23981
+ 6692
]
}
],
@@ -277285,7 +278137,7 @@
{
"title": "Methods",
"children": [
- 23977
+ 6688
]
}
],
@@ -277321,7 +278173,7 @@
}
},
{
- "id": 23982,
+ "id": 6693,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -277344,7 +278196,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23983,
+ "id": 6694,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -277358,7 +278210,7 @@
],
"signatures": [
{
- "id": 23984,
+ "id": 6695,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -277386,7 +278238,7 @@
],
"typeParameters": [
{
- "id": 23985,
+ "id": 6696,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -277397,7 +278249,7 @@
}
},
{
- "id": 23986,
+ "id": 6697,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -277410,7 +278262,7 @@
],
"parameters": [
{
- "id": 23987,
+ "id": 6698,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -277443,7 +278295,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -277454,13 +278306,13 @@
},
"trueType": {
"type": "reference",
- "target": 23958,
+ "target": 6669,
"name": "DeleteServiceZonesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -277493,7 +278345,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -277508,7 +278360,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -277528,7 +278380,7 @@
}
},
{
- "id": 23988,
+ "id": 6699,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -277551,7 +278403,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23989,
+ "id": 6700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -277565,7 +278417,7 @@
],
"signatures": [
{
- "id": 23990,
+ "id": 6701,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -277587,7 +278439,7 @@
}
},
{
- "id": 23991,
+ "id": 6702,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -277610,7 +278462,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23992,
+ "id": 6703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -277624,7 +278476,7 @@
],
"signatures": [
{
- "id": 23993,
+ "id": 6704,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -277638,7 +278490,7 @@
],
"parameters": [
{
- "id": 23994,
+ "id": 6705,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -277664,7 +278516,7 @@
}
},
{
- "id": 23995,
+ "id": 6706,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -277687,7 +278539,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 23996,
+ "id": 6707,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -277698,7 +278550,7 @@
],
"documents": [
{
- "id": 42420,
+ "id": 25361,
"name": "deleteServiceZonesStep",
"variant": "document",
"kind": 8388608,
@@ -277725,21 +278577,21 @@
}
],
"childrenIncludingDocuments": [
- 23970,
- 23982,
- 23988,
- 23991,
- 23995
+ 6681,
+ 6693,
+ 6699,
+ 6702,
+ 6706
],
"groups": [
{
"title": "Properties",
"children": [
- 23970,
- 23982,
- 23988,
- 23991,
- 23995
+ 6681,
+ 6693,
+ 6699,
+ 6702,
+ 6706
]
}
],
@@ -277748,12 +278600,12 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-service-zones.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L34"
}
],
"signatures": [
{
- "id": 23963,
+ "id": 6674,
"name": "deleteServiceZonesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -277800,12 +278652,12 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-service-zones.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-service-zones.ts#L34"
}
],
"typeParameters": [
{
- "id": 23964,
+ "id": 6675,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -277816,7 +278668,7 @@
}
},
{
- "id": 23965,
+ "id": 6676,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -277829,7 +278681,7 @@
],
"parameters": [
{
- "id": 23966,
+ "id": 6677,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -277853,14 +278705,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 23967,
+ "id": 6678,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 23968,
+ "id": 6679,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -277883,7 +278735,7 @@
}
},
{
- "id": 23969,
+ "id": 6680,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -277910,8 +278762,8 @@
{
"title": "Properties",
"children": [
- 23968,
- 23969
+ 6679,
+ 6680
]
}
],
@@ -277986,7 +278838,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 23958,
+ "target": 6669,
"name": "DeleteServiceZonesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -277996,14 +278848,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -278018,7 +278870,7 @@
]
},
{
- "id": 23997,
+ "id": 6708,
"name": "deleteShippingOptionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -278030,7 +278882,7 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-shipping-options.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-shipping-options.ts#L6"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-shipping-options.ts#L6"
}
],
"type": {
@@ -278040,7 +278892,7 @@
"defaultValue": "\"delete-shipping-options-workflow\""
},
{
- "id": 23998,
+ "id": 6709,
"name": "deleteShippingOptionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -278084,7 +278936,7 @@
},
"children": [
{
- "id": 24006,
+ "id": 6717,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -278107,7 +278959,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24007,
+ "id": 6718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -278121,7 +278973,7 @@
],
"signatures": [
{
- "id": 24008,
+ "id": 6719,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -278149,7 +279001,7 @@
],
"parameters": [
{
- "id": 24009,
+ "id": 6720,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -278165,14 +279017,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24010,
+ "id": 6721,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24011,
+ "id": 6722,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -278232,7 +279084,7 @@
{
"title": "Properties",
"children": [
- 24011
+ 6722
]
}
],
@@ -278268,14 +279120,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24012,
+ "id": 6723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24013,
+ "id": 6724,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -278289,7 +279141,7 @@
],
"signatures": [
{
- "id": 24014,
+ "id": 6725,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -278303,7 +279155,7 @@
],
"parameters": [
{
- "id": 24015,
+ "id": 6726,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -278314,14 +279166,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24016,
+ "id": 6727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24017,
+ "id": 6728,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -278345,7 +279197,7 @@
{
"title": "Properties",
"children": [
- 24017
+ 6728
]
}
],
@@ -278422,7 +279274,7 @@
{
"title": "Methods",
"children": [
- 24013
+ 6724
]
}
],
@@ -278458,7 +279310,7 @@
}
},
{
- "id": 24018,
+ "id": 6729,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -278481,7 +279333,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24019,
+ "id": 6730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -278495,7 +279347,7 @@
],
"signatures": [
{
- "id": 24020,
+ "id": 6731,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -278523,7 +279375,7 @@
],
"typeParameters": [
{
- "id": 24021,
+ "id": 6732,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -278534,7 +279386,7 @@
}
},
{
- "id": 24022,
+ "id": 6733,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -278547,7 +279399,7 @@
],
"parameters": [
{
- "id": 24023,
+ "id": 6734,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -278580,7 +279432,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -278600,7 +279452,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -278633,7 +279485,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -278648,7 +279500,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -278668,7 +279520,7 @@
}
},
{
- "id": 24024,
+ "id": 6735,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -278691,7 +279543,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24025,
+ "id": 6736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -278705,7 +279557,7 @@
],
"signatures": [
{
- "id": 24026,
+ "id": 6737,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -278727,7 +279579,7 @@
}
},
{
- "id": 24027,
+ "id": 6738,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -278750,7 +279602,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24028,
+ "id": 6739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -278764,7 +279616,7 @@
],
"signatures": [
{
- "id": 24029,
+ "id": 6740,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -278778,7 +279630,7 @@
],
"parameters": [
{
- "id": 24030,
+ "id": 6741,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -278804,7 +279656,7 @@
}
},
{
- "id": 24031,
+ "id": 6742,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -278827,7 +279679,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24032,
+ "id": 6743,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -278838,7 +279690,7 @@
],
"documents": [
{
- "id": 42421,
+ "id": 25362,
"name": "deleteShippingOptionsStep",
"variant": "document",
"kind": 8388608,
@@ -278864,7 +279716,7 @@
"frontmatter": {}
},
{
- "id": 42422,
+ "id": 25363,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -278891,21 +279743,21 @@
}
],
"childrenIncludingDocuments": [
- 24006,
- 24018,
- 24024,
- 24027,
- 24031
+ 6717,
+ 6729,
+ 6735,
+ 6738,
+ 6742
],
"groups": [
{
"title": "Properties",
"children": [
- 24006,
- 24018,
- 24024,
- 24027,
- 24031
+ 6717,
+ 6729,
+ 6735,
+ 6738,
+ 6742
]
}
],
@@ -278914,12 +279766,12 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-shipping-options.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-shipping-options.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-shipping-options.ts#L27"
}
],
"signatures": [
{
- "id": 23999,
+ "id": 6710,
"name": "deleteShippingOptionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -278966,12 +279818,12 @@
"fileName": "core-flows/src/fulfillment/workflows/delete-shipping-options.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/delete-shipping-options.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/delete-shipping-options.ts#L27"
}
],
"typeParameters": [
{
- "id": 24000,
+ "id": 6711,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -278982,7 +279834,7 @@
}
},
{
- "id": 24001,
+ "id": 6712,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -278995,7 +279847,7 @@
],
"parameters": [
{
- "id": 24002,
+ "id": 6713,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -279019,14 +279871,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24003,
+ "id": 6714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24004,
+ "id": 6715,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -279049,7 +279901,7 @@
}
},
{
- "id": 24005,
+ "id": 6716,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -279076,8 +279928,8 @@
{
"title": "Properties",
"children": [
- 24004,
- 24005
+ 6715,
+ 6716
]
}
],
@@ -279165,14 +280017,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -279187,7 +280039,7 @@
]
},
{
- "id": 24033,
+ "id": 6744,
"name": "validateFulfillmentDeliverabilityStepId",
"variant": "declaration",
"kind": 32,
@@ -279199,7 +280051,7 @@
"fileName": "core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L15"
}
],
"type": {
@@ -279209,7 +280061,7 @@
"defaultValue": "\"validate-fulfillment-deliverability\""
},
{
- "id": 24034,
+ "id": 6745,
"name": "validateFulfillmentDeliverabilityStep",
"variant": "declaration",
"kind": 64,
@@ -279244,7 +280096,7 @@
},
"children": [
{
- "id": 24037,
+ "id": 6748,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -279262,7 +280114,7 @@
}
},
{
- "id": 24038,
+ "id": 6749,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -279284,8 +280136,8 @@
{
"title": "Properties",
"children": [
- 24037,
- 24038
+ 6748,
+ 6749
]
}
],
@@ -279294,12 +280146,12 @@
"fileName": "core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L34"
}
],
"signatures": [
{
- "id": 24035,
+ "id": 6746,
"name": "validateFulfillmentDeliverabilityStep",
"variant": "signature",
"kind": 4096,
@@ -279337,12 +280189,12 @@
"fileName": "core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L34"
}
],
"parameters": [
{
- "id": 24036,
+ "id": 6747,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -279391,7 +280243,7 @@
]
},
{
- "id": 24041,
+ "id": 6752,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -279409,7 +280261,7 @@
"fileName": "core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L62"
}
],
"type": {
@@ -279418,7 +280270,7 @@
}
},
{
- "id": 24042,
+ "id": 6753,
"name": "markFulfillmentAsDeliveredWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -279430,7 +280282,7 @@
"fileName": "core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L65"
}
],
"type": {
@@ -279440,7 +280292,7 @@
"defaultValue": "\"mark-fulfillment-as-delivered-workflow\""
},
{
- "id": 24043,
+ "id": 6754,
"name": "markFulfillmentAsDeliveredWorkflow",
"variant": "declaration",
"kind": 64,
@@ -279489,6 +280341,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "id --- acquireLockStep({ key: id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -279502,7 +280363,7 @@
},
"children": [
{
- "id": 24051,
+ "id": 6762,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -279525,7 +280386,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24052,
+ "id": 6763,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -279539,7 +280400,7 @@
],
"signatures": [
{
- "id": 24053,
+ "id": 6764,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -279567,7 +280428,7 @@
],
"parameters": [
{
- "id": 24054,
+ "id": 6765,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -279583,14 +280444,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24055,
+ "id": 6766,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24056,
+ "id": 6767,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -279615,7 +280476,7 @@
"types": [
{
"type": "reference",
- "target": 24039,
+ "target": 6750,
"name": "MarkFulfillmentAsDeliveredInput",
"package": "@medusajs/core-flows"
},
@@ -279628,7 +280489,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24039,
+ "target": 6750,
"name": "MarkFulfillmentAsDeliveredInput",
"package": "@medusajs/core-flows"
}
@@ -279644,7 +280505,7 @@
{
"title": "Properties",
"children": [
- 24056
+ 6767
]
}
],
@@ -279665,14 +280526,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24057,
+ "id": 6768,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24058,
+ "id": 6769,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -279718,7 +280579,7 @@
}
},
{
- "id": 24059,
+ "id": 6770,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -279764,7 +280625,7 @@
}
},
{
- "id": 24060,
+ "id": 6771,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -279833,7 +280694,7 @@
}
},
{
- "id": 24061,
+ "id": 6772,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -279902,7 +280763,7 @@
}
},
{
- "id": 24062,
+ "id": 6773,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -279971,7 +280832,7 @@
}
},
{
- "id": 24063,
+ "id": 6774,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -280040,7 +280901,7 @@
}
},
{
- "id": 24064,
+ "id": 6775,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -280105,7 +280966,7 @@
}
},
{
- "id": 24065,
+ "id": 6776,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -280170,7 +281031,7 @@
}
},
{
- "id": 24066,
+ "id": 6777,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -280259,7 +281120,7 @@
}
},
{
- "id": 24067,
+ "id": 6778,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -280305,7 +281166,7 @@
}
},
{
- "id": 24068,
+ "id": 6779,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -280364,7 +281225,7 @@
}
},
{
- "id": 24069,
+ "id": 6780,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -280453,7 +281314,7 @@
}
},
{
- "id": 24070,
+ "id": 6781,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -280522,7 +281383,7 @@
}
},
{
- "id": 24071,
+ "id": 6782,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -280568,7 +281429,7 @@
}
},
{
- "id": 24072,
+ "id": 6783,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -280624,7 +281485,7 @@
}
},
{
- "id": 24073,
+ "id": 6784,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -280680,7 +281541,7 @@
}
},
{
- "id": 24074,
+ "id": 6785,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -280742,7 +281603,7 @@
}
},
{
- "id": 24075,
+ "id": 6786,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -280804,7 +281665,7 @@
}
},
{
- "id": 24076,
+ "id": 6787,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -280860,7 +281721,7 @@
}
},
{
- "id": 24077,
+ "id": 6788,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -280916,7 +281777,7 @@
}
},
{
- "id": 24078,
+ "id": 6789,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -280989,27 +281850,27 @@
{
"title": "Properties",
"children": [
- 24058,
- 24059,
- 24060,
- 24061,
- 24062,
- 24063,
- 24064,
- 24065,
- 24066,
- 24067,
- 24068,
- 24069,
- 24070,
- 24071,
- 24072,
- 24073,
- 24074,
- 24075,
- 24076,
- 24077,
- 24078
+ 6769,
+ 6770,
+ 6771,
+ 6772,
+ 6773,
+ 6774,
+ 6775,
+ 6776,
+ 6777,
+ 6778,
+ 6779,
+ 6780,
+ 6781,
+ 6782,
+ 6783,
+ 6784,
+ 6785,
+ 6786,
+ 6787,
+ 6788,
+ 6789
]
}
],
@@ -281054,14 +281915,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24079,
+ "id": 6790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24080,
+ "id": 6791,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -281075,7 +281936,7 @@
],
"signatures": [
{
- "id": 24081,
+ "id": 6792,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -281089,7 +281950,7 @@
],
"parameters": [
{
- "id": 24082,
+ "id": 6793,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -281100,14 +281961,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24083,
+ "id": 6794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24084,
+ "id": 6795,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -281131,7 +281992,7 @@
{
"title": "Properties",
"children": [
- 24084
+ 6795
]
}
],
@@ -281213,7 +282074,7 @@
{
"title": "Methods",
"children": [
- 24080
+ 6791
]
}
],
@@ -281254,7 +282115,7 @@
}
},
{
- "id": 24085,
+ "id": 6796,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -281277,7 +282138,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24086,
+ "id": 6797,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -281291,7 +282152,7 @@
],
"signatures": [
{
- "id": 24087,
+ "id": 6798,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -281319,7 +282180,7 @@
],
"typeParameters": [
{
- "id": 24088,
+ "id": 6799,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -281330,7 +282191,7 @@
}
},
{
- "id": 24089,
+ "id": 6800,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -281343,7 +282204,7 @@
],
"parameters": [
{
- "id": 24090,
+ "id": 6801,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -281376,7 +282237,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -281387,13 +282248,13 @@
},
"trueType": {
"type": "reference",
- "target": 24039,
+ "target": 6750,
"name": "MarkFulfillmentAsDeliveredInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -281426,7 +282287,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -281446,7 +282307,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -281466,7 +282327,7 @@
}
},
{
- "id": 24091,
+ "id": 6802,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -281489,7 +282350,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24092,
+ "id": 6803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -281503,7 +282364,7 @@
],
"signatures": [
{
- "id": 24093,
+ "id": 6804,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -281525,7 +282386,7 @@
}
},
{
- "id": 24094,
+ "id": 6805,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -281548,7 +282409,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24095,
+ "id": 6806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -281562,7 +282423,7 @@
],
"signatures": [
{
- "id": 24096,
+ "id": 6807,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -281576,7 +282437,7 @@
],
"parameters": [
{
- "id": 24097,
+ "id": 6808,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -281602,7 +282463,7 @@
}
},
{
- "id": 24098,
+ "id": 6809,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -281625,7 +282486,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24099,
+ "id": 6810,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -281636,7 +282497,7 @@
],
"documents": [
{
- "id": 42423,
+ "id": 25364,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -281662,7 +282523,7 @@
"frontmatter": {}
},
{
- "id": 42424,
+ "id": 25365,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -281688,7 +282549,7 @@
"frontmatter": {}
},
{
- "id": 42425,
+ "id": 25366,
"name": "validateFulfillmentDeliverabilityStep",
"variant": "document",
"kind": 8388608,
@@ -281714,7 +282575,7 @@
"frontmatter": {}
},
{
- "id": 42426,
+ "id": 25367,
"name": "updateFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -281740,7 +282601,7 @@
"frontmatter": {}
},
{
- "id": 42427,
+ "id": 25368,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -281767,21 +282628,21 @@
}
],
"childrenIncludingDocuments": [
- 24051,
- 24085,
- 24091,
- 24094,
- 24098
+ 6762,
+ 6796,
+ 6802,
+ 6805,
+ 6809
],
"groups": [
{
"title": "Properties",
"children": [
- 24051,
- 24085,
- 24091,
- 24094,
- 24098
+ 6762,
+ 6796,
+ 6802,
+ 6805,
+ 6809
]
}
],
@@ -281790,12 +282651,12 @@
"fileName": "core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L85"
}
],
"signatures": [
{
- "id": 24044,
+ "id": 6755,
"name": "markFulfillmentAsDeliveredWorkflow",
"variant": "signature",
"kind": 4096,
@@ -281844,6 +282705,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "id --- acquireLockStep({ key: id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -281860,12 +282730,12 @@
"fileName": "core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/mark-fulfillment-as-delivered.ts#L85"
}
],
"typeParameters": [
{
- "id": 24045,
+ "id": 6756,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -281876,7 +282746,7 @@
}
},
{
- "id": 24046,
+ "id": 6757,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -281889,7 +282759,7 @@
],
"parameters": [
{
- "id": 24047,
+ "id": 6758,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -281913,14 +282783,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24048,
+ "id": 6759,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24049,
+ "id": 6760,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -281943,7 +282813,7 @@
}
},
{
- "id": 24050,
+ "id": 6761,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -281970,8 +282840,8 @@
{
"title": "Properties",
"children": [
- 24049,
- 24050
+ 6760,
+ 6761
]
}
],
@@ -282046,7 +282916,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24039,
+ "target": 6750,
"name": "MarkFulfillmentAsDeliveredInput",
"package": "@medusajs/core-flows"
},
@@ -282061,14 +282931,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -282083,7 +282953,7 @@
]
},
{
- "id": 24100,
+ "id": 6811,
"name": "updateFulfillmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -282095,7 +282965,7 @@
"fileName": "core-flows/src/fulfillment/workflows/update-fulfillment.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-fulfillment.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-fulfillment.ts#L9"
}
],
"type": {
@@ -282105,7 +282975,7 @@
"defaultValue": "\"update-fulfillment-workflow\""
},
{
- "id": 24101,
+ "id": 6812,
"name": "updateFulfillmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -282158,7 +283028,7 @@
},
"children": [
{
- "id": 24109,
+ "id": 6820,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -282181,7 +283051,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24110,
+ "id": 6821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -282195,7 +283065,7 @@
],
"signatures": [
{
- "id": 24111,
+ "id": 6822,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -282223,7 +283093,7 @@
],
"parameters": [
{
- "id": 24112,
+ "id": 6823,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -282239,14 +283109,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24113,
+ "id": 6824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24114,
+ "id": 6825,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -282306,7 +283176,7 @@
{
"title": "Properties",
"children": [
- 24114
+ 6825
]
}
],
@@ -282327,14 +283197,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24115,
+ "id": 6826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24116,
+ "id": 6827,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -282380,7 +283250,7 @@
}
},
{
- "id": 24117,
+ "id": 6828,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -282426,7 +283296,7 @@
}
},
{
- "id": 24118,
+ "id": 6829,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -282495,7 +283365,7 @@
}
},
{
- "id": 24119,
+ "id": 6830,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -282564,7 +283434,7 @@
}
},
{
- "id": 24120,
+ "id": 6831,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -282633,7 +283503,7 @@
}
},
{
- "id": 24121,
+ "id": 6832,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -282702,7 +283572,7 @@
}
},
{
- "id": 24122,
+ "id": 6833,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -282767,7 +283637,7 @@
}
},
{
- "id": 24123,
+ "id": 6834,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -282832,7 +283702,7 @@
}
},
{
- "id": 24124,
+ "id": 6835,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -282921,7 +283791,7 @@
}
},
{
- "id": 24125,
+ "id": 6836,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -282967,7 +283837,7 @@
}
},
{
- "id": 24126,
+ "id": 6837,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -283026,7 +283896,7 @@
}
},
{
- "id": 24127,
+ "id": 6838,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -283115,7 +283985,7 @@
}
},
{
- "id": 24128,
+ "id": 6839,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -283184,7 +284054,7 @@
}
},
{
- "id": 24129,
+ "id": 6840,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -283230,7 +284100,7 @@
}
},
{
- "id": 24130,
+ "id": 6841,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -283286,7 +284156,7 @@
}
},
{
- "id": 24131,
+ "id": 6842,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -283342,7 +284212,7 @@
}
},
{
- "id": 24132,
+ "id": 6843,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -283404,7 +284274,7 @@
}
},
{
- "id": 24133,
+ "id": 6844,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -283466,7 +284336,7 @@
}
},
{
- "id": 24134,
+ "id": 6845,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -283522,7 +284392,7 @@
}
},
{
- "id": 24135,
+ "id": 6846,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -283578,7 +284448,7 @@
}
},
{
- "id": 24136,
+ "id": 6847,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -283651,27 +284521,27 @@
{
"title": "Properties",
"children": [
- 24116,
- 24117,
- 24118,
- 24119,
- 24120,
- 24121,
- 24122,
- 24123,
- 24124,
- 24125,
- 24126,
- 24127,
- 24128,
- 24129,
- 24130,
- 24131,
- 24132,
- 24133,
- 24134,
- 24135,
- 24136
+ 6827,
+ 6828,
+ 6829,
+ 6830,
+ 6831,
+ 6832,
+ 6833,
+ 6834,
+ 6835,
+ 6836,
+ 6837,
+ 6838,
+ 6839,
+ 6840,
+ 6841,
+ 6842,
+ 6843,
+ 6844,
+ 6845,
+ 6846,
+ 6847
]
}
],
@@ -283716,14 +284586,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24137,
+ "id": 6848,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24138,
+ "id": 6849,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -283737,7 +284607,7 @@
],
"signatures": [
{
- "id": 24139,
+ "id": 6850,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -283751,7 +284621,7 @@
],
"parameters": [
{
- "id": 24140,
+ "id": 6851,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -283762,14 +284632,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24141,
+ "id": 6852,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24142,
+ "id": 6853,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -283793,7 +284663,7 @@
{
"title": "Properties",
"children": [
- 24142
+ 6853
]
}
],
@@ -283875,7 +284745,7 @@
{
"title": "Methods",
"children": [
- 24138
+ 6849
]
}
],
@@ -283916,7 +284786,7 @@
}
},
{
- "id": 24143,
+ "id": 6854,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -283939,7 +284809,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24144,
+ "id": 6855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -283953,7 +284823,7 @@
],
"signatures": [
{
- "id": 24145,
+ "id": 6856,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -283981,7 +284851,7 @@
],
"typeParameters": [
{
- "id": 24146,
+ "id": 6857,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -283992,7 +284862,7 @@
}
},
{
- "id": 24147,
+ "id": 6858,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -284005,7 +284875,7 @@
],
"parameters": [
{
- "id": 24148,
+ "id": 6859,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -284038,7 +284908,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -284058,7 +284928,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -284091,7 +284961,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -284111,7 +284981,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -284131,7 +285001,7 @@
}
},
{
- "id": 24149,
+ "id": 6860,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -284154,7 +285024,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24150,
+ "id": 6861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -284168,7 +285038,7 @@
],
"signatures": [
{
- "id": 24151,
+ "id": 6862,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -284190,7 +285060,7 @@
}
},
{
- "id": 24152,
+ "id": 6863,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -284213,7 +285083,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24153,
+ "id": 6864,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -284227,7 +285097,7 @@
],
"signatures": [
{
- "id": 24154,
+ "id": 6865,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -284241,7 +285111,7 @@
],
"parameters": [
{
- "id": 24155,
+ "id": 6866,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -284267,7 +285137,7 @@
}
},
{
- "id": 24156,
+ "id": 6867,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -284290,7 +285160,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24157,
+ "id": 6868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -284301,7 +285171,7 @@
],
"documents": [
{
- "id": 42428,
+ "id": 25369,
"name": "updateFulfillmentStep",
"variant": "document",
"kind": 8388608,
@@ -284328,21 +285198,21 @@
}
],
"childrenIncludingDocuments": [
- 24109,
- 24143,
- 24149,
- 24152,
- 24156
+ 6820,
+ 6854,
+ 6860,
+ 6863,
+ 6867
],
"groups": [
{
"title": "Properties",
"children": [
- 24109,
- 24143,
- 24149,
- 24152,
- 24156
+ 6820,
+ 6854,
+ 6860,
+ 6863,
+ 6867
]
}
],
@@ -284351,12 +285221,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-fulfillment.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-fulfillment.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-fulfillment.ts#L30"
}
],
"signatures": [
{
- "id": 24102,
+ "id": 6813,
"name": "updateFulfillmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -284412,12 +285282,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-fulfillment.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-fulfillment.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-fulfillment.ts#L30"
}
],
"typeParameters": [
{
- "id": 24103,
+ "id": 6814,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -284428,7 +285298,7 @@
}
},
{
- "id": 24104,
+ "id": 6815,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -284441,7 +285311,7 @@
],
"parameters": [
{
- "id": 24105,
+ "id": 6816,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -284465,14 +285335,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24106,
+ "id": 6817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24107,
+ "id": 6818,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -284495,7 +285365,7 @@
}
},
{
- "id": 24108,
+ "id": 6819,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -284522,8 +285392,8 @@
{
"title": "Properties",
"children": [
- 24107,
- 24108
+ 6818,
+ 6819
]
}
],
@@ -284616,14 +285486,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -284638,7 +285508,7 @@
]
},
{
- "id": 24159,
+ "id": 6870,
"name": "updateServiceZonesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -284650,7 +285520,7 @@
"fileName": "core-flows/src/fulfillment/workflows/update-service-zones.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-service-zones.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-service-zones.ts#L17"
}
],
"type": {
@@ -284660,7 +285530,7 @@
"defaultValue": "\"update-service-zones-workflow\""
},
{
- "id": 24160,
+ "id": 6871,
"name": "updateServiceZonesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -284704,7 +285574,7 @@
},
"children": [
{
- "id": 24168,
+ "id": 6879,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -284727,7 +285597,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24169,
+ "id": 6880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -284741,7 +285611,7 @@
],
"signatures": [
{
- "id": 24170,
+ "id": 6881,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -284769,7 +285639,7 @@
],
"parameters": [
{
- "id": 24171,
+ "id": 6882,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -284785,14 +285655,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24172,
+ "id": 6883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24173,
+ "id": 6884,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -284852,7 +285722,7 @@
{
"title": "Properties",
"children": [
- 24173
+ 6884
]
}
],
@@ -284909,7 +285779,7 @@
},
{
"type": "reference",
- "target": 24158,
+ "target": 6869,
"name": "UpdateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -284922,7 +285792,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24158,
+ "target": 6869,
"name": "UpdateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -284933,14 +285803,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24174,
+ "id": 6885,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24175,
+ "id": 6886,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -284954,7 +285824,7 @@
],
"signatures": [
{
- "id": 24176,
+ "id": 6887,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -284968,7 +285838,7 @@
],
"parameters": [
{
- "id": 24177,
+ "id": 6888,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -284979,14 +285849,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24178,
+ "id": 6889,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24179,
+ "id": 6890,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -285010,7 +285880,7 @@
{
"title": "Properties",
"children": [
- 24179
+ 6890
]
}
],
@@ -285073,7 +285943,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24158,
+ "target": 6869,
"name": "UpdateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -285089,7 +285959,7 @@
{
"title": "Methods",
"children": [
- 24175
+ 6886
]
}
],
@@ -285111,7 +285981,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24158,
+ "target": 6869,
"name": "UpdateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -285127,7 +285997,7 @@
}
},
{
- "id": 24180,
+ "id": 6891,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -285150,7 +286020,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24181,
+ "id": 6892,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -285164,7 +286034,7 @@
],
"signatures": [
{
- "id": 24182,
+ "id": 6893,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -285192,7 +286062,7 @@
],
"typeParameters": [
{
- "id": 24183,
+ "id": 6894,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -285203,7 +286073,7 @@
}
},
{
- "id": 24184,
+ "id": 6895,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -285216,7 +286086,7 @@
],
"parameters": [
{
- "id": 24185,
+ "id": 6896,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -285249,7 +286119,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -285269,7 +286139,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -285302,7 +286172,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -285313,13 +286183,13 @@
},
"trueType": {
"type": "reference",
- "target": 24158,
+ "target": 6869,
"name": "UpdateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -285339,7 +286209,7 @@
}
},
{
- "id": 24186,
+ "id": 6897,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -285362,7 +286232,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24187,
+ "id": 6898,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -285376,7 +286246,7 @@
],
"signatures": [
{
- "id": 24188,
+ "id": 6899,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -285398,7 +286268,7 @@
}
},
{
- "id": 24189,
+ "id": 6900,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -285421,7 +286291,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24190,
+ "id": 6901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -285435,7 +286305,7 @@
],
"signatures": [
{
- "id": 24191,
+ "id": 6902,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -285449,7 +286319,7 @@
],
"parameters": [
{
- "id": 24192,
+ "id": 6903,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -285475,7 +286345,7 @@
}
},
{
- "id": 24193,
+ "id": 6904,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -285498,7 +286368,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24194,
+ "id": 6905,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -285509,7 +286379,7 @@
],
"documents": [
{
- "id": 42429,
+ "id": 25370,
"name": "updateServiceZonesStep",
"variant": "document",
"kind": 8388608,
@@ -285536,21 +286406,21 @@
}
],
"childrenIncludingDocuments": [
- 24168,
- 24180,
- 24186,
- 24189,
- 24193
+ 6879,
+ 6891,
+ 6897,
+ 6900,
+ 6904
],
"groups": [
{
"title": "Properties",
"children": [
- 24168,
- 24180,
- 24186,
- 24189,
- 24193
+ 6879,
+ 6891,
+ 6897,
+ 6900,
+ 6904
]
}
],
@@ -285559,12 +286429,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-service-zones.ts",
"line": 42,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-service-zones.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-service-zones.ts#L42"
}
],
"signatures": [
{
- "id": 24161,
+ "id": 6872,
"name": "updateServiceZonesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -285611,12 +286481,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-service-zones.ts",
"line": 42,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-service-zones.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-service-zones.ts#L42"
}
],
"typeParameters": [
{
- "id": 24162,
+ "id": 6873,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -285627,7 +286497,7 @@
}
},
{
- "id": 24163,
+ "id": 6874,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -285640,7 +286510,7 @@
],
"parameters": [
{
- "id": 24164,
+ "id": 6875,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -285664,14 +286534,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24165,
+ "id": 6876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24166,
+ "id": 6877,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -285694,7 +286564,7 @@
}
},
{
- "id": 24167,
+ "id": 6878,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -285721,8 +286591,8 @@
{
"title": "Properties",
"children": [
- 24166,
- 24167
+ 6877,
+ 6878
]
}
],
@@ -285806,20 +286676,20 @@
},
{
"type": "reference",
- "target": 24158,
+ "target": 6869,
"name": "UpdateServiceZonesWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -285834,7 +286704,7 @@
]
},
{
- "id": 24196,
+ "id": 6907,
"name": "updateShippingOptionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -285846,7 +286716,7 @@
"fileName": "core-flows/src/fulfillment/workflows/update-shipping-options.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-shipping-options.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-shipping-options.ts#L23"
}
],
"type": {
@@ -285856,7 +286726,7 @@
"defaultValue": "\"update-shipping-options-workflow\""
},
{
- "id": 24197,
+ "id": 6908,
"name": "updateShippingOptionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -285900,7 +286770,7 @@
},
"children": [
{
- "id": 24205,
+ "id": 6916,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -285923,7 +286793,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24206,
+ "id": 6917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -285937,7 +286807,7 @@
],
"signatures": [
{
- "id": 24207,
+ "id": 6918,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -285965,7 +286835,7 @@
],
"parameters": [
{
- "id": 24208,
+ "id": 6919,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -285981,14 +286851,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24209,
+ "id": 6920,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24210,
+ "id": 6921,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -286013,7 +286883,7 @@
"types": [
{
"type": "reference",
- "target": 24195,
+ "target": 6906,
"name": "UpdateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -286026,7 +286896,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24195,
+ "target": 6906,
"name": "UpdateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -286042,7 +286912,7 @@
{
"title": "Properties",
"children": [
- 24210
+ 6921
]
}
],
@@ -286068,14 +286938,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24211,
+ "id": 6922,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24212,
+ "id": 6923,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -286105,7 +286975,7 @@
{
"title": "Properties",
"children": [
- 24212
+ 6923
]
}
],
@@ -286128,14 +286998,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24213,
+ "id": 6924,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24214,
+ "id": 6925,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -286165,7 +287035,7 @@
{
"title": "Properties",
"children": [
- 24214
+ 6925
]
}
],
@@ -286217,14 +287087,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24215,
+ "id": 6926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24216,
+ "id": 6927,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -286238,7 +287108,7 @@
],
"signatures": [
{
- "id": 24217,
+ "id": 6928,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -286252,7 +287122,7 @@
],
"parameters": [
{
- "id": 24218,
+ "id": 6929,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -286263,14 +287133,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24219,
+ "id": 6930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24220,
+ "id": 6931,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -286294,7 +287164,7 @@
{
"title": "Properties",
"children": [
- 24220
+ 6931
]
}
],
@@ -286376,7 +287246,7 @@
{
"title": "Methods",
"children": [
- 24216
+ 6927
]
}
],
@@ -286417,7 +287287,7 @@
}
},
{
- "id": 24221,
+ "id": 6932,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -286440,7 +287310,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24222,
+ "id": 6933,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -286454,7 +287324,7 @@
],
"signatures": [
{
- "id": 24223,
+ "id": 6934,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -286482,7 +287352,7 @@
],
"typeParameters": [
{
- "id": 24224,
+ "id": 6935,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -286493,7 +287363,7 @@
}
},
{
- "id": 24225,
+ "id": 6936,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -286506,7 +287376,7 @@
],
"parameters": [
{
- "id": 24226,
+ "id": 6937,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -286539,7 +287409,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -286550,13 +287420,13 @@
},
"trueType": {
"type": "reference",
- "target": 24195,
+ "target": 6906,
"name": "UpdateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -286589,7 +287459,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -286609,7 +287479,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -286629,7 +287499,7 @@
}
},
{
- "id": 24227,
+ "id": 6938,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -286652,7 +287522,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24228,
+ "id": 6939,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -286666,7 +287536,7 @@
],
"signatures": [
{
- "id": 24229,
+ "id": 6940,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -286688,7 +287558,7 @@
}
},
{
- "id": 24230,
+ "id": 6941,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -286711,7 +287581,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24231,
+ "id": 6942,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -286725,7 +287595,7 @@
],
"signatures": [
{
- "id": 24232,
+ "id": 6943,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -286739,7 +287609,7 @@
],
"parameters": [
{
- "id": 24233,
+ "id": 6944,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -286765,7 +287635,7 @@
}
},
{
- "id": 24234,
+ "id": 6945,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -286788,7 +287658,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24235,
+ "id": 6946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -286799,7 +287669,7 @@
],
"documents": [
{
- "id": 42430,
+ "id": 25371,
"name": "validateShippingOptionPricesStep",
"variant": "document",
"kind": 8388608,
@@ -286825,7 +287695,7 @@
"frontmatter": {}
},
{
- "id": 42431,
+ "id": 25372,
"name": "upsertShippingOptionsStep",
"variant": "document",
"kind": 8388608,
@@ -286851,7 +287721,7 @@
"frontmatter": {}
},
{
- "id": 42432,
+ "id": 25373,
"name": "setShippingOptionsPricesStep",
"variant": "document",
"kind": 8388608,
@@ -286878,21 +287748,21 @@
}
],
"childrenIncludingDocuments": [
- 24205,
- 24221,
- 24227,
- 24230,
- 24234
+ 6916,
+ 6932,
+ 6938,
+ 6941,
+ 6945
],
"groups": [
{
"title": "Properties",
"children": [
- 24205,
- 24221,
- 24227,
- 24230,
- 24234
+ 6916,
+ 6932,
+ 6938,
+ 6941,
+ 6945
]
}
],
@@ -286901,12 +287771,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-shipping-options.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-shipping-options.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-shipping-options.ts#L54"
}
],
"signatures": [
{
- "id": 24198,
+ "id": 6909,
"name": "updateShippingOptionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -286953,12 +287823,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-shipping-options.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-shipping-options.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-shipping-options.ts#L54"
}
],
"typeParameters": [
{
- "id": 24199,
+ "id": 6910,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -286969,7 +287839,7 @@
}
},
{
- "id": 24200,
+ "id": 6911,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -286982,7 +287852,7 @@
],
"parameters": [
{
- "id": 24201,
+ "id": 6912,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -287006,14 +287876,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24202,
+ "id": 6913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24203,
+ "id": 6914,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -287036,7 +287906,7 @@
}
},
{
- "id": 24204,
+ "id": 6915,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -287063,8 +287933,8 @@
{
"title": "Properties",
"children": [
- 24203,
- 24204
+ 6914,
+ 6915
]
}
],
@@ -287139,7 +288009,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24195,
+ "target": 6906,
"name": "UpdateShippingOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -287154,14 +288024,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -287176,7 +288046,7 @@
]
},
{
- "id": 24237,
+ "id": 6948,
"name": "updateShippingProfilesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -287188,7 +288058,7 @@
"fileName": "core-flows/src/fulfillment/workflows/update-shipping-profiles.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-shipping-profiles.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-shipping-profiles.ts#L15"
}
],
"type": {
@@ -287198,7 +288068,7 @@
"defaultValue": "\"update-shipping-profiles-workflow\""
},
{
- "id": 24238,
+ "id": 6949,
"name": "updateShippingProfilesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -287242,7 +288112,7 @@
},
"children": [
{
- "id": 24246,
+ "id": 6957,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -287265,7 +288135,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24247,
+ "id": 6958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -287279,7 +288149,7 @@
],
"signatures": [
{
- "id": 24248,
+ "id": 6959,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -287307,7 +288177,7 @@
],
"parameters": [
{
- "id": 24249,
+ "id": 6960,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -287323,14 +288193,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24250,
+ "id": 6961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24251,
+ "id": 6962,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -287390,7 +288260,7 @@
{
"title": "Properties",
"children": [
- 24251
+ 6962
]
}
],
@@ -287477,14 +288347,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24252,
+ "id": 6963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24253,
+ "id": 6964,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -287498,7 +288368,7 @@
],
"signatures": [
{
- "id": 24254,
+ "id": 6965,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -287512,7 +288382,7 @@
],
"parameters": [
{
- "id": 24255,
+ "id": 6966,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -287523,14 +288393,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24256,
+ "id": 6967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24257,
+ "id": 6968,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -287554,7 +288424,7 @@
{
"title": "Properties",
"children": [
- 24257
+ 6968
]
}
],
@@ -287636,7 +288506,7 @@
{
"title": "Methods",
"children": [
- 24253
+ 6964
]
}
],
@@ -287677,7 +288547,7 @@
}
},
{
- "id": 24258,
+ "id": 6969,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -287700,7 +288570,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24259,
+ "id": 6970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -287714,7 +288584,7 @@
],
"signatures": [
{
- "id": 24260,
+ "id": 6971,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -287742,7 +288612,7 @@
],
"typeParameters": [
{
- "id": 24261,
+ "id": 6972,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -287753,7 +288623,7 @@
}
},
{
- "id": 24262,
+ "id": 6973,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -287766,7 +288636,7 @@
],
"parameters": [
{
- "id": 24263,
+ "id": 6974,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -287799,7 +288669,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -287819,7 +288689,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -287852,7 +288722,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -287872,7 +288742,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -287892,7 +288762,7 @@
}
},
{
- "id": 24264,
+ "id": 6975,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -287915,7 +288785,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24265,
+ "id": 6976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -287929,7 +288799,7 @@
],
"signatures": [
{
- "id": 24266,
+ "id": 6977,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -287951,7 +288821,7 @@
}
},
{
- "id": 24267,
+ "id": 6978,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -287974,7 +288844,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24268,
+ "id": 6979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -287988,7 +288858,7 @@
],
"signatures": [
{
- "id": 24269,
+ "id": 6980,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -288002,7 +288872,7 @@
],
"parameters": [
{
- "id": 24270,
+ "id": 6981,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -288028,7 +288898,7 @@
}
},
{
- "id": 24271,
+ "id": 6982,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -288051,7 +288921,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24272,
+ "id": 6983,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -288062,7 +288932,7 @@
],
"documents": [
{
- "id": 42433,
+ "id": 25374,
"name": "updateShippingProfilesStep",
"variant": "document",
"kind": 8388608,
@@ -288089,21 +288959,21 @@
}
],
"childrenIncludingDocuments": [
- 24246,
- 24258,
- 24264,
- 24267,
- 24271
+ 6957,
+ 6969,
+ 6975,
+ 6978,
+ 6982
],
"groups": [
{
"title": "Properties",
"children": [
- 24246,
- 24258,
- 24264,
- 24267,
- 24271
+ 6957,
+ 6969,
+ 6975,
+ 6978,
+ 6982
]
}
],
@@ -288112,12 +288982,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-shipping-profiles.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-shipping-profiles.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-shipping-profiles.ts#L41"
}
],
"signatures": [
{
- "id": 24239,
+ "id": 6950,
"name": "updateShippingProfilesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -288164,12 +289034,12 @@
"fileName": "core-flows/src/fulfillment/workflows/update-shipping-profiles.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/update-shipping-profiles.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/update-shipping-profiles.ts#L41"
}
],
"typeParameters": [
{
- "id": 24240,
+ "id": 6951,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -288180,7 +289050,7 @@
}
},
{
- "id": 24241,
+ "id": 6952,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -288193,7 +289063,7 @@
],
"parameters": [
{
- "id": 24242,
+ "id": 6953,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -288217,14 +289087,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24243,
+ "id": 6954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24244,
+ "id": 6955,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -288247,7 +289117,7 @@
}
},
{
- "id": 24245,
+ "id": 6956,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -288274,8 +289144,8 @@
{
"title": "Properties",
"children": [
- 24244,
- 24245
+ 6955,
+ 6956
]
}
],
@@ -288368,14 +289238,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -288390,7 +289260,7 @@
]
},
{
- "id": 24273,
+ "id": 6984,
"name": "calculateShippingOptionsPricesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -288402,7 +289272,7 @@
"fileName": "core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts#L12"
}
],
"type": {
@@ -288412,7 +289282,7 @@
"defaultValue": "\"calculate-shipping-options-prices-workflow\""
},
{
- "id": 24274,
+ "id": 6985,
"name": "calculateShippingOptionsPricesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -288456,7 +289326,7 @@
},
"children": [
{
- "id": 24282,
+ "id": 6993,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -288479,7 +289349,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24283,
+ "id": 6994,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -288493,7 +289363,7 @@
],
"signatures": [
{
- "id": 24284,
+ "id": 6995,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -288521,7 +289391,7 @@
],
"parameters": [
{
- "id": 24285,
+ "id": 6996,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -288537,14 +289407,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24286,
+ "id": 6997,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24287,
+ "id": 6998,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -288604,7 +289474,7 @@
{
"title": "Properties",
"children": [
- 24287
+ 6998
]
}
],
@@ -288691,14 +289561,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24288,
+ "id": 6999,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24289,
+ "id": 7000,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -288712,7 +289582,7 @@
],
"signatures": [
{
- "id": 24290,
+ "id": 7001,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -288726,7 +289596,7 @@
],
"parameters": [
{
- "id": 24291,
+ "id": 7002,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -288737,14 +289607,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24292,
+ "id": 7003,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24293,
+ "id": 7004,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -288768,7 +289638,7 @@
{
"title": "Properties",
"children": [
- 24293
+ 7004
]
}
],
@@ -288850,7 +289720,7 @@
{
"title": "Methods",
"children": [
- 24289
+ 7000
]
}
],
@@ -288891,7 +289761,7 @@
}
},
{
- "id": 24294,
+ "id": 7005,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -288914,7 +289784,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24295,
+ "id": 7006,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -288928,7 +289798,7 @@
],
"signatures": [
{
- "id": 24296,
+ "id": 7007,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -288956,7 +289826,7 @@
],
"typeParameters": [
{
- "id": 24297,
+ "id": 7008,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -288967,7 +289837,7 @@
}
},
{
- "id": 24298,
+ "id": 7009,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -288980,7 +289850,7 @@
],
"parameters": [
{
- "id": 24299,
+ "id": 7010,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -289013,7 +289883,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -289033,7 +289903,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -289066,7 +289936,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -289086,7 +289956,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -289106,7 +289976,7 @@
}
},
{
- "id": 24300,
+ "id": 7011,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -289129,7 +289999,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24301,
+ "id": 7012,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -289143,7 +290013,7 @@
],
"signatures": [
{
- "id": 24302,
+ "id": 7013,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -289165,7 +290035,7 @@
}
},
{
- "id": 24303,
+ "id": 7014,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -289188,7 +290058,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24304,
+ "id": 7015,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -289202,7 +290072,7 @@
],
"signatures": [
{
- "id": 24305,
+ "id": 7016,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -289216,7 +290086,7 @@
],
"parameters": [
{
- "id": 24306,
+ "id": 7017,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -289242,7 +290112,7 @@
}
},
{
- "id": 24307,
+ "id": 7018,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -289265,7 +290135,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24308,
+ "id": 7019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -289276,7 +290146,7 @@
],
"documents": [
{
- "id": 42434,
+ "id": 25375,
"name": "calculateShippingOptionsPricesStep",
"variant": "document",
"kind": 8388608,
@@ -289303,21 +290173,21 @@
}
],
"childrenIncludingDocuments": [
- 24282,
- 24294,
- 24300,
- 24303,
- 24307
+ 6993,
+ 7005,
+ 7011,
+ 7014,
+ 7018
],
"groups": [
{
"title": "Properties",
"children": [
- 24282,
- 24294,
- 24300,
- 24303,
- 24307
+ 6993,
+ 7005,
+ 7011,
+ 7014,
+ 7018
]
}
],
@@ -289326,12 +290196,12 @@
"fileName": "core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts#L49"
}
],
"signatures": [
{
- "id": 24275,
+ "id": 6986,
"name": "calculateShippingOptionsPricesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -289378,12 +290248,12 @@
"fileName": "core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/fulfillment/workflows/calculate-shipping-options-prices.ts#L49"
}
],
"typeParameters": [
{
- "id": 24276,
+ "id": 6987,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -289394,7 +290264,7 @@
}
},
{
- "id": 24277,
+ "id": 6988,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -289407,7 +290277,7 @@
],
"parameters": [
{
- "id": 24278,
+ "id": 6989,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -289431,14 +290301,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24279,
+ "id": 6990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24280,
+ "id": 6991,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -289461,7 +290331,7 @@
}
},
{
- "id": 24281,
+ "id": 6992,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -289488,8 +290358,8 @@
{
"title": "Properties",
"children": [
- 24280,
- 24281
+ 6991,
+ 6992
]
}
],
@@ -289582,14 +290452,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -289608,21 +290478,21 @@
]
},
{
- "id": 17326,
+ "id": 31,
"name": "Inventory",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17327,
+ "id": 32,
"name": "Steps_Inventory",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 24650,
+ "id": 7361,
"name": "adjustInventoryLevelsStepId",
"variant": "declaration",
"kind": 32,
@@ -289634,7 +290504,7 @@
"fileName": "core-flows/src/inventory/steps/adjust-inventory-levels.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/adjust-inventory-levels.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/adjust-inventory-levels.ts#L12"
}
],
"type": {
@@ -289644,7 +290514,7 @@
"defaultValue": "\"adjust-inventory-levels-step\""
},
{
- "id": 24651,
+ "id": 7362,
"name": "adjustInventoryLevelsStep",
"variant": "declaration",
"kind": 64,
@@ -289705,7 +290575,7 @@
},
"children": [
{
- "id": 24660,
+ "id": 7371,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -289723,7 +290593,7 @@
}
},
{
- "id": 24661,
+ "id": 7372,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -289745,8 +290615,8 @@
{
"title": "Properties",
"children": [
- 24660,
- 24661
+ 7371,
+ 7372
]
}
],
@@ -289755,12 +290625,12 @@
"fileName": "core-flows/src/inventory/steps/adjust-inventory-levels.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/adjust-inventory-levels.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/adjust-inventory-levels.ts#L27"
}
],
"signatures": [
{
- "id": 24652,
+ "id": 7363,
"name": "adjustInventoryLevelsStep",
"variant": "signature",
"kind": 4096,
@@ -289824,12 +290694,12 @@
"fileName": "core-flows/src/inventory/steps/adjust-inventory-levels.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/adjust-inventory-levels.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/adjust-inventory-levels.ts#L27"
}
],
"parameters": [
{
- "id": 24653,
+ "id": 7364,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -289839,7 +290709,7 @@
"types": [
{
"type": "reference",
- "target": 24649,
+ "target": 7360,
"name": "AdjustInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
},
@@ -289852,7 +290722,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24649,
+ "target": 7360,
"name": "AdjustInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
}
@@ -289942,14 +290812,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24654,
+ "id": 7365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24655,
+ "id": 7366,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -289963,7 +290833,7 @@
],
"signatures": [
{
- "id": 24656,
+ "id": 7367,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -289977,7 +290847,7 @@
],
"parameters": [
{
- "id": 24657,
+ "id": 7368,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -289988,14 +290858,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24658,
+ "id": 7369,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24659,
+ "id": 7370,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -290019,7 +290889,7 @@
{
"title": "Properties",
"children": [
- 24659
+ 7370
]
}
],
@@ -290104,7 +290974,7 @@
{
"title": "Methods",
"children": [
- 24655
+ 7366
]
}
],
@@ -290146,7 +291016,7 @@
]
},
{
- "id": 24664,
+ "id": 7375,
"name": "inventoryItemId",
"variant": "declaration",
"kind": 1024,
@@ -290164,7 +291034,7 @@
"fileName": "core-flows/src/inventory/steps/attach-inventory-items.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L12"
}
],
"type": {
@@ -290173,7 +291043,7 @@
}
},
{
- "id": 24665,
+ "id": 7376,
"name": "tag",
"variant": "declaration",
"kind": 1024,
@@ -290191,7 +291061,7 @@
"fileName": "core-flows/src/inventory/steps/attach-inventory-items.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L16"
}
],
"type": {
@@ -290200,7 +291070,7 @@
}
},
{
- "id": 24666,
+ "id": 7377,
"name": "attachInventoryItemToVariantsStepId",
"variant": "declaration",
"kind": 32,
@@ -290212,7 +291082,7 @@
"fileName": "core-flows/src/inventory/steps/attach-inventory-items.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L19"
}
],
"type": {
@@ -290222,7 +291092,7 @@
"defaultValue": "\"attach-inventory-items-to-variants-step\""
},
{
- "id": 24667,
+ "id": 7378,
"name": "attachInventoryItemToVariants",
"variant": "declaration",
"kind": 64,
@@ -290248,7 +291118,7 @@
},
"children": [
{
- "id": 24676,
+ "id": 7387,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -290266,7 +291136,7 @@
}
},
{
- "id": 24677,
+ "id": 7388,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -290288,8 +291158,8 @@
{
"title": "Properties",
"children": [
- 24676,
- 24677
+ 7387,
+ 7388
]
}
],
@@ -290298,12 +291168,12 @@
"fileName": "core-flows/src/inventory/steps/attach-inventory-items.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L32"
}
],
"signatures": [
{
- "id": 24668,
+ "id": 7379,
"name": "attachInventoryItemToVariants",
"variant": "signature",
"kind": 4096,
@@ -290332,12 +291202,12 @@
"fileName": "core-flows/src/inventory/steps/attach-inventory-items.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/attach-inventory-items.ts#L32"
}
],
"parameters": [
{
- "id": 24669,
+ "id": 7380,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -290347,7 +291217,7 @@
"types": [
{
"type": "reference",
- "target": 24662,
+ "target": 7373,
"name": "AttachInventoryItemToVariantsStepInput",
"package": "@medusajs/core-flows"
},
@@ -290360,7 +291230,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24662,
+ "target": 7373,
"name": "AttachInventoryItemToVariantsStepInput",
"package": "@medusajs/core-flows"
}
@@ -290410,14 +291280,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24670,
+ "id": 7381,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24671,
+ "id": 7382,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -290431,7 +291301,7 @@
],
"signatures": [
{
- "id": 24672,
+ "id": 7383,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -290445,7 +291315,7 @@
],
"parameters": [
{
- "id": 24673,
+ "id": 7384,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -290456,14 +291326,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24674,
+ "id": 7385,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24675,
+ "id": 7386,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -290487,7 +291357,7 @@
{
"title": "Properties",
"children": [
- 24675
+ 7386
]
}
],
@@ -290567,7 +291437,7 @@
{
"title": "Methods",
"children": [
- 24671
+ 7382
]
}
],
@@ -290604,7 +291474,7 @@
]
},
{
- "id": 24679,
+ "id": 7390,
"name": "createInventoryItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -290616,7 +291486,7 @@
"fileName": "core-flows/src/inventory/steps/create-inventory-items.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/create-inventory-items.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/create-inventory-items.ts#L15"
}
],
"type": {
@@ -290626,7 +291496,7 @@
"defaultValue": "\"create-inventory-items\""
},
{
- "id": 24680,
+ "id": 7391,
"name": "createInventoryItemsStep",
"variant": "declaration",
"kind": 64,
@@ -290652,7 +291522,7 @@
},
"children": [
{
- "id": 24689,
+ "id": 7400,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -290670,7 +291540,7 @@
}
},
{
- "id": 24690,
+ "id": 7401,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -290692,8 +291562,8 @@
{
"title": "Properties",
"children": [
- 24689,
- 24690
+ 7400,
+ 7401
]
}
],
@@ -290702,12 +291572,12 @@
"fileName": "core-flows/src/inventory/steps/create-inventory-items.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/create-inventory-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/create-inventory-items.ts#L19"
}
],
"signatures": [
{
- "id": 24681,
+ "id": 7392,
"name": "createInventoryItemsStep",
"variant": "signature",
"kind": 4096,
@@ -290736,12 +291606,12 @@
"fileName": "core-flows/src/inventory/steps/create-inventory-items.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/create-inventory-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/create-inventory-items.ts#L19"
}
],
"parameters": [
{
- "id": 24682,
+ "id": 7393,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -290751,7 +291621,7 @@
"types": [
{
"type": "reference",
- "target": 24678,
+ "target": 7389,
"name": "CreateInventoryItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -290764,7 +291634,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24678,
+ "target": 7389,
"name": "CreateInventoryItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -290854,14 +291724,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24683,
+ "id": 7394,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24684,
+ "id": 7395,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -290875,7 +291745,7 @@
],
"signatures": [
{
- "id": 24685,
+ "id": 7396,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -290889,7 +291759,7 @@
],
"parameters": [
{
- "id": 24686,
+ "id": 7397,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -290900,14 +291770,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24687,
+ "id": 7398,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24688,
+ "id": 7399,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -290931,7 +291801,7 @@
{
"title": "Properties",
"children": [
- 24688
+ 7399
]
}
],
@@ -291016,7 +291886,7 @@
{
"title": "Methods",
"children": [
- 24684
+ 7395
]
}
],
@@ -291058,7 +291928,7 @@
]
},
{
- "id": 24692,
+ "id": 7403,
"name": "createInventoryLevelsStepId",
"variant": "declaration",
"kind": 32,
@@ -291070,7 +291940,7 @@
"fileName": "core-flows/src/inventory/steps/create-inventory-levels.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/create-inventory-levels.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/create-inventory-levels.ts#L15"
}
],
"type": {
@@ -291080,7 +291950,7 @@
"defaultValue": "\"create-inventory-levels\""
},
{
- "id": 24693,
+ "id": 7404,
"name": "createInventoryLevelsStep",
"variant": "declaration",
"kind": 64,
@@ -291124,7 +291994,7 @@
},
"children": [
{
- "id": 24702,
+ "id": 7413,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -291142,7 +292012,7 @@
}
},
{
- "id": 24703,
+ "id": 7414,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -291164,8 +292034,8 @@
{
"title": "Properties",
"children": [
- 24702,
- 24703
+ 7413,
+ 7414
]
}
],
@@ -291174,12 +292044,12 @@
"fileName": "core-flows/src/inventory/steps/create-inventory-levels.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/create-inventory-levels.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/create-inventory-levels.ts#L19"
}
],
"signatures": [
{
- "id": 24694,
+ "id": 7405,
"name": "createInventoryLevelsStep",
"variant": "signature",
"kind": 4096,
@@ -291226,12 +292096,12 @@
"fileName": "core-flows/src/inventory/steps/create-inventory-levels.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/create-inventory-levels.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/create-inventory-levels.ts#L19"
}
],
"parameters": [
{
- "id": 24695,
+ "id": 7406,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -291241,7 +292111,7 @@
"types": [
{
"type": "reference",
- "target": 24691,
+ "target": 7402,
"name": "CreateInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
},
@@ -291254,7 +292124,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24691,
+ "target": 7402,
"name": "CreateInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
}
@@ -291344,14 +292214,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24696,
+ "id": 7407,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24697,
+ "id": 7408,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -291365,7 +292235,7 @@
],
"signatures": [
{
- "id": 24698,
+ "id": 7409,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -291379,7 +292249,7 @@
],
"parameters": [
{
- "id": 24699,
+ "id": 7410,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -291390,14 +292260,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24700,
+ "id": 7411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24701,
+ "id": 7412,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -291421,7 +292291,7 @@
{
"title": "Properties",
"children": [
- 24701
+ 7412
]
}
],
@@ -291506,7 +292376,7 @@
{
"title": "Methods",
"children": [
- 24697
+ 7408
]
}
],
@@ -291548,7 +292418,7 @@
]
},
{
- "id": 24707,
+ "id": 7418,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -291558,7 +292428,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 7,
"character": 21,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
}
],
"type": {
@@ -291567,7 +292437,7 @@
}
},
{
- "id": 24708,
+ "id": 7419,
"name": "reserved_quantity",
"variant": "declaration",
"kind": 1024,
@@ -291577,7 +292447,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 7,
"character": 33,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
}
],
"type": {
@@ -291591,7 +292461,7 @@
}
},
{
- "id": 24705,
+ "id": 7416,
"name": "inventory_items",
"variant": "declaration",
"kind": 1024,
@@ -291601,7 +292471,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
}
],
"type": {
@@ -291609,14 +292479,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24706,
+ "id": 7417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24707,
+ "id": 7418,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -291626,7 +292496,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 7,
"character": 21,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
}
],
"type": {
@@ -291635,7 +292505,7 @@
}
},
{
- "id": 24708,
+ "id": 7419,
"name": "reserved_quantity",
"variant": "declaration",
"kind": 1024,
@@ -291645,7 +292515,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 7,
"character": 33,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
}
],
"type": {
@@ -291663,8 +292533,8 @@
{
"title": "Properties",
"children": [
- 24707,
- 24708
+ 7418,
+ 7419
]
}
],
@@ -291673,7 +292543,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 7,
"character": 19,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L7"
}
]
}
@@ -291681,7 +292551,7 @@
}
},
{
- "id": 24709,
+ "id": 7420,
"name": "validateVariantInventoryStepId",
"variant": "declaration",
"kind": 32,
@@ -291693,7 +292563,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L10"
}
],
"type": {
@@ -291703,7 +292573,7 @@
"defaultValue": "\"validate-inventory-item-delete\""
},
{
- "id": 24710,
+ "id": 7421,
"name": "validateInventoryDeleteStep",
"variant": "declaration",
"kind": 64,
@@ -291724,7 +292594,7 @@
},
"children": [
{
- "id": 24719,
+ "id": 7430,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -291742,7 +292612,7 @@
}
},
{
- "id": 24720,
+ "id": 7431,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -291764,8 +292634,8 @@
{
"title": "Properties",
"children": [
- 24719,
- 24720
+ 7430,
+ 7431
]
}
],
@@ -291774,12 +292644,12 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L12"
}
],
"signatures": [
{
- "id": 24711,
+ "id": 7422,
"name": "validateInventoryDeleteStep",
"variant": "signature",
"kind": 4096,
@@ -291803,12 +292673,12 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L12"
}
],
"parameters": [
{
- "id": 24712,
+ "id": 7423,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -291818,7 +292688,7 @@
"types": [
{
"type": "reference",
- "target": 24704,
+ "target": 7415,
"name": "ValidateInventoryDeleteStepInput",
"package": "@medusajs/core-flows"
},
@@ -291831,7 +292701,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24704,
+ "target": 7415,
"name": "ValidateInventoryDeleteStepInput",
"package": "@medusajs/core-flows"
}
@@ -291864,14 +292734,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24713,
+ "id": 7424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24714,
+ "id": 7425,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -291885,7 +292755,7 @@
],
"signatures": [
{
- "id": 24715,
+ "id": 7426,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -291899,7 +292769,7 @@
],
"parameters": [
{
- "id": 24716,
+ "id": 7427,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -291910,14 +292780,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24717,
+ "id": 7428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24718,
+ "id": 7429,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -291941,7 +292811,7 @@
{
"title": "Properties",
"children": [
- 24718
+ 7429
]
}
],
@@ -292018,7 +292888,7 @@
{
"title": "Methods",
"children": [
- 24714
+ 7425
]
}
],
@@ -292052,7 +292922,7 @@
]
},
{
- "id": 24722,
+ "id": 7433,
"name": "deleteInventoryItemStepId",
"variant": "declaration",
"kind": 32,
@@ -292064,7 +292934,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L34"
}
],
"type": {
@@ -292074,7 +292944,7 @@
"defaultValue": "\"delete-inventory-item-step\""
},
{
- "id": 24723,
+ "id": 7434,
"name": "deleteInventoryItemStep",
"variant": "declaration",
"kind": 64,
@@ -292100,7 +292970,7 @@
},
"children": [
{
- "id": 24726,
+ "id": 7437,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -292118,7 +292988,7 @@
}
},
{
- "id": 24727,
+ "id": 7438,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -292140,8 +293010,8 @@
{
"title": "Properties",
"children": [
- 24726,
- 24727
+ 7437,
+ 7438
]
}
],
@@ -292150,12 +293020,12 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L38"
}
],
"signatures": [
{
- "id": 24724,
+ "id": 7435,
"name": "deleteInventoryItemStep",
"variant": "signature",
"kind": 4096,
@@ -292184,12 +293054,12 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-items.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-items.ts#L38"
}
],
"parameters": [
{
- "id": 24725,
+ "id": 7436,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -292199,7 +293069,7 @@
"types": [
{
"type": "reference",
- "target": 24721,
+ "target": 7432,
"name": "DeleteInventoryItemStepInput",
"package": "@medusajs/core-flows"
},
@@ -292212,7 +293082,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24721,
+ "target": 7432,
"name": "DeleteInventoryItemStepInput",
"package": "@medusajs/core-flows"
}
@@ -292232,7 +293102,7 @@
]
},
{
- "id": 24729,
+ "id": 7440,
"name": "deleteInventoryLevelsStepId",
"variant": "declaration",
"kind": 32,
@@ -292244,7 +293114,7 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-levels.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-levels.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-levels.ts#L11"
}
],
"type": {
@@ -292254,7 +293124,7 @@
"defaultValue": "\"delete-inventory-levels-step\""
},
{
- "id": 24730,
+ "id": 7441,
"name": "deleteInventoryLevelsStep",
"variant": "declaration",
"kind": 64,
@@ -292269,7 +293139,7 @@
},
"children": [
{
- "id": 24733,
+ "id": 7444,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -292287,7 +293157,7 @@
}
},
{
- "id": 24734,
+ "id": 7445,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -292309,8 +293179,8 @@
{
"title": "Properties",
"children": [
- 24733,
- 24734
+ 7444,
+ 7445
]
}
],
@@ -292319,12 +293189,12 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-levels.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-levels.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-levels.ts#L15"
}
],
"signatures": [
{
- "id": 24731,
+ "id": 7442,
"name": "deleteInventoryLevelsStep",
"variant": "signature",
"kind": 4096,
@@ -292342,12 +293212,12 @@
"fileName": "core-flows/src/inventory/steps/delete-inventory-levels.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/delete-inventory-levels.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/delete-inventory-levels.ts#L15"
}
],
"parameters": [
{
- "id": 24732,
+ "id": 7443,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -292357,7 +293227,7 @@
"types": [
{
"type": "reference",
- "target": 24728,
+ "target": 7439,
"name": "DeleteInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
},
@@ -292370,7 +293240,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24728,
+ "target": 7439,
"name": "DeleteInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
}
@@ -292390,7 +293260,7 @@
]
},
{
- "id": 24736,
+ "id": 7447,
"name": "updateInventoryItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -292402,7 +293272,7 @@
"fileName": "core-flows/src/inventory/steps/update-inventory-items.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/update-inventory-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/update-inventory-items.ts#L19"
}
],
"type": {
@@ -292412,7 +293282,7 @@
"defaultValue": "\"update-inventory-items-step\""
},
{
- "id": 24737,
+ "id": 7448,
"name": "updateInventoryItemsStep",
"variant": "declaration",
"kind": 64,
@@ -292438,7 +293308,7 @@
},
"children": [
{
- "id": 24746,
+ "id": 7457,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -292456,7 +293326,7 @@
}
},
{
- "id": 24747,
+ "id": 7458,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -292478,8 +293348,8 @@
{
"title": "Properties",
"children": [
- 24746,
- 24747
+ 7457,
+ 7458
]
}
],
@@ -292488,12 +293358,12 @@
"fileName": "core-flows/src/inventory/steps/update-inventory-items.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/update-inventory-items.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/update-inventory-items.ts#L23"
}
],
"signatures": [
{
- "id": 24738,
+ "id": 7449,
"name": "updateInventoryItemsStep",
"variant": "signature",
"kind": 4096,
@@ -292522,12 +293392,12 @@
"fileName": "core-flows/src/inventory/steps/update-inventory-items.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/update-inventory-items.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/update-inventory-items.ts#L23"
}
],
"parameters": [
{
- "id": 24739,
+ "id": 7450,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -292537,7 +293407,7 @@
"types": [
{
"type": "reference",
- "target": 24735,
+ "target": 7446,
"name": "UpdateInventoryItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -292550,7 +293420,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24735,
+ "target": 7446,
"name": "UpdateInventoryItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -292640,14 +293510,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24740,
+ "id": 7451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24741,
+ "id": 7452,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -292661,7 +293531,7 @@
],
"signatures": [
{
- "id": 24742,
+ "id": 7453,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -292675,7 +293545,7 @@
],
"parameters": [
{
- "id": 24743,
+ "id": 7454,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -292686,14 +293556,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24744,
+ "id": 7455,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24745,
+ "id": 7456,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -292717,7 +293587,7 @@
{
"title": "Properties",
"children": [
- 24745
+ 7456
]
}
],
@@ -292802,7 +293672,7 @@
{
"title": "Methods",
"children": [
- 24741
+ 7452
]
}
],
@@ -292844,7 +293714,7 @@
]
},
{
- "id": 24749,
+ "id": 7460,
"name": "updateInventoryLevelsStepId",
"variant": "declaration",
"kind": 32,
@@ -292856,7 +293726,7 @@
"fileName": "core-flows/src/inventory/steps/update-inventory-levels.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/update-inventory-levels.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/update-inventory-levels.ts#L19"
}
],
"type": {
@@ -292866,7 +293736,7 @@
"defaultValue": "\"update-inventory-levels-step\""
},
{
- "id": 24750,
+ "id": 7461,
"name": "updateInventoryLevelsStep",
"variant": "declaration",
"kind": 64,
@@ -292901,7 +293771,7 @@
},
"children": [
{
- "id": 24759,
+ "id": 7470,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -292919,7 +293789,7 @@
}
},
{
- "id": 24760,
+ "id": 7471,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -292941,8 +293811,8 @@
{
"title": "Properties",
"children": [
- 24759,
- 24760
+ 7470,
+ 7471
]
}
],
@@ -292951,12 +293821,12 @@
"fileName": "core-flows/src/inventory/steps/update-inventory-levels.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/update-inventory-levels.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/update-inventory-levels.ts#L23"
}
],
"signatures": [
{
- "id": 24751,
+ "id": 7462,
"name": "updateInventoryLevelsStep",
"variant": "signature",
"kind": 4096,
@@ -292994,12 +293864,12 @@
"fileName": "core-flows/src/inventory/steps/update-inventory-levels.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/update-inventory-levels.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/update-inventory-levels.ts#L23"
}
],
"parameters": [
{
- "id": 24752,
+ "id": 7463,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -293009,7 +293879,7 @@
"types": [
{
"type": "reference",
- "target": 24748,
+ "target": 7459,
"name": "UpdateInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
},
@@ -293022,7 +293892,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24748,
+ "target": 7459,
"name": "UpdateInventoryLevelsStepInput",
"package": "@medusajs/core-flows"
}
@@ -293112,14 +293982,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24753,
+ "id": 7464,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24754,
+ "id": 7465,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -293133,7 +294003,7 @@
],
"signatures": [
{
- "id": 24755,
+ "id": 7466,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -293147,7 +294017,7 @@
],
"parameters": [
{
- "id": 24756,
+ "id": 7467,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -293158,14 +294028,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24757,
+ "id": 7468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24758,
+ "id": 7469,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -293189,7 +294059,7 @@
{
"title": "Properties",
"children": [
- 24758
+ 7469
]
}
],
@@ -293274,7 +294144,7 @@
{
"title": "Methods",
"children": [
- 24754
+ 7465
]
}
],
@@ -293316,7 +294186,7 @@
]
},
{
- "id": 24762,
+ "id": 7473,
"name": "validateInventoryLocationsStepId",
"variant": "declaration",
"kind": 32,
@@ -293328,7 +294198,7 @@
"fileName": "core-flows/src/inventory/steps/validate-inventory-locations.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-inventory-locations.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-inventory-locations.ts#L16"
}
],
"type": {
@@ -293338,7 +294208,7 @@
"defaultValue": "\"validate-inventory-levels-step\""
},
{
- "id": 24763,
+ "id": 7474,
"name": "validateInventoryLocationsStep",
"variant": "declaration",
"kind": 64,
@@ -293364,7 +294234,7 @@
},
"children": [
{
- "id": 24772,
+ "id": 7483,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -293382,7 +294252,7 @@
}
},
{
- "id": 24773,
+ "id": 7484,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -293404,8 +294274,8 @@
{
"title": "Properties",
"children": [
- 24772,
- 24773
+ 7483,
+ 7484
]
}
],
@@ -293414,12 +294284,12 @@
"fileName": "core-flows/src/inventory/steps/validate-inventory-locations.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-inventory-locations.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-inventory-locations.ts#L22"
}
],
"signatures": [
{
- "id": 24764,
+ "id": 7475,
"name": "validateInventoryLocationsStep",
"variant": "signature",
"kind": 4096,
@@ -293448,12 +294318,12 @@
"fileName": "core-flows/src/inventory/steps/validate-inventory-locations.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-inventory-locations.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-inventory-locations.ts#L22"
}
],
"parameters": [
{
- "id": 24765,
+ "id": 7476,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -293463,7 +294333,7 @@
"types": [
{
"type": "reference",
- "target": 24761,
+ "target": 7472,
"name": "ValidateInventoryLocationsStepInput",
"package": "@medusajs/core-flows"
},
@@ -293476,7 +294346,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24761,
+ "target": 7472,
"name": "ValidateInventoryLocationsStepInput",
"package": "@medusajs/core-flows"
}
@@ -293509,14 +294379,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24766,
+ "id": 7477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24767,
+ "id": 7478,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -293530,7 +294400,7 @@
],
"signatures": [
{
- "id": 24768,
+ "id": 7479,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -293544,7 +294414,7 @@
],
"parameters": [
{
- "id": 24769,
+ "id": 7480,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -293555,14 +294425,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24770,
+ "id": 7481,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24771,
+ "id": 7482,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -293586,7 +294456,7 @@
{
"title": "Properties",
"children": [
- 24771
+ 7482
]
}
],
@@ -293663,7 +294533,7 @@
{
"title": "Methods",
"children": [
- 24767
+ 7478
]
}
],
@@ -293697,7 +294567,7 @@
]
},
{
- "id": 24776,
+ "id": 7487,
"name": "tag",
"variant": "declaration",
"kind": 1024,
@@ -293717,7 +294587,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
}
],
"type": {
@@ -293726,7 +294596,7 @@
}
},
{
- "id": 24777,
+ "id": 7488,
"name": "validateInventoryItemsForCreateStepId",
"variant": "declaration",
"kind": 32,
@@ -293738,7 +294608,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L18"
}
],
"type": {
@@ -293748,7 +294618,7 @@
"defaultValue": "\"validate-inventory-items-for-create-step\""
},
{
- "id": 24778,
+ "id": 7489,
"name": "validateInventoryItemsForCreate",
"variant": "declaration",
"kind": 64,
@@ -293774,7 +294644,7 @@
},
"children": [
{
- "id": 24791,
+ "id": 7502,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -293792,7 +294662,7 @@
}
},
{
- "id": 24792,
+ "id": 7503,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -293814,8 +294684,8 @@
{
"title": "Properties",
"children": [
- 24791,
- 24792
+ 7502,
+ 7503
]
}
],
@@ -293824,12 +294694,12 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L31"
}
],
"signatures": [
{
- "id": 24779,
+ "id": 7490,
"name": "validateInventoryItemsForCreate",
"variant": "signature",
"kind": 4096,
@@ -293858,12 +294728,12 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L31"
}
],
"parameters": [
{
- "id": 24780,
+ "id": 7491,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -293873,7 +294743,7 @@
"types": [
{
"type": "reference",
- "target": 24774,
+ "target": 7485,
"name": "ValidateInventoryItemsForCreateStepInput",
"package": "@medusajs/core-flows"
},
@@ -293886,7 +294756,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24774,
+ "target": 7485,
"name": "ValidateInventoryItemsForCreateStepInput",
"package": "@medusajs/core-flows"
}
@@ -293909,14 +294779,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24781,
+ "id": 7492,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24782,
+ "id": 7493,
"name": "tag",
"variant": "declaration",
"kind": 1024,
@@ -293936,7 +294806,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
}
],
"type": {
@@ -293949,7 +294819,7 @@
{
"title": "Properties",
"children": [
- 24782
+ 7493
]
}
],
@@ -293958,7 +294828,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 11,
"character": 55,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L11"
}
]
}
@@ -293973,14 +294843,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24783,
+ "id": 7494,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24784,
+ "id": 7495,
"name": "tag",
"variant": "declaration",
"kind": 1024,
@@ -294000,7 +294870,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
}
],
"type": {
@@ -294013,7 +294883,7 @@
{
"title": "Properties",
"children": [
- 24784
+ 7495
]
}
],
@@ -294022,7 +294892,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 11,
"character": 55,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L11"
}
]
}
@@ -294036,7 +294906,7 @@
},
{
"type": "reference",
- "target": 24774,
+ "target": 7485,
"name": "ValidateInventoryItemsForCreateStepInput",
"package": "@medusajs/core-flows"
},
@@ -294049,7 +294919,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24774,
+ "target": 7485,
"name": "ValidateInventoryItemsForCreateStepInput",
"package": "@medusajs/core-flows"
}
@@ -294060,14 +294930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24785,
+ "id": 7496,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24786,
+ "id": 7497,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -294081,7 +294951,7 @@
],
"signatures": [
{
- "id": 24787,
+ "id": 7498,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -294095,7 +294965,7 @@
],
"parameters": [
{
- "id": 24788,
+ "id": 7499,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -294106,14 +294976,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24789,
+ "id": 7500,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24790,
+ "id": 7501,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -294137,7 +295007,7 @@
{
"title": "Properties",
"children": [
- 24790
+ 7501
]
}
],
@@ -294200,7 +295070,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24774,
+ "target": 7485,
"name": "ValidateInventoryItemsForCreateStepInput",
"package": "@medusajs/core-flows"
}
@@ -294216,7 +295086,7 @@
{
"title": "Methods",
"children": [
- 24786
+ 7497
]
}
],
@@ -294238,7 +295108,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24774,
+ "target": 7485,
"name": "ValidateInventoryItemsForCreateStepInput",
"package": "@medusajs/core-flows"
}
@@ -294252,7 +295122,7 @@
]
},
{
- "id": 24782,
+ "id": 7493,
"name": "tag",
"variant": "declaration",
"kind": 1024,
@@ -294272,7 +295142,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
}
],
"type": {
@@ -294281,7 +295151,7 @@
}
},
{
- "id": 24784,
+ "id": 7495,
"name": "tag",
"variant": "declaration",
"kind": 1024,
@@ -294301,7 +295171,7 @@
"fileName": "core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/steps/validate-singular-inventory-items-for-tags.ts#L15"
}
],
"type": {
@@ -294312,14 +295182,14 @@
]
},
{
- "id": 17328,
+ "id": 33,
"name": "Workflows_Inventory",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 24310,
+ "id": 7021,
"name": "force",
"variant": "declaration",
"kind": 1024,
@@ -294350,7 +295220,7 @@
"fileName": "core-flows/src/inventory/workflows/batch-inventory-item-levels.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L39"
}
],
"type": {
@@ -294359,7 +295229,7 @@
}
},
{
- "id": 24318,
+ "id": 7029,
"name": "batchInventoryItemLevelsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -294371,7 +295241,7 @@
"fileName": "core-flows/src/inventory/workflows/batch-inventory-item-levels.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L52"
}
],
"type": {
@@ -294381,7 +295251,7 @@
"defaultValue": "\"batch-inventory-item-levels-workflow\""
},
{
- "id": 24319,
+ "id": 7030,
"name": "batchInventoryItemLevelsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -294434,7 +295304,7 @@
},
"children": [
{
- "id": 24327,
+ "id": 7038,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -294457,7 +295327,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24328,
+ "id": 7039,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -294471,7 +295341,7 @@
],
"signatures": [
{
- "id": 24329,
+ "id": 7040,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -294499,7 +295369,7 @@
],
"parameters": [
{
- "id": 24330,
+ "id": 7041,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -294515,14 +295385,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24331,
+ "id": 7042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24332,
+ "id": 7043,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -294547,7 +295417,7 @@
"types": [
{
"type": "reference",
- "target": 24309,
+ "target": 7020,
"name": "BatchInventoryItemLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -294560,7 +295430,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24309,
+ "target": 7020,
"name": "BatchInventoryItemLevelsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -294576,7 +295446,7 @@
{
"title": "Properties",
"children": [
- 24332
+ 7043
]
}
],
@@ -294597,14 +295467,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24333,
+ "id": 7044,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24334,
+ "id": 7045,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -294666,7 +295536,7 @@
}
},
{
- "id": 24335,
+ "id": 7046,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -294728,7 +295598,7 @@
}
},
{
- "id": 24336,
+ "id": 7047,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -294784,9 +295654,9 @@
{
"title": "Properties",
"children": [
- 24334,
- 24335,
- 24336
+ 7045,
+ 7046,
+ 7047
]
}
],
@@ -294801,7 +295671,7 @@
},
{
"type": "reference",
- "target": 24314,
+ "target": 7025,
"name": "BatchInventoryItemLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -294814,7 +295684,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24314,
+ "target": 7025,
"name": "BatchInventoryItemLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -294825,14 +295695,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24337,
+ "id": 7048,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24338,
+ "id": 7049,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -294846,7 +295716,7 @@
],
"signatures": [
{
- "id": 24339,
+ "id": 7050,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -294860,7 +295730,7 @@
],
"parameters": [
{
- "id": 24340,
+ "id": 7051,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -294871,14 +295741,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24341,
+ "id": 7052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24342,
+ "id": 7053,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -294902,7 +295772,7 @@
{
"title": "Properties",
"children": [
- 24342
+ 7053
]
}
],
@@ -294965,7 +295835,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24314,
+ "target": 7025,
"name": "BatchInventoryItemLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -294981,7 +295851,7 @@
{
"title": "Methods",
"children": [
- 24338
+ 7049
]
}
],
@@ -295003,7 +295873,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24314,
+ "target": 7025,
"name": "BatchInventoryItemLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -295019,7 +295889,7 @@
}
},
{
- "id": 24343,
+ "id": 7054,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -295042,7 +295912,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24344,
+ "id": 7055,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -295056,7 +295926,7 @@
],
"signatures": [
{
- "id": 24345,
+ "id": 7056,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -295084,7 +295954,7 @@
],
"typeParameters": [
{
- "id": 24346,
+ "id": 7057,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -295095,7 +295965,7 @@
}
},
{
- "id": 24347,
+ "id": 7058,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -295108,7 +295978,7 @@
],
"parameters": [
{
- "id": 24348,
+ "id": 7059,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -295141,7 +296011,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -295152,13 +296022,13 @@
},
"trueType": {
"type": "reference",
- "target": 24309,
+ "target": 7020,
"name": "BatchInventoryItemLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -295191,7 +296061,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -295202,13 +296072,13 @@
},
"trueType": {
"type": "reference",
- "target": 24314,
+ "target": 7025,
"name": "BatchInventoryItemLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -295228,7 +296098,7 @@
}
},
{
- "id": 24349,
+ "id": 7060,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -295251,7 +296121,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24350,
+ "id": 7061,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -295265,7 +296135,7 @@
],
"signatures": [
{
- "id": 24351,
+ "id": 7062,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -295287,7 +296157,7 @@
}
},
{
- "id": 24352,
+ "id": 7063,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -295310,7 +296180,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24353,
+ "id": 7064,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -295324,7 +296194,7 @@
],
"signatures": [
{
- "id": 24354,
+ "id": 7065,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -295338,7 +296208,7 @@
],
"parameters": [
{
- "id": 24355,
+ "id": 7066,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -295364,7 +296234,7 @@
}
},
{
- "id": 24356,
+ "id": 7067,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -295387,7 +296257,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24357,
+ "id": 7068,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -295398,7 +296268,7 @@
],
"documents": [
{
- "id": 42435,
+ "id": 25376,
"name": "createInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -295424,7 +296294,7 @@
"frontmatter": {}
},
{
- "id": 42436,
+ "id": 25377,
"name": "updateInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -295450,7 +296320,7 @@
"frontmatter": {}
},
{
- "id": 42437,
+ "id": 25378,
"name": "deleteInventoryLevelsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -295477,21 +296347,21 @@
}
],
"childrenIncludingDocuments": [
- 24327,
- 24343,
- 24349,
- 24352,
- 24356
+ 7038,
+ 7054,
+ 7060,
+ 7063,
+ 7067
],
"groups": [
{
"title": "Properties",
"children": [
- 24327,
- 24343,
- 24349,
- 24352,
- 24356
+ 7038,
+ 7054,
+ 7060,
+ 7063,
+ 7067
]
}
],
@@ -295500,12 +296370,12 @@
"fileName": "core-flows/src/inventory/workflows/batch-inventory-item-levels.ts",
"line": 87,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L87"
}
],
"signatures": [
{
- "id": 24320,
+ "id": 7031,
"name": "batchInventoryItemLevelsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -295561,12 +296431,12 @@
"fileName": "core-flows/src/inventory/workflows/batch-inventory-item-levels.ts",
"line": 87,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/batch-inventory-item-levels.ts#L87"
}
],
"typeParameters": [
{
- "id": 24321,
+ "id": 7032,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -295577,7 +296447,7 @@
}
},
{
- "id": 24322,
+ "id": 7033,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -295590,7 +296460,7 @@
],
"parameters": [
{
- "id": 24323,
+ "id": 7034,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -295614,14 +296484,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24324,
+ "id": 7035,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24325,
+ "id": 7036,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -295644,7 +296514,7 @@
}
},
{
- "id": 24326,
+ "id": 7037,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -295671,8 +296541,8 @@
{
"title": "Properties",
"children": [
- 24325,
- 24326
+ 7036,
+ 7037
]
}
],
@@ -295747,26 +296617,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 24309,
+ "target": 7020,
"name": "BatchInventoryItemLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 24314,
+ "target": 7025,
"name": "BatchInventoryItemLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -295781,7 +296651,7 @@
]
},
{
- "id": 24359,
+ "id": 7070,
"name": "creates",
"variant": "declaration",
"kind": 1024,
@@ -295791,7 +296661,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L17"
}
],
"type": {
@@ -295808,7 +296678,7 @@
}
},
{
- "id": 24362,
+ "id": 7073,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -295818,7 +296688,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
}
],
"type": {
@@ -295827,7 +296697,7 @@
}
},
{
- "id": 24363,
+ "id": 7074,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -295837,7 +296707,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 18,
"character": 40,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
}
],
"type": {
@@ -295846,7 +296716,7 @@
}
},
{
- "id": 24360,
+ "id": 7071,
"name": "deletes",
"variant": "declaration",
"kind": 1024,
@@ -295856,7 +296726,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
}
],
"type": {
@@ -295864,14 +296734,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24361,
+ "id": 7072,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24362,
+ "id": 7073,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -295881,7 +296751,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
}
],
"type": {
@@ -295890,7 +296760,7 @@
}
},
{
- "id": 24363,
+ "id": 7074,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -295900,7 +296770,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 18,
"character": 40,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
}
],
"type": {
@@ -295913,8 +296783,8 @@
{
"title": "Properties",
"children": [
- 24362,
- 24363
+ 7073,
+ 7074
]
}
],
@@ -295923,7 +296793,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 18,
"character": 11,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L18"
}
]
}
@@ -295931,7 +296801,7 @@
}
},
{
- "id": 24364,
+ "id": 7075,
"name": "bulkCreateDeleteLevelsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -295943,7 +296813,7 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L21"
}
],
"type": {
@@ -295953,7 +296823,7 @@
"defaultValue": "\"bulk-create-delete-levels-workflow\""
},
{
- "id": 24365,
+ "id": 7076,
"name": "bulkCreateDeleteLevelsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -296005,7 +296875,7 @@
},
"children": [
{
- "id": 24373,
+ "id": 7084,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -296028,7 +296898,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24374,
+ "id": 7085,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -296042,7 +296912,7 @@
],
"signatures": [
{
- "id": 24375,
+ "id": 7086,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -296070,7 +296940,7 @@
],
"parameters": [
{
- "id": 24376,
+ "id": 7087,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -296086,14 +296956,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24377,
+ "id": 7088,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24378,
+ "id": 7089,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -296118,7 +296988,7 @@
"types": [
{
"type": "reference",
- "target": 24358,
+ "target": 7069,
"name": "BulkCreateDeleteLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -296131,7 +297001,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24358,
+ "target": 7069,
"name": "BulkCreateDeleteLevelsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -296147,7 +297017,7 @@
{
"title": "Properties",
"children": [
- 24378
+ 7089
]
}
],
@@ -296240,14 +297110,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24379,
+ "id": 7090,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24380,
+ "id": 7091,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -296261,7 +297131,7 @@
],
"signatures": [
{
- "id": 24381,
+ "id": 7092,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -296275,7 +297145,7 @@
],
"parameters": [
{
- "id": 24382,
+ "id": 7093,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -296286,14 +297156,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24383,
+ "id": 7094,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24384,
+ "id": 7095,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -296317,7 +297187,7 @@
{
"title": "Properties",
"children": [
- 24384
+ 7095
]
}
],
@@ -296402,7 +297272,7 @@
{
"title": "Methods",
"children": [
- 24380
+ 7091
]
}
],
@@ -296446,7 +297316,7 @@
}
},
{
- "id": 24385,
+ "id": 7096,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -296469,7 +297339,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24386,
+ "id": 7097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -296483,7 +297353,7 @@
],
"signatures": [
{
- "id": 24387,
+ "id": 7098,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -296511,7 +297381,7 @@
],
"typeParameters": [
{
- "id": 24388,
+ "id": 7099,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -296522,7 +297392,7 @@
}
},
{
- "id": 24389,
+ "id": 7100,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -296535,7 +297405,7 @@
],
"parameters": [
{
- "id": 24390,
+ "id": 7101,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -296568,7 +297438,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -296579,13 +297449,13 @@
},
"trueType": {
"type": "reference",
- "target": 24358,
+ "target": 7069,
"name": "BulkCreateDeleteLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -296618,7 +297488,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -296641,7 +297511,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -296661,7 +297531,7 @@
}
},
{
- "id": 24391,
+ "id": 7102,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -296684,7 +297554,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24392,
+ "id": 7103,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -296698,7 +297568,7 @@
],
"signatures": [
{
- "id": 24393,
+ "id": 7104,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -296720,7 +297590,7 @@
}
},
{
- "id": 24394,
+ "id": 7105,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -296743,7 +297613,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24395,
+ "id": 7106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -296757,7 +297627,7 @@
],
"signatures": [
{
- "id": 24396,
+ "id": 7107,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -296771,7 +297641,7 @@
],
"parameters": [
{
- "id": 24397,
+ "id": 7108,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -296797,7 +297667,7 @@
}
},
{
- "id": 24398,
+ "id": 7109,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -296820,7 +297690,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24399,
+ "id": 7110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -296831,7 +297701,7 @@
],
"documents": [
{
- "id": 42438,
+ "id": 25379,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -296866,7 +297736,7 @@
"frontmatter": {},
"children": [
{
- "id": 42439,
+ "id": 25380,
"name": "deleteInventoryLevelsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -296894,7 +297764,7 @@
]
},
{
- "id": 42440,
+ "id": 25381,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -296929,7 +297799,7 @@
"frontmatter": {},
"children": [
{
- "id": 42441,
+ "id": 25382,
"name": "createInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -296958,21 +297828,21 @@
}
],
"childrenIncludingDocuments": [
- 24373,
- 24385,
- 24391,
- 24394,
- 24398
+ 7084,
+ 7096,
+ 7102,
+ 7105,
+ 7109
],
"groups": [
{
"title": "Properties",
"children": [
- 24373,
- 24385,
- 24391,
- 24394,
- 24398
+ 7084,
+ 7096,
+ 7102,
+ 7105,
+ 7109
]
}
],
@@ -296981,12 +297851,12 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L28"
}
],
"signatures": [
{
- "id": 24366,
+ "id": 7077,
"name": "bulkCreateDeleteLevelsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -297041,12 +297911,12 @@
"fileName": "core-flows/src/inventory/workflows/bulk-create-delete-levels.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/bulk-create-delete-levels.ts#L28"
}
],
"typeParameters": [
{
- "id": 24367,
+ "id": 7078,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -297057,7 +297927,7 @@
}
},
{
- "id": 24368,
+ "id": 7079,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -297070,7 +297940,7 @@
],
"parameters": [
{
- "id": 24369,
+ "id": 7080,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -297094,14 +297964,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24370,
+ "id": 7081,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24371,
+ "id": 7082,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -297124,7 +297994,7 @@
}
},
{
- "id": 24372,
+ "id": 7083,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -297151,8 +298021,8 @@
{
"title": "Properties",
"children": [
- 24371,
- 24372
+ 7082,
+ 7083
]
}
],
@@ -297227,7 +298097,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24358,
+ "target": 7069,
"name": "BulkCreateDeleteLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -297245,14 +298115,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -297267,7 +298137,7 @@
]
},
{
- "id": 24403,
+ "id": 7114,
"name": "location_levels",
"variant": "declaration",
"kind": 1024,
@@ -297287,7 +298157,7 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-items.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L30"
}
],
"type": {
@@ -297304,7 +298174,7 @@
}
},
{
- "id": 24401,
+ "id": 7112,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -297322,7 +298192,7 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-items.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L26"
}
],
"type": {
@@ -297342,14 +298212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24402,
+ "id": 7113,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24403,
+ "id": 7114,
"name": "location_levels",
"variant": "declaration",
"kind": 1024,
@@ -297369,7 +298239,7 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-items.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L30"
}
],
"type": {
@@ -297390,7 +298260,7 @@
{
"title": "Properties",
"children": [
- 24403
+ 7114
]
}
],
@@ -297399,7 +298269,7 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-items.ts",
"line": 26,
"character": 52,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L26"
}
]
}
@@ -297409,7 +298279,7 @@
}
},
{
- "id": 24404,
+ "id": 7115,
"name": "createInventoryItemsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -297421,7 +298291,7 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-items.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L81"
}
],
"type": {
@@ -297431,7 +298301,7 @@
"defaultValue": "\"create-inventory-items-workflow\""
},
{
- "id": 24405,
+ "id": 7116,
"name": "createInventoryItemsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -297484,7 +298354,7 @@
},
"children": [
{
- "id": 24413,
+ "id": 7124,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -297507,7 +298377,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24414,
+ "id": 7125,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -297521,7 +298391,7 @@
],
"signatures": [
{
- "id": 24415,
+ "id": 7126,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -297549,7 +298419,7 @@
],
"parameters": [
{
- "id": 24416,
+ "id": 7127,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -297565,14 +298435,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24417,
+ "id": 7128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24418,
+ "id": 7129,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -297597,7 +298467,7 @@
"types": [
{
"type": "reference",
- "target": 24400,
+ "target": 7111,
"name": "CreateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -297610,7 +298480,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24400,
+ "target": 7111,
"name": "CreateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -297626,7 +298496,7 @@
{
"title": "Properties",
"children": [
- 24418
+ 7129
]
}
],
@@ -297719,14 +298589,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24419,
+ "id": 7130,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24420,
+ "id": 7131,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -297740,7 +298610,7 @@
],
"signatures": [
{
- "id": 24421,
+ "id": 7132,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -297754,7 +298624,7 @@
],
"parameters": [
{
- "id": 24422,
+ "id": 7133,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -297765,14 +298635,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24423,
+ "id": 7134,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24424,
+ "id": 7135,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -297796,7 +298666,7 @@
{
"title": "Properties",
"children": [
- 24424
+ 7135
]
}
],
@@ -297881,7 +298751,7 @@
{
"title": "Methods",
"children": [
- 24420
+ 7131
]
}
],
@@ -297925,7 +298795,7 @@
}
},
{
- "id": 24425,
+ "id": 7136,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -297948,7 +298818,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24426,
+ "id": 7137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -297962,7 +298832,7 @@
],
"signatures": [
{
- "id": 24427,
+ "id": 7138,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -297990,7 +298860,7 @@
],
"typeParameters": [
{
- "id": 24428,
+ "id": 7139,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -298001,7 +298871,7 @@
}
},
{
- "id": 24429,
+ "id": 7140,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -298014,7 +298884,7 @@
],
"parameters": [
{
- "id": 24430,
+ "id": 7141,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -298047,7 +298917,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -298058,13 +298928,13 @@
},
"trueType": {
"type": "reference",
- "target": 24400,
+ "target": 7111,
"name": "CreateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -298097,7 +298967,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -298120,7 +298990,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -298140,7 +299010,7 @@
}
},
{
- "id": 24431,
+ "id": 7142,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -298163,7 +299033,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24432,
+ "id": 7143,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -298177,7 +299047,7 @@
],
"signatures": [
{
- "id": 24433,
+ "id": 7144,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -298199,7 +299069,7 @@
}
},
{
- "id": 24434,
+ "id": 7145,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -298222,7 +299092,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24435,
+ "id": 7146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -298236,7 +299106,7 @@
],
"signatures": [
{
- "id": 24436,
+ "id": 7147,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -298250,7 +299120,7 @@
],
"parameters": [
{
- "id": 24437,
+ "id": 7148,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -298276,7 +299146,7 @@
}
},
{
- "id": 24438,
+ "id": 7149,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -298299,7 +299169,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24439,
+ "id": 7150,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -298310,7 +299180,7 @@
],
"documents": [
{
- "id": 42442,
+ "id": 25383,
"name": "createInventoryItemsStep",
"variant": "document",
"kind": 8388608,
@@ -298336,7 +299206,7 @@
"frontmatter": {}
},
{
- "id": 42443,
+ "id": 25384,
"name": "createInventoryLevelsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -298363,21 +299233,21 @@
}
],
"childrenIncludingDocuments": [
- 24413,
- 24425,
- 24431,
- 24434,
- 24438
+ 7124,
+ 7136,
+ 7142,
+ 7145,
+ 7149
],
"groups": [
{
"title": "Properties",
"children": [
- 24413,
- 24425,
- 24431,
- 24434,
- 24438
+ 7124,
+ 7136,
+ 7142,
+ 7145,
+ 7149
]
}
],
@@ -298386,12 +299256,12 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-items.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L110"
}
],
"signatures": [
{
- "id": 24406,
+ "id": 7117,
"name": "createInventoryItemsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -298447,12 +299317,12 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-items.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-items.ts#L110"
}
],
"typeParameters": [
{
- "id": 24407,
+ "id": 7118,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -298463,7 +299333,7 @@
}
},
{
- "id": 24408,
+ "id": 7119,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -298476,7 +299346,7 @@
],
"parameters": [
{
- "id": 24409,
+ "id": 7120,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -298500,14 +299370,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24410,
+ "id": 7121,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24411,
+ "id": 7122,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -298530,7 +299400,7 @@
}
},
{
- "id": 24412,
+ "id": 7123,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -298557,8 +299427,8 @@
{
"title": "Properties",
"children": [
- 24411,
- 24412
+ 7122,
+ 7123
]
}
],
@@ -298633,7 +299503,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24400,
+ "target": 7111,
"name": "CreateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -298651,14 +299521,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -298673,7 +299543,7 @@
]
},
{
- "id": 24441,
+ "id": 7152,
"name": "inventory_levels",
"variant": "declaration",
"kind": 1024,
@@ -298691,7 +299561,7 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-levels.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L22"
}
],
"type": {
@@ -298708,7 +299578,7 @@
}
},
{
- "id": 24442,
+ "id": 7153,
"name": "createInventoryLevelsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -298720,7 +299590,7 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-levels.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L24"
}
],
"type": {
@@ -298730,7 +299600,7 @@
"defaultValue": "\"create-inventory-levels-workflow\""
},
{
- "id": 24443,
+ "id": 7154,
"name": "createInventoryLevelsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -298774,7 +299644,7 @@
},
"children": [
{
- "id": 24451,
+ "id": 7162,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -298797,7 +299667,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24452,
+ "id": 7163,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -298811,7 +299681,7 @@
],
"signatures": [
{
- "id": 24453,
+ "id": 7164,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -298839,7 +299709,7 @@
],
"parameters": [
{
- "id": 24454,
+ "id": 7165,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -298855,14 +299725,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24455,
+ "id": 7166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24456,
+ "id": 7167,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -298887,7 +299757,7 @@
"types": [
{
"type": "reference",
- "target": 24440,
+ "target": 7151,
"name": "CreateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -298900,7 +299770,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24440,
+ "target": 7151,
"name": "CreateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -298916,7 +299786,7 @@
{
"title": "Properties",
"children": [
- 24456
+ 7167
]
}
],
@@ -299009,14 +299879,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24457,
+ "id": 7168,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24458,
+ "id": 7169,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -299030,7 +299900,7 @@
],
"signatures": [
{
- "id": 24459,
+ "id": 7170,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -299044,7 +299914,7 @@
],
"parameters": [
{
- "id": 24460,
+ "id": 7171,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -299055,14 +299925,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24461,
+ "id": 7172,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24462,
+ "id": 7173,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -299086,7 +299956,7 @@
{
"title": "Properties",
"children": [
- 24462
+ 7173
]
}
],
@@ -299171,7 +300041,7 @@
{
"title": "Methods",
"children": [
- 24458
+ 7169
]
}
],
@@ -299215,7 +300085,7 @@
}
},
{
- "id": 24463,
+ "id": 7174,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -299238,7 +300108,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24464,
+ "id": 7175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -299252,7 +300122,7 @@
],
"signatures": [
{
- "id": 24465,
+ "id": 7176,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -299280,7 +300150,7 @@
],
"typeParameters": [
{
- "id": 24466,
+ "id": 7177,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -299291,7 +300161,7 @@
}
},
{
- "id": 24467,
+ "id": 7178,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -299304,7 +300174,7 @@
],
"parameters": [
{
- "id": 24468,
+ "id": 7179,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -299337,7 +300207,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -299348,13 +300218,13 @@
},
"trueType": {
"type": "reference",
- "target": 24440,
+ "target": 7151,
"name": "CreateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -299387,7 +300257,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -299410,7 +300280,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -299430,7 +300300,7 @@
}
},
{
- "id": 24469,
+ "id": 7180,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -299453,7 +300323,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24470,
+ "id": 7181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -299467,7 +300337,7 @@
],
"signatures": [
{
- "id": 24471,
+ "id": 7182,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -299489,7 +300359,7 @@
}
},
{
- "id": 24472,
+ "id": 7183,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -299512,7 +300382,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24473,
+ "id": 7184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -299526,7 +300396,7 @@
],
"signatures": [
{
- "id": 24474,
+ "id": 7185,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -299540,7 +300410,7 @@
],
"parameters": [
{
- "id": 24475,
+ "id": 7186,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -299566,7 +300436,7 @@
}
},
{
- "id": 24476,
+ "id": 7187,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -299589,7 +300459,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24477,
+ "id": 7188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -299600,7 +300470,7 @@
],
"documents": [
{
- "id": 42444,
+ "id": 25385,
"name": "validateInventoryLocationsStep",
"variant": "document",
"kind": 8388608,
@@ -299626,7 +300496,7 @@
"frontmatter": {}
},
{
- "id": 42445,
+ "id": 25386,
"name": "createInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -299653,21 +300523,21 @@
}
],
"childrenIncludingDocuments": [
- 24451,
- 24463,
- 24469,
- 24472,
- 24476
+ 7162,
+ 7174,
+ 7180,
+ 7183,
+ 7187
],
"groups": [
{
"title": "Properties",
"children": [
- 24451,
- 24463,
- 24469,
- 24472,
- 24476
+ 7162,
+ 7174,
+ 7180,
+ 7183,
+ 7187
]
}
],
@@ -299676,12 +300546,12 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-levels.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L50"
}
],
"signatures": [
{
- "id": 24444,
+ "id": 7155,
"name": "createInventoryLevelsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -299728,12 +300598,12 @@
"fileName": "core-flows/src/inventory/workflows/create-inventory-levels.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/create-inventory-levels.ts#L50"
}
],
"typeParameters": [
{
- "id": 24445,
+ "id": 7156,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -299744,7 +300614,7 @@
}
},
{
- "id": 24446,
+ "id": 7157,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -299757,7 +300627,7 @@
],
"parameters": [
{
- "id": 24447,
+ "id": 7158,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -299781,14 +300651,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24448,
+ "id": 7159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24449,
+ "id": 7160,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -299811,7 +300681,7 @@
}
},
{
- "id": 24450,
+ "id": 7161,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -299838,8 +300708,8 @@
{
"title": "Properties",
"children": [
- 24449,
- 24450
+ 7160,
+ 7161
]
}
],
@@ -299914,7 +300784,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24440,
+ "target": 7151,
"name": "CreateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -299932,14 +300802,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -299954,7 +300824,7 @@
]
},
{
- "id": 24480,
+ "id": 7191,
"name": "deleteInventoryItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -299966,7 +300836,7 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-items.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-items.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-items.ts#L22"
}
],
"type": {
@@ -299976,7 +300846,7 @@
"defaultValue": "\"delete-inventory-item-workflow\""
},
{
- "id": 24481,
+ "id": 7192,
"name": "deleteInventoryItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -300020,7 +300890,7 @@
},
"children": [
{
- "id": 24489,
+ "id": 7200,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -300043,7 +300913,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24490,
+ "id": 7201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -300057,7 +300927,7 @@
],
"signatures": [
{
- "id": 24491,
+ "id": 7202,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -300085,7 +300955,7 @@
],
"parameters": [
{
- "id": 24492,
+ "id": 7203,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -300101,14 +300971,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24493,
+ "id": 7204,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24494,
+ "id": 7205,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -300133,7 +301003,7 @@
"types": [
{
"type": "reference",
- "target": 24478,
+ "target": 7189,
"name": "DeleteInventoryItemWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -300146,7 +301016,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24478,
+ "target": 7189,
"name": "DeleteInventoryItemWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -300162,7 +301032,7 @@
{
"title": "Properties",
"children": [
- 24494
+ 7205
]
}
],
@@ -300209,7 +301079,7 @@
},
{
"type": "reference",
- "target": 24479,
+ "target": 7190,
"name": "DeleteInventoryItemWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -300222,7 +301092,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24479,
+ "target": 7190,
"name": "DeleteInventoryItemWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -300233,14 +301103,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24495,
+ "id": 7206,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24496,
+ "id": 7207,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -300254,7 +301124,7 @@
],
"signatures": [
{
- "id": 24497,
+ "id": 7208,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -300268,7 +301138,7 @@
],
"parameters": [
{
- "id": 24498,
+ "id": 7209,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -300279,14 +301149,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24499,
+ "id": 7210,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24500,
+ "id": 7211,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -300310,7 +301180,7 @@
{
"title": "Properties",
"children": [
- 24500
+ 7211
]
}
],
@@ -300373,7 +301243,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24479,
+ "target": 7190,
"name": "DeleteInventoryItemWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -300389,7 +301259,7 @@
{
"title": "Methods",
"children": [
- 24496
+ 7207
]
}
],
@@ -300411,7 +301281,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24479,
+ "target": 7190,
"name": "DeleteInventoryItemWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -300427,7 +301297,7 @@
}
},
{
- "id": 24501,
+ "id": 7212,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -300450,7 +301320,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24502,
+ "id": 7213,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -300464,7 +301334,7 @@
],
"signatures": [
{
- "id": 24503,
+ "id": 7214,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -300492,7 +301362,7 @@
],
"typeParameters": [
{
- "id": 24504,
+ "id": 7215,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -300503,7 +301373,7 @@
}
},
{
- "id": 24505,
+ "id": 7216,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -300516,7 +301386,7 @@
],
"parameters": [
{
- "id": 24506,
+ "id": 7217,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -300549,7 +301419,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -300560,13 +301430,13 @@
},
"trueType": {
"type": "reference",
- "target": 24478,
+ "target": 7189,
"name": "DeleteInventoryItemWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -300599,7 +301469,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -300610,13 +301480,13 @@
},
"trueType": {
"type": "reference",
- "target": 24479,
+ "target": 7190,
"name": "DeleteInventoryItemWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -300636,7 +301506,7 @@
}
},
{
- "id": 24507,
+ "id": 7218,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -300659,7 +301529,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24508,
+ "id": 7219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -300673,7 +301543,7 @@
],
"signatures": [
{
- "id": 24509,
+ "id": 7220,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -300695,7 +301565,7 @@
}
},
{
- "id": 24510,
+ "id": 7221,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -300718,7 +301588,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24511,
+ "id": 7222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -300732,7 +301602,7 @@
],
"signatures": [
{
- "id": 24512,
+ "id": 7223,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -300746,7 +301616,7 @@
],
"parameters": [
{
- "id": 24513,
+ "id": 7224,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -300772,7 +301642,7 @@
}
},
{
- "id": 24514,
+ "id": 7225,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -300795,7 +301665,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24515,
+ "id": 7226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -300806,7 +301676,7 @@
],
"documents": [
{
- "id": 42446,
+ "id": 25387,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -300832,7 +301702,7 @@
"frontmatter": {}
},
{
- "id": 42447,
+ "id": 25388,
"name": "validateInventoryDeleteStep",
"variant": "document",
"kind": 8388608,
@@ -300858,7 +301728,7 @@
"frontmatter": {}
},
{
- "id": 42448,
+ "id": 25389,
"name": "deleteInventoryItemStep",
"variant": "document",
"kind": 8388608,
@@ -300884,7 +301754,7 @@
"frontmatter": {}
},
{
- "id": 42449,
+ "id": 25390,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -300911,21 +301781,21 @@
}
],
"childrenIncludingDocuments": [
- 24489,
- 24501,
- 24507,
- 24510,
- 24514
+ 7200,
+ 7212,
+ 7218,
+ 7221,
+ 7225
],
"groups": [
{
"title": "Properties",
"children": [
- 24489,
- 24501,
- 24507,
- 24510,
- 24514
+ 7200,
+ 7212,
+ 7218,
+ 7221,
+ 7225
]
}
],
@@ -300934,12 +301804,12 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-items.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-items.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-items.ts#L40"
}
],
"signatures": [
{
- "id": 24482,
+ "id": 7193,
"name": "deleteInventoryItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -300986,12 +301856,12 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-items.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-items.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-items.ts#L40"
}
],
"typeParameters": [
{
- "id": 24483,
+ "id": 7194,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -301002,7 +301872,7 @@
}
},
{
- "id": 24484,
+ "id": 7195,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -301015,7 +301885,7 @@
],
"parameters": [
{
- "id": 24485,
+ "id": 7196,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -301039,14 +301909,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24486,
+ "id": 7197,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24487,
+ "id": 7198,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -301069,7 +301939,7 @@
}
},
{
- "id": 24488,
+ "id": 7199,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -301096,8 +301966,8 @@
{
"title": "Properties",
"children": [
- 24487,
- 24488
+ 7198,
+ 7199
]
}
],
@@ -301172,26 +302042,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 24478,
+ "target": 7189,
"name": "DeleteInventoryItemWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 24479,
+ "target": 7190,
"name": "DeleteInventoryItemWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -301206,7 +302076,7 @@
]
},
{
- "id": 24518,
+ "id": 7229,
"name": "inventoryLevels",
"variant": "declaration",
"kind": 1024,
@@ -301224,7 +302094,7 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L24"
}
],
"type": {
@@ -301241,7 +302111,7 @@
}
},
{
- "id": 24519,
+ "id": 7230,
"name": "force",
"variant": "declaration",
"kind": 1024,
@@ -301261,7 +302131,7 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L28"
}
],
"type": {
@@ -301270,7 +302140,7 @@
}
},
{
- "id": 24520,
+ "id": 7231,
"name": "validateInventoryLevelsDelete",
"variant": "declaration",
"kind": 64,
@@ -301305,7 +302175,7 @@
},
"children": [
{
- "id": 24529,
+ "id": 7240,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -301323,7 +302193,7 @@
}
},
{
- "id": 24530,
+ "id": 7241,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -301345,8 +302215,8 @@
{
"title": "Properties",
"children": [
- 24529,
- 24530
+ 7240,
+ 7241
]
}
],
@@ -301355,12 +302225,12 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L54"
}
],
"signatures": [
{
- "id": 24521,
+ "id": 7232,
"name": "validateInventoryLevelsDelete",
"variant": "signature",
"kind": 4096,
@@ -301398,12 +302268,12 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L54"
}
],
"parameters": [
{
- "id": 24522,
+ "id": 7233,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -301413,7 +302283,7 @@
"types": [
{
"type": "reference",
- "target": 24516,
+ "target": 7227,
"name": "ValidateInventoryLevelsDeleteStepInput",
"package": "@medusajs/core-flows"
},
@@ -301426,7 +302296,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24516,
+ "target": 7227,
"name": "ValidateInventoryLevelsDeleteStepInput",
"package": "@medusajs/core-flows"
}
@@ -301459,14 +302329,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24523,
+ "id": 7234,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24524,
+ "id": 7235,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -301480,7 +302350,7 @@
],
"signatures": [
{
- "id": 24525,
+ "id": 7236,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -301494,7 +302364,7 @@
],
"parameters": [
{
- "id": 24526,
+ "id": 7237,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -301505,14 +302375,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24527,
+ "id": 7238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24528,
+ "id": 7239,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -301536,7 +302406,7 @@
{
"title": "Properties",
"children": [
- 24528
+ 7239
]
}
],
@@ -301613,7 +302483,7 @@
{
"title": "Methods",
"children": [
- 24524
+ 7235
]
}
],
@@ -301647,7 +302517,7 @@
]
},
{
- "id": 24532,
+ "id": 7243,
"name": "force",
"variant": "declaration",
"kind": 1024,
@@ -301667,7 +302537,7 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L103"
}
],
"type": {
@@ -301676,7 +302546,7 @@
}
},
{
- "id": 24541,
+ "id": 7252,
"name": "deleteInventoryLevelsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -301688,7 +302558,7 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 106,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L106"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L106"
}
],
"type": {
@@ -301698,7 +302568,7 @@
"defaultValue": "\"delete-inventory-levels-workflow\""
},
{
- "id": 24542,
+ "id": 7253,
"name": "deleteInventoryLevelsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -301742,7 +302612,7 @@
},
"children": [
{
- "id": 24550,
+ "id": 7261,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -301765,7 +302635,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24551,
+ "id": 7262,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -301779,7 +302649,7 @@
],
"signatures": [
{
- "id": 24552,
+ "id": 7263,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -301807,7 +302677,7 @@
],
"parameters": [
{
- "id": 24553,
+ "id": 7264,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -301823,14 +302693,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24554,
+ "id": 7265,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24555,
+ "id": 7266,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -301855,7 +302725,7 @@
"types": [
{
"type": "reference",
- "target": 24531,
+ "target": 7242,
"name": "DeleteInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -301868,7 +302738,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24531,
+ "target": 7242,
"name": "DeleteInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -301884,7 +302754,7 @@
{
"title": "Properties",
"children": [
- 24555
+ 7266
]
}
],
@@ -301909,7 +302779,7 @@
}
},
{
- "id": 24556,
+ "id": 7267,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -301932,7 +302802,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24557,
+ "id": 7268,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -301946,7 +302816,7 @@
],
"signatures": [
{
- "id": 24558,
+ "id": 7269,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -301974,7 +302844,7 @@
],
"typeParameters": [
{
- "id": 24559,
+ "id": 7270,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -301985,7 +302855,7 @@
}
},
{
- "id": 24560,
+ "id": 7271,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -301998,7 +302868,7 @@
],
"parameters": [
{
- "id": 24561,
+ "id": 7272,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -302031,7 +302901,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -302042,13 +302912,13 @@
},
"trueType": {
"type": "reference",
- "target": 24531,
+ "target": 7242,
"name": "DeleteInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -302081,7 +302951,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -302096,7 +302966,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -302116,7 +302986,7 @@
}
},
{
- "id": 24562,
+ "id": 7273,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -302139,7 +303009,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24563,
+ "id": 7274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -302153,7 +303023,7 @@
],
"signatures": [
{
- "id": 24564,
+ "id": 7275,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -302175,7 +303045,7 @@
}
},
{
- "id": 24565,
+ "id": 7276,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -302198,7 +303068,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24566,
+ "id": 7277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -302212,7 +303082,7 @@
],
"signatures": [
{
- "id": 24567,
+ "id": 7278,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -302226,7 +303096,7 @@
],
"parameters": [
{
- "id": 24568,
+ "id": 7279,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -302252,7 +303122,7 @@
}
},
{
- "id": 24569,
+ "id": 7280,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -302275,7 +303145,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24570,
+ "id": 7281,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -302286,7 +303156,7 @@
],
"documents": [
{
- "id": 42450,
+ "id": 25391,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -302312,7 +303182,7 @@
"frontmatter": {}
},
{
- "id": 42451,
+ "id": 25392,
"name": "validateInventoryLevelsDelete",
"variant": "document",
"kind": 8388608,
@@ -302338,7 +303208,7 @@
"frontmatter": {}
},
{
- "id": 42452,
+ "id": 25393,
"name": "deleteEntitiesStep",
"variant": "document",
"kind": 8388608,
@@ -302365,21 +303235,21 @@
}
],
"childrenIncludingDocuments": [
- 24550,
- 24556,
- 24562,
- 24565,
- 24569
+ 7261,
+ 7267,
+ 7273,
+ 7276,
+ 7280
],
"groups": [
{
"title": "Properties",
"children": [
- 24550,
- 24556,
- 24562,
- 24565,
- 24569
+ 7261,
+ 7267,
+ 7273,
+ 7276,
+ 7280
]
}
],
@@ -302388,12 +303258,12 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L127"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L127"
}
],
"signatures": [
{
- "id": 24543,
+ "id": 7254,
"name": "deleteInventoryLevelsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -302440,12 +303310,12 @@
"fileName": "core-flows/src/inventory/workflows/delete-inventory-levels.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L127"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/delete-inventory-levels.ts#L127"
}
],
"typeParameters": [
{
- "id": 24544,
+ "id": 7255,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -302456,7 +303326,7 @@
}
},
{
- "id": 24545,
+ "id": 7256,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -302469,7 +303339,7 @@
],
"parameters": [
{
- "id": 24546,
+ "id": 7257,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -302493,14 +303363,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24547,
+ "id": 7258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24548,
+ "id": 7259,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -302523,7 +303393,7 @@
}
},
{
- "id": 24549,
+ "id": 7260,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -302550,8 +303420,8 @@
{
"title": "Properties",
"children": [
- 24548,
- 24549
+ 7259,
+ 7260
]
}
],
@@ -302626,7 +303496,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24531,
+ "target": 7242,
"name": "DeleteInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -302636,14 +303506,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -302658,7 +303528,7 @@
]
},
{
- "id": 24572,
+ "id": 7283,
"name": "updates",
"variant": "declaration",
"kind": 1024,
@@ -302676,7 +303546,7 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-items.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L17"
}
],
"type": {
@@ -302693,7 +303563,7 @@
}
},
{
- "id": 24574,
+ "id": 7285,
"name": "updateInventoryItemsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -302705,7 +303575,7 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-items.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L26"
}
],
"type": {
@@ -302715,7 +303585,7 @@
"defaultValue": "\"update-inventory-items-workflow\""
},
{
- "id": 24575,
+ "id": 7286,
"name": "updateInventoryItemsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -302759,7 +303629,7 @@
},
"children": [
{
- "id": 24583,
+ "id": 7294,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -302782,7 +303652,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24584,
+ "id": 7295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -302796,7 +303666,7 @@
],
"signatures": [
{
- "id": 24585,
+ "id": 7296,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -302824,7 +303694,7 @@
],
"parameters": [
{
- "id": 24586,
+ "id": 7297,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -302840,14 +303710,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24587,
+ "id": 7298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24588,
+ "id": 7299,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -302872,7 +303742,7 @@
"types": [
{
"type": "reference",
- "target": 24571,
+ "target": 7282,
"name": "UpdateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -302885,7 +303755,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24571,
+ "target": 7282,
"name": "UpdateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -302901,7 +303771,7 @@
{
"title": "Properties",
"children": [
- 24588
+ 7299
]
}
],
@@ -302958,7 +303828,7 @@
},
{
"type": "reference",
- "target": 24573,
+ "target": 7284,
"name": "UpdateInventoryItemsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -302971,7 +303841,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24573,
+ "target": 7284,
"name": "UpdateInventoryItemsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -302982,14 +303852,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24589,
+ "id": 7300,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24590,
+ "id": 7301,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -303003,7 +303873,7 @@
],
"signatures": [
{
- "id": 24591,
+ "id": 7302,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -303017,7 +303887,7 @@
],
"parameters": [
{
- "id": 24592,
+ "id": 7303,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -303028,14 +303898,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24593,
+ "id": 7304,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24594,
+ "id": 7305,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -303059,7 +303929,7 @@
{
"title": "Properties",
"children": [
- 24594
+ 7305
]
}
],
@@ -303122,7 +303992,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24573,
+ "target": 7284,
"name": "UpdateInventoryItemsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -303138,7 +304008,7 @@
{
"title": "Methods",
"children": [
- 24590
+ 7301
]
}
],
@@ -303160,7 +304030,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24573,
+ "target": 7284,
"name": "UpdateInventoryItemsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -303176,7 +304046,7 @@
}
},
{
- "id": 24595,
+ "id": 7306,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -303199,7 +304069,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24596,
+ "id": 7307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -303213,7 +304083,7 @@
],
"signatures": [
{
- "id": 24597,
+ "id": 7308,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -303241,7 +304111,7 @@
],
"typeParameters": [
{
- "id": 24598,
+ "id": 7309,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -303252,7 +304122,7 @@
}
},
{
- "id": 24599,
+ "id": 7310,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -303265,7 +304135,7 @@
],
"parameters": [
{
- "id": 24600,
+ "id": 7311,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -303298,7 +304168,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -303309,13 +304179,13 @@
},
"trueType": {
"type": "reference",
- "target": 24571,
+ "target": 7282,
"name": "UpdateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -303348,7 +304218,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -303359,13 +304229,13 @@
},
"trueType": {
"type": "reference",
- "target": 24573,
+ "target": 7284,
"name": "UpdateInventoryItemsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -303385,7 +304255,7 @@
}
},
{
- "id": 24601,
+ "id": 7312,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -303408,7 +304278,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24602,
+ "id": 7313,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -303422,7 +304292,7 @@
],
"signatures": [
{
- "id": 24603,
+ "id": 7314,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -303444,7 +304314,7 @@
}
},
{
- "id": 24604,
+ "id": 7315,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -303467,7 +304337,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24605,
+ "id": 7316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -303481,7 +304351,7 @@
],
"signatures": [
{
- "id": 24606,
+ "id": 7317,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -303495,7 +304365,7 @@
],
"parameters": [
{
- "id": 24607,
+ "id": 7318,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -303521,7 +304391,7 @@
}
},
{
- "id": 24608,
+ "id": 7319,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -303544,7 +304414,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24609,
+ "id": 7320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -303555,7 +304425,7 @@
],
"documents": [
{
- "id": 42453,
+ "id": 25394,
"name": "updateInventoryItemsStep",
"variant": "document",
"kind": 8388608,
@@ -303582,21 +304452,21 @@
}
],
"childrenIncludingDocuments": [
- 24583,
- 24595,
- 24601,
- 24604,
- 24608
+ 7294,
+ 7306,
+ 7312,
+ 7315,
+ 7319
],
"groups": [
{
"title": "Properties",
"children": [
- 24583,
- 24595,
- 24601,
- 24604,
- 24608
+ 7294,
+ 7306,
+ 7312,
+ 7315,
+ 7319
]
}
],
@@ -303605,12 +304475,12 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-items.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L51"
}
],
"signatures": [
{
- "id": 24576,
+ "id": 7287,
"name": "updateInventoryItemsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -303657,12 +304527,12 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-items.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-items.ts#L51"
}
],
"typeParameters": [
{
- "id": 24577,
+ "id": 7288,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -303673,7 +304543,7 @@
}
},
{
- "id": 24578,
+ "id": 7289,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -303686,7 +304556,7 @@
],
"parameters": [
{
- "id": 24579,
+ "id": 7290,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -303710,14 +304580,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24580,
+ "id": 7291,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24581,
+ "id": 7292,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -303740,7 +304610,7 @@
}
},
{
- "id": 24582,
+ "id": 7293,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -303767,8 +304637,8 @@
{
"title": "Properties",
"children": [
- 24581,
- 24582
+ 7292,
+ 7293
]
}
],
@@ -303843,26 +304713,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 24571,
+ "target": 7282,
"name": "UpdateInventoryItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 24573,
+ "target": 7284,
"name": "UpdateInventoryItemsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -303877,7 +304747,7 @@
]
},
{
- "id": 24611,
+ "id": 7322,
"name": "updates",
"variant": "declaration",
"kind": 1024,
@@ -303895,7 +304765,7 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-levels.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L20"
}
],
"type": {
@@ -303912,7 +304782,7 @@
}
},
{
- "id": 24613,
+ "id": 7324,
"name": "updateInventoryLevelsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -303924,7 +304794,7 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-levels.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L28"
}
],
"type": {
@@ -303934,7 +304804,7 @@
"defaultValue": "\"update-inventory-levels-workflow\""
},
{
- "id": 24614,
+ "id": 7325,
"name": "updateInventoryLevelsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -303978,7 +304848,7 @@
},
"children": [
{
- "id": 24622,
+ "id": 7333,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -304001,7 +304871,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24623,
+ "id": 7334,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -304015,7 +304885,7 @@
],
"signatures": [
{
- "id": 24624,
+ "id": 7335,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -304043,7 +304913,7 @@
],
"parameters": [
{
- "id": 24625,
+ "id": 7336,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -304059,14 +304929,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24626,
+ "id": 7337,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24627,
+ "id": 7338,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -304091,7 +304961,7 @@
"types": [
{
"type": "reference",
- "target": 24610,
+ "target": 7321,
"name": "UpdateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -304104,7 +304974,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24610,
+ "target": 7321,
"name": "UpdateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -304120,7 +304990,7 @@
{
"title": "Properties",
"children": [
- 24627
+ 7338
]
}
],
@@ -304177,7 +305047,7 @@
},
{
"type": "reference",
- "target": 24612,
+ "target": 7323,
"name": "UpdateInventoryLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -304190,7 +305060,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24612,
+ "target": 7323,
"name": "UpdateInventoryLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -304201,14 +305071,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24628,
+ "id": 7339,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24629,
+ "id": 7340,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -304222,7 +305092,7 @@
],
"signatures": [
{
- "id": 24630,
+ "id": 7341,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -304236,7 +305106,7 @@
],
"parameters": [
{
- "id": 24631,
+ "id": 7342,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -304247,14 +305117,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24632,
+ "id": 7343,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24633,
+ "id": 7344,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -304278,7 +305148,7 @@
{
"title": "Properties",
"children": [
- 24633
+ 7344
]
}
],
@@ -304341,7 +305211,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24612,
+ "target": 7323,
"name": "UpdateInventoryLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -304357,7 +305227,7 @@
{
"title": "Methods",
"children": [
- 24629
+ 7340
]
}
],
@@ -304379,7 +305249,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24612,
+ "target": 7323,
"name": "UpdateInventoryLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -304395,7 +305265,7 @@
}
},
{
- "id": 24634,
+ "id": 7345,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -304418,7 +305288,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24635,
+ "id": 7346,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -304432,7 +305302,7 @@
],
"signatures": [
{
- "id": 24636,
+ "id": 7347,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -304460,7 +305330,7 @@
],
"typeParameters": [
{
- "id": 24637,
+ "id": 7348,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -304471,7 +305341,7 @@
}
},
{
- "id": 24638,
+ "id": 7349,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -304484,7 +305354,7 @@
],
"parameters": [
{
- "id": 24639,
+ "id": 7350,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -304517,7 +305387,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -304528,13 +305398,13 @@
},
"trueType": {
"type": "reference",
- "target": 24610,
+ "target": 7321,
"name": "UpdateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -304567,7 +305437,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -304578,13 +305448,13 @@
},
"trueType": {
"type": "reference",
- "target": 24612,
+ "target": 7323,
"name": "UpdateInventoryLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -304604,7 +305474,7 @@
}
},
{
- "id": 24640,
+ "id": 7351,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -304627,7 +305497,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24641,
+ "id": 7352,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -304641,7 +305511,7 @@
],
"signatures": [
{
- "id": 24642,
+ "id": 7353,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -304663,7 +305533,7 @@
}
},
{
- "id": 24643,
+ "id": 7354,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -304686,7 +305556,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24644,
+ "id": 7355,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -304700,7 +305570,7 @@
],
"signatures": [
{
- "id": 24645,
+ "id": 7356,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -304714,7 +305584,7 @@
],
"parameters": [
{
- "id": 24646,
+ "id": 7357,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -304740,7 +305610,7 @@
}
},
{
- "id": 24647,
+ "id": 7358,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -304763,7 +305633,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24648,
+ "id": 7359,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -304774,7 +305644,7 @@
],
"documents": [
{
- "id": 42454,
+ "id": 25395,
"name": "updateInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -304801,21 +305671,21 @@
}
],
"childrenIncludingDocuments": [
- 24622,
- 24634,
- 24640,
- 24643,
- 24647
+ 7333,
+ 7345,
+ 7351,
+ 7354,
+ 7358
],
"groups": [
{
"title": "Properties",
"children": [
- 24622,
- 24634,
- 24640,
- 24643,
- 24647
+ 7333,
+ 7345,
+ 7351,
+ 7354,
+ 7358
]
}
],
@@ -304824,12 +305694,12 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-levels.ts",
"line": 56,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L56"
}
],
"signatures": [
{
- "id": 24615,
+ "id": 7326,
"name": "updateInventoryLevelsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -304876,12 +305746,12 @@
"fileName": "core-flows/src/inventory/workflows/update-inventory-levels.ts",
"line": 56,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/inventory/workflows/update-inventory-levels.ts#L56"
}
],
"typeParameters": [
{
- "id": 24616,
+ "id": 7327,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -304892,7 +305762,7 @@
}
},
{
- "id": 24617,
+ "id": 7328,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -304905,7 +305775,7 @@
],
"parameters": [
{
- "id": 24618,
+ "id": 7329,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -304929,14 +305799,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24619,
+ "id": 7330,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24620,
+ "id": 7331,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -304959,7 +305829,7 @@
}
},
{
- "id": 24621,
+ "id": 7332,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -304986,8 +305856,8 @@
{
"title": "Properties",
"children": [
- 24620,
- 24621
+ 7331,
+ 7332
]
}
],
@@ -305062,26 +305932,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 24610,
+ "target": 7321,
"name": "UpdateInventoryLevelsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 24612,
+ "target": 7323,
"name": "UpdateInventoryLevelsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -305100,21 +305970,21 @@
]
},
{
- "id": 17329,
+ "id": 34,
"name": "Invite",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17330,
+ "id": 35,
"name": "Steps_Invite",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 24793,
+ "id": 7504,
"name": "createInviteStepId",
"variant": "declaration",
"kind": 32,
@@ -305126,7 +305996,7 @@
"fileName": "core-flows/src/invite/steps/create-invites.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/create-invites.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/create-invites.ts#L8"
}
],
"type": {
@@ -305136,7 +306006,7 @@
"defaultValue": "\"create-invite-step\""
},
{
- "id": 24794,
+ "id": 7505,
"name": "createInviteStep",
"variant": "declaration",
"kind": 64,
@@ -305171,7 +306041,7 @@
},
"children": [
{
- "id": 24803,
+ "id": 7514,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -305189,7 +306059,7 @@
}
},
{
- "id": 24804,
+ "id": 7515,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -305211,8 +306081,8 @@
{
"title": "Properties",
"children": [
- 24803,
- 24804
+ 7514,
+ 7515
]
}
],
@@ -305221,12 +306091,12 @@
"fileName": "core-flows/src/invite/steps/create-invites.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/create-invites.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/create-invites.ts#L19"
}
],
"signatures": [
{
- "id": 24795,
+ "id": 7506,
"name": "createInviteStep",
"variant": "signature",
"kind": 4096,
@@ -305264,12 +306134,12 @@
"fileName": "core-flows/src/invite/steps/create-invites.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/create-invites.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/create-invites.ts#L19"
}
],
"parameters": [
{
- "id": 24796,
+ "id": 7507,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -305394,14 +306264,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24797,
+ "id": 7508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24798,
+ "id": 7509,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -305415,7 +306285,7 @@
],
"signatures": [
{
- "id": 24799,
+ "id": 7510,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -305429,7 +306299,7 @@
],
"parameters": [
{
- "id": 24800,
+ "id": 7511,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -305440,14 +306310,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24801,
+ "id": 7512,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24802,
+ "id": 7513,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -305471,7 +306341,7 @@
{
"title": "Properties",
"children": [
- 24802
+ 7513
]
}
],
@@ -305556,7 +306426,7 @@
{
"title": "Methods",
"children": [
- 24798
+ 7509
]
}
],
@@ -305598,7 +306468,7 @@
]
},
{
- "id": 24806,
+ "id": 7517,
"name": "deleteInvitesStepId",
"variant": "declaration",
"kind": 32,
@@ -305610,7 +306480,7 @@
"fileName": "core-flows/src/invite/steps/delete-invites.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/delete-invites.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/delete-invites.ts#L10"
}
],
"type": {
@@ -305620,7 +306490,7 @@
"defaultValue": "\"delete-invites-step\""
},
{
- "id": 24807,
+ "id": 7518,
"name": "deleteInvitesStep",
"variant": "declaration",
"kind": 64,
@@ -305655,7 +306525,7 @@
},
"children": [
{
- "id": 24810,
+ "id": 7521,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -305673,7 +306543,7 @@
}
},
{
- "id": 24811,
+ "id": 7522,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -305695,8 +306565,8 @@
{
"title": "Properties",
"children": [
- 24810,
- 24811
+ 7521,
+ 7522
]
}
],
@@ -305705,12 +306575,12 @@
"fileName": "core-flows/src/invite/steps/delete-invites.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/delete-invites.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/delete-invites.ts#L14"
}
],
"signatures": [
{
- "id": 24808,
+ "id": 7519,
"name": "deleteInvitesStep",
"variant": "signature",
"kind": 4096,
@@ -305748,12 +306618,12 @@
"fileName": "core-flows/src/invite/steps/delete-invites.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/delete-invites.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/delete-invites.ts#L14"
}
],
"parameters": [
{
- "id": 24809,
+ "id": 7520,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -305763,7 +306633,7 @@
"types": [
{
"type": "reference",
- "target": 24805,
+ "target": 7516,
"name": "DeleteInvitesStepInput",
"package": "@medusajs/core-flows"
},
@@ -305776,7 +306646,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24805,
+ "target": 7516,
"name": "DeleteInvitesStepInput",
"package": "@medusajs/core-flows"
}
@@ -305796,7 +306666,7 @@
]
},
{
- "id": 24813,
+ "id": 7524,
"name": "refreshInviteTokensStepId",
"variant": "declaration",
"kind": 32,
@@ -305808,7 +306678,7 @@
"fileName": "core-flows/src/invite/steps/refresh-invite-tokens.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/refresh-invite-tokens.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/refresh-invite-tokens.ts#L11"
}
],
"type": {
@@ -305818,7 +306688,7 @@
"defaultValue": "\"refresh-invite-tokens-step\""
},
{
- "id": 24814,
+ "id": 7525,
"name": "refreshInviteTokensStep",
"variant": "declaration",
"kind": 64,
@@ -305844,7 +306714,7 @@
},
"children": [
{
- "id": 24823,
+ "id": 7534,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -305862,7 +306732,7 @@
}
},
{
- "id": 24824,
+ "id": 7535,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -305884,8 +306754,8 @@
{
"title": "Properties",
"children": [
- 24823,
- 24824
+ 7534,
+ 7535
]
}
],
@@ -305894,12 +306764,12 @@
"fileName": "core-flows/src/invite/steps/refresh-invite-tokens.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/refresh-invite-tokens.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/refresh-invite-tokens.ts#L15"
}
],
"signatures": [
{
- "id": 24815,
+ "id": 7526,
"name": "refreshInviteTokensStep",
"variant": "signature",
"kind": 4096,
@@ -305928,12 +306798,12 @@
"fileName": "core-flows/src/invite/steps/refresh-invite-tokens.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/refresh-invite-tokens.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/refresh-invite-tokens.ts#L15"
}
],
"parameters": [
{
- "id": 24816,
+ "id": 7527,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -305943,7 +306813,7 @@
"types": [
{
"type": "reference",
- "target": 24812,
+ "target": 7523,
"name": "RefreshInviteTokensStepInput",
"package": "@medusajs/core-flows"
},
@@ -305956,7 +306826,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24812,
+ "target": 7523,
"name": "RefreshInviteTokensStepInput",
"package": "@medusajs/core-flows"
}
@@ -306046,14 +306916,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24817,
+ "id": 7528,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24818,
+ "id": 7529,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -306067,7 +306937,7 @@
],
"signatures": [
{
- "id": 24819,
+ "id": 7530,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -306081,7 +306951,7 @@
],
"parameters": [
{
- "id": 24820,
+ "id": 7531,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -306092,14 +306962,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24821,
+ "id": 7532,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24822,
+ "id": 7533,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -306123,7 +306993,7 @@
{
"title": "Properties",
"children": [
- 24822
+ 7533
]
}
],
@@ -306208,7 +307078,7 @@
{
"title": "Methods",
"children": [
- 24818
+ 7529
]
}
],
@@ -306250,7 +307120,7 @@
]
},
{
- "id": 24826,
+ "id": 7537,
"name": "validateTokenStepId",
"variant": "declaration",
"kind": 32,
@@ -306262,7 +307132,7 @@
"fileName": "core-flows/src/invite/steps/validate-token.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/validate-token.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/validate-token.ts#L10"
}
],
"type": {
@@ -306272,7 +307142,7 @@
"defaultValue": "\"validate-invite-token-step\""
},
{
- "id": 24827,
+ "id": 7538,
"name": "validateTokenStep",
"variant": "declaration",
"kind": 64,
@@ -306298,7 +307168,7 @@
},
"children": [
{
- "id": 24846,
+ "id": 7557,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -306316,7 +307186,7 @@
}
},
{
- "id": 24847,
+ "id": 7558,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -306338,8 +307208,8 @@
{
"title": "Properties",
"children": [
- 24846,
- 24847
+ 7557,
+ 7558
]
}
],
@@ -306348,12 +307218,12 @@
"fileName": "core-flows/src/invite/steps/validate-token.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/validate-token.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/validate-token.ts#L15"
}
],
"signatures": [
{
- "id": 24828,
+ "id": 7539,
"name": "validateTokenStep",
"variant": "signature",
"kind": 4096,
@@ -306382,12 +307252,12 @@
"fileName": "core-flows/src/invite/steps/validate-token.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/steps/validate-token.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/steps/validate-token.ts#L15"
}
],
"parameters": [
{
- "id": 24829,
+ "id": 7540,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -306424,14 +307294,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24830,
+ "id": 7541,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24831,
+ "id": 7542,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -306477,7 +307347,7 @@
}
},
{
- "id": 24832,
+ "id": 7543,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -306523,7 +307393,7 @@
}
},
{
- "id": 24833,
+ "id": 7544,
"name": "accepted",
"variant": "declaration",
"kind": 1024,
@@ -306569,7 +307439,7 @@
}
},
{
- "id": 24834,
+ "id": 7545,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -306615,7 +307485,7 @@
}
},
{
- "id": 24835,
+ "id": 7546,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -306671,7 +307541,7 @@
}
},
{
- "id": 24836,
+ "id": 7547,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -306760,7 +307630,7 @@
}
},
{
- "id": 24837,
+ "id": 7548,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -306816,7 +307686,7 @@
}
},
{
- "id": 24838,
+ "id": 7549,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -306872,7 +307742,7 @@
}
},
{
- "id": 24839,
+ "id": 7550,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -306945,15 +307815,15 @@
{
"title": "Properties",
"children": [
- 24831,
- 24832,
- 24833,
- 24834,
- 24835,
- 24836,
- 24837,
- 24838,
- 24839
+ 7542,
+ 7543,
+ 7544,
+ 7545,
+ 7546,
+ 7547,
+ 7548,
+ 7549,
+ 7550
]
}
],
@@ -306998,14 +307868,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24840,
+ "id": 7551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24841,
+ "id": 7552,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -307019,7 +307889,7 @@
],
"signatures": [
{
- "id": 24842,
+ "id": 7553,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -307033,7 +307903,7 @@
],
"parameters": [
{
- "id": 24843,
+ "id": 7554,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -307044,14 +307914,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24844,
+ "id": 7555,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24845,
+ "id": 7556,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -307075,7 +307945,7 @@
{
"title": "Properties",
"children": [
- 24845
+ 7556
]
}
],
@@ -307157,7 +308027,7 @@
{
"title": "Methods",
"children": [
- 24841
+ 7552
]
}
],
@@ -307198,14 +308068,14 @@
]
},
{
- "id": 17331,
+ "id": 36,
"name": "Workflows_Invite",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 24848,
+ "id": 7559,
"name": "createInvitesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -307217,7 +308087,7 @@
"fileName": "core-flows/src/invite/workflows/create-invites.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/create-invites.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/create-invites.ts#L11"
}
],
"type": {
@@ -307227,7 +308097,7 @@
"defaultValue": "\"create-invite-step\""
},
{
- "id": 24849,
+ "id": 7560,
"name": "createInvitesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -307280,7 +308150,7 @@
},
"children": [
{
- "id": 24857,
+ "id": 7568,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -307303,7 +308173,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24858,
+ "id": 7569,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -307317,7 +308187,7 @@
],
"signatures": [
{
- "id": 24859,
+ "id": 7570,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -307345,7 +308215,7 @@
],
"parameters": [
{
- "id": 24860,
+ "id": 7571,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -307361,14 +308231,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24861,
+ "id": 7572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24862,
+ "id": 7573,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -307428,7 +308298,7 @@
{
"title": "Properties",
"children": [
- 24862
+ 7573
]
}
],
@@ -307521,14 +308391,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24863,
+ "id": 7574,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24864,
+ "id": 7575,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -307542,7 +308412,7 @@
],
"signatures": [
{
- "id": 24865,
+ "id": 7576,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -307556,7 +308426,7 @@
],
"parameters": [
{
- "id": 24866,
+ "id": 7577,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -307567,14 +308437,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24867,
+ "id": 7578,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24868,
+ "id": 7579,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -307598,7 +308468,7 @@
{
"title": "Properties",
"children": [
- 24868
+ 7579
]
}
],
@@ -307683,7 +308553,7 @@
{
"title": "Methods",
"children": [
- 24864
+ 7575
]
}
],
@@ -307727,7 +308597,7 @@
}
},
{
- "id": 24869,
+ "id": 7580,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -307750,7 +308620,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24870,
+ "id": 7581,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -307764,7 +308634,7 @@
],
"signatures": [
{
- "id": 24871,
+ "id": 7582,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -307792,7 +308662,7 @@
],
"typeParameters": [
{
- "id": 24872,
+ "id": 7583,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -307803,7 +308673,7 @@
}
},
{
- "id": 24873,
+ "id": 7584,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -307816,7 +308686,7 @@
],
"parameters": [
{
- "id": 24874,
+ "id": 7585,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -307849,7 +308719,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -307869,7 +308739,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -307902,7 +308772,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -307925,7 +308795,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -307945,7 +308815,7 @@
}
},
{
- "id": 24875,
+ "id": 7586,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -307968,7 +308838,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24876,
+ "id": 7587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -307982,7 +308852,7 @@
],
"signatures": [
{
- "id": 24877,
+ "id": 7588,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -308004,7 +308874,7 @@
}
},
{
- "id": 24878,
+ "id": 7589,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -308027,7 +308897,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24879,
+ "id": 7590,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -308041,7 +308911,7 @@
],
"signatures": [
{
- "id": 24880,
+ "id": 7591,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -308055,7 +308925,7 @@
],
"parameters": [
{
- "id": 24881,
+ "id": 7592,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -308081,7 +308951,7 @@
}
},
{
- "id": 24882,
+ "id": 7593,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -308104,7 +308974,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24883,
+ "id": 7594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -308115,7 +308985,7 @@
],
"documents": [
{
- "id": 42455,
+ "id": 25396,
"name": "createInviteStep",
"variant": "document",
"kind": 8388608,
@@ -308141,7 +309011,7 @@
"frontmatter": {}
},
{
- "id": 42456,
+ "id": 25397,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -308168,21 +309038,21 @@
}
],
"childrenIncludingDocuments": [
- 24857,
- 24869,
- 24875,
- 24878,
- 24882
+ 7568,
+ 7580,
+ 7586,
+ 7589,
+ 7593
],
"groups": [
{
"title": "Properties",
"children": [
- 24857,
- 24869,
- 24875,
- 24878,
- 24882
+ 7568,
+ 7580,
+ 7586,
+ 7589,
+ 7593
]
}
],
@@ -308191,12 +309061,12 @@
"fileName": "core-flows/src/invite/workflows/create-invites.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/create-invites.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/create-invites.ts#L35"
}
],
"signatures": [
{
- "id": 24850,
+ "id": 7561,
"name": "createInvitesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -308252,12 +309122,12 @@
"fileName": "core-flows/src/invite/workflows/create-invites.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/create-invites.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/create-invites.ts#L35"
}
],
"typeParameters": [
{
- "id": 24851,
+ "id": 7562,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -308268,7 +309138,7 @@
}
},
{
- "id": 24852,
+ "id": 7563,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -308281,7 +309151,7 @@
],
"parameters": [
{
- "id": 24853,
+ "id": 7564,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -308305,14 +309175,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24854,
+ "id": 7565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24855,
+ "id": 7566,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -308335,7 +309205,7 @@
}
},
{
- "id": 24856,
+ "id": 7567,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -308362,8 +309232,8 @@
{
"title": "Properties",
"children": [
- 24855,
- 24856
+ 7566,
+ 7567
]
}
],
@@ -308459,14 +309329,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -308481,7 +309351,7 @@
]
},
{
- "id": 24884,
+ "id": 7595,
"name": "deleteInvitesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -308493,7 +309363,7 @@
"fileName": "core-flows/src/invite/workflows/delete-invites.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/delete-invites.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/delete-invites.ts#L11"
}
],
"type": {
@@ -308503,7 +309373,7 @@
"defaultValue": "\"delete-invites-workflow\""
},
{
- "id": 24885,
+ "id": 7596,
"name": "deleteInvitesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -308556,7 +309426,7 @@
},
"children": [
{
- "id": 24893,
+ "id": 7604,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -308579,7 +309449,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24894,
+ "id": 7605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -308593,7 +309463,7 @@
],
"signatures": [
{
- "id": 24895,
+ "id": 7606,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -308621,7 +309491,7 @@
],
"parameters": [
{
- "id": 24896,
+ "id": 7607,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -308637,14 +309507,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24897,
+ "id": 7608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24898,
+ "id": 7609,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -308704,7 +309574,7 @@
{
"title": "Properties",
"children": [
- 24898
+ 7609
]
}
],
@@ -308740,14 +309610,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24899,
+ "id": 7610,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24900,
+ "id": 7611,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -308761,7 +309631,7 @@
],
"signatures": [
{
- "id": 24901,
+ "id": 7612,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -308775,7 +309645,7 @@
],
"parameters": [
{
- "id": 24902,
+ "id": 7613,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -308786,14 +309656,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24903,
+ "id": 7614,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24904,
+ "id": 7615,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -308817,7 +309687,7 @@
{
"title": "Properties",
"children": [
- 24904
+ 7615
]
}
],
@@ -308894,7 +309764,7 @@
{
"title": "Methods",
"children": [
- 24900
+ 7611
]
}
],
@@ -308930,7 +309800,7 @@
}
},
{
- "id": 24905,
+ "id": 7616,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -308953,7 +309823,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24906,
+ "id": 7617,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -308967,7 +309837,7 @@
],
"signatures": [
{
- "id": 24907,
+ "id": 7618,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -308995,7 +309865,7 @@
],
"typeParameters": [
{
- "id": 24908,
+ "id": 7619,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -309006,7 +309876,7 @@
}
},
{
- "id": 24909,
+ "id": 7620,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -309019,7 +309889,7 @@
],
"parameters": [
{
- "id": 24910,
+ "id": 7621,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -309052,7 +309922,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -309072,7 +309942,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -309105,7 +309975,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -309120,7 +309990,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -309140,7 +310010,7 @@
}
},
{
- "id": 24911,
+ "id": 7622,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -309163,7 +310033,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24912,
+ "id": 7623,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -309177,7 +310047,7 @@
],
"signatures": [
{
- "id": 24913,
+ "id": 7624,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -309199,7 +310069,7 @@
}
},
{
- "id": 24914,
+ "id": 7625,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -309222,7 +310092,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24915,
+ "id": 7626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -309236,7 +310106,7 @@
],
"signatures": [
{
- "id": 24916,
+ "id": 7627,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -309250,7 +310120,7 @@
],
"parameters": [
{
- "id": 24917,
+ "id": 7628,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -309276,7 +310146,7 @@
}
},
{
- "id": 24918,
+ "id": 7629,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -309299,7 +310169,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24919,
+ "id": 7630,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -309310,7 +310180,7 @@
],
"documents": [
{
- "id": 42457,
+ "id": 25398,
"name": "deleteInvitesStep",
"variant": "document",
"kind": 8388608,
@@ -309336,7 +310206,7 @@
"frontmatter": {}
},
{
- "id": 42458,
+ "id": 25399,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -309363,21 +310233,21 @@
}
],
"childrenIncludingDocuments": [
- 24893,
- 24905,
- 24911,
- 24914,
- 24918
+ 7604,
+ 7616,
+ 7622,
+ 7625,
+ 7629
],
"groups": [
{
"title": "Properties",
"children": [
- 24893,
- 24905,
- 24911,
- 24914,
- 24918
+ 7604,
+ 7616,
+ 7622,
+ 7625,
+ 7629
]
}
],
@@ -309386,12 +310256,12 @@
"fileName": "core-flows/src/invite/workflows/delete-invites.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/delete-invites.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/delete-invites.ts#L31"
}
],
"signatures": [
{
- "id": 24886,
+ "id": 7597,
"name": "deleteInvitesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -309447,12 +310317,12 @@
"fileName": "core-flows/src/invite/workflows/delete-invites.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/delete-invites.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/delete-invites.ts#L31"
}
],
"typeParameters": [
{
- "id": 24887,
+ "id": 7598,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -309463,7 +310333,7 @@
}
},
{
- "id": 24888,
+ "id": 7599,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -309476,7 +310346,7 @@
],
"parameters": [
{
- "id": 24889,
+ "id": 7600,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -309500,14 +310370,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24890,
+ "id": 7601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24891,
+ "id": 7602,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -309530,7 +310400,7 @@
}
},
{
- "id": 24892,
+ "id": 7603,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -309557,8 +310427,8 @@
{
"title": "Properties",
"children": [
- 24891,
- 24892
+ 7602,
+ 7603
]
}
],
@@ -309646,14 +310516,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -309668,7 +310538,7 @@
]
},
{
- "id": 24920,
+ "id": 7631,
"name": "acceptInviteWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -309680,7 +310550,7 @@
"fileName": "core-flows/src/invite/workflows/accept-invite.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/accept-invite.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/accept-invite.ts#L16"
}
],
"type": {
@@ -309690,7 +310560,7 @@
"defaultValue": "\"accept-invite-workflow\""
},
{
- "id": 24921,
+ "id": 7632,
"name": "acceptInviteWorkflow",
"variant": "declaration",
"kind": 64,
@@ -309761,7 +310631,7 @@
},
"children": [
{
- "id": 24929,
+ "id": 7640,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -309784,7 +310654,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24930,
+ "id": 7641,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -309798,7 +310668,7 @@
],
"signatures": [
{
- "id": 24931,
+ "id": 7642,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -309826,7 +310696,7 @@
],
"parameters": [
{
- "id": 24932,
+ "id": 7643,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -309842,14 +310712,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24933,
+ "id": 7644,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24934,
+ "id": 7645,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -309909,7 +310779,7 @@
{
"title": "Properties",
"children": [
- 24934
+ 7645
]
}
],
@@ -310002,14 +310872,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24935,
+ "id": 7646,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24936,
+ "id": 7647,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -310023,7 +310893,7 @@
],
"signatures": [
{
- "id": 24937,
+ "id": 7648,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -310037,7 +310907,7 @@
],
"parameters": [
{
- "id": 24938,
+ "id": 7649,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -310048,14 +310918,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24939,
+ "id": 7650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24940,
+ "id": 7651,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -310079,7 +310949,7 @@
{
"title": "Properties",
"children": [
- 24940
+ 7651
]
}
],
@@ -310164,7 +311034,7 @@
{
"title": "Methods",
"children": [
- 24936
+ 7647
]
}
],
@@ -310208,7 +311078,7 @@
}
},
{
- "id": 24941,
+ "id": 7652,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -310231,7 +311101,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24942,
+ "id": 7653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -310245,7 +311115,7 @@
],
"signatures": [
{
- "id": 24943,
+ "id": 7654,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -310273,7 +311143,7 @@
],
"typeParameters": [
{
- "id": 24944,
+ "id": 7655,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -310284,7 +311154,7 @@
}
},
{
- "id": 24945,
+ "id": 7656,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -310297,7 +311167,7 @@
],
"parameters": [
{
- "id": 24946,
+ "id": 7657,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -310330,7 +311200,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -310350,7 +311220,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -310383,7 +311253,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -310406,7 +311276,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -310426,7 +311296,7 @@
}
},
{
- "id": 24947,
+ "id": 7658,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -310449,7 +311319,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24948,
+ "id": 7659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -310463,7 +311333,7 @@
],
"signatures": [
{
- "id": 24949,
+ "id": 7660,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -310485,7 +311355,7 @@
}
},
{
- "id": 24950,
+ "id": 7661,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -310508,7 +311378,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24951,
+ "id": 7662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -310522,7 +311392,7 @@
],
"signatures": [
{
- "id": 24952,
+ "id": 7663,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -310536,7 +311406,7 @@
],
"parameters": [
{
- "id": 24953,
+ "id": 7664,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -310562,7 +311432,7 @@
}
},
{
- "id": 24954,
+ "id": 7665,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -310585,7 +311455,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24955,
+ "id": 7666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -310596,7 +311466,7 @@
],
"documents": [
{
- "id": 42459,
+ "id": 25400,
"name": "validateTokenStep",
"variant": "document",
"kind": 8388608,
@@ -310622,7 +311492,7 @@
"frontmatter": {}
},
{
- "id": 42460,
+ "id": 25401,
"name": "createUsersWorkflow",
"variant": "document",
"kind": 8388608,
@@ -310648,7 +311518,7 @@
"frontmatter": {}
},
{
- "id": 42461,
+ "id": 25402,
"name": "setAuthAppMetadataStep",
"variant": "document",
"kind": 8388608,
@@ -310674,7 +311544,7 @@
"frontmatter": {}
},
{
- "id": 42462,
+ "id": 25403,
"name": "deleteInvitesStep",
"variant": "document",
"kind": 8388608,
@@ -310700,7 +311570,7 @@
"frontmatter": {}
},
{
- "id": 42463,
+ "id": 25404,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -310727,21 +311597,21 @@
}
],
"childrenIncludingDocuments": [
- 24929,
- 24941,
- 24947,
- 24950,
- 24954
+ 7640,
+ 7652,
+ 7658,
+ 7661,
+ 7665
],
"groups": [
{
"title": "Properties",
"children": [
- 24929,
- 24941,
- 24947,
- 24950,
- 24954
+ 7640,
+ 7652,
+ 7658,
+ 7661,
+ 7665
]
}
],
@@ -310750,12 +311620,12 @@
"fileName": "core-flows/src/invite/workflows/accept-invite.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/accept-invite.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/accept-invite.ts#L46"
}
],
"signatures": [
{
- "id": 24922,
+ "id": 7633,
"name": "acceptInviteWorkflow",
"variant": "signature",
"kind": 4096,
@@ -310829,12 +311699,12 @@
"fileName": "core-flows/src/invite/workflows/accept-invite.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/accept-invite.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/accept-invite.ts#L46"
}
],
"typeParameters": [
{
- "id": 24923,
+ "id": 7634,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -310845,7 +311715,7 @@
}
},
{
- "id": 24924,
+ "id": 7635,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -310858,7 +311728,7 @@
],
"parameters": [
{
- "id": 24925,
+ "id": 7636,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -310882,14 +311752,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24926,
+ "id": 7637,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24927,
+ "id": 7638,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -310912,7 +311782,7 @@
}
},
{
- "id": 24928,
+ "id": 7639,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -310939,8 +311809,8 @@
{
"title": "Properties",
"children": [
- 24927,
- 24928
+ 7638,
+ 7639
]
}
],
@@ -311036,14 +311906,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -311058,7 +311928,7 @@
]
},
{
- "id": 24956,
+ "id": 7667,
"name": "refreshInviteTokensWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -311070,7 +311940,7 @@
"fileName": "core-flows/src/invite/workflows/refresh-invite-tokens.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/refresh-invite-tokens.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/refresh-invite-tokens.ts#L13"
}
],
"type": {
@@ -311080,7 +311950,7 @@
"defaultValue": "\"refresh-invite-tokens-workflow\""
},
{
- "id": 24957,
+ "id": 7668,
"name": "refreshInviteTokensWorkflow",
"variant": "declaration",
"kind": 64,
@@ -311141,7 +312011,7 @@
},
"children": [
{
- "id": 24965,
+ "id": 7676,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -311164,7 +312034,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24966,
+ "id": 7677,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -311178,7 +312048,7 @@
],
"signatures": [
{
- "id": 24967,
+ "id": 7678,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -311206,7 +312076,7 @@
],
"parameters": [
{
- "id": 24968,
+ "id": 7679,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -311222,14 +312092,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24969,
+ "id": 7680,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24970,
+ "id": 7681,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -311289,7 +312159,7 @@
{
"title": "Properties",
"children": [
- 24970
+ 7681
]
}
],
@@ -311382,14 +312252,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24971,
+ "id": 7682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24972,
+ "id": 7683,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -311403,7 +312273,7 @@
],
"signatures": [
{
- "id": 24973,
+ "id": 7684,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -311417,7 +312287,7 @@
],
"parameters": [
{
- "id": 24974,
+ "id": 7685,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -311428,14 +312298,14 @@
{
"type": "reflection",
"declaration": {
- "id": 24975,
+ "id": 7686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24976,
+ "id": 7687,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -311459,7 +312329,7 @@
{
"title": "Properties",
"children": [
- 24976
+ 7687
]
}
],
@@ -311544,7 +312414,7 @@
{
"title": "Methods",
"children": [
- 24972
+ 7683
]
}
],
@@ -311588,7 +312458,7 @@
}
},
{
- "id": 24977,
+ "id": 7688,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -311611,7 +312481,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24978,
+ "id": 7689,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -311625,7 +312495,7 @@
],
"signatures": [
{
- "id": 24979,
+ "id": 7690,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -311653,7 +312523,7 @@
],
"typeParameters": [
{
- "id": 24980,
+ "id": 7691,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -311664,7 +312534,7 @@
}
},
{
- "id": 24981,
+ "id": 7692,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -311677,7 +312547,7 @@
],
"parameters": [
{
- "id": 24982,
+ "id": 7693,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -311710,7 +312580,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -311730,7 +312600,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -311763,7 +312633,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -311786,7 +312656,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -311806,7 +312676,7 @@
}
},
{
- "id": 24983,
+ "id": 7694,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -311829,7 +312699,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24984,
+ "id": 7695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -311843,7 +312713,7 @@
],
"signatures": [
{
- "id": 24985,
+ "id": 7696,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -311865,7 +312735,7 @@
}
},
{
- "id": 24986,
+ "id": 7697,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -311888,7 +312758,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24987,
+ "id": 7698,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -311902,7 +312772,7 @@
],
"signatures": [
{
- "id": 24988,
+ "id": 7699,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -311916,7 +312786,7 @@
],
"parameters": [
{
- "id": 24989,
+ "id": 7700,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -311942,7 +312812,7 @@
}
},
{
- "id": 24990,
+ "id": 7701,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -311965,7 +312835,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 24991,
+ "id": 7702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -311976,7 +312846,7 @@
],
"documents": [
{
- "id": 42464,
+ "id": 25405,
"name": "refreshInviteTokensStep",
"variant": "document",
"kind": 8388608,
@@ -312002,7 +312872,7 @@
"frontmatter": {}
},
{
- "id": 42465,
+ "id": 25406,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -312029,21 +312899,21 @@
}
],
"childrenIncludingDocuments": [
- 24965,
- 24977,
- 24983,
- 24986,
- 24990
+ 7676,
+ 7688,
+ 7694,
+ 7697,
+ 7701
],
"groups": [
{
"title": "Properties",
"children": [
- 24965,
- 24977,
- 24983,
- 24986,
- 24990
+ 7676,
+ 7688,
+ 7694,
+ 7697,
+ 7701
]
}
],
@@ -312052,12 +312922,12 @@
"fileName": "core-flows/src/invite/workflows/refresh-invite-tokens.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/refresh-invite-tokens.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/refresh-invite-tokens.ts#L37"
}
],
"signatures": [
{
- "id": 24958,
+ "id": 7669,
"name": "refreshInviteTokensWorkflow",
"variant": "signature",
"kind": 4096,
@@ -312121,12 +312991,12 @@
"fileName": "core-flows/src/invite/workflows/refresh-invite-tokens.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/invite/workflows/refresh-invite-tokens.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/invite/workflows/refresh-invite-tokens.ts#L37"
}
],
"typeParameters": [
{
- "id": 24959,
+ "id": 7670,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -312137,7 +313007,7 @@
}
},
{
- "id": 24960,
+ "id": 7671,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -312150,7 +313020,7 @@
],
"parameters": [
{
- "id": 24961,
+ "id": 7672,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -312174,14 +313044,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 24962,
+ "id": 7673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24963,
+ "id": 7674,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -312204,7 +313074,7 @@
}
},
{
- "id": 24964,
+ "id": 7675,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -312231,8 +313101,8 @@
{
"title": "Properties",
"children": [
- 24963,
- 24964
+ 7674,
+ 7675
]
}
],
@@ -312328,14 +313198,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -312354,21 +313224,21 @@
]
},
{
- "id": 17332,
+ "id": 37,
"name": "Line Item",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17333,
+ "id": 38,
"name": "Steps_Line Item",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 24993,
+ "id": 7704,
"name": "deleteLineItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -312380,7 +313250,7 @@
"fileName": "core-flows/src/line-item/steps/delete-line-items.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/delete-line-items.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/delete-line-items.ts#L10"
}
],
"type": {
@@ -312390,7 +313260,7 @@
"defaultValue": "\"delete-line-items\""
},
{
- "id": 24994,
+ "id": 7705,
"name": "deleteLineItemsStep",
"variant": "declaration",
"kind": 64,
@@ -312425,7 +313295,7 @@
},
"children": [
{
- "id": 24997,
+ "id": 7708,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -312443,7 +313313,7 @@
}
},
{
- "id": 24998,
+ "id": 7709,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -312465,8 +313335,8 @@
{
"title": "Properties",
"children": [
- 24997,
- 24998
+ 7708,
+ 7709
]
}
],
@@ -312475,12 +313345,12 @@
"fileName": "core-flows/src/line-item/steps/delete-line-items.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/delete-line-items.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/delete-line-items.ts#L14"
}
],
"signatures": [
{
- "id": 24995,
+ "id": 7706,
"name": "deleteLineItemsStep",
"variant": "signature",
"kind": 4096,
@@ -312518,12 +313388,12 @@
"fileName": "core-flows/src/line-item/steps/delete-line-items.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/delete-line-items.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/delete-line-items.ts#L14"
}
],
"parameters": [
{
- "id": 24996,
+ "id": 7707,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -312533,7 +313403,7 @@
"types": [
{
"type": "reference",
- "target": 24992,
+ "target": 7703,
"name": "DeleteLineItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -312546,7 +313416,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24992,
+ "target": 7703,
"name": "DeleteLineItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -312566,7 +313436,7 @@
]
},
{
- "id": 25000,
+ "id": 7711,
"name": "filters",
"variant": "declaration",
"kind": 1024,
@@ -312584,7 +313454,7 @@
"fileName": "core-flows/src/line-item/steps/list-line-items.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L17"
}
],
"type": {
@@ -312598,7 +313468,7 @@
}
},
{
- "id": 25001,
+ "id": 7712,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -312618,7 +313488,7 @@
"fileName": "core-flows/src/line-item/steps/list-line-items.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L24"
}
],
"type": {
@@ -312643,7 +313513,7 @@
}
},
{
- "id": 25002,
+ "id": 7713,
"name": "listLineItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -312655,7 +313525,7 @@
"fileName": "core-flows/src/line-item/steps/list-line-items.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L27"
}
],
"type": {
@@ -312665,7 +313535,7 @@
"defaultValue": "\"list-line-items\""
},
{
- "id": 25003,
+ "id": 7714,
"name": "listLineItemsStep",
"variant": "declaration",
"kind": 64,
@@ -312707,7 +313577,7 @@
},
"children": [
{
- "id": 25012,
+ "id": 7723,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -312725,7 +313595,7 @@
}
},
{
- "id": 25013,
+ "id": 7724,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -312747,8 +313617,8 @@
{
"title": "Properties",
"children": [
- 25012,
- 25013
+ 7723,
+ 7724
]
}
],
@@ -312757,12 +313627,12 @@
"fileName": "core-flows/src/line-item/steps/list-line-items.ts",
"line": 63,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L63"
}
],
"signatures": [
{
- "id": 25004,
+ "id": 7715,
"name": "listLineItemsStep",
"variant": "signature",
"kind": 4096,
@@ -312807,12 +313677,12 @@
"fileName": "core-flows/src/line-item/steps/list-line-items.ts",
"line": 63,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/list-line-items.ts#L63"
}
],
"parameters": [
{
- "id": 25005,
+ "id": 7716,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -312822,7 +313692,7 @@
"types": [
{
"type": "reference",
- "target": 24999,
+ "target": 7710,
"name": "ListLineItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -312835,7 +313705,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 24999,
+ "target": 7710,
"name": "ListLineItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -312925,14 +313795,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25006,
+ "id": 7717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25007,
+ "id": 7718,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -312946,7 +313816,7 @@
],
"signatures": [
{
- "id": 25008,
+ "id": 7719,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -312960,7 +313830,7 @@
],
"parameters": [
{
- "id": 25009,
+ "id": 7720,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -312971,14 +313841,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25010,
+ "id": 7721,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25011,
+ "id": 7722,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -313002,7 +313872,7 @@
{
"title": "Properties",
"children": [
- 25011
+ 7722
]
}
],
@@ -313087,7 +313957,7 @@
{
"title": "Methods",
"children": [
- 25007
+ 7718
]
}
],
@@ -313129,7 +313999,7 @@
]
},
{
- "id": 25014,
+ "id": 7725,
"name": "updateLineItemsStepWithSelectorId",
"variant": "declaration",
"kind": 32,
@@ -313141,7 +314011,7 @@
"fileName": "core-flows/src/line-item/steps/update-line-items.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/update-line-items.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/update-line-items.ts#L13"
}
],
"type": {
@@ -313151,7 +314021,7 @@
"defaultValue": "\"update-line-items-with-selector\""
},
{
- "id": 25015,
+ "id": 7726,
"name": "updateLineItemsStepWithSelector",
"variant": "declaration",
"kind": 64,
@@ -313186,7 +314056,7 @@
},
"children": [
{
- "id": 25024,
+ "id": 7735,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -313204,7 +314074,7 @@
}
},
{
- "id": 25025,
+ "id": 7736,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -313226,8 +314096,8 @@
{
"title": "Properties",
"children": [
- 25024,
- 25025
+ 7735,
+ 7736
]
}
],
@@ -313236,12 +314106,12 @@
"fileName": "core-flows/src/line-item/steps/update-line-items.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/update-line-items.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/update-line-items.ts#L28"
}
],
"signatures": [
{
- "id": 25016,
+ "id": 7727,
"name": "updateLineItemsStepWithSelector",
"variant": "signature",
"kind": 4096,
@@ -313279,12 +314149,12 @@
"fileName": "core-flows/src/line-item/steps/update-line-items.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/steps/update-line-items.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/steps/update-line-items.ts#L28"
}
],
"parameters": [
{
- "id": 25017,
+ "id": 7728,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -313403,14 +314273,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25018,
+ "id": 7729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25019,
+ "id": 7730,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -313424,7 +314294,7 @@
],
"signatures": [
{
- "id": 25020,
+ "id": 7731,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -313438,7 +314308,7 @@
],
"parameters": [
{
- "id": 25021,
+ "id": 7732,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -313449,14 +314319,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25022,
+ "id": 7733,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25023,
+ "id": 7734,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -313480,7 +314350,7 @@
{
"title": "Properties",
"children": [
- 25023
+ 7734
]
}
],
@@ -313565,7 +314435,7 @@
{
"title": "Methods",
"children": [
- 25019
+ 7730
]
}
],
@@ -313609,14 +314479,14 @@
]
},
{
- "id": 17334,
+ "id": 39,
"name": "Workflows_Line Item",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 25028,
+ "id": 7739,
"name": "cart_id",
"variant": "declaration",
"kind": 1024,
@@ -313634,7 +314504,7 @@
"fileName": "core-flows/src/line-item/workflows/delete-line-items.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L14"
}
],
"type": {
@@ -313643,7 +314513,7 @@
}
},
{
- "id": 25029,
+ "id": 7740,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -313661,7 +314531,7 @@
"fileName": "core-flows/src/line-item/workflows/delete-line-items.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L18"
}
],
"type": {
@@ -313673,7 +314543,7 @@
}
},
{
- "id": 25030,
+ "id": 7741,
"name": "deleteLineItemsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -313685,7 +314555,7 @@
"fileName": "core-flows/src/line-item/workflows/delete-line-items.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L21"
}
],
"type": {
@@ -313695,7 +314565,7 @@
"defaultValue": "\"delete-line-items\""
},
{
- "id": 25031,
+ "id": 7742,
"name": "deleteLineItemsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -313735,6 +314605,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -313748,7 +314627,7 @@
},
"children": [
{
- "id": 25039,
+ "id": 7750,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -313771,7 +314650,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25040,
+ "id": 7751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -313785,7 +314664,7 @@
],
"signatures": [
{
- "id": 25041,
+ "id": 7752,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -313813,7 +314692,7 @@
],
"parameters": [
{
- "id": 25042,
+ "id": 7753,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -313829,14 +314708,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25043,
+ "id": 7754,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25044,
+ "id": 7755,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -313864,7 +314743,7 @@
"types": [
{
"type": "reference",
- "target": 25026,
+ "target": 7737,
"name": "DeleteLineItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -313891,7 +314770,7 @@
"types": [
{
"type": "reference",
- "target": 25026,
+ "target": 7737,
"name": "DeleteLineItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -313918,7 +314797,7 @@
{
"title": "Properties",
"children": [
- 25044
+ 7755
]
}
],
@@ -313954,14 +314833,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25045,
+ "id": 7756,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25046,
+ "id": 7757,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -313975,7 +314854,7 @@
],
"signatures": [
{
- "id": 25047,
+ "id": 7758,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -313989,7 +314868,7 @@
],
"parameters": [
{
- "id": 25048,
+ "id": 7759,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -314000,14 +314879,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25049,
+ "id": 7760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25050,
+ "id": 7761,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -314031,7 +314910,7 @@
{
"title": "Properties",
"children": [
- 25050
+ 7761
]
}
],
@@ -314108,7 +314987,7 @@
{
"title": "Methods",
"children": [
- 25046
+ 7757
]
}
],
@@ -314144,7 +315023,7 @@
}
},
{
- "id": 25051,
+ "id": 7762,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -314167,7 +315046,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25052,
+ "id": 7763,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -314181,7 +315060,7 @@
],
"signatures": [
{
- "id": 25053,
+ "id": 7764,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -314209,7 +315088,7 @@
],
"typeParameters": [
{
- "id": 25054,
+ "id": 7765,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -314220,7 +315099,7 @@
}
},
{
- "id": 25055,
+ "id": 7766,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -314233,7 +315112,7 @@
],
"parameters": [
{
- "id": 25056,
+ "id": 7767,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -314266,7 +315145,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -314280,7 +315159,7 @@
"types": [
{
"type": "reference",
- "target": 25026,
+ "target": 7737,
"name": "DeleteLineItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -314297,7 +315176,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -314330,7 +315209,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -314345,7 +315224,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -314365,7 +315244,7 @@
}
},
{
- "id": 25057,
+ "id": 7768,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -314388,7 +315267,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25058,
+ "id": 7769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -314402,7 +315281,7 @@
],
"signatures": [
{
- "id": 25059,
+ "id": 7770,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -314424,7 +315303,7 @@
}
},
{
- "id": 25060,
+ "id": 7771,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -314447,7 +315326,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25061,
+ "id": 7772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -314461,7 +315340,7 @@
],
"signatures": [
{
- "id": 25062,
+ "id": 7773,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -314475,7 +315354,7 @@
],
"parameters": [
{
- "id": 25063,
+ "id": 7774,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -314501,7 +315380,7 @@
}
},
{
- "id": 25064,
+ "id": 7775,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -314524,7 +315403,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25065,
+ "id": 7776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -314535,7 +315414,7 @@
],
"documents": [
{
- "id": 42466,
+ "id": 25407,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -314561,7 +315440,7 @@
"frontmatter": {}
},
{
- "id": 42467,
+ "id": 25408,
"name": "deleteLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -314587,7 +315466,7 @@
"frontmatter": {}
},
{
- "id": 42468,
+ "id": 25409,
"name": "refreshCartItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -314613,7 +315492,7 @@
"frontmatter": {}
},
{
- "id": 42469,
+ "id": 25410,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -314640,21 +315519,21 @@
}
],
"childrenIncludingDocuments": [
- 25039,
- 25051,
- 25057,
- 25060,
- 25064
+ 7750,
+ 7762,
+ 7768,
+ 7771,
+ 7775
],
"groups": [
{
"title": "Properties",
"children": [
- 25039,
- 25051,
- 25057,
- 25060,
- 25064
+ 7750,
+ 7762,
+ 7768,
+ 7771,
+ 7775
]
}
],
@@ -314663,12 +315542,12 @@
"fileName": "core-flows/src/line-item/workflows/delete-line-items.ts",
"line": 42,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L42"
}
],
"signatures": [
{
- "id": 25032,
+ "id": 7743,
"name": "deleteLineItemsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -314708,6 +315587,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "input.cart_id --- acquireLockStep({ key: input.cart_id, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -314724,12 +315612,12 @@
"fileName": "core-flows/src/line-item/workflows/delete-line-items.ts",
"line": 42,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/line-item/workflows/delete-line-items.ts#L42"
}
],
"typeParameters": [
{
- "id": 25033,
+ "id": 7744,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -314740,7 +315628,7 @@
}
},
{
- "id": 25034,
+ "id": 7745,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -314753,7 +315641,7 @@
],
"parameters": [
{
- "id": 25035,
+ "id": 7746,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -314777,14 +315665,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 25036,
+ "id": 7747,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25037,
+ "id": 7748,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -314807,7 +315695,7 @@
}
},
{
- "id": 25038,
+ "id": 7749,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -314834,8 +315722,8 @@
{
"title": "Properties",
"children": [
- 25037,
- 25038
+ 7748,
+ 7749
]
}
],
@@ -314913,7 +315801,7 @@
"types": [
{
"type": "reference",
- "target": 25026,
+ "target": 7737,
"name": "DeleteLineItemsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -314934,14 +315822,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -314960,21 +315848,21 @@
]
},
{
- "id": 17335,
+ "id": 40,
"name": "Locking",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17336,
+ "id": 41,
"name": "Steps_Locking",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 25067,
+ "id": 7778,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -314992,7 +315880,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L12"
}
],
"type": {
@@ -315013,7 +315901,7 @@
}
},
{
- "id": 25068,
+ "id": 7779,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -315044,7 +315932,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L18"
}
],
"type": {
@@ -315053,7 +315941,7 @@
}
},
{
- "id": 25069,
+ "id": 7780,
"name": "retryInterval",
"variant": "declaration",
"kind": 1024,
@@ -315084,7 +315972,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L24"
}
],
"type": {
@@ -315093,7 +315981,7 @@
}
},
{
- "id": 25070,
+ "id": 7781,
"name": "ttl",
"variant": "declaration",
"kind": 1024,
@@ -315113,7 +316001,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L29"
}
],
"type": {
@@ -315122,7 +316010,7 @@
}
},
{
- "id": 25071,
+ "id": 7782,
"name": "ownerId",
"variant": "declaration",
"kind": 1024,
@@ -315142,7 +316030,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L33"
}
],
"type": {
@@ -315151,7 +316039,7 @@
}
},
{
- "id": 25072,
+ "id": 7783,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -315171,7 +316059,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L38"
}
],
"type": {
@@ -315180,7 +316068,7 @@
}
},
{
- "id": 25073,
+ "id": 7784,
"name": "executeOnSubWorkflow",
"variant": "declaration",
"kind": 1024,
@@ -315192,7 +316080,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L39"
}
],
"type": {
@@ -315201,7 +316089,7 @@
}
},
{
- "id": 25074,
+ "id": 7785,
"name": "acquireLockStepId",
"variant": "declaration",
"kind": 32,
@@ -315213,7 +316101,7 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 42,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L42"
}
],
"type": {
@@ -315223,7 +316111,7 @@
"defaultValue": "\"acquire-lock-step\""
},
{
- "id": 25075,
+ "id": 7786,
"name": "acquireLockStep",
"variant": "declaration",
"kind": 64,
@@ -315555,7 +316443,7 @@
},
"children": [
{
- "id": 25084,
+ "id": 7795,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -315573,7 +316461,7 @@
}
},
{
- "id": 25085,
+ "id": 7796,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -315595,8 +316483,8 @@
{
"title": "Properties",
"children": [
- 25084,
- 25085
+ 7795,
+ 7796
]
}
],
@@ -315605,12 +316493,12 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L53"
}
],
"signatures": [
{
- "id": 25076,
+ "id": 7787,
"name": "acquireLockStep",
"variant": "signature",
"kind": 4096,
@@ -315945,12 +316833,12 @@
"fileName": "core-flows/src/locking/steps/acquire-lock.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/acquire-lock.ts#L53"
}
],
"parameters": [
{
- "id": 25077,
+ "id": 7788,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -315960,7 +316848,7 @@
"types": [
{
"type": "reference",
- "target": 25066,
+ "target": 7777,
"name": "AcquireLockStepInput",
"package": "@medusajs/core-flows"
},
@@ -315973,7 +316861,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25066,
+ "target": 7777,
"name": "AcquireLockStepInput",
"package": "@medusajs/core-flows"
}
@@ -316006,14 +316894,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25078,
+ "id": 7789,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25079,
+ "id": 7790,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -316027,7 +316915,7 @@
],
"signatures": [
{
- "id": 25080,
+ "id": 7791,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -316041,7 +316929,7 @@
],
"parameters": [
{
- "id": 25081,
+ "id": 7792,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -316052,14 +316940,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25082,
+ "id": 7793,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25083,
+ "id": 7794,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -316083,7 +316971,7 @@
{
"title": "Properties",
"children": [
- 25083
+ 7794
]
}
],
@@ -316160,7 +317048,7 @@
{
"title": "Methods",
"children": [
- 25079
+ 7790
]
}
],
@@ -316194,7 +317082,7 @@
]
},
{
- "id": 25087,
+ "id": 7798,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -316212,7 +317100,7 @@
"fileName": "core-flows/src/locking/steps/release-lock.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/release-lock.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/release-lock.ts#L11"
}
],
"type": {
@@ -316233,7 +317121,7 @@
}
},
{
- "id": 25088,
+ "id": 7799,
"name": "ownerId",
"variant": "declaration",
"kind": 1024,
@@ -316253,7 +317141,7 @@
"fileName": "core-flows/src/locking/steps/release-lock.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/release-lock.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/release-lock.ts#L16"
}
],
"type": {
@@ -316262,7 +317150,7 @@
}
},
{
- "id": 25089,
+ "id": 7800,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -316282,7 +317170,7 @@
"fileName": "core-flows/src/locking/steps/release-lock.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/release-lock.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/release-lock.ts#L21"
}
],
"type": {
@@ -316291,7 +317179,7 @@
}
},
{
- "id": 25090,
+ "id": 7801,
"name": "executeOnSubWorkflow",
"variant": "declaration",
"kind": 1024,
@@ -316303,7 +317191,7 @@
"fileName": "core-flows/src/locking/steps/release-lock.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/release-lock.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/release-lock.ts#L22"
}
],
"type": {
@@ -316312,7 +317200,7 @@
}
},
{
- "id": 25091,
+ "id": 7802,
"name": "releaseLockStepId",
"variant": "declaration",
"kind": 32,
@@ -316324,7 +317212,7 @@
"fileName": "core-flows/src/locking/steps/release-lock.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/release-lock.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/release-lock.ts#L25"
}
],
"type": {
@@ -316334,7 +317222,7 @@
"defaultValue": "\"release-lock-step\""
},
{
- "id": 25092,
+ "id": 7803,
"name": "releaseLockStep",
"variant": "declaration",
"kind": 64,
@@ -316666,7 +317554,7 @@
},
"children": [
{
- "id": 25101,
+ "id": 7812,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -316684,7 +317572,7 @@
}
},
{
- "id": 25102,
+ "id": 7813,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -316706,8 +317594,8 @@
{
"title": "Properties",
"children": [
- 25101,
- 25102
+ 7812,
+ 7813
]
}
],
@@ -316716,12 +317604,12 @@
"fileName": "core-flows/src/locking/steps/release-lock.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/release-lock.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/release-lock.ts#L35"
}
],
"signatures": [
{
- "id": 25093,
+ "id": 7804,
"name": "releaseLockStep",
"variant": "signature",
"kind": 4096,
@@ -317056,12 +317944,12 @@
"fileName": "core-flows/src/locking/steps/release-lock.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/locking/steps/release-lock.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/locking/steps/release-lock.ts#L35"
}
],
"parameters": [
{
- "id": 25094,
+ "id": 7805,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -317071,7 +317959,7 @@
"types": [
{
"type": "reference",
- "target": 25086,
+ "target": 7797,
"name": "ReleaseLockStepInput",
"package": "@medusajs/core-flows"
},
@@ -317084,7 +317972,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25086,
+ "target": 7797,
"name": "ReleaseLockStepInput",
"package": "@medusajs/core-flows"
}
@@ -317117,14 +318005,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25095,
+ "id": 7806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25096,
+ "id": 7807,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -317138,7 +318026,7 @@
],
"signatures": [
{
- "id": 25097,
+ "id": 7808,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -317152,7 +318040,7 @@
],
"parameters": [
{
- "id": 25098,
+ "id": 7809,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -317163,14 +318051,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25099,
+ "id": 7810,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25100,
+ "id": 7811,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -317194,7 +318082,7 @@
{
"title": "Properties",
"children": [
- 25100
+ 7811
]
}
],
@@ -317271,7 +318159,7 @@
{
"title": "Methods",
"children": [
- 25096
+ 7807
]
}
],
@@ -317309,21 +318197,21 @@
]
},
{
- "id": 17337,
+ "id": 42,
"name": "Notification",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17338,
+ "id": 43,
"name": "Steps_Notification",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 25105,
+ "id": 7816,
"name": "to",
"variant": "declaration",
"kind": 1024,
@@ -317341,7 +318229,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L17"
}
],
"type": {
@@ -317350,7 +318238,7 @@
}
},
{
- "id": 25106,
+ "id": 7817,
"name": "from",
"variant": "declaration",
"kind": 1024,
@@ -317370,7 +318258,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L22"
}
],
"type": {
@@ -317388,7 +318276,7 @@
}
},
{
- "id": 25107,
+ "id": 7818,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -317414,7 +318302,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L26"
}
],
"type": {
@@ -317423,7 +318311,7 @@
}
},
{
- "id": 25108,
+ "id": 7819,
"name": "template",
"variant": "declaration",
"kind": 1024,
@@ -317443,7 +318331,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L31"
}
],
"type": {
@@ -317461,7 +318349,7 @@
}
},
{
- "id": 25109,
+ "id": 7820,
"name": "content",
"variant": "declaration",
"kind": 1024,
@@ -317481,7 +318369,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L35"
}
],
"type": {
@@ -317504,7 +318392,7 @@
}
},
{
- "id": 25110,
+ "id": 7821,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -317524,7 +318412,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L40"
}
],
"type": {
@@ -317557,7 +318445,7 @@
}
},
{
- "id": 25111,
+ "id": 7822,
"name": "provider_data",
"variant": "declaration",
"kind": 1024,
@@ -317577,7 +318465,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L44"
}
],
"type": {
@@ -317610,7 +318498,7 @@
}
},
{
- "id": 25112,
+ "id": 7823,
"name": "trigger_type",
"variant": "declaration",
"kind": 1024,
@@ -317638,7 +318526,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L48"
}
],
"type": {
@@ -317656,7 +318544,7 @@
}
},
{
- "id": 25113,
+ "id": 7824,
"name": "resource_id",
"variant": "declaration",
"kind": 1024,
@@ -317676,7 +318564,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L53"
}
],
"type": {
@@ -317694,7 +318582,7 @@
}
},
{
- "id": 25114,
+ "id": 7825,
"name": "resource_type",
"variant": "declaration",
"kind": 1024,
@@ -317722,7 +318610,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L57"
}
],
"type": {
@@ -317740,7 +318628,7 @@
}
},
{
- "id": 25115,
+ "id": 7826,
"name": "receiver_id",
"variant": "declaration",
"kind": 1024,
@@ -317760,7 +318648,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L61"
}
],
"type": {
@@ -317778,7 +318666,7 @@
}
},
{
- "id": 25116,
+ "id": 7827,
"name": "original_notification_id",
"variant": "declaration",
"kind": 1024,
@@ -317798,7 +318686,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L65"
}
],
"type": {
@@ -317816,7 +318704,7 @@
}
},
{
- "id": 25117,
+ "id": 7828,
"name": "idempotency_key",
"variant": "declaration",
"kind": 1024,
@@ -317836,7 +318724,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L70"
}
],
"type": {
@@ -317854,7 +318742,7 @@
}
},
{
- "id": 25118,
+ "id": 7829,
"name": "attachments",
"variant": "declaration",
"kind": 1024,
@@ -317874,7 +318762,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L74"
}
],
"type": {
@@ -317900,7 +318788,7 @@
}
},
{
- "id": 25119,
+ "id": 7830,
"name": "sendNotificationsStepId",
"variant": "declaration",
"kind": 32,
@@ -317912,7 +318800,7 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 77,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L77"
}
],
"type": {
@@ -317922,7 +318810,7 @@
"defaultValue": "\"send-notifications\""
},
{
- "id": 25120,
+ "id": 7831,
"name": "sendNotificationsStep",
"variant": "declaration",
"kind": 64,
@@ -317966,7 +318854,7 @@
},
"children": [
{
- "id": 25129,
+ "id": 7840,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -317984,7 +318872,7 @@
}
},
{
- "id": 25130,
+ "id": 7841,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -318006,8 +318894,8 @@
{
"title": "Properties",
"children": [
- 25129,
- 25130
+ 7840,
+ 7841
]
}
],
@@ -318016,12 +318904,12 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L81"
}
],
"signatures": [
{
- "id": 25121,
+ "id": 7832,
"name": "sendNotificationsStep",
"variant": "signature",
"kind": 4096,
@@ -318068,12 +318956,12 @@
"fileName": "core-flows/src/notification/steps/send-notifications.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/send-notifications.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/send-notifications.ts#L81"
}
],
"parameters": [
{
- "id": 25122,
+ "id": 7833,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -318083,7 +318971,7 @@
"types": [
{
"type": "reference",
- "target": 25103,
+ "target": 7814,
"name": "SendNotificationsStepInput",
"package": "@medusajs/core-flows"
},
@@ -318096,7 +318984,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25103,
+ "target": 7814,
"name": "SendNotificationsStepInput",
"package": "@medusajs/core-flows"
}
@@ -318186,14 +319074,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25123,
+ "id": 7834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25124,
+ "id": 7835,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -318207,7 +319095,7 @@
],
"signatures": [
{
- "id": 25125,
+ "id": 7836,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -318221,7 +319109,7 @@
],
"parameters": [
{
- "id": 25126,
+ "id": 7837,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -318232,14 +319120,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25127,
+ "id": 7838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25128,
+ "id": 7839,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -318263,7 +319151,7 @@
{
"title": "Properties",
"children": [
- 25128
+ 7839
]
}
],
@@ -318348,7 +319236,7 @@
{
"title": "Methods",
"children": [
- 25124
+ 7835
]
}
],
@@ -318390,7 +319278,7 @@
]
},
{
- "id": 25133,
+ "id": 7844,
"name": "to",
"variant": "declaration",
"kind": 1024,
@@ -318408,7 +319296,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L13"
}
],
"type": {
@@ -318417,7 +319305,7 @@
}
},
{
- "id": 25134,
+ "id": 7845,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -318443,7 +319331,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L19"
}
],
"type": {
@@ -318452,7 +319340,7 @@
}
},
{
- "id": 25135,
+ "id": 7846,
"name": "template",
"variant": "declaration",
"kind": 1024,
@@ -318470,7 +319358,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L24"
}
],
"type": {
@@ -318479,7 +319367,7 @@
}
},
{
- "id": 25136,
+ "id": 7847,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -318499,7 +319387,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L29"
}
],
"type": {
@@ -318532,7 +319420,7 @@
}
},
{
- "id": 25137,
+ "id": 7848,
"name": "trigger_type",
"variant": "declaration",
"kind": 1024,
@@ -318560,7 +319448,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L33"
}
],
"type": {
@@ -318578,7 +319466,7 @@
}
},
{
- "id": 25138,
+ "id": 7849,
"name": "resource_id",
"variant": "declaration",
"kind": 1024,
@@ -318598,7 +319486,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L38"
}
],
"type": {
@@ -318616,7 +319504,7 @@
}
},
{
- "id": 25139,
+ "id": 7850,
"name": "resource_type",
"variant": "declaration",
"kind": 1024,
@@ -318644,7 +319532,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L42"
}
],
"type": {
@@ -318662,7 +319550,7 @@
}
},
{
- "id": 25140,
+ "id": 7851,
"name": "receiver_id",
"variant": "declaration",
"kind": 1024,
@@ -318682,7 +319570,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L46"
}
],
"type": {
@@ -318700,7 +319588,7 @@
}
},
{
- "id": 25141,
+ "id": 7852,
"name": "original_notification_id",
"variant": "declaration",
"kind": 1024,
@@ -318720,7 +319608,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L50"
}
],
"type": {
@@ -318738,7 +319626,7 @@
}
},
{
- "id": 25142,
+ "id": 7853,
"name": "idempotency_key",
"variant": "declaration",
"kind": 1024,
@@ -318758,7 +319646,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L55"
}
],
"type": {
@@ -318776,7 +319664,7 @@
}
},
{
- "id": 25143,
+ "id": 7854,
"name": "notifyOnFailureStepId",
"variant": "declaration",
"kind": 32,
@@ -318788,7 +319676,7 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L58"
}
],
"type": {
@@ -318798,7 +319686,7 @@
"defaultValue": "\"notify-on-failure\""
},
{
- "id": 25144,
+ "id": 7855,
"name": "notifyOnFailureStep",
"variant": "declaration",
"kind": 64,
@@ -318851,7 +319739,7 @@
},
"children": [
{
- "id": 25147,
+ "id": 7858,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -318869,7 +319757,7 @@
}
},
{
- "id": 25148,
+ "id": 7859,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -318891,8 +319779,8 @@
{
"title": "Properties",
"children": [
- 25147,
- 25148
+ 7858,
+ 7859
]
}
],
@@ -318901,12 +319789,12 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L74"
}
],
"signatures": [
{
- "id": 25145,
+ "id": 7856,
"name": "notifyOnFailureStep",
"variant": "signature",
"kind": 4096,
@@ -318962,12 +319850,12 @@
"fileName": "core-flows/src/notification/steps/notify-on-failure.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/notification/steps/notify-on-failure.ts#L74"
}
],
"parameters": [
{
- "id": 25146,
+ "id": 7857,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -318977,7 +319865,7 @@
"types": [
{
"type": "reference",
- "target": 25131,
+ "target": 7842,
"name": "NotifyOnFailureStepInput",
"package": "@medusajs/core-flows"
},
@@ -318990,7 +319878,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25131,
+ "target": 7842,
"name": "NotifyOnFailureStepInput",
"package": "@medusajs/core-flows"
}
@@ -319014,21 +319902,21 @@
]
},
{
- "id": 17339,
+ "id": 44,
"name": "Order",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17340,
+ "id": 45,
"name": "Steps_Order",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 25151,
+ "id": 7862,
"name": "addOrderTransactionStepId",
"variant": "declaration",
"kind": 32,
@@ -319040,7 +319928,7 @@
"fileName": "core-flows/src/order/steps/add-order-transaction.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/add-order-transaction.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/add-order-transaction.ts#L19"
}
],
"type": {
@@ -319050,7 +319938,7 @@
"defaultValue": "\"add-order-transaction\""
},
{
- "id": 25152,
+ "id": 7863,
"name": "addOrderTransactionStep",
"variant": "declaration",
"kind": 64,
@@ -319103,7 +319991,7 @@
},
"children": [
{
- "id": 25161,
+ "id": 7872,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -319121,7 +320009,7 @@
}
},
{
- "id": 25162,
+ "id": 7873,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -319143,8 +320031,8 @@
{
"title": "Properties",
"children": [
- 25161,
- 25162
+ 7872,
+ 7873
]
}
],
@@ -319153,12 +320041,12 @@
"fileName": "core-flows/src/order/steps/add-order-transaction.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/add-order-transaction.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/add-order-transaction.ts#L23"
}
],
"signatures": [
{
- "id": 25153,
+ "id": 7864,
"name": "addOrderTransactionStep",
"variant": "signature",
"kind": 4096,
@@ -319214,12 +320102,12 @@
"fileName": "core-flows/src/order/steps/add-order-transaction.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/add-order-transaction.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/add-order-transaction.ts#L23"
}
],
"parameters": [
{
- "id": 25154,
+ "id": 7865,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -319229,7 +320117,7 @@
"types": [
{
"type": "reference",
- "target": 25149,
+ "target": 7860,
"name": "AddOrderTransactionStepInput",
"package": "@medusajs/core-flows"
},
@@ -319242,7 +320130,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25149,
+ "target": 7860,
"name": "AddOrderTransactionStepInput",
"package": "@medusajs/core-flows"
}
@@ -319305,14 +320193,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25155,
+ "id": 7866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25156,
+ "id": 7867,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -319326,7 +320214,7 @@
],
"signatures": [
{
- "id": 25157,
+ "id": 7868,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -319340,7 +320228,7 @@
],
"parameters": [
{
- "id": 25158,
+ "id": 7869,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -319351,14 +320239,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25159,
+ "id": 7870,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25160,
+ "id": 7871,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -319382,7 +320270,7 @@
{
"title": "Properties",
"children": [
- 25160
+ 7871
]
}
],
@@ -319485,7 +320373,7 @@
{
"title": "Methods",
"children": [
- 25156
+ 7867
]
}
],
@@ -319545,7 +320433,7 @@
]
},
{
- "id": 25165,
+ "id": 7876,
"name": "orderIds",
"variant": "declaration",
"kind": 1024,
@@ -319563,7 +320451,7 @@
"fileName": "core-flows/src/order/steps/archive-orders.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/archive-orders.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/archive-orders.ts#L12"
}
],
"type": {
@@ -319575,7 +320463,7 @@
}
},
{
- "id": 25166,
+ "id": 7877,
"name": "archiveOrdersStepId",
"variant": "declaration",
"kind": 32,
@@ -319587,7 +320475,7 @@
"fileName": "core-flows/src/order/steps/archive-orders.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/archive-orders.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/archive-orders.ts#L15"
}
],
"type": {
@@ -319597,7 +320485,7 @@
"defaultValue": "\"archive-orders\""
},
{
- "id": 25167,
+ "id": 7878,
"name": "archiveOrdersStep",
"variant": "declaration",
"kind": 64,
@@ -319623,7 +320511,7 @@
},
"children": [
{
- "id": 25176,
+ "id": 7887,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -319641,7 +320529,7 @@
}
},
{
- "id": 25177,
+ "id": 7888,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -319663,8 +320551,8 @@
{
"title": "Properties",
"children": [
- 25176,
- 25177
+ 7887,
+ 7888
]
}
],
@@ -319673,12 +320561,12 @@
"fileName": "core-flows/src/order/steps/archive-orders.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/archive-orders.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/archive-orders.ts#L19"
}
],
"signatures": [
{
- "id": 25168,
+ "id": 7879,
"name": "archiveOrdersStep",
"variant": "signature",
"kind": 4096,
@@ -319707,12 +320595,12 @@
"fileName": "core-flows/src/order/steps/archive-orders.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/archive-orders.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/archive-orders.ts#L19"
}
],
"parameters": [
{
- "id": 25169,
+ "id": 7880,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -319722,7 +320610,7 @@
"types": [
{
"type": "reference",
- "target": 25163,
+ "target": 7874,
"name": "ArchiveOrdersStepInput",
"package": "@medusajs/core-flows"
},
@@ -319735,7 +320623,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25163,
+ "target": 7874,
"name": "ArchiveOrdersStepInput",
"package": "@medusajs/core-flows"
}
@@ -319825,14 +320713,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25170,
+ "id": 7881,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25171,
+ "id": 7882,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -319846,7 +320734,7 @@
],
"signatures": [
{
- "id": 25172,
+ "id": 7883,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -319860,7 +320748,7 @@
],
"parameters": [
{
- "id": 25173,
+ "id": 7884,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -319871,14 +320759,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25174,
+ "id": 7885,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25175,
+ "id": 7886,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -319902,7 +320790,7 @@
{
"title": "Properties",
"children": [
- 25175
+ 7886
]
}
],
@@ -319987,7 +320875,7 @@
{
"title": "Methods",
"children": [
- 25171
+ 7882
]
}
],
@@ -320029,7 +320917,7 @@
]
},
{
- "id": 25178,
+ "id": 7889,
"name": "cancelOrderFulfillmentStepId",
"variant": "declaration",
"kind": 32,
@@ -320041,7 +320929,7 @@
"fileName": "core-flows/src/order/steps/cancel-fulfillment.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-fulfillment.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-fulfillment.ts#L8"
}
],
"type": {
@@ -320051,7 +320939,7 @@
"defaultValue": "\"cancel-order-fulfillment\""
},
{
- "id": 25179,
+ "id": 7890,
"name": "cancelOrderFulfillmentStep",
"variant": "declaration",
"kind": 64,
@@ -320086,7 +320974,7 @@
},
"children": [
{
- "id": 25182,
+ "id": 7893,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -320104,7 +320992,7 @@
}
},
{
- "id": 25183,
+ "id": 7894,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -320126,8 +321014,8 @@
{
"title": "Properties",
"children": [
- 25182,
- 25183
+ 7893,
+ 7894
]
}
],
@@ -320136,12 +321024,12 @@
"fileName": "core-flows/src/order/steps/cancel-fulfillment.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-fulfillment.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-fulfillment.ts#L23"
}
],
"signatures": [
{
- "id": 25180,
+ "id": 7891,
"name": "cancelOrderFulfillmentStep",
"variant": "signature",
"kind": 4096,
@@ -320179,12 +321067,12 @@
"fileName": "core-flows/src/order/steps/cancel-fulfillment.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-fulfillment.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-fulfillment.ts#L23"
}
],
"parameters": [
{
- "id": 25181,
+ "id": 7892,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -320233,7 +321121,7 @@
]
},
{
- "id": 25184,
+ "id": 7895,
"name": "cancelOrderChangeStepId",
"variant": "declaration",
"kind": 32,
@@ -320245,7 +321133,7 @@
"fileName": "core-flows/src/order/steps/cancel-order-change.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-order-change.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-order-change.ts#L13"
}
],
"type": {
@@ -320255,7 +321143,7 @@
"defaultValue": "\"cancel-order-change\""
},
{
- "id": 25185,
+ "id": 7896,
"name": "cancelOrderChangeStep",
"variant": "declaration",
"kind": 64,
@@ -320281,7 +321169,7 @@
},
"children": [
{
- "id": 25188,
+ "id": 7899,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -320299,7 +321187,7 @@
}
},
{
- "id": 25189,
+ "id": 7900,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -320321,8 +321209,8 @@
{
"title": "Properties",
"children": [
- 25188,
- 25189
+ 7899,
+ 7900
]
}
],
@@ -320331,12 +321219,12 @@
"fileName": "core-flows/src/order/steps/cancel-order-change.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-order-change.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-order-change.ts#L17"
}
],
"signatures": [
{
- "id": 25186,
+ "id": 7897,
"name": "cancelOrderChangeStep",
"variant": "signature",
"kind": 4096,
@@ -320365,12 +321253,12 @@
"fileName": "core-flows/src/order/steps/cancel-order-change.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-order-change.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-order-change.ts#L17"
}
],
"parameters": [
{
- "id": 25187,
+ "id": 7898,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -320419,7 +321307,7 @@
]
},
{
- "id": 25192,
+ "id": 7903,
"name": "orderIds",
"variant": "declaration",
"kind": 1024,
@@ -320437,7 +321325,7 @@
"fileName": "core-flows/src/order/steps/cancel-orders.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-orders.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-orders.ts#L12"
}
],
"type": {
@@ -320449,7 +321337,7 @@
}
},
{
- "id": 25193,
+ "id": 7904,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -320469,7 +321357,7 @@
"fileName": "core-flows/src/order/steps/cancel-orders.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-orders.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-orders.ts#L16"
}
],
"type": {
@@ -320478,7 +321366,7 @@
}
},
{
- "id": 25194,
+ "id": 7905,
"name": "cancelOrdersStepId",
"variant": "declaration",
"kind": 32,
@@ -320490,7 +321378,7 @@
"fileName": "core-flows/src/order/steps/cancel-orders.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-orders.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-orders.ts#L19"
}
],
"type": {
@@ -320500,7 +321388,7 @@
"defaultValue": "\"cancel-orders\""
},
{
- "id": 25195,
+ "id": 7906,
"name": "cancelOrdersStep",
"variant": "declaration",
"kind": 64,
@@ -320526,7 +321414,7 @@
},
"children": [
{
- "id": 25204,
+ "id": 7915,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -320544,7 +321432,7 @@
}
},
{
- "id": 25205,
+ "id": 7916,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -320566,8 +321454,8 @@
{
"title": "Properties",
"children": [
- 25204,
- 25205
+ 7915,
+ 7916
]
}
],
@@ -320576,12 +321464,12 @@
"fileName": "core-flows/src/order/steps/cancel-orders.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-orders.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-orders.ts#L23"
}
],
"signatures": [
{
- "id": 25196,
+ "id": 7907,
"name": "cancelOrdersStep",
"variant": "signature",
"kind": 4096,
@@ -320610,12 +321498,12 @@
"fileName": "core-flows/src/order/steps/cancel-orders.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/cancel-orders.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/cancel-orders.ts#L23"
}
],
"parameters": [
{
- "id": 25197,
+ "id": 7908,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -320625,7 +321513,7 @@
"types": [
{
"type": "reference",
- "target": 25190,
+ "target": 7901,
"name": "CancelOrdersStepInput",
"package": "@medusajs/core-flows"
},
@@ -320638,7 +321526,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25190,
+ "target": 7901,
"name": "CancelOrdersStepInput",
"package": "@medusajs/core-flows"
}
@@ -320728,14 +321616,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25198,
+ "id": 7909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25199,
+ "id": 7910,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -320749,7 +321637,7 @@
],
"signatures": [
{
- "id": 25200,
+ "id": 7911,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -320763,7 +321651,7 @@
],
"parameters": [
{
- "id": 25201,
+ "id": 7912,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -320774,14 +321662,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25202,
+ "id": 7913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25203,
+ "id": 7914,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -320805,7 +321693,7 @@
{
"title": "Properties",
"children": [
- 25203
+ 7914
]
}
],
@@ -320890,7 +321778,7 @@
{
"title": "Methods",
"children": [
- 25199
+ 7910
]
}
],
@@ -320932,7 +321820,7 @@
]
},
{
- "id": 25206,
+ "id": 7917,
"name": "cancelOrderClaimStepId",
"variant": "declaration",
"kind": 32,
@@ -320944,7 +321832,7 @@
"fileName": "core-flows/src/order/steps/claim/cancel-claim.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/cancel-claim.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/cancel-claim.ts#L8"
}
],
"type": {
@@ -320954,7 +321842,7 @@
"defaultValue": "\"cancel-order-claim\""
},
{
- "id": 25207,
+ "id": 7918,
"name": "cancelOrderClaimStep",
"variant": "declaration",
"kind": 64,
@@ -320980,7 +321868,7 @@
},
"children": [
{
- "id": 25210,
+ "id": 7921,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -320998,7 +321886,7 @@
}
},
{
- "id": 25211,
+ "id": 7922,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -321020,8 +321908,8 @@
{
"title": "Properties",
"children": [
- 25210,
- 25211
+ 7921,
+ 7922
]
}
],
@@ -321030,12 +321918,12 @@
"fileName": "core-flows/src/order/steps/claim/cancel-claim.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/cancel-claim.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/cancel-claim.ts#L12"
}
],
"signatures": [
{
- "id": 25208,
+ "id": 7919,
"name": "cancelOrderClaimStep",
"variant": "signature",
"kind": 4096,
@@ -321064,12 +321952,12 @@
"fileName": "core-flows/src/order/steps/claim/cancel-claim.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/cancel-claim.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/cancel-claim.ts#L12"
}
],
"parameters": [
{
- "id": 25209,
+ "id": 7920,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -321118,7 +322006,7 @@
]
},
{
- "id": 25214,
+ "id": 7925,
"name": "changes",
"variant": "declaration",
"kind": 1024,
@@ -321136,7 +322024,7 @@
"fileName": "core-flows/src/order/steps/claim/create-claim-items-from-actions.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L15"
}
],
"type": {
@@ -321153,7 +322041,7 @@
}
},
{
- "id": 25215,
+ "id": 7926,
"name": "claimId",
"variant": "declaration",
"kind": 1024,
@@ -321171,7 +322059,7 @@
"fileName": "core-flows/src/order/steps/claim/create-claim-items-from-actions.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L19"
}
],
"type": {
@@ -321180,7 +322068,7 @@
}
},
{
- "id": 25216,
+ "id": 7927,
"name": "createOrderClaimItemsFromActionsStep",
"variant": "declaration",
"kind": 64,
@@ -321215,7 +322103,7 @@
},
"children": [
{
- "id": 25225,
+ "id": 7936,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -321233,7 +322121,7 @@
}
},
{
- "id": 25226,
+ "id": 7937,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -321255,8 +322143,8 @@
{
"title": "Properties",
"children": [
- 25225,
- 25226
+ 7936,
+ 7937
]
}
],
@@ -321265,12 +322153,12 @@
"fileName": "core-flows/src/order/steps/claim/create-claim-items-from-actions.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L43"
}
],
"signatures": [
{
- "id": 25217,
+ "id": 7928,
"name": "createOrderClaimItemsFromActionsStep",
"variant": "signature",
"kind": 4096,
@@ -321308,12 +322196,12 @@
"fileName": "core-flows/src/order/steps/claim/create-claim-items-from-actions.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/create-claim-items-from-actions.ts#L43"
}
],
"parameters": [
{
- "id": 25218,
+ "id": 7929,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -321323,7 +322211,7 @@
"types": [
{
"type": "reference",
- "target": 25212,
+ "target": 7923,
"name": "CreateOrderClaimItemsFromActionsInput",
"package": "@medusajs/core-flows"
},
@@ -321336,7 +322224,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25212,
+ "target": 7923,
"name": "CreateOrderClaimItemsFromActionsInput",
"package": "@medusajs/core-flows"
}
@@ -321426,14 +322314,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25219,
+ "id": 7930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25220,
+ "id": 7931,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -321447,7 +322335,7 @@
],
"signatures": [
{
- "id": 25221,
+ "id": 7932,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -321461,7 +322349,7 @@
],
"parameters": [
{
- "id": 25222,
+ "id": 7933,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -321472,14 +322360,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25223,
+ "id": 7934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25224,
+ "id": 7935,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -321503,7 +322391,7 @@
{
"title": "Properties",
"children": [
- 25224
+ 7935
]
}
],
@@ -321588,7 +322476,7 @@
{
"title": "Methods",
"children": [
- 25220
+ 7931
]
}
],
@@ -321630,7 +322518,7 @@
]
},
{
- "id": 25227,
+ "id": 7938,
"name": "createOrderClaimsStepId",
"variant": "declaration",
"kind": 32,
@@ -321642,7 +322530,7 @@
"fileName": "core-flows/src/order/steps/claim/create-claims.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/create-claims.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/create-claims.ts#L8"
}
],
"type": {
@@ -321652,7 +322540,7 @@
"defaultValue": "\"create-order-claims\""
},
{
- "id": 25228,
+ "id": 7939,
"name": "createOrderClaimsStep",
"variant": "declaration",
"kind": 64,
@@ -321678,7 +322566,7 @@
},
"children": [
{
- "id": 25237,
+ "id": 7948,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -321696,7 +322584,7 @@
}
},
{
- "id": 25238,
+ "id": 7949,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -321718,8 +322606,8 @@
{
"title": "Properties",
"children": [
- 25237,
- 25238
+ 7948,
+ 7949
]
}
],
@@ -321728,12 +322616,12 @@
"fileName": "core-flows/src/order/steps/claim/create-claims.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/create-claims.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/create-claims.ts#L12"
}
],
"signatures": [
{
- "id": 25229,
+ "id": 7940,
"name": "createOrderClaimsStep",
"variant": "signature",
"kind": 4096,
@@ -321762,12 +322650,12 @@
"fileName": "core-flows/src/order/steps/claim/create-claims.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/create-claims.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/create-claims.ts#L12"
}
],
"parameters": [
{
- "id": 25230,
+ "id": 7941,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -321892,14 +322780,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25231,
+ "id": 7942,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25232,
+ "id": 7943,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -321913,7 +322801,7 @@
],
"signatures": [
{
- "id": 25233,
+ "id": 7944,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -321927,7 +322815,7 @@
],
"parameters": [
{
- "id": 25234,
+ "id": 7945,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -321938,14 +322826,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25235,
+ "id": 7946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25236,
+ "id": 7947,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -321969,7 +322857,7 @@
{
"title": "Properties",
"children": [
- 25236
+ 7947
]
}
],
@@ -322054,7 +322942,7 @@
{
"title": "Methods",
"children": [
- 25232
+ 7943
]
}
],
@@ -322096,7 +322984,7 @@
]
},
{
- "id": 25241,
+ "id": 7952,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -322114,7 +323002,7 @@
"fileName": "core-flows/src/order/steps/claim/delete-claims.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L12"
}
],
"type": {
@@ -322126,7 +323014,7 @@
}
},
{
- "id": 25242,
+ "id": 7953,
"name": "deleteClaimsStepId",
"variant": "declaration",
"kind": 32,
@@ -322138,7 +323026,7 @@
"fileName": "core-flows/src/order/steps/claim/delete-claims.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L15"
}
],
"type": {
@@ -322148,7 +323036,7 @@
"defaultValue": "\"delete-claims\""
},
{
- "id": 25243,
+ "id": 7954,
"name": "deleteClaimsStep",
"variant": "declaration",
"kind": 64,
@@ -322174,7 +323062,7 @@
},
"children": [
{
- "id": 25252,
+ "id": 7963,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -322192,7 +323080,7 @@
}
},
{
- "id": 25253,
+ "id": 7964,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -322214,8 +323102,8 @@
{
"title": "Properties",
"children": [
- 25252,
- 25253
+ 7963,
+ 7964
]
}
],
@@ -322224,12 +323112,12 @@
"fileName": "core-flows/src/order/steps/claim/delete-claims.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L19"
}
],
"signatures": [
{
- "id": 25244,
+ "id": 7955,
"name": "deleteClaimsStep",
"variant": "signature",
"kind": 4096,
@@ -322258,12 +323146,12 @@
"fileName": "core-flows/src/order/steps/claim/delete-claims.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/claim/delete-claims.ts#L19"
}
],
"parameters": [
{
- "id": 25245,
+ "id": 7956,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -322273,7 +323161,7 @@
"types": [
{
"type": "reference",
- "target": 25239,
+ "target": 7950,
"name": "DeleteOrderClaimsInput",
"package": "@medusajs/core-flows"
},
@@ -322286,7 +323174,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25239,
+ "target": 7950,
"name": "DeleteOrderClaimsInput",
"package": "@medusajs/core-flows"
}
@@ -322350,14 +323238,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25246,
+ "id": 7957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25247,
+ "id": 7958,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -322371,7 +323259,7 @@
],
"signatures": [
{
- "id": 25248,
+ "id": 7959,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -322385,7 +323273,7 @@
],
"parameters": [
{
- "id": 25249,
+ "id": 7960,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -322396,14 +323284,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25250,
+ "id": 7961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25251,
+ "id": 7962,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -322427,7 +323315,7 @@
{
"title": "Properties",
"children": [
- 25251
+ 7962
]
}
],
@@ -322531,7 +323419,7 @@
{
"title": "Methods",
"children": [
- 25247
+ 7958
]
}
],
@@ -322592,7 +323480,7 @@
]
},
{
- "id": 25256,
+ "id": 7967,
"name": "orderIds",
"variant": "declaration",
"kind": 1024,
@@ -322610,7 +323498,7 @@
"fileName": "core-flows/src/order/steps/complete-orders.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/complete-orders.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/complete-orders.ts#L12"
}
],
"type": {
@@ -322622,7 +323510,7 @@
}
},
{
- "id": 25257,
+ "id": 7968,
"name": "completeOrdersStepId",
"variant": "declaration",
"kind": 32,
@@ -322634,7 +323522,7 @@
"fileName": "core-flows/src/order/steps/complete-orders.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/complete-orders.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/complete-orders.ts#L15"
}
],
"type": {
@@ -322644,7 +323532,7 @@
"defaultValue": "\"complete-orders\""
},
{
- "id": 25258,
+ "id": 7969,
"name": "completeOrdersStep",
"variant": "declaration",
"kind": 64,
@@ -322670,7 +323558,7 @@
},
"children": [
{
- "id": 25267,
+ "id": 7978,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -322688,7 +323576,7 @@
}
},
{
- "id": 25268,
+ "id": 7979,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -322710,8 +323598,8 @@
{
"title": "Properties",
"children": [
- 25267,
- 25268
+ 7978,
+ 7979
]
}
],
@@ -322720,12 +323608,12 @@
"fileName": "core-flows/src/order/steps/complete-orders.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/complete-orders.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/complete-orders.ts#L19"
}
],
"signatures": [
{
- "id": 25259,
+ "id": 7970,
"name": "completeOrdersStep",
"variant": "signature",
"kind": 4096,
@@ -322754,12 +323642,12 @@
"fileName": "core-flows/src/order/steps/complete-orders.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/complete-orders.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/complete-orders.ts#L19"
}
],
"parameters": [
{
- "id": 25260,
+ "id": 7971,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -322769,7 +323657,7 @@
"types": [
{
"type": "reference",
- "target": 25254,
+ "target": 7965,
"name": "CompleteOrdersStepInput",
"package": "@medusajs/core-flows"
},
@@ -322782,7 +323670,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25254,
+ "target": 7965,
"name": "CompleteOrdersStepInput",
"package": "@medusajs/core-flows"
}
@@ -322872,14 +323760,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25261,
+ "id": 7972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25262,
+ "id": 7973,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -322893,7 +323781,7 @@
],
"signatures": [
{
- "id": 25263,
+ "id": 7974,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -322907,7 +323795,7 @@
],
"parameters": [
{
- "id": 25264,
+ "id": 7975,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -322918,14 +323806,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25265,
+ "id": 7976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25266,
+ "id": 7977,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -322949,7 +323837,7 @@
{
"title": "Properties",
"children": [
- 25266
+ 7977
]
}
],
@@ -323034,7 +323922,7 @@
{
"title": "Methods",
"children": [
- 25262
+ 7973
]
}
],
@@ -323076,7 +323964,7 @@
]
},
{
- "id": 25270,
+ "id": 7981,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -323094,7 +323982,7 @@
"fileName": "core-flows/src/order/steps/create-line-items.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-line-items.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-line-items.ts#L12"
}
],
"type": {
@@ -323111,7 +323999,7 @@
}
},
{
- "id": 25271,
+ "id": 7982,
"name": "createOrderLineItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -323123,7 +324011,7 @@
"fileName": "core-flows/src/order/steps/create-line-items.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-line-items.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-line-items.ts#L15"
}
],
"type": {
@@ -323133,7 +324021,7 @@
"defaultValue": "\"create-order-line-items-step\""
},
{
- "id": 25272,
+ "id": 7983,
"name": "createOrderLineItemsStep",
"variant": "declaration",
"kind": 64,
@@ -323159,7 +324047,7 @@
},
"children": [
{
- "id": 25281,
+ "id": 7992,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -323177,7 +324065,7 @@
}
},
{
- "id": 25282,
+ "id": 7993,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -323199,8 +324087,8 @@
{
"title": "Properties",
"children": [
- 25281,
- 25282
+ 7992,
+ 7993
]
}
],
@@ -323209,12 +324097,12 @@
"fileName": "core-flows/src/order/steps/create-line-items.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-line-items.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-line-items.ts#L32"
}
],
"signatures": [
{
- "id": 25273,
+ "id": 7984,
"name": "createOrderLineItemsStep",
"variant": "signature",
"kind": 4096,
@@ -323243,12 +324131,12 @@
"fileName": "core-flows/src/order/steps/create-line-items.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-line-items.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-line-items.ts#L32"
}
],
"parameters": [
{
- "id": 25274,
+ "id": 7985,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -323258,7 +324146,7 @@
"types": [
{
"type": "reference",
- "target": 25269,
+ "target": 7980,
"name": "CreateOrderLineItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -323271,7 +324159,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25269,
+ "target": 7980,
"name": "CreateOrderLineItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -323361,14 +324249,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25275,
+ "id": 7986,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25276,
+ "id": 7987,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -323382,7 +324270,7 @@
],
"signatures": [
{
- "id": 25277,
+ "id": 7988,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -323396,7 +324284,7 @@
],
"parameters": [
{
- "id": 25278,
+ "id": 7989,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -323407,14 +324295,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25279,
+ "id": 7990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25280,
+ "id": 7991,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -323438,7 +324326,7 @@
{
"title": "Properties",
"children": [
- 25280
+ 7991
]
}
],
@@ -323523,7 +324411,7 @@
{
"title": "Methods",
"children": [
- 25276
+ 7987
]
}
],
@@ -323565,7 +324453,7 @@
]
},
{
- "id": 25283,
+ "id": 7994,
"name": "createOrderChangeStepId",
"variant": "declaration",
"kind": 32,
@@ -323577,7 +324465,7 @@
"fileName": "core-flows/src/order/steps/create-order-change.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-order-change.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-order-change.ts#L8"
}
],
"type": {
@@ -323587,7 +324475,7 @@
"defaultValue": "\"create-order-change\""
},
{
- "id": 25284,
+ "id": 7995,
"name": "createOrderChangeStep",
"variant": "declaration",
"kind": 64,
@@ -323685,7 +324573,7 @@
},
"children": [
{
- "id": 25320,
+ "id": 8031,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -323703,7 +324591,7 @@
}
},
{
- "id": 25321,
+ "id": 8032,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -323725,8 +324613,8 @@
{
"title": "Properties",
"children": [
- 25320,
- 25321
+ 8031,
+ 8032
]
}
],
@@ -323735,12 +324623,12 @@
"fileName": "core-flows/src/order/steps/create-order-change.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-order-change.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-order-change.ts#L12"
}
],
"signatures": [
{
- "id": 25285,
+ "id": 7996,
"name": "createOrderChangeStep",
"variant": "signature",
"kind": 4096,
@@ -323841,12 +324729,12 @@
"fileName": "core-flows/src/order/steps/create-order-change.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-order-change.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-order-change.ts#L12"
}
],
"parameters": [
{
- "id": 25286,
+ "id": 7997,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -323893,14 +324781,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25287,
+ "id": 7998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25288,
+ "id": 7999,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -323946,7 +324834,7 @@
}
},
{
- "id": 25289,
+ "id": 8000,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -323992,7 +324880,7 @@
}
},
{
- "id": 25290,
+ "id": 8001,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -324081,7 +324969,7 @@
}
},
{
- "id": 25291,
+ "id": 8002,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -324146,7 +325034,7 @@
}
},
{
- "id": 25292,
+ "id": 8003,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -324192,7 +325080,7 @@
}
},
{
- "id": 25293,
+ "id": 8004,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -324238,7 +325126,7 @@
}
},
{
- "id": 25294,
+ "id": 8005,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -324284,7 +325172,7 @@
}
},
{
- "id": 25295,
+ "id": 8006,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -324330,7 +325218,7 @@
}
},
{
- "id": 25296,
+ "id": 8007,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -324389,7 +325277,7 @@
}
},
{
- "id": 25297,
+ "id": 8008,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -324448,7 +325336,7 @@
}
},
{
- "id": 25298,
+ "id": 8009,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -324507,7 +325395,7 @@
}
},
{
- "id": 25299,
+ "id": 8010,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -324566,7 +325454,7 @@
}
},
{
- "id": 25300,
+ "id": 8011,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -324631,7 +325519,7 @@
}
},
{
- "id": 25301,
+ "id": 8012,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -324687,7 +325575,7 @@
}
},
{
- "id": 25302,
+ "id": 8013,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -324746,7 +325634,7 @@
}
},
{
- "id": 25303,
+ "id": 8014,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -324823,7 +325711,7 @@
}
},
{
- "id": 25304,
+ "id": 8015,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -324882,7 +325770,7 @@
}
},
{
- "id": 25305,
+ "id": 8016,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -324959,7 +325847,7 @@
}
},
{
- "id": 25306,
+ "id": 8017,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -325018,7 +325906,7 @@
}
},
{
- "id": 25307,
+ "id": 8018,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -325077,7 +325965,7 @@
}
},
{
- "id": 25308,
+ "id": 8019,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -325166,7 +326054,7 @@
}
},
{
- "id": 25309,
+ "id": 8020,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -325243,7 +326131,7 @@
}
},
{
- "id": 25310,
+ "id": 8021,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -325302,7 +326190,7 @@
}
},
{
- "id": 25311,
+ "id": 8022,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -325379,7 +326267,7 @@
}
},
{
- "id": 25312,
+ "id": 8023,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -325448,7 +326336,7 @@
}
},
{
- "id": 25313,
+ "id": 8024,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -325521,32 +326409,32 @@
{
"title": "Properties",
"children": [
- 25288,
- 25289,
- 25290,
- 25291,
- 25292,
- 25293,
- 25294,
- 25295,
- 25296,
- 25297,
- 25298,
- 25299,
- 25300,
- 25301,
- 25302,
- 25303,
- 25304,
- 25305,
- 25306,
- 25307,
- 25308,
- 25309,
- 25310,
- 25311,
- 25312,
- 25313
+ 7999,
+ 8000,
+ 8001,
+ 8002,
+ 8003,
+ 8004,
+ 8005,
+ 8006,
+ 8007,
+ 8008,
+ 8009,
+ 8010,
+ 8011,
+ 8012,
+ 8013,
+ 8014,
+ 8015,
+ 8016,
+ 8017,
+ 8018,
+ 8019,
+ 8020,
+ 8021,
+ 8022,
+ 8023,
+ 8024
]
}
],
@@ -325591,14 +326479,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25314,
+ "id": 8025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25315,
+ "id": 8026,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -325612,7 +326500,7 @@
],
"signatures": [
{
- "id": 25316,
+ "id": 8027,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -325626,7 +326514,7 @@
],
"parameters": [
{
- "id": 25317,
+ "id": 8028,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -325637,14 +326525,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25318,
+ "id": 8029,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25319,
+ "id": 8030,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -325668,7 +326556,7 @@
{
"title": "Properties",
"children": [
- 25319
+ 8030
]
}
],
@@ -325750,7 +326638,7 @@
{
"title": "Methods",
"children": [
- 25315
+ 8026
]
}
],
@@ -325789,7 +326677,7 @@
]
},
{
- "id": 25323,
+ "id": 8034,
"name": "createOrdersStepId",
"variant": "declaration",
"kind": 32,
@@ -325801,7 +326689,7 @@
"fileName": "core-flows/src/order/steps/create-orders.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-orders.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-orders.ts#L13"
}
],
"type": {
@@ -325811,7 +326699,7 @@
"defaultValue": "\"create-orders\""
},
{
- "id": 25324,
+ "id": 8035,
"name": "createOrdersStep",
"variant": "declaration",
"kind": 64,
@@ -325855,7 +326743,7 @@
},
"children": [
{
- "id": 25333,
+ "id": 8044,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -325873,7 +326761,7 @@
}
},
{
- "id": 25334,
+ "id": 8045,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -325895,8 +326783,8 @@
{
"title": "Properties",
"children": [
- 25333,
- 25334
+ 8044,
+ 8045
]
}
],
@@ -325905,12 +326793,12 @@
"fileName": "core-flows/src/order/steps/create-orders.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-orders.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-orders.ts#L31"
}
],
"signatures": [
{
- "id": 25325,
+ "id": 8036,
"name": "createOrdersStep",
"variant": "signature",
"kind": 4096,
@@ -325957,12 +326845,12 @@
"fileName": "core-flows/src/order/steps/create-orders.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/create-orders.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/create-orders.ts#L31"
}
],
"parameters": [
{
- "id": 25326,
+ "id": 8037,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -326087,14 +326975,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25327,
+ "id": 8038,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25328,
+ "id": 8039,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -326108,7 +326996,7 @@
],
"signatures": [
{
- "id": 25329,
+ "id": 8040,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -326122,7 +327010,7 @@
],
"parameters": [
{
- "id": 25330,
+ "id": 8041,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -326133,14 +327021,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25331,
+ "id": 8042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25332,
+ "id": 8043,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -326164,7 +327052,7 @@
{
"title": "Properties",
"children": [
- 25332
+ 8043
]
}
],
@@ -326249,7 +327137,7 @@
{
"title": "Methods",
"children": [
- 25328
+ 8039
]
}
],
@@ -326291,7 +327179,7 @@
]
},
{
- "id": 25335,
+ "id": 8046,
"name": "declineOrderChangeStepId",
"variant": "declaration",
"kind": 32,
@@ -326303,7 +327191,7 @@
"fileName": "core-flows/src/order/steps/decline-order-change.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/decline-order-change.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/decline-order-change.ts#L13"
}
],
"type": {
@@ -326313,7 +327201,7 @@
"defaultValue": "\"decline-order-change\""
},
{
- "id": 25336,
+ "id": 8047,
"name": "declineOrderChangeStep",
"variant": "declaration",
"kind": 64,
@@ -326348,7 +327236,7 @@
},
"children": [
{
- "id": 25339,
+ "id": 8050,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -326366,7 +327254,7 @@
}
},
{
- "id": 25340,
+ "id": 8051,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -326388,8 +327276,8 @@
{
"title": "Properties",
"children": [
- 25339,
- 25340
+ 8050,
+ 8051
]
}
],
@@ -326398,12 +327286,12 @@
"fileName": "core-flows/src/order/steps/decline-order-change.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/decline-order-change.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/decline-order-change.ts#L17"
}
],
"signatures": [
{
- "id": 25337,
+ "id": 8048,
"name": "declineOrderChangeStep",
"variant": "signature",
"kind": 4096,
@@ -326441,12 +327329,12 @@
"fileName": "core-flows/src/order/steps/decline-order-change.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/decline-order-change.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/decline-order-change.ts#L17"
}
],
"parameters": [
{
- "id": 25338,
+ "id": 8049,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -326495,7 +327383,7 @@
]
},
{
- "id": 25342,
+ "id": 8053,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -326513,7 +327401,7 @@
"fileName": "core-flows/src/order/steps/delete-line-items.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-line-items.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-line-items.ts#L12"
}
],
"type": {
@@ -326525,7 +327413,7 @@
}
},
{
- "id": 25343,
+ "id": 8054,
"name": "deleteOrderLineItems",
"variant": "declaration",
"kind": 64,
@@ -326540,7 +327428,7 @@
},
"children": [
{
- "id": 25352,
+ "id": 8063,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -326558,7 +327446,7 @@
}
},
{
- "id": 25353,
+ "id": 8064,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -326580,8 +327468,8 @@
{
"title": "Properties",
"children": [
- 25352,
- 25353
+ 8063,
+ 8064
]
}
],
@@ -326590,12 +327478,12 @@
"fileName": "core-flows/src/order/steps/delete-line-items.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-line-items.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-line-items.ts#L18"
}
],
"signatures": [
{
- "id": 25344,
+ "id": 8055,
"name": "deleteOrderLineItems",
"variant": "signature",
"kind": 4096,
@@ -326613,12 +327501,12 @@
"fileName": "core-flows/src/order/steps/delete-line-items.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-line-items.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-line-items.ts#L18"
}
],
"parameters": [
{
- "id": 25345,
+ "id": 8056,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -326628,7 +327516,7 @@
"types": [
{
"type": "reference",
- "target": 25341,
+ "target": 8052,
"name": "DeleteOrderLineItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -326641,7 +327529,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25341,
+ "target": 8052,
"name": "DeleteOrderLineItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -326705,14 +327593,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25346,
+ "id": 8057,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25347,
+ "id": 8058,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -326726,7 +327614,7 @@
],
"signatures": [
{
- "id": 25348,
+ "id": 8059,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -326740,7 +327628,7 @@
],
"parameters": [
{
- "id": 25349,
+ "id": 8060,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -326751,14 +327639,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25350,
+ "id": 8061,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25351,
+ "id": 8062,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -326782,7 +327670,7 @@
{
"title": "Properties",
"children": [
- 25351
+ 8062
]
}
],
@@ -326886,7 +327774,7 @@
{
"title": "Methods",
"children": [
- 25347
+ 8058
]
}
],
@@ -326947,7 +327835,7 @@
]
},
{
- "id": 25355,
+ "id": 8066,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -326965,7 +327853,7 @@
"fileName": "core-flows/src/order/steps/delete-order-change-actions.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L12"
}
],
"type": {
@@ -326977,7 +327865,7 @@
}
},
{
- "id": 25356,
+ "id": 8067,
"name": "deleteOrderChangeActionsStepId",
"variant": "declaration",
"kind": 32,
@@ -326989,7 +327877,7 @@
"fileName": "core-flows/src/order/steps/delete-order-change-actions.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L15"
}
],
"type": {
@@ -326999,7 +327887,7 @@
"defaultValue": "\"delete-order-change-actions\""
},
{
- "id": 25357,
+ "id": 8068,
"name": "deleteOrderChangeActionsStep",
"variant": "declaration",
"kind": 64,
@@ -327151,7 +328039,7 @@
},
"children": [
{
- "id": 25360,
+ "id": 8071,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -327169,7 +328057,7 @@
}
},
{
- "id": 25361,
+ "id": 8072,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -327191,8 +328079,8 @@
{
"title": "Properties",
"children": [
- 25360,
- 25361
+ 8071,
+ 8072
]
}
],
@@ -327201,12 +328089,12 @@
"fileName": "core-flows/src/order/steps/delete-order-change-actions.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L19"
}
],
"signatures": [
{
- "id": 25358,
+ "id": 8069,
"name": "deleteOrderChangeActionsStep",
"variant": "signature",
"kind": 4096,
@@ -327361,12 +328249,12 @@
"fileName": "core-flows/src/order/steps/delete-order-change-actions.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-change-actions.ts#L19"
}
],
"parameters": [
{
- "id": 25359,
+ "id": 8070,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -327376,7 +328264,7 @@
"types": [
{
"type": "reference",
- "target": 25354,
+ "target": 8065,
"name": "DeleteOrderChangeActionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -327389,7 +328277,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25354,
+ "target": 8065,
"name": "DeleteOrderChangeActionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -327409,7 +328297,7 @@
]
},
{
- "id": 25363,
+ "id": 8074,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -327427,7 +328315,7 @@
"fileName": "core-flows/src/order/steps/delete-order-changes.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L12"
}
],
"type": {
@@ -327439,7 +328327,7 @@
}
},
{
- "id": 25364,
+ "id": 8075,
"name": "deleteOrderChangesStepId",
"variant": "declaration",
"kind": 32,
@@ -327451,7 +328339,7 @@
"fileName": "core-flows/src/order/steps/delete-order-changes.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L15"
}
],
"type": {
@@ -327461,7 +328349,7 @@
"defaultValue": "\"delete-order-change\""
},
{
- "id": 25365,
+ "id": 8076,
"name": "deleteOrderChangesStep",
"variant": "declaration",
"kind": 64,
@@ -327550,7 +328438,7 @@
},
"children": [
{
- "id": 25374,
+ "id": 8085,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -327568,7 +328456,7 @@
}
},
{
- "id": 25375,
+ "id": 8086,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -327590,8 +328478,8 @@
{
"title": "Properties",
"children": [
- 25374,
- 25375
+ 8085,
+ 8086
]
}
],
@@ -327600,12 +328488,12 @@
"fileName": "core-flows/src/order/steps/delete-order-changes.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L19"
}
],
"signatures": [
{
- "id": 25366,
+ "id": 8077,
"name": "deleteOrderChangesStep",
"variant": "signature",
"kind": 4096,
@@ -327697,12 +328585,12 @@
"fileName": "core-flows/src/order/steps/delete-order-changes.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-changes.ts#L19"
}
],
"parameters": [
{
- "id": 25367,
+ "id": 8078,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -327712,7 +328600,7 @@
"types": [
{
"type": "reference",
- "target": 25362,
+ "target": 8073,
"name": "DeleteOrderChangesStepInput",
"package": "@medusajs/core-flows"
},
@@ -327725,7 +328613,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25362,
+ "target": 8073,
"name": "DeleteOrderChangesStepInput",
"package": "@medusajs/core-flows"
}
@@ -327789,14 +328677,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25368,
+ "id": 8079,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25369,
+ "id": 8080,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -327810,7 +328698,7 @@
],
"signatures": [
{
- "id": 25370,
+ "id": 8081,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -327824,7 +328712,7 @@
],
"parameters": [
{
- "id": 25371,
+ "id": 8082,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -327835,14 +328723,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25372,
+ "id": 8083,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25373,
+ "id": 8084,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -327866,7 +328754,7 @@
{
"title": "Properties",
"children": [
- 25373
+ 8084
]
}
],
@@ -327970,7 +328858,7 @@
{
"title": "Methods",
"children": [
- 25369
+ 8080
]
}
],
@@ -328031,7 +328919,7 @@
]
},
{
- "id": 25377,
+ "id": 8088,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -328049,7 +328937,7 @@
"fileName": "core-flows/src/order/steps/delete-order-shipping-methods.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-shipping-methods.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-shipping-methods.ts#L12"
}
],
"type": {
@@ -328061,7 +328949,7 @@
}
},
{
- "id": 25378,
+ "id": 8089,
"name": "deleteOrderShippingMethods",
"variant": "declaration",
"kind": 64,
@@ -328168,7 +329056,7 @@
},
"children": [
{
- "id": 25387,
+ "id": 8098,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -328186,7 +329074,7 @@
}
},
{
- "id": 25388,
+ "id": 8099,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -328208,8 +329096,8 @@
{
"title": "Properties",
"children": [
- 25387,
- 25388
+ 8098,
+ 8099
]
}
],
@@ -328218,12 +329106,12 @@
"fileName": "core-flows/src/order/steps/delete-order-shipping-methods.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-shipping-methods.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-shipping-methods.ts#L18"
}
],
"signatures": [
{
- "id": 25379,
+ "id": 8090,
"name": "deleteOrderShippingMethods",
"variant": "signature",
"kind": 4096,
@@ -328333,12 +329221,12 @@
"fileName": "core-flows/src/order/steps/delete-order-shipping-methods.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/delete-order-shipping-methods.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/delete-order-shipping-methods.ts#L18"
}
],
"parameters": [
{
- "id": 25380,
+ "id": 8091,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -328348,7 +329236,7 @@
"types": [
{
"type": "reference",
- "target": 25376,
+ "target": 8087,
"name": "DeleteOrderShippingMethodsStepInput",
"package": "@medusajs/core-flows"
},
@@ -328361,7 +329249,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25376,
+ "target": 8087,
"name": "DeleteOrderShippingMethodsStepInput",
"package": "@medusajs/core-flows"
}
@@ -328425,14 +329313,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25381,
+ "id": 8092,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25382,
+ "id": 8093,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -328446,7 +329334,7 @@
],
"signatures": [
{
- "id": 25383,
+ "id": 8094,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -328460,7 +329348,7 @@
],
"parameters": [
{
- "id": 25384,
+ "id": 8095,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -328471,14 +329359,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25385,
+ "id": 8096,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25386,
+ "id": 8097,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -328502,7 +329390,7 @@
{
"title": "Properties",
"children": [
- 25386
+ 8097
]
}
],
@@ -328606,7 +329494,7 @@
{
"title": "Methods",
"children": [
- 25382
+ 8093
]
}
],
@@ -328667,7 +329555,7 @@
]
},
{
- "id": 25389,
+ "id": 8100,
"name": "cancelOrderExchangeStepId",
"variant": "declaration",
"kind": 32,
@@ -328679,7 +329567,7 @@
"fileName": "core-flows/src/order/steps/exchange/cancel-exchange.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/cancel-exchange.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/cancel-exchange.ts#L8"
}
],
"type": {
@@ -328689,7 +329577,7 @@
"defaultValue": "\"cancel-order-swap\""
},
{
- "id": 25390,
+ "id": 8101,
"name": "cancelOrderExchangeStep",
"variant": "declaration",
"kind": 64,
@@ -328715,7 +329603,7 @@
},
"children": [
{
- "id": 25393,
+ "id": 8104,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -328733,7 +329621,7 @@
}
},
{
- "id": 25394,
+ "id": 8105,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -328755,8 +329643,8 @@
{
"title": "Properties",
"children": [
- 25393,
- 25394
+ 8104,
+ 8105
]
}
],
@@ -328765,12 +329653,12 @@
"fileName": "core-flows/src/order/steps/exchange/cancel-exchange.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/cancel-exchange.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/cancel-exchange.ts#L12"
}
],
"signatures": [
{
- "id": 25391,
+ "id": 8102,
"name": "cancelOrderExchangeStep",
"variant": "signature",
"kind": 4096,
@@ -328799,12 +329687,12 @@
"fileName": "core-flows/src/order/steps/exchange/cancel-exchange.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/cancel-exchange.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/cancel-exchange.ts#L12"
}
],
"parameters": [
{
- "id": 25392,
+ "id": 8103,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -328853,7 +329741,7 @@
]
},
{
- "id": 25395,
+ "id": 8106,
"name": "listOrderChangeActionsByTypeStep",
"variant": "declaration",
"kind": 64,
@@ -328888,7 +329776,7 @@
},
"children": [
{
- "id": 25410,
+ "id": 8121,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -328906,7 +329794,7 @@
}
},
{
- "id": 25411,
+ "id": 8122,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -328928,8 +329816,8 @@
{
"title": "Properties",
"children": [
- 25410,
- 25411
+ 8121,
+ 8122
]
}
],
@@ -328938,12 +329826,12 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L10"
}
],
"signatures": [
{
- "id": 25396,
+ "id": 8107,
"name": "listOrderChangeActionsByTypeStep",
"variant": "signature",
"kind": 4096,
@@ -328981,12 +329869,12 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L10"
}
],
"parameters": [
{
- "id": 25397,
+ "id": 8108,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -328997,14 +329885,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25398,
+ "id": 8109,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25399,
+ "id": 8110,
"name": "order_change_id",
"variant": "declaration",
"kind": 1024,
@@ -329014,7 +329902,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 17,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
}
],
"type": {
@@ -329023,7 +329911,7 @@
}
},
{
- "id": 25400,
+ "id": 8111,
"name": "action_type",
"variant": "declaration",
"kind": 1024,
@@ -329033,7 +329921,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 18,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
}
],
"type": {
@@ -329051,8 +329939,8 @@
{
"title": "Properties",
"children": [
- 25399,
- 25400
+ 8110,
+ 8111
]
}
],
@@ -329061,7 +329949,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 16,
"character": 7,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L16"
}
]
}
@@ -329076,14 +329964,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25401,
+ "id": 8112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25402,
+ "id": 8113,
"name": "order_change_id",
"variant": "declaration",
"kind": 1024,
@@ -329093,7 +329981,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 17,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
}
],
"type": {
@@ -329102,7 +329990,7 @@
}
},
{
- "id": 25403,
+ "id": 8114,
"name": "action_type",
"variant": "declaration",
"kind": 1024,
@@ -329112,7 +330000,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 18,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
}
],
"type": {
@@ -329130,8 +330018,8 @@
{
"title": "Properties",
"children": [
- 25402,
- 25403
+ 8113,
+ 8114
]
}
],
@@ -329140,7 +330028,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 16,
"character": 7,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L16"
}
]
}
@@ -329211,14 +330099,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25404,
+ "id": 8115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25405,
+ "id": 8116,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -329232,7 +330120,7 @@
],
"signatures": [
{
- "id": 25406,
+ "id": 8117,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -329246,7 +330134,7 @@
],
"parameters": [
{
- "id": 25407,
+ "id": 8118,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -329257,14 +330145,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25408,
+ "id": 8119,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25409,
+ "id": 8120,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -329288,7 +330176,7 @@
{
"title": "Properties",
"children": [
- 25409
+ 8120
]
}
],
@@ -329368,7 +330256,7 @@
{
"title": "Methods",
"children": [
- 25405
+ 8116
]
}
],
@@ -329405,7 +330293,7 @@
]
},
{
- "id": 25399,
+ "id": 8110,
"name": "order_change_id",
"variant": "declaration",
"kind": 1024,
@@ -329415,7 +330303,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 17,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
}
],
"type": {
@@ -329424,7 +330312,7 @@
}
},
{
- "id": 25400,
+ "id": 8111,
"name": "action_type",
"variant": "declaration",
"kind": 1024,
@@ -329434,7 +330322,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 18,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
}
],
"type": {
@@ -329448,7 +330336,7 @@
}
},
{
- "id": 25402,
+ "id": 8113,
"name": "order_change_id",
"variant": "declaration",
"kind": 1024,
@@ -329458,7 +330346,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 17,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L17"
}
],
"type": {
@@ -329467,7 +330355,7 @@
}
},
{
- "id": 25403,
+ "id": 8114,
"name": "action_type",
"variant": "declaration",
"kind": 1024,
@@ -329477,7 +330365,7 @@
"fileName": "core-flows/src/order/steps/list-order-change-actions-by-type.ts",
"line": 18,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/list-order-change-actions-by-type.ts#L18"
}
],
"type": {
@@ -329491,7 +330379,7 @@
}
},
{
- "id": 25412,
+ "id": 8123,
"name": "createOrderExchangesStepId",
"variant": "declaration",
"kind": 32,
@@ -329503,7 +330391,7 @@
"fileName": "core-flows/src/order/steps/exchange/create-exchange.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/create-exchange.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/create-exchange.ts#L8"
}
],
"type": {
@@ -329513,7 +330401,7 @@
"defaultValue": "\"create-order-exchanges\""
},
{
- "id": 25413,
+ "id": 8124,
"name": "createOrderExchangesStep",
"variant": "declaration",
"kind": 64,
@@ -329539,7 +330427,7 @@
},
"children": [
{
- "id": 25422,
+ "id": 8133,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -329557,7 +330445,7 @@
}
},
{
- "id": 25423,
+ "id": 8134,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -329579,8 +330467,8 @@
{
"title": "Properties",
"children": [
- 25422,
- 25423
+ 8133,
+ 8134
]
}
],
@@ -329589,12 +330477,12 @@
"fileName": "core-flows/src/order/steps/exchange/create-exchange.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/create-exchange.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/create-exchange.ts#L12"
}
],
"signatures": [
{
- "id": 25414,
+ "id": 8125,
"name": "createOrderExchangesStep",
"variant": "signature",
"kind": 4096,
@@ -329623,12 +330511,12 @@
"fileName": "core-flows/src/order/steps/exchange/create-exchange.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/create-exchange.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/create-exchange.ts#L12"
}
],
"parameters": [
{
- "id": 25415,
+ "id": 8126,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -329753,14 +330641,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25416,
+ "id": 8127,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25417,
+ "id": 8128,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -329774,7 +330662,7 @@
],
"signatures": [
{
- "id": 25418,
+ "id": 8129,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -329788,7 +330676,7 @@
],
"parameters": [
{
- "id": 25419,
+ "id": 8130,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -329799,14 +330687,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25420,
+ "id": 8131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25421,
+ "id": 8132,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -329830,7 +330718,7 @@
{
"title": "Properties",
"children": [
- 25421
+ 8132
]
}
],
@@ -329915,7 +330803,7 @@
{
"title": "Methods",
"children": [
- 25417
+ 8128
]
}
],
@@ -329957,7 +330845,7 @@
]
},
{
- "id": 25426,
+ "id": 8137,
"name": "changes",
"variant": "declaration",
"kind": 1024,
@@ -329975,7 +330863,7 @@
"fileName": "core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L16"
}
],
"type": {
@@ -329992,7 +330880,7 @@
}
},
{
- "id": 25427,
+ "id": 8138,
"name": "exchangeId",
"variant": "declaration",
"kind": 1024,
@@ -330010,7 +330898,7 @@
"fileName": "core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L20"
}
],
"type": {
@@ -330019,7 +330907,7 @@
}
},
{
- "id": 25428,
+ "id": 8139,
"name": "createOrderExchangeItemsFromActionsStep",
"variant": "declaration",
"kind": 64,
@@ -330054,7 +330942,7 @@
},
"children": [
{
- "id": 25437,
+ "id": 8148,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -330072,7 +330960,7 @@
}
},
{
- "id": 25438,
+ "id": 8149,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -330094,8 +330982,8 @@
{
"title": "Properties",
"children": [
- 25437,
- 25438
+ 8148,
+ 8149
]
}
],
@@ -330104,12 +330992,12 @@
"fileName": "core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L44"
}
],
"signatures": [
{
- "id": 25429,
+ "id": 8140,
"name": "createOrderExchangeItemsFromActionsStep",
"variant": "signature",
"kind": 4096,
@@ -330147,12 +331035,12 @@
"fileName": "core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/create-exchange-items-from-actions.ts#L44"
}
],
"parameters": [
{
- "id": 25430,
+ "id": 8141,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -330162,7 +331050,7 @@
"types": [
{
"type": "reference",
- "target": 25424,
+ "target": 8135,
"name": "CreateOrderExchangeItemsFromActionsInput",
"package": "@medusajs/core-flows"
},
@@ -330175,7 +331063,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25424,
+ "target": 8135,
"name": "CreateOrderExchangeItemsFromActionsInput",
"package": "@medusajs/core-flows"
}
@@ -330265,14 +331153,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25431,
+ "id": 8142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25432,
+ "id": 8143,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -330286,7 +331174,7 @@
],
"signatures": [
{
- "id": 25433,
+ "id": 8144,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -330300,7 +331188,7 @@
],
"parameters": [
{
- "id": 25434,
+ "id": 8145,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -330311,14 +331199,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25435,
+ "id": 8146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25436,
+ "id": 8147,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -330342,7 +331230,7 @@
{
"title": "Properties",
"children": [
- 25436
+ 8147
]
}
],
@@ -330427,7 +331315,7 @@
{
"title": "Methods",
"children": [
- 25432
+ 8143
]
}
],
@@ -330469,7 +331357,7 @@
]
},
{
- "id": 25441,
+ "id": 8152,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -330487,7 +331375,7 @@
"fileName": "core-flows/src/order/steps/exchange/delete-exchanges.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L12"
}
],
"type": {
@@ -330499,7 +331387,7 @@
}
},
{
- "id": 25442,
+ "id": 8153,
"name": "deleteExchangesStepId",
"variant": "declaration",
"kind": 32,
@@ -330511,7 +331399,7 @@
"fileName": "core-flows/src/order/steps/exchange/delete-exchanges.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L15"
}
],
"type": {
@@ -330521,7 +331409,7 @@
"defaultValue": "\"delete-exchanges\""
},
{
- "id": 25443,
+ "id": 8154,
"name": "deleteExchangesStep",
"variant": "declaration",
"kind": 64,
@@ -330547,7 +331435,7 @@
},
"children": [
{
- "id": 25452,
+ "id": 8163,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -330565,7 +331453,7 @@
}
},
{
- "id": 25453,
+ "id": 8164,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -330587,8 +331475,8 @@
{
"title": "Properties",
"children": [
- 25452,
- 25453
+ 8163,
+ 8164
]
}
],
@@ -330597,12 +331485,12 @@
"fileName": "core-flows/src/order/steps/exchange/delete-exchanges.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L19"
}
],
"signatures": [
{
- "id": 25444,
+ "id": 8155,
"name": "deleteExchangesStep",
"variant": "signature",
"kind": 4096,
@@ -330631,12 +331519,12 @@
"fileName": "core-flows/src/order/steps/exchange/delete-exchanges.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/exchange/delete-exchanges.ts#L19"
}
],
"parameters": [
{
- "id": 25445,
+ "id": 8156,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -330646,7 +331534,7 @@
"types": [
{
"type": "reference",
- "target": 25439,
+ "target": 8150,
"name": "DeleteOrderExchangesInput",
"package": "@medusajs/core-flows"
},
@@ -330659,7 +331547,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25439,
+ "target": 8150,
"name": "DeleteOrderExchangesInput",
"package": "@medusajs/core-flows"
}
@@ -330723,14 +331611,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25446,
+ "id": 8157,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25447,
+ "id": 8158,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -330744,7 +331632,7 @@
],
"signatures": [
{
- "id": 25448,
+ "id": 8159,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -330758,7 +331646,7 @@
],
"parameters": [
{
- "id": 25449,
+ "id": 8160,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -330769,14 +331657,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25450,
+ "id": 8161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25451,
+ "id": 8162,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -330800,7 +331688,7 @@
{
"title": "Properties",
"children": [
- 25451
+ 8162
]
}
],
@@ -330904,7 +331792,7 @@
{
"title": "Methods",
"children": [
- 25447
+ 8158
]
}
],
@@ -330965,7 +331853,7 @@
]
},
{
- "id": 25455,
+ "id": 8166,
"name": "previewOrderChangeStepId",
"variant": "declaration",
"kind": 32,
@@ -330977,7 +331865,7 @@
"fileName": "core-flows/src/order/steps/preview-order-change.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/preview-order-change.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/preview-order-change.ts#L10"
}
],
"type": {
@@ -330987,7 +331875,7 @@
"defaultValue": "\"preview-order-change\""
},
{
- "id": 25456,
+ "id": 8167,
"name": "previewOrderChangeStep",
"variant": "declaration",
"kind": 64,
@@ -331517,7 +332405,7 @@
},
"children": [
{
- "id": 25548,
+ "id": 8259,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -331535,7 +332423,7 @@
}
},
{
- "id": 25549,
+ "id": 8260,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -331557,8 +332445,8 @@
{
"title": "Properties",
"children": [
- 25548,
- 25549
+ 8259,
+ 8260
]
}
],
@@ -331567,12 +332455,12 @@
"fileName": "core-flows/src/order/steps/preview-order-change.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/preview-order-change.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/preview-order-change.ts#L14"
}
],
"signatures": [
{
- "id": 25457,
+ "id": 8168,
"name": "previewOrderChangeStep",
"variant": "signature",
"kind": 4096,
@@ -332105,12 +332993,12 @@
"fileName": "core-flows/src/order/steps/preview-order-change.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/preview-order-change.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/preview-order-change.ts#L14"
}
],
"parameters": [
{
- "id": 25458,
+ "id": 8169,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -332147,14 +333035,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25459,
+ "id": 8170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25472,
+ "id": 8183,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -332200,7 +333088,7 @@
}
},
{
- "id": 25532,
+ "id": 8243,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -332246,7 +333134,7 @@
}
},
{
- "id": 25533,
+ "id": 8244,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -332292,7 +333180,7 @@
}
},
{
- "id": 25534,
+ "id": 8245,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -332349,7 +333237,7 @@
}
},
{
- "id": 25535,
+ "id": 8246,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -332405,7 +333293,7 @@
}
},
{
- "id": 25500,
+ "id": 8211,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -332462,7 +333350,7 @@
}
},
{
- "id": 25501,
+ "id": 8212,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -332519,7 +333407,7 @@
}
},
{
- "id": 25502,
+ "id": 8213,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -332576,7 +333464,7 @@
}
},
{
- "id": 25477,
+ "id": 8188,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -332633,7 +333521,7 @@
}
},
{
- "id": 25503,
+ "id": 8214,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -332679,7 +333567,7 @@
}
},
{
- "id": 25504,
+ "id": 8215,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -332749,7 +333637,7 @@
}
},
{
- "id": 25505,
+ "id": 8216,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -332819,7 +333707,7 @@
}
},
{
- "id": 25536,
+ "id": 8247,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -332895,7 +333783,7 @@
}
},
{
- "id": 25506,
+ "id": 8217,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -332971,7 +333859,7 @@
}
},
{
- "id": 25537,
+ "id": 8248,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -333041,7 +333929,7 @@
}
},
{
- "id": 25538,
+ "id": 8249,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -333098,7 +333986,7 @@
}
},
{
- "id": 25476,
+ "id": 8187,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -333193,7 +334081,7 @@
}
},
{
- "id": 25531,
+ "id": 8242,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -333268,7 +334156,7 @@
}
},
{
- "id": 25473,
+ "id": 8184,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -333337,7 +334225,7 @@
}
},
{
- "id": 25474,
+ "id": 8185,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -333406,7 +334294,7 @@
}
},
{
- "id": 25475,
+ "id": 8186,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -333481,7 +334369,7 @@
}
},
{
- "id": 25507,
+ "id": 8218,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -333537,7 +334425,7 @@
}
},
{
- "id": 25508,
+ "id": 8219,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -333593,7 +334481,7 @@
}
},
{
- "id": 25509,
+ "id": 8220,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -333649,7 +334537,7 @@
}
},
{
- "id": 25481,
+ "id": 8192,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -333705,7 +334593,7 @@
}
},
{
- "id": 25482,
+ "id": 8193,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -333761,7 +334649,7 @@
}
},
{
- "id": 25483,
+ "id": 8194,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -333817,7 +334705,7 @@
}
},
{
- "id": 25539,
+ "id": 8250,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -333873,7 +334761,7 @@
}
},
{
- "id": 25478,
+ "id": 8189,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -333929,7 +334817,7 @@
}
},
{
- "id": 25479,
+ "id": 8190,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -333985,7 +334873,7 @@
}
},
{
- "id": 25480,
+ "id": 8191,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -334041,7 +334929,7 @@
}
},
{
- "id": 25484,
+ "id": 8195,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -334097,7 +334985,7 @@
}
},
{
- "id": 25485,
+ "id": 8196,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -334153,7 +335041,7 @@
}
},
{
- "id": 25486,
+ "id": 8197,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -334209,7 +335097,7 @@
}
},
{
- "id": 25540,
+ "id": 8251,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -334265,7 +335153,7 @@
}
},
{
- "id": 25487,
+ "id": 8198,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -334321,7 +335209,7 @@
}
},
{
- "id": 25488,
+ "id": 8199,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -334377,7 +335265,7 @@
}
},
{
- "id": 25530,
+ "id": 8241,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -334433,7 +335321,7 @@
}
},
{
- "id": 25510,
+ "id": 8221,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -334489,7 +335377,7 @@
}
},
{
- "id": 25511,
+ "id": 8222,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -334545,7 +335433,7 @@
}
},
{
- "id": 25512,
+ "id": 8223,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -334601,7 +335489,7 @@
}
},
{
- "id": 25513,
+ "id": 8224,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -334657,7 +335545,7 @@
}
},
{
- "id": 25514,
+ "id": 8225,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -334713,7 +335601,7 @@
}
},
{
- "id": 25541,
+ "id": 8252,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -334769,7 +335657,7 @@
}
},
{
- "id": 25515,
+ "id": 8226,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -334825,7 +335713,7 @@
}
},
{
- "id": 25516,
+ "id": 8227,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -334881,7 +335769,7 @@
}
},
{
- "id": 25517,
+ "id": 8228,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -334937,7 +335825,7 @@
}
},
{
- "id": 25460,
+ "id": 8171,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -334993,7 +335881,7 @@
}
},
{
- "id": 25461,
+ "id": 8172,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -335033,14 +335921,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25462,
+ "id": 8173,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25463,
+ "id": 8174,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -335072,7 +335960,7 @@
{
"title": "Properties",
"children": [
- 25463
+ 8174
]
}
],
@@ -335112,14 +336000,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25464,
+ "id": 8175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25465,
+ "id": 8176,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -335151,7 +336039,7 @@
{
"title": "Properties",
"children": [
- 25465
+ 8176
]
}
],
@@ -335175,7 +336063,7 @@
}
},
{
- "id": 25466,
+ "id": 8177,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -335215,14 +336103,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25467,
+ "id": 8178,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25468,
+ "id": 8179,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -335254,7 +336142,7 @@
{
"title": "Properties",
"children": [
- 25468
+ 8179
]
}
],
@@ -335294,14 +336182,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25469,
+ "id": 8180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25470,
+ "id": 8181,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -335333,7 +336221,7 @@
{
"title": "Properties",
"children": [
- 25470
+ 8181
]
}
],
@@ -335357,7 +336245,7 @@
}
},
{
- "id": 25471,
+ "id": 8182,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -335407,57 +336295,57 @@
{
"title": "Properties",
"children": [
- 25472,
- 25532,
- 25533,
- 25534,
- 25535,
- 25500,
- 25501,
- 25502,
- 25477,
- 25503,
- 25504,
- 25505,
- 25536,
- 25506,
- 25537,
- 25538,
- 25476,
- 25531,
- 25473,
- 25474,
- 25475,
- 25507,
- 25508,
- 25509,
- 25481,
- 25482,
- 25483,
- 25539,
- 25478,
- 25479,
- 25480,
- 25484,
- 25485,
- 25486,
- 25540,
- 25487,
- 25488,
- 25530,
- 25510,
- 25511,
- 25512,
- 25513,
- 25514,
- 25541,
- 25515,
- 25516,
- 25517,
- 25460,
- 25461,
- 25466,
- 25471
+ 8183,
+ 8243,
+ 8244,
+ 8245,
+ 8246,
+ 8211,
+ 8212,
+ 8213,
+ 8188,
+ 8214,
+ 8215,
+ 8216,
+ 8247,
+ 8217,
+ 8248,
+ 8249,
+ 8187,
+ 8242,
+ 8184,
+ 8185,
+ 8186,
+ 8218,
+ 8219,
+ 8220,
+ 8192,
+ 8193,
+ 8194,
+ 8250,
+ 8189,
+ 8190,
+ 8191,
+ 8195,
+ 8196,
+ 8197,
+ 8251,
+ 8198,
+ 8199,
+ 8241,
+ 8221,
+ 8222,
+ 8223,
+ 8224,
+ 8225,
+ 8252,
+ 8226,
+ 8227,
+ 8228,
+ 8171,
+ 8172,
+ 8177,
+ 8182
]
}
],
@@ -335502,14 +336390,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25542,
+ "id": 8253,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25543,
+ "id": 8254,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -335523,7 +336411,7 @@
],
"signatures": [
{
- "id": 25544,
+ "id": 8255,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -335537,7 +336425,7 @@
],
"parameters": [
{
- "id": 25545,
+ "id": 8256,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -335548,14 +336436,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25546,
+ "id": 8257,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25547,
+ "id": 8258,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -335579,7 +336467,7 @@
{
"title": "Properties",
"children": [
- 25547
+ 8258
]
}
],
@@ -335661,7 +336549,7 @@
{
"title": "Methods",
"children": [
- 25543
+ 8254
]
}
],
@@ -335700,7 +336588,7 @@
]
},
{
- "id": 25550,
+ "id": 8261,
"name": "registerOrderDeliveryStepId",
"variant": "declaration",
"kind": 32,
@@ -335712,7 +336600,7 @@
"fileName": "core-flows/src/order/steps/register-delivery.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-delivery.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-delivery.ts#L8"
}
],
"type": {
@@ -335722,7 +336610,7 @@
"defaultValue": "\"register-order-delivery\""
},
{
- "id": 25551,
+ "id": 8262,
"name": "registerOrderDeliveryStep",
"variant": "declaration",
"kind": 64,
@@ -335748,7 +336636,7 @@
},
"children": [
{
- "id": 25554,
+ "id": 8265,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -335766,7 +336654,7 @@
}
},
{
- "id": 25555,
+ "id": 8266,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -335788,8 +336676,8 @@
{
"title": "Properties",
"children": [
- 25554,
- 25555
+ 8265,
+ 8266
]
}
],
@@ -335798,12 +336686,12 @@
"fileName": "core-flows/src/order/steps/register-delivery.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-delivery.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-delivery.ts#L12"
}
],
"signatures": [
{
- "id": 25552,
+ "id": 8263,
"name": "registerOrderDeliveryStep",
"variant": "signature",
"kind": 4096,
@@ -335832,12 +336720,12 @@
"fileName": "core-flows/src/order/steps/register-delivery.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-delivery.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-delivery.ts#L12"
}
],
"parameters": [
{
- "id": 25553,
+ "id": 8264,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -335886,7 +336774,7 @@
]
},
{
- "id": 25556,
+ "id": 8267,
"name": "registerOrderFulfillmentStepId",
"variant": "declaration",
"kind": 32,
@@ -335898,7 +336786,7 @@
"fileName": "core-flows/src/order/steps/register-fulfillment.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-fulfillment.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-fulfillment.ts#L8"
}
],
"type": {
@@ -335908,7 +336796,7 @@
"defaultValue": "\"register-order-fullfillment\""
},
{
- "id": 25557,
+ "id": 8268,
"name": "registerOrderFulfillmentStep",
"variant": "declaration",
"kind": 64,
@@ -335943,7 +336831,7 @@
},
"children": [
{
- "id": 25560,
+ "id": 8271,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -335961,7 +336849,7 @@
}
},
{
- "id": 25561,
+ "id": 8272,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -335983,8 +336871,8 @@
{
"title": "Properties",
"children": [
- 25560,
- 25561
+ 8271,
+ 8272
]
}
],
@@ -335993,12 +336881,12 @@
"fileName": "core-flows/src/order/steps/register-fulfillment.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-fulfillment.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-fulfillment.ts#L21"
}
],
"signatures": [
{
- "id": 25558,
+ "id": 8269,
"name": "registerOrderFulfillmentStep",
"variant": "signature",
"kind": 4096,
@@ -336036,12 +336924,12 @@
"fileName": "core-flows/src/order/steps/register-fulfillment.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-fulfillment.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-fulfillment.ts#L21"
}
],
"parameters": [
{
- "id": 25559,
+ "id": 8270,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -336090,7 +336978,7 @@
]
},
{
- "id": 25563,
+ "id": 8274,
"name": "registerOrderChangeStepId",
"variant": "declaration",
"kind": 32,
@@ -336102,7 +336990,7 @@
"fileName": "core-flows/src/order/steps/register-order-changes.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-order-changes.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-order-changes.ts#L13"
}
],
"type": {
@@ -336112,7 +337000,7 @@
"defaultValue": "\"register-order-change\""
},
{
- "id": 25564,
+ "id": 8275,
"name": "registerOrderChangesStep",
"variant": "declaration",
"kind": 64,
@@ -336147,7 +337035,7 @@
},
"children": [
{
- "id": 25567,
+ "id": 8278,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -336165,7 +337053,7 @@
}
},
{
- "id": 25568,
+ "id": 8279,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -336187,8 +337075,8 @@
{
"title": "Properties",
"children": [
- 25567,
- 25568
+ 8278,
+ 8279
]
}
],
@@ -336197,12 +337085,12 @@
"fileName": "core-flows/src/order/steps/register-order-changes.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-order-changes.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-order-changes.ts#L18"
}
],
"signatures": [
{
- "id": 25565,
+ "id": 8276,
"name": "registerOrderChangesStep",
"variant": "signature",
"kind": 4096,
@@ -336240,12 +337128,12 @@
"fileName": "core-flows/src/order/steps/register-order-changes.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-order-changes.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-order-changes.ts#L18"
}
],
"parameters": [
{
- "id": 25566,
+ "id": 8277,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -336255,7 +337143,7 @@
"types": [
{
"type": "reference",
- "target": 25562,
+ "target": 8273,
"name": "RegisterOrderChangeStepInput",
"package": "@medusajs/core-flows"
},
@@ -336268,7 +337156,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25562,
+ "target": 8273,
"name": "RegisterOrderChangeStepInput",
"package": "@medusajs/core-flows"
}
@@ -336288,7 +337176,7 @@
]
},
{
- "id": 25569,
+ "id": 8280,
"name": "registerOrderShipmentStepId",
"variant": "declaration",
"kind": 32,
@@ -336300,7 +337188,7 @@
"fileName": "core-flows/src/order/steps/register-shipment.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-shipment.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-shipment.ts#L8"
}
],
"type": {
@@ -336310,7 +337198,7 @@
"defaultValue": "\"register-order-shipment\""
},
{
- "id": 25570,
+ "id": 8281,
"name": "registerOrderShipmentStep",
"variant": "declaration",
"kind": 64,
@@ -336336,7 +337224,7 @@
},
"children": [
{
- "id": 25573,
+ "id": 8284,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -336354,7 +337242,7 @@
}
},
{
- "id": 25574,
+ "id": 8285,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -336376,8 +337264,8 @@
{
"title": "Properties",
"children": [
- 25573,
- 25574
+ 8284,
+ 8285
]
}
],
@@ -336386,12 +337274,12 @@
"fileName": "core-flows/src/order/steps/register-shipment.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-shipment.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-shipment.ts#L12"
}
],
"signatures": [
{
- "id": 25571,
+ "id": 8282,
"name": "registerOrderShipmentStep",
"variant": "signature",
"kind": 4096,
@@ -336420,12 +337308,12 @@
"fileName": "core-flows/src/order/steps/register-shipment.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/register-shipment.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/register-shipment.ts#L12"
}
],
"parameters": [
{
- "id": 25572,
+ "id": 8283,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -336474,7 +337362,7 @@
]
},
{
- "id": 25575,
+ "id": 8286,
"name": "cancelOrderReturnStepId",
"variant": "declaration",
"kind": 32,
@@ -336486,7 +337374,7 @@
"fileName": "core-flows/src/order/steps/return/cancel-return.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/cancel-return.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/cancel-return.ts#L8"
}
],
"type": {
@@ -336496,7 +337384,7 @@
"defaultValue": "\"cancel-order-return\""
},
{
- "id": 25576,
+ "id": 8287,
"name": "cancelOrderReturnStep",
"variant": "declaration",
"kind": 64,
@@ -336522,7 +337410,7 @@
},
"children": [
{
- "id": 25579,
+ "id": 8290,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -336540,7 +337428,7 @@
}
},
{
- "id": 25580,
+ "id": 8291,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -336562,8 +337450,8 @@
{
"title": "Properties",
"children": [
- 25579,
- 25580
+ 8290,
+ 8291
]
}
],
@@ -336572,12 +337460,12 @@
"fileName": "core-flows/src/order/steps/return/cancel-return.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/cancel-return.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/cancel-return.ts#L12"
}
],
"signatures": [
{
- "id": 25577,
+ "id": 8288,
"name": "cancelOrderReturnStep",
"variant": "signature",
"kind": 4096,
@@ -336606,12 +337494,12 @@
"fileName": "core-flows/src/order/steps/return/cancel-return.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/cancel-return.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/cancel-return.ts#L12"
}
],
"parameters": [
{
- "id": 25578,
+ "id": 8289,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -336660,7 +337548,7 @@
]
},
{
- "id": 25581,
+ "id": 8292,
"name": "createCompleteReturnStepId",
"variant": "declaration",
"kind": 32,
@@ -336672,7 +337560,7 @@
"fileName": "core-flows/src/order/steps/return/create-complete-return.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/create-complete-return.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/create-complete-return.ts#L8"
}
],
"type": {
@@ -336682,7 +337570,7 @@
"defaultValue": "\"create-complete-return\""
},
{
- "id": 25582,
+ "id": 8293,
"name": "createCompleteReturnStep",
"variant": "declaration",
"kind": 64,
@@ -336708,7 +337596,7 @@
},
"children": [
{
- "id": 25616,
+ "id": 8327,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -336726,7 +337614,7 @@
}
},
{
- "id": 25617,
+ "id": 8328,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -336748,8 +337636,8 @@
{
"title": "Properties",
"children": [
- 25616,
- 25617
+ 8327,
+ 8328
]
}
],
@@ -336758,12 +337646,12 @@
"fileName": "core-flows/src/order/steps/return/create-complete-return.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/create-complete-return.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/create-complete-return.ts#L12"
}
],
"signatures": [
{
- "id": 25583,
+ "id": 8294,
"name": "createCompleteReturnStep",
"variant": "signature",
"kind": 4096,
@@ -336792,12 +337680,12 @@
"fileName": "core-flows/src/order/steps/return/create-complete-return.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/create-complete-return.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/create-complete-return.ts#L12"
}
],
"parameters": [
{
- "id": 25584,
+ "id": 8295,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -336844,14 +337732,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25585,
+ "id": 8296,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25586,
+ "id": 8297,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -336897,7 +337785,7 @@
}
},
{
- "id": 25587,
+ "id": 8298,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -336953,7 +337841,7 @@
}
},
{
- "id": 25588,
+ "id": 8299,
"name": "refund_amount",
"variant": "declaration",
"kind": 1024,
@@ -337006,7 +337894,7 @@
}
},
{
- "id": 25589,
+ "id": 8300,
"name": "raw_refund_amount",
"variant": "declaration",
"kind": 1024,
@@ -337059,7 +337947,7 @@
}
},
{
- "id": 25590,
+ "id": 8301,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -337105,7 +337993,7 @@
}
},
{
- "id": 25591,
+ "id": 8302,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -337172,7 +338060,7 @@
}
},
{
- "id": 25592,
+ "id": 8303,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -337234,7 +338122,7 @@
}
},
{
- "id": 25593,
+ "id": 8304,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -337291,7 +338179,7 @@
}
},
{
- "id": 25594,
+ "id": 8305,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -337358,7 +338246,7 @@
}
},
{
- "id": 25595,
+ "id": 8306,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -337415,7 +338303,7 @@
}
},
{
- "id": 25596,
+ "id": 8307,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -337482,7 +338370,7 @@
}
},
{
- "id": 25597,
+ "id": 8308,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -337528,7 +338416,7 @@
}
},
{
- "id": 25598,
+ "id": 8309,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -337585,7 +338473,7 @@
}
},
{
- "id": 25599,
+ "id": 8310,
"name": "no_notification",
"variant": "declaration",
"kind": 1024,
@@ -337642,7 +338530,7 @@
}
},
{
- "id": 25600,
+ "id": 8311,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -337707,7 +338595,7 @@
}
},
{
- "id": 25601,
+ "id": 8312,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -337780,7 +338668,7 @@
}
},
{
- "id": 25602,
+ "id": 8313,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -337853,7 +338741,7 @@
}
},
{
- "id": 25603,
+ "id": 8314,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -337942,7 +338830,7 @@
}
},
{
- "id": 25604,
+ "id": 8315,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -338017,7 +338905,7 @@
}
},
{
- "id": 25605,
+ "id": 8316,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -338092,7 +338980,7 @@
}
},
{
- "id": 25606,
+ "id": 8317,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -338167,7 +339055,7 @@
}
},
{
- "id": 25607,
+ "id": 8318,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -338242,7 +339130,7 @@
}
},
{
- "id": 25608,
+ "id": 8319,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -338317,7 +339205,7 @@
}
},
{
- "id": 25609,
+ "id": 8320,
"name": "received_at",
"variant": "declaration",
"kind": 1024,
@@ -338396,30 +339284,30 @@
{
"title": "Properties",
"children": [
- 25586,
- 25587,
- 25588,
- 25589,
- 25590,
- 25591,
- 25592,
- 25593,
- 25594,
- 25595,
- 25596,
- 25597,
- 25598,
- 25599,
- 25600,
- 25601,
- 25602,
- 25603,
- 25604,
- 25605,
- 25606,
- 25607,
- 25608,
- 25609
+ 8297,
+ 8298,
+ 8299,
+ 8300,
+ 8301,
+ 8302,
+ 8303,
+ 8304,
+ 8305,
+ 8306,
+ 8307,
+ 8308,
+ 8309,
+ 8310,
+ 8311,
+ 8312,
+ 8313,
+ 8314,
+ 8315,
+ 8316,
+ 8317,
+ 8318,
+ 8319,
+ 8320
]
}
],
@@ -338464,14 +339352,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25610,
+ "id": 8321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25611,
+ "id": 8322,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -338485,7 +339373,7 @@
],
"signatures": [
{
- "id": 25612,
+ "id": 8323,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -338499,7 +339387,7 @@
],
"parameters": [
{
- "id": 25613,
+ "id": 8324,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -338510,14 +339398,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25614,
+ "id": 8325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25615,
+ "id": 8326,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -338541,7 +339429,7 @@
{
"title": "Properties",
"children": [
- 25615
+ 8326
]
}
],
@@ -338623,7 +339511,7 @@
{
"title": "Methods",
"children": [
- 25611
+ 8322
]
}
],
@@ -338662,7 +339550,7 @@
]
},
{
- "id": 25618,
+ "id": 8329,
"name": "createReturnsStepId",
"variant": "declaration",
"kind": 32,
@@ -338674,7 +339562,7 @@
"fileName": "core-flows/src/order/steps/return/create-returns.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/create-returns.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/create-returns.ts#L8"
}
],
"type": {
@@ -338684,7 +339572,7 @@
"defaultValue": "\"create-returns\""
},
{
- "id": 25619,
+ "id": 8330,
"name": "createReturnsStep",
"variant": "declaration",
"kind": 64,
@@ -338728,7 +339616,7 @@
},
"children": [
{
- "id": 25628,
+ "id": 8339,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -338746,7 +339634,7 @@
}
},
{
- "id": 25629,
+ "id": 8340,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -338768,8 +339656,8 @@
{
"title": "Properties",
"children": [
- 25628,
- 25629
+ 8339,
+ 8340
]
}
],
@@ -338778,12 +339666,12 @@
"fileName": "core-flows/src/order/steps/return/create-returns.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/create-returns.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/create-returns.ts#L12"
}
],
"signatures": [
{
- "id": 25620,
+ "id": 8331,
"name": "createReturnsStep",
"variant": "signature",
"kind": 4096,
@@ -338830,12 +339718,12 @@
"fileName": "core-flows/src/order/steps/return/create-returns.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/create-returns.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/create-returns.ts#L12"
}
],
"parameters": [
{
- "id": 25621,
+ "id": 8332,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -338960,14 +339848,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25622,
+ "id": 8333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25623,
+ "id": 8334,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -338981,7 +339869,7 @@
],
"signatures": [
{
- "id": 25624,
+ "id": 8335,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -338995,7 +339883,7 @@
],
"parameters": [
{
- "id": 25625,
+ "id": 8336,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -339006,14 +339894,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25626,
+ "id": 8337,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25627,
+ "id": 8338,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -339037,7 +339925,7 @@
{
"title": "Properties",
"children": [
- 25627
+ 8338
]
}
],
@@ -339122,7 +340010,7 @@
{
"title": "Methods",
"children": [
- 25623
+ 8334
]
}
],
@@ -339164,7 +340052,7 @@
]
},
{
- "id": 25632,
+ "id": 8343,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -339182,7 +340070,7 @@
"fileName": "core-flows/src/order/steps/return/delete-returns.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L12"
}
],
"type": {
@@ -339194,7 +340082,7 @@
}
},
{
- "id": 25633,
+ "id": 8344,
"name": "deleteReturnsStepId",
"variant": "declaration",
"kind": 32,
@@ -339206,7 +340094,7 @@
"fileName": "core-flows/src/order/steps/return/delete-returns.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L15"
}
],
"type": {
@@ -339216,7 +340104,7 @@
"defaultValue": "\"delete-return\""
},
{
- "id": 25634,
+ "id": 8345,
"name": "deleteReturnsStep",
"variant": "declaration",
"kind": 64,
@@ -339260,7 +340148,7 @@
},
"children": [
{
- "id": 25643,
+ "id": 8354,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -339278,7 +340166,7 @@
}
},
{
- "id": 25644,
+ "id": 8355,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -339300,8 +340188,8 @@
{
"title": "Properties",
"children": [
- 25643,
- 25644
+ 8354,
+ 8355
]
}
],
@@ -339310,12 +340198,12 @@
"fileName": "core-flows/src/order/steps/return/delete-returns.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L19"
}
],
"signatures": [
{
- "id": 25635,
+ "id": 8346,
"name": "deleteReturnsStep",
"variant": "signature",
"kind": 4096,
@@ -339362,12 +340250,12 @@
"fileName": "core-flows/src/order/steps/return/delete-returns.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/delete-returns.ts#L19"
}
],
"parameters": [
{
- "id": 25636,
+ "id": 8347,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -339377,7 +340265,7 @@
"types": [
{
"type": "reference",
- "target": 25630,
+ "target": 8341,
"name": "DeleteReturnStepInput",
"package": "@medusajs/core-flows"
},
@@ -339390,7 +340278,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25630,
+ "target": 8341,
"name": "DeleteReturnStepInput",
"package": "@medusajs/core-flows"
}
@@ -339461,14 +340349,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25637,
+ "id": 8348,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25638,
+ "id": 8349,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -339482,7 +340370,7 @@
],
"signatures": [
{
- "id": 25639,
+ "id": 8350,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -339496,7 +340384,7 @@
],
"parameters": [
{
- "id": 25640,
+ "id": 8351,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -339507,14 +340395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25641,
+ "id": 8352,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25642,
+ "id": 8353,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -339538,7 +340426,7 @@
{
"title": "Properties",
"children": [
- 25642
+ 8353
]
}
],
@@ -339649,7 +340537,7 @@
{
"title": "Methods",
"children": [
- 25638
+ 8349
]
}
],
@@ -339717,7 +340605,7 @@
]
},
{
- "id": 25647,
+ "id": 8358,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -339735,7 +340623,7 @@
"fileName": "core-flows/src/order/steps/return/update-return-items.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L14"
}
],
"type": {
@@ -339744,7 +340632,7 @@
}
},
{
- "id": 25650,
+ "id": 8361,
"name": "updateReturnItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -339756,7 +340644,7 @@
"fileName": "core-flows/src/order/steps/return/update-return-items.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L21"
}
],
"type": {
@@ -339766,7 +340654,7 @@
"defaultValue": "\"update-return-items\""
},
{
- "id": 25651,
+ "id": 8362,
"name": "updateReturnItemsStep",
"variant": "declaration",
"kind": 64,
@@ -339801,7 +340689,7 @@
},
"children": [
{
- "id": 25654,
+ "id": 8365,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -339819,7 +340707,7 @@
}
},
{
- "id": 25655,
+ "id": 8366,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -339841,8 +340729,8 @@
{
"title": "Properties",
"children": [
- 25654,
- 25655
+ 8365,
+ 8366
]
}
],
@@ -339851,12 +340739,12 @@
"fileName": "core-flows/src/order/steps/return/update-return-items.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L33"
}
],
"signatures": [
{
- "id": 25652,
+ "id": 8363,
"name": "updateReturnItemsStep",
"variant": "signature",
"kind": 4096,
@@ -339894,12 +340782,12 @@
"fileName": "core-flows/src/order/steps/return/update-return-items.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/update-return-items.ts#L33"
}
],
"parameters": [
{
- "id": 25653,
+ "id": 8364,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -339909,7 +340797,7 @@
"types": [
{
"type": "reference",
- "target": 25645,
+ "target": 8356,
"name": "UpdateReturnItemBySelector",
"package": "@medusajs/core-flows"
},
@@ -339922,7 +340810,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25645,
+ "target": 8356,
"name": "UpdateReturnItemBySelector",
"package": "@medusajs/core-flows"
}
@@ -339942,7 +340830,7 @@
]
},
{
- "id": 25657,
+ "id": 8368,
"name": "updateReturnsStepId",
"variant": "declaration",
"kind": 32,
@@ -339954,7 +340842,7 @@
"fileName": "core-flows/src/order/steps/return/update-returns.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/update-returns.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/update-returns.ts#L13"
}
],
"type": {
@@ -339964,7 +340852,7 @@
"defaultValue": "\"update-returns\""
},
{
- "id": 25658,
+ "id": 8369,
"name": "updateReturnsStep",
"variant": "declaration",
"kind": 64,
@@ -340026,7 +340914,7 @@
},
"children": [
{
- "id": 25661,
+ "id": 8372,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -340044,7 +340932,7 @@
}
},
{
- "id": 25662,
+ "id": 8373,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -340066,8 +340954,8 @@
{
"title": "Properties",
"children": [
- 25661,
- 25662
+ 8372,
+ 8373
]
}
],
@@ -340076,12 +340964,12 @@
"fileName": "core-flows/src/order/steps/return/update-returns.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/update-returns.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/update-returns.ts#L17"
}
],
"signatures": [
{
- "id": 25659,
+ "id": 8370,
"name": "updateReturnsStep",
"variant": "signature",
"kind": 4096,
@@ -340146,12 +341034,12 @@
"fileName": "core-flows/src/order/steps/return/update-returns.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/return/update-returns.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/return/update-returns.ts#L17"
}
],
"parameters": [
{
- "id": 25660,
+ "id": 8371,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -340161,7 +341049,7 @@
"types": [
{
"type": "reference",
- "target": 25656,
+ "target": 8367,
"name": "UpdateReturnsStepInput",
"package": "@medusajs/core-flows"
},
@@ -340174,7 +341062,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25656,
+ "target": 8367,
"name": "UpdateReturnsStepInput",
"package": "@medusajs/core-flows"
}
@@ -340194,7 +341082,7 @@
]
},
{
- "id": 25664,
+ "id": 8375,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -340212,7 +341100,7 @@
"fileName": "core-flows/src/order/steps/set-tax-lines-for-items.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L19"
}
],
"type": {
@@ -340226,7 +341114,7 @@
}
},
{
- "id": 25665,
+ "id": 8376,
"name": "item_tax_lines",
"variant": "declaration",
"kind": 1024,
@@ -340244,7 +341132,7 @@
"fileName": "core-flows/src/order/steps/set-tax-lines-for-items.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L23"
}
],
"type": {
@@ -340261,7 +341149,7 @@
}
},
{
- "id": 25666,
+ "id": 8377,
"name": "shipping_tax_lines",
"variant": "declaration",
"kind": 1024,
@@ -340279,7 +341167,7 @@
"fileName": "core-flows/src/order/steps/set-tax-lines-for-items.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L27"
}
],
"type": {
@@ -340296,7 +341184,7 @@
}
},
{
- "id": 25667,
+ "id": 8378,
"name": "setOrderTaxLinesForItemsStepId",
"variant": "declaration",
"kind": 32,
@@ -340308,7 +341196,7 @@
"fileName": "core-flows/src/order/steps/set-tax-lines-for-items.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L30"
}
],
"type": {
@@ -340318,7 +341206,7 @@
"defaultValue": "\"set-order-tax-lines-for-items\""
},
{
- "id": 25668,
+ "id": 8379,
"name": "setOrderTaxLinesForItemsStep",
"variant": "declaration",
"kind": 64,
@@ -340353,7 +341241,7 @@
},
"children": [
{
- "id": 25671,
+ "id": 8382,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -340371,7 +341259,7 @@
}
},
{
- "id": 25672,
+ "id": 8383,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -340393,8 +341281,8 @@
{
"title": "Properties",
"children": [
- 25671,
- 25672
+ 8382,
+ 8383
]
}
],
@@ -340403,12 +341291,12 @@
"fileName": "core-flows/src/order/steps/set-tax-lines-for-items.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L58"
}
],
"signatures": [
{
- "id": 25669,
+ "id": 8380,
"name": "setOrderTaxLinesForItemsStep",
"variant": "signature",
"kind": 4096,
@@ -340446,12 +341334,12 @@
"fileName": "core-flows/src/order/steps/set-tax-lines-for-items.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/set-tax-lines-for-items.ts#L58"
}
],
"parameters": [
{
- "id": 25670,
+ "id": 8381,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -340461,7 +341349,7 @@
"types": [
{
"type": "reference",
- "target": 25663,
+ "target": 8374,
"name": "SetOrderTaxLinesForItemsStepInput",
"package": "@medusajs/core-flows"
},
@@ -340474,7 +341362,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25663,
+ "target": 8374,
"name": "SetOrderTaxLinesForItemsStepInput",
"package": "@medusajs/core-flows"
}
@@ -340494,7 +341382,7 @@
]
},
{
- "id": 25674,
+ "id": 8385,
"name": "updateOrderChangeActionsStepId",
"variant": "declaration",
"kind": 32,
@@ -340506,7 +341394,7 @@
"fileName": "core-flows/src/order/steps/update-order-change-actions.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-order-change-actions.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-order-change-actions.ts#L17"
}
],
"type": {
@@ -340516,7 +341404,7 @@
"defaultValue": "\"update-order-change-actions\""
},
{
- "id": 25675,
+ "id": 8386,
"name": "updateOrderChangeActionsStep",
"variant": "declaration",
"kind": 64,
@@ -340668,7 +341556,7 @@
},
"children": [
{
- "id": 25684,
+ "id": 8395,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -340686,7 +341574,7 @@
}
},
{
- "id": 25685,
+ "id": 8396,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -340708,8 +341596,8 @@
{
"title": "Properties",
"children": [
- 25684,
- 25685
+ 8395,
+ 8396
]
}
],
@@ -340718,12 +341606,12 @@
"fileName": "core-flows/src/order/steps/update-order-change-actions.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-order-change-actions.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-order-change-actions.ts#L21"
}
],
"signatures": [
{
- "id": 25676,
+ "id": 8387,
"name": "updateOrderChangeActionsStep",
"variant": "signature",
"kind": 4096,
@@ -340878,12 +341766,12 @@
"fileName": "core-flows/src/order/steps/update-order-change-actions.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-order-change-actions.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-order-change-actions.ts#L21"
}
],
"parameters": [
{
- "id": 25677,
+ "id": 8388,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -340893,7 +341781,7 @@
"types": [
{
"type": "reference",
- "target": 25673,
+ "target": 8384,
"name": "UpdateOrderChangeActionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -340906,7 +341794,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25673,
+ "target": 8384,
"name": "UpdateOrderChangeActionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -340996,14 +341884,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25678,
+ "id": 8389,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25679,
+ "id": 8390,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -341017,7 +341905,7 @@
],
"signatures": [
{
- "id": 25680,
+ "id": 8391,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -341031,7 +341919,7 @@
],
"parameters": [
{
- "id": 25681,
+ "id": 8392,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -341042,14 +341930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25682,
+ "id": 8393,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25683,
+ "id": 8394,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -341073,7 +341961,7 @@
{
"title": "Properties",
"children": [
- 25683
+ 8394
]
}
],
@@ -341158,7 +342046,7 @@
{
"title": "Methods",
"children": [
- 25679
+ 8390
]
}
],
@@ -341200,7 +342088,7 @@
]
},
{
- "id": 25687,
+ "id": 8398,
"name": "updateOrderChangesStepId",
"variant": "declaration",
"kind": 32,
@@ -341212,7 +342100,7 @@
"fileName": "core-flows/src/order/steps/update-order-changes.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-order-changes.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-order-changes.ts#L16"
}
],
"type": {
@@ -341222,7 +342110,7 @@
"defaultValue": "\"update-order-changes\""
},
{
- "id": 25688,
+ "id": 8399,
"name": "updateOrderChangesStep",
"variant": "declaration",
"kind": 64,
@@ -341302,7 +342190,7 @@
},
"children": [
{
- "id": 25697,
+ "id": 8408,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -341320,7 +342208,7 @@
}
},
{
- "id": 25698,
+ "id": 8409,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -341342,8 +342230,8 @@
{
"title": "Properties",
"children": [
- 25697,
- 25698
+ 8408,
+ 8409
]
}
],
@@ -341352,12 +342240,12 @@
"fileName": "core-flows/src/order/steps/update-order-changes.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-order-changes.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-order-changes.ts#L20"
}
],
"signatures": [
{
- "id": 25689,
+ "id": 8400,
"name": "updateOrderChangesStep",
"variant": "signature",
"kind": 4096,
@@ -341440,12 +342328,12 @@
"fileName": "core-flows/src/order/steps/update-order-changes.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-order-changes.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-order-changes.ts#L20"
}
],
"parameters": [
{
- "id": 25690,
+ "id": 8401,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -341455,7 +342343,7 @@
"types": [
{
"type": "reference",
- "target": 25686,
+ "target": 8397,
"name": "UpdateOrderChangesStepInput",
"package": "@medusajs/core-flows"
},
@@ -341468,7 +342356,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25686,
+ "target": 8397,
"name": "UpdateOrderChangesStepInput",
"package": "@medusajs/core-flows"
}
@@ -341558,14 +342446,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25691,
+ "id": 8402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25692,
+ "id": 8403,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -341579,7 +342467,7 @@
],
"signatures": [
{
- "id": 25693,
+ "id": 8404,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -341593,7 +342481,7 @@
],
"parameters": [
{
- "id": 25694,
+ "id": 8405,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -341604,14 +342492,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25695,
+ "id": 8406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25696,
+ "id": 8407,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -341635,7 +342523,7 @@
{
"title": "Properties",
"children": [
- 25696
+ 8407
]
}
],
@@ -341720,7 +342608,7 @@
{
"title": "Methods",
"children": [
- 25692
+ 8403
]
}
],
@@ -341762,7 +342650,7 @@
]
},
{
- "id": 25701,
+ "id": 8412,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -341780,7 +342668,7 @@
"fileName": "core-flows/src/order/steps/update-orders.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-orders.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-orders.ts#L19"
}
],
"type": {
@@ -341794,7 +342682,7 @@
}
},
{
- "id": 25702,
+ "id": 8413,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -341812,7 +342700,7 @@
"fileName": "core-flows/src/order/steps/update-orders.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-orders.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-orders.ts#L23"
}
],
"type": {
@@ -341826,7 +342714,7 @@
}
},
{
- "id": 25703,
+ "id": 8414,
"name": "updateOrdersStepId",
"variant": "declaration",
"kind": 32,
@@ -341838,7 +342726,7 @@
"fileName": "core-flows/src/order/steps/update-orders.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-orders.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-orders.ts#L26"
}
],
"type": {
@@ -341848,7 +342736,7 @@
"defaultValue": "\"update-orders\""
},
{
- "id": 25704,
+ "id": 8415,
"name": "updateOrdersStep",
"variant": "declaration",
"kind": 64,
@@ -341883,7 +342771,7 @@
},
"children": [
{
- "id": 25713,
+ "id": 8424,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -341901,7 +342789,7 @@
}
},
{
- "id": 25714,
+ "id": 8425,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -341923,8 +342811,8 @@
{
"title": "Properties",
"children": [
- 25713,
- 25714
+ 8424,
+ 8425
]
}
],
@@ -341933,12 +342821,12 @@
"fileName": "core-flows/src/order/steps/update-orders.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-orders.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-orders.ts#L40"
}
],
"signatures": [
{
- "id": 25705,
+ "id": 8416,
"name": "updateOrdersStep",
"variant": "signature",
"kind": 4096,
@@ -341976,12 +342864,12 @@
"fileName": "core-flows/src/order/steps/update-orders.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-orders.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-orders.ts#L40"
}
],
"parameters": [
{
- "id": 25706,
+ "id": 8417,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -341991,7 +342879,7 @@
"types": [
{
"type": "reference",
- "target": 25699,
+ "target": 8410,
"name": "UpdateOrdersStepInput",
"package": "@medusajs/core-flows"
},
@@ -342004,7 +342892,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25699,
+ "target": 8410,
"name": "UpdateOrdersStepInput",
"package": "@medusajs/core-flows"
}
@@ -342094,14 +342982,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25707,
+ "id": 8418,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25708,
+ "id": 8419,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -342115,7 +343003,7 @@
],
"signatures": [
{
- "id": 25709,
+ "id": 8420,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -342129,7 +343017,7 @@
],
"parameters": [
{
- "id": 25710,
+ "id": 8421,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -342140,14 +343028,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25711,
+ "id": 8422,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25712,
+ "id": 8423,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -342171,7 +343059,7 @@
{
"title": "Properties",
"children": [
- 25712
+ 8423
]
}
],
@@ -342256,7 +343144,7 @@
{
"title": "Methods",
"children": [
- 25708
+ 8419
]
}
],
@@ -342298,7 +343186,7 @@
]
},
{
- "id": 25716,
+ "id": 8427,
"name": "updateOrderShippingMethodsStepId",
"variant": "declaration",
"kind": 32,
@@ -342310,7 +343198,7 @@
"fileName": "core-flows/src/order/steps/update-shipping-methods.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-shipping-methods.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-shipping-methods.ts#L16"
}
],
"type": {
@@ -342320,7 +343208,7 @@
"defaultValue": "\"update-order-shopping-methods\""
},
{
- "id": 25717,
+ "id": 8428,
"name": "updateOrderShippingMethodsStep",
"variant": "declaration",
"kind": 64,
@@ -342391,7 +343279,7 @@
},
"children": [
{
- "id": 25726,
+ "id": 8437,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -342409,7 +343297,7 @@
}
},
{
- "id": 25727,
+ "id": 8438,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -342431,8 +343319,8 @@
{
"title": "Properties",
"children": [
- 25726,
- 25727
+ 8437,
+ 8438
]
}
],
@@ -342441,12 +343329,12 @@
"fileName": "core-flows/src/order/steps/update-shipping-methods.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-shipping-methods.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-shipping-methods.ts#L20"
}
],
"signatures": [
{
- "id": 25718,
+ "id": 8429,
"name": "updateOrderShippingMethodsStep",
"variant": "signature",
"kind": 4096,
@@ -342520,12 +343408,12 @@
"fileName": "core-flows/src/order/steps/update-shipping-methods.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/steps/update-shipping-methods.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/steps/update-shipping-methods.ts#L20"
}
],
"parameters": [
{
- "id": 25719,
+ "id": 8430,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -342535,7 +343423,7 @@
"types": [
{
"type": "reference",
- "target": 25715,
+ "target": 8426,
"name": "UpdateOrderShippingMethodsStepInput",
"package": "@medusajs/core-flows"
},
@@ -342548,7 +343436,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25715,
+ "target": 8426,
"name": "UpdateOrderShippingMethodsStepInput",
"package": "@medusajs/core-flows"
}
@@ -342638,14 +343526,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25720,
+ "id": 8431,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25721,
+ "id": 8432,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -342659,7 +343547,7 @@
],
"signatures": [
{
- "id": 25722,
+ "id": 8433,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -342673,7 +343561,7 @@
],
"parameters": [
{
- "id": 25723,
+ "id": 8434,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -342684,14 +343572,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25724,
+ "id": 8435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25725,
+ "id": 8436,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -342715,7 +343603,7 @@
{
"title": "Properties",
"children": [
- 25725
+ 8436
]
}
],
@@ -342800,7 +343688,7 @@
{
"title": "Methods",
"children": [
- 25721
+ 8432
]
}
],
@@ -342844,14 +343732,14 @@
]
},
{
- "id": 17341,
+ "id": 46,
"name": "Workflows_Order",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 25729,
+ "id": 8440,
"name": "addOrderLineItemsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -342863,7 +343751,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L33"
}
],
"type": {
@@ -342873,7 +343761,7 @@
"defaultValue": "\"order-add-line-items\""
},
{
- "id": 25730,
+ "id": 8441,
"name": "addOrderLineItemsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -342935,7 +343823,7 @@
},
"children": [
{
- "id": 25738,
+ "id": 8449,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -342958,7 +343846,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25739,
+ "id": 8450,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -342972,7 +343860,7 @@
],
"signatures": [
{
- "id": 25740,
+ "id": 8451,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -343000,7 +343888,7 @@
],
"parameters": [
{
- "id": 25741,
+ "id": 8452,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -343016,14 +343904,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25742,
+ "id": 8453,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25743,
+ "id": 8454,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -343111,7 +343999,7 @@
{
"title": "Properties",
"children": [
- 25743
+ 8454
]
}
],
@@ -343204,14 +344092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25744,
+ "id": 8455,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25745,
+ "id": 8456,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -343225,7 +344113,7 @@
],
"signatures": [
{
- "id": 25746,
+ "id": 8457,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -343239,7 +344127,7 @@
],
"parameters": [
{
- "id": 25747,
+ "id": 8458,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -343250,14 +344138,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25748,
+ "id": 8459,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25749,
+ "id": 8460,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -343281,7 +344169,7 @@
{
"title": "Properties",
"children": [
- 25749
+ 8460
]
}
],
@@ -343366,7 +344254,7 @@
{
"title": "Methods",
"children": [
- 25745
+ 8456
]
}
],
@@ -343410,7 +344298,7 @@
}
},
{
- "id": 25750,
+ "id": 8461,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -343433,7 +344321,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25751,
+ "id": 8462,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -343447,7 +344335,7 @@
],
"signatures": [
{
- "id": 25752,
+ "id": 8463,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -343475,7 +344363,7 @@
],
"typeParameters": [
{
- "id": 25753,
+ "id": 8464,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -343486,7 +344374,7 @@
}
},
{
- "id": 25754,
+ "id": 8465,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -343499,7 +344387,7 @@
],
"parameters": [
{
- "id": 25755,
+ "id": 8466,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -343532,7 +344420,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -343566,7 +344454,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -343599,7 +344487,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -343622,7 +344510,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -343642,7 +344530,7 @@
}
},
{
- "id": 25756,
+ "id": 8467,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -343665,7 +344553,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25757,
+ "id": 8468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -343679,7 +344567,7 @@
],
"signatures": [
{
- "id": 25758,
+ "id": 8469,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -343701,7 +344589,7 @@
}
},
{
- "id": 25759,
+ "id": 8470,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -343724,7 +344612,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25760,
+ "id": 8471,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -343738,7 +344626,7 @@
],
"signatures": [
{
- "id": 25761,
+ "id": 8472,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -343752,7 +344640,7 @@
],
"parameters": [
{
- "id": 25762,
+ "id": 8473,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -343778,7 +344666,7 @@
}
},
{
- "id": 25763,
+ "id": 8474,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -343801,14 +344689,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25764,
+ "id": 8475,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25765,
+ "id": 8476,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -343816,7 +344704,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25766,
+ "id": 8477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -343830,7 +344718,7 @@
],
"signatures": [
{
- "id": 25767,
+ "id": 8478,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -343844,7 +344732,7 @@
],
"typeParameters": [
{
- "id": 25768,
+ "id": 8479,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -343853,7 +344741,7 @@
],
"parameters": [
{
- "id": 25769,
+ "id": 8480,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -343868,14 +344756,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25770,
+ "id": 8481,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25771,
+ "id": 8482,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -343885,7 +344773,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 137,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L137"
}
],
"type": {
@@ -343894,7 +344782,7 @@
}
},
{
- "id": 25772,
+ "id": 8483,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -343904,7 +344792,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 138,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L138"
}
],
"type": {
@@ -343927,7 +344815,7 @@
}
},
{
- "id": 25773,
+ "id": 8484,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -343937,7 +344825,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 139,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L139"
}
],
"type": {
@@ -343946,7 +344834,7 @@
}
},
{
- "id": 25774,
+ "id": 8485,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -343956,7 +344844,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L140"
}
],
"type": {
@@ -343965,14 +344853,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25775,
+ "id": 8486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25776,
+ "id": 8487,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -343992,7 +344880,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -344048,7 +344936,7 @@
}
},
{
- "id": 25777,
+ "id": 8488,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -344068,7 +344956,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -344118,8 +345006,8 @@
{
"title": "Properties",
"children": [
- 25776,
- 25777
+ 8487,
+ 8488
]
}
],
@@ -344134,7 +345022,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -344147,7 +345035,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -344158,14 +345046,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25778,
+ "id": 8489,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25779,
+ "id": 8490,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -344179,7 +345067,7 @@
],
"signatures": [
{
- "id": 25780,
+ "id": 8491,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -344193,7 +345081,7 @@
],
"parameters": [
{
- "id": 25781,
+ "id": 8492,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -344204,14 +345092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25782,
+ "id": 8493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25783,
+ "id": 8494,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -344235,7 +345123,7 @@
{
"title": "Properties",
"children": [
- 25783
+ 8494
]
}
],
@@ -344298,7 +345186,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -344314,7 +345202,7 @@
{
"title": "Methods",
"children": [
- 25779
+ 8490
]
}
],
@@ -344336,7 +345224,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -344348,7 +345236,7 @@
}
},
{
- "id": 25784,
+ "id": 8495,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -344366,7 +345254,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 141,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L141"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L141"
}
],
"type": {
@@ -344389,11 +345277,11 @@
{
"title": "Properties",
"children": [
- 25771,
- 25772,
- 25773,
- 25774,
- 25784
+ 8482,
+ 8483,
+ 8484,
+ 8485,
+ 8495
]
}
],
@@ -344402,7 +345290,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 136,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L136"
}
]
}
@@ -344437,7 +345325,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -344448,7 +345336,7 @@
}
},
{
- "id": 25785,
+ "id": 8496,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -344464,7 +345352,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -344485,7 +345373,7 @@
}
},
{
- "id": 42473,
+ "id": 25414,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -344552,14 +345440,14 @@
},
"signatures": [
{
- "id": 42474,
+ "id": 25415,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42475,
+ "id": 25416,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -344574,7 +345462,7 @@
},
"type": {
"type": "reference",
- "target": 25770,
+ "target": 8481,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -344588,13 +345476,13 @@
{
"title": "Properties",
"children": [
- 25765
+ 8476
]
},
{
"title": "Functions",
"children": [
- 42473
+ 25414
]
}
],
@@ -344611,7 +345499,7 @@
],
"documents": [
{
- "id": 42470,
+ "id": 25411,
"name": "findSalesChannelStep",
"variant": "document",
"kind": 8388608,
@@ -344637,7 +345525,7 @@
"frontmatter": {}
},
{
- "id": 42471,
+ "id": 25412,
"name": "findOneOrAnyRegionStep",
"variant": "document",
"kind": 8388608,
@@ -344663,7 +345551,7 @@
"frontmatter": {}
},
{
- "id": 42472,
+ "id": 25413,
"name": "findOrCreateCustomerStep",
"variant": "document",
"kind": 8388608,
@@ -344689,7 +345577,7 @@
"frontmatter": {}
},
{
- "id": 42476,
+ "id": 25417,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -344715,7 +345603,7 @@
"frontmatter": {}
},
{
- "id": 42477,
+ "id": 25418,
"name": "confirmVariantInventoryWorkflow",
"variant": "document",
"kind": 8388608,
@@ -344742,21 +345630,21 @@
}
],
"childrenIncludingDocuments": [
- 25738,
- 25750,
- 25756,
- 25759,
- 25763
+ 8449,
+ 8461,
+ 8467,
+ 8470,
+ 8474
],
"groups": [
{
"title": "Properties",
"children": [
- 25738,
- 25750,
- 25756,
- 25759,
- 25763
+ 8449,
+ 8461,
+ 8467,
+ 8470,
+ 8474
]
}
],
@@ -344765,12 +345653,12 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 94,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L94"
}
],
"signatures": [
{
- "id": 25731,
+ "id": 8442,
"name": "addOrderLineItemsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -344835,12 +345723,12 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 94,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L94"
}
],
"typeParameters": [
{
- "id": 25732,
+ "id": 8443,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -344851,7 +345739,7 @@
}
},
{
- "id": 25733,
+ "id": 8444,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -344864,7 +345752,7 @@
],
"parameters": [
{
- "id": 25734,
+ "id": 8445,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -344888,14 +345776,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 25735,
+ "id": 8446,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25736,
+ "id": 8447,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -344918,7 +345806,7 @@
}
},
{
- "id": 25737,
+ "id": 8448,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -344945,8 +345833,8 @@
{
"title": "Properties",
"children": [
- 25736,
- 25737
+ 8447,
+ 8448
]
}
],
@@ -345056,14 +345944,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -345078,14 +345966,14 @@
]
},
{
- "id": 25770,
+ "id": 8481,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25771,
+ "id": 8482,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -345095,7 +345983,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 137,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L137"
}
],
"type": {
@@ -345104,7 +345992,7 @@
}
},
{
- "id": 25772,
+ "id": 8483,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -345114,7 +346002,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 138,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L138"
}
],
"type": {
@@ -345137,7 +346025,7 @@
}
},
{
- "id": 25773,
+ "id": 8484,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -345147,7 +346035,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 139,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L139"
}
],
"type": {
@@ -345156,7 +346044,7 @@
}
},
{
- "id": 25774,
+ "id": 8485,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -345166,7 +346054,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L140"
}
],
"type": {
@@ -345175,14 +346063,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25775,
+ "id": 8486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25776,
+ "id": 8487,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -345202,7 +346090,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -345258,7 +346146,7 @@
}
},
{
- "id": 25777,
+ "id": 8488,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -345278,7 +346166,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -345328,8 +346216,8 @@
{
"title": "Properties",
"children": [
- 25776,
- 25777
+ 8487,
+ 8488
]
}
],
@@ -345344,7 +346232,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -345357,7 +346245,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -345368,14 +346256,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25778,
+ "id": 8489,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25779,
+ "id": 8490,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -345389,7 +346277,7 @@
],
"signatures": [
{
- "id": 25780,
+ "id": 8491,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -345403,7 +346291,7 @@
],
"parameters": [
{
- "id": 25781,
+ "id": 8492,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -345414,14 +346302,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25782,
+ "id": 8493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25783,
+ "id": 8494,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -345445,7 +346333,7 @@
{
"title": "Properties",
"children": [
- 25783
+ 8494
]
}
],
@@ -345508,7 +346396,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -345524,7 +346412,7 @@
{
"title": "Methods",
"children": [
- 25779
+ 8490
]
}
],
@@ -345546,7 +346434,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -345558,7 +346446,7 @@
}
},
{
- "id": 25784,
+ "id": 8495,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -345576,7 +346464,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 141,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L141"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L141"
}
],
"type": {
@@ -345599,11 +346487,11 @@
{
"title": "Properties",
"children": [
- 25771,
- 25772,
- 25773,
- 25774,
- 25784
+ 8482,
+ 8483,
+ 8484,
+ 8485,
+ 8495
]
}
],
@@ -345612,12 +346500,12 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 136,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L136"
}
]
},
{
- "id": 25771,
+ "id": 8482,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -345627,7 +346515,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 137,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L137"
}
],
"type": {
@@ -345636,7 +346524,7 @@
}
},
{
- "id": 25772,
+ "id": 8483,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -345646,7 +346534,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 138,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L138"
}
],
"type": {
@@ -345669,7 +346557,7 @@
}
},
{
- "id": 25773,
+ "id": 8484,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -345679,7 +346567,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 139,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L139"
}
],
"type": {
@@ -345688,7 +346576,7 @@
}
},
{
- "id": 25774,
+ "id": 8485,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -345698,7 +346586,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L140"
}
],
"type": {
@@ -345707,14 +346595,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25775,
+ "id": 8486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25776,
+ "id": 8487,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -345734,7 +346622,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -345790,7 +346678,7 @@
}
},
{
- "id": 25777,
+ "id": 8488,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -345810,7 +346698,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -345860,8 +346748,8 @@
{
"title": "Properties",
"children": [
- 25776,
- 25777
+ 8487,
+ 8488
]
}
],
@@ -345876,7 +346764,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -345889,7 +346777,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -345900,14 +346788,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25778,
+ "id": 8489,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25779,
+ "id": 8490,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -345921,7 +346809,7 @@
],
"signatures": [
{
- "id": 25780,
+ "id": 8491,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -345935,7 +346823,7 @@
],
"parameters": [
{
- "id": 25781,
+ "id": 8492,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -345946,14 +346834,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25782,
+ "id": 8493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25783,
+ "id": 8494,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -345977,7 +346865,7 @@
{
"title": "Properties",
"children": [
- 25783
+ 8494
]
}
],
@@ -346040,7 +346928,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -346056,7 +346944,7 @@
{
"title": "Methods",
"children": [
- 25779
+ 8490
]
}
],
@@ -346078,7 +346966,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -346090,7 +346978,7 @@
}
},
{
- "id": 25784,
+ "id": 8495,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -346108,7 +346996,7 @@
"fileName": "core-flows/src/order/workflows/add-line-items.ts",
"line": 141,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/add-line-items.ts#L141"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/add-line-items.ts#L141"
}
],
"type": {
@@ -346127,7 +347015,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 25788,
+ "id": 8499,
"name": "orderIds",
"variant": "declaration",
"kind": 1024,
@@ -346145,7 +347033,7 @@
"fileName": "core-flows/src/order/workflows/archive-orders.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/archive-orders.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/archive-orders.ts#L19"
}
],
"type": {
@@ -346157,7 +347045,7 @@
}
},
{
- "id": 25790,
+ "id": 8501,
"name": "archiveOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -346169,7 +347057,7 @@
"fileName": "core-flows/src/order/workflows/archive-orders.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/archive-orders.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/archive-orders.ts#L27"
}
],
"type": {
@@ -346179,7 +347067,7 @@
"defaultValue": "\"archive-order-workflow\""
},
{
- "id": 25791,
+ "id": 8502,
"name": "archiveOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -346232,7 +347120,7 @@
},
"children": [
{
- "id": 25799,
+ "id": 8510,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -346255,7 +347143,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25800,
+ "id": 8511,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -346269,7 +347157,7 @@
],
"signatures": [
{
- "id": 25801,
+ "id": 8512,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -346297,7 +347185,7 @@
],
"parameters": [
{
- "id": 25802,
+ "id": 8513,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -346313,14 +347201,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25803,
+ "id": 8514,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25804,
+ "id": 8515,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -346345,7 +347233,7 @@
"types": [
{
"type": "reference",
- "target": 25786,
+ "target": 8497,
"name": "ArchiveOrdersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -346358,7 +347246,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25786,
+ "target": 8497,
"name": "ArchiveOrdersWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -346374,7 +347262,7 @@
{
"title": "Properties",
"children": [
- 25804
+ 8515
]
}
],
@@ -346431,7 +347319,7 @@
},
{
"type": "reference",
- "target": 25789,
+ "target": 8500,
"name": "ArchiveOrdersWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -346444,7 +347332,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25789,
+ "target": 8500,
"name": "ArchiveOrdersWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -346455,14 +347343,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25805,
+ "id": 8516,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25806,
+ "id": 8517,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -346476,7 +347364,7 @@
],
"signatures": [
{
- "id": 25807,
+ "id": 8518,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -346490,7 +347378,7 @@
],
"parameters": [
{
- "id": 25808,
+ "id": 8519,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -346501,14 +347389,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25809,
+ "id": 8520,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25810,
+ "id": 8521,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -346532,7 +347420,7 @@
{
"title": "Properties",
"children": [
- 25810
+ 8521
]
}
],
@@ -346595,7 +347483,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25789,
+ "target": 8500,
"name": "ArchiveOrdersWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -346611,7 +347499,7 @@
{
"title": "Methods",
"children": [
- 25806
+ 8517
]
}
],
@@ -346633,7 +347521,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25789,
+ "target": 8500,
"name": "ArchiveOrdersWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -346649,7 +347537,7 @@
}
},
{
- "id": 25811,
+ "id": 8522,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -346672,7 +347560,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25812,
+ "id": 8523,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -346686,7 +347574,7 @@
],
"signatures": [
{
- "id": 25813,
+ "id": 8524,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -346714,7 +347602,7 @@
],
"typeParameters": [
{
- "id": 25814,
+ "id": 8525,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -346725,7 +347613,7 @@
}
},
{
- "id": 25815,
+ "id": 8526,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -346738,7 +347626,7 @@
],
"parameters": [
{
- "id": 25816,
+ "id": 8527,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -346771,7 +347659,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -346782,13 +347670,13 @@
},
"trueType": {
"type": "reference",
- "target": 25786,
+ "target": 8497,
"name": "ArchiveOrdersWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -346821,7 +347709,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -346832,13 +347720,13 @@
},
"trueType": {
"type": "reference",
- "target": 25789,
+ "target": 8500,
"name": "ArchiveOrdersWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -346858,7 +347746,7 @@
}
},
{
- "id": 25817,
+ "id": 8528,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -346881,7 +347769,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25818,
+ "id": 8529,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -346895,7 +347783,7 @@
],
"signatures": [
{
- "id": 25819,
+ "id": 8530,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -346917,7 +347805,7 @@
}
},
{
- "id": 25820,
+ "id": 8531,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -346940,7 +347828,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25821,
+ "id": 8532,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -346954,7 +347842,7 @@
],
"signatures": [
{
- "id": 25822,
+ "id": 8533,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -346968,7 +347856,7 @@
],
"parameters": [
{
- "id": 25823,
+ "id": 8534,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -346994,7 +347882,7 @@
}
},
{
- "id": 25824,
+ "id": 8535,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -347017,7 +347905,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25825,
+ "id": 8536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -347028,7 +347916,7 @@
],
"documents": [
{
- "id": 42478,
+ "id": 25419,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -347054,7 +347942,7 @@
"frontmatter": {}
},
{
- "id": 42479,
+ "id": 25420,
"name": "archiveOrdersStep",
"variant": "document",
"kind": 8388608,
@@ -347081,21 +347969,21 @@
}
],
"childrenIncludingDocuments": [
- 25799,
- 25811,
- 25817,
- 25820,
- 25824
+ 8510,
+ 8522,
+ 8528,
+ 8531,
+ 8535
],
"groups": [
{
"title": "Properties",
"children": [
- 25799,
- 25811,
- 25817,
- 25820,
- 25824
+ 8510,
+ 8522,
+ 8528,
+ 8531,
+ 8535
]
}
],
@@ -347104,12 +347992,12 @@
"fileName": "core-flows/src/order/workflows/archive-orders.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/archive-orders.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/archive-orders.ts#L46"
}
],
"signatures": [
{
- "id": 25792,
+ "id": 8503,
"name": "archiveOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -347165,12 +348053,12 @@
"fileName": "core-flows/src/order/workflows/archive-orders.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/archive-orders.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/archive-orders.ts#L46"
}
],
"typeParameters": [
{
- "id": 25793,
+ "id": 8504,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -347181,7 +348069,7 @@
}
},
{
- "id": 25794,
+ "id": 8505,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -347194,7 +348082,7 @@
],
"parameters": [
{
- "id": 25795,
+ "id": 8506,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -347218,14 +348106,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 25796,
+ "id": 8507,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25797,
+ "id": 8508,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -347248,7 +348136,7 @@
}
},
{
- "id": 25798,
+ "id": 8509,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -347275,8 +348163,8 @@
{
"title": "Properties",
"children": [
- 25797,
- 25798
+ 8508,
+ 8509
]
}
],
@@ -347351,26 +348239,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 25786,
+ "target": 8497,
"name": "ArchiveOrdersWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 25789,
+ "target": 8500,
"name": "ArchiveOrdersWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -347385,7 +348273,7 @@
]
},
{
- "id": 25828,
+ "id": 8539,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -347403,7 +348291,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L40"
}
],
"type": {
@@ -347417,7 +348305,7 @@
}
},
{
- "id": 25829,
+ "id": 8540,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -347435,7 +348323,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L44"
}
],
"type": {
@@ -347450,7 +348338,7 @@
}
},
{
- "id": 25830,
+ "id": 8541,
"name": "cancelValidateOrder",
"variant": "declaration",
"kind": 64,
@@ -347485,7 +348373,7 @@
},
"children": [
{
- "id": 25839,
+ "id": 8550,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -347503,7 +348391,7 @@
}
},
{
- "id": 25840,
+ "id": 8551,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -347525,8 +348413,8 @@
{
"title": "Properties",
"children": [
- 25839,
- 25840
+ 8550,
+ 8551
]
}
],
@@ -347535,12 +348423,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L69"
}
],
"signatures": [
{
- "id": 25831,
+ "id": 8542,
"name": "cancelValidateOrder",
"variant": "signature",
"kind": 4096,
@@ -347578,12 +348466,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L69"
}
],
"parameters": [
{
- "id": 25832,
+ "id": 8543,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -347593,7 +348481,7 @@
"types": [
{
"type": "reference",
- "target": 25826,
+ "target": 8537,
"name": "CancelValidateOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -347606,7 +348494,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25826,
+ "target": 8537,
"name": "CancelValidateOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -347639,14 +348527,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25833,
+ "id": 8544,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25834,
+ "id": 8545,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -347660,7 +348548,7 @@
],
"signatures": [
{
- "id": 25835,
+ "id": 8546,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -347674,7 +348562,7 @@
],
"parameters": [
{
- "id": 25836,
+ "id": 8547,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -347685,14 +348573,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25837,
+ "id": 8548,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25838,
+ "id": 8549,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -347716,7 +348604,7 @@
{
"title": "Properties",
"children": [
- 25838
+ 8549
]
}
],
@@ -347793,7 +348681,7 @@
{
"title": "Methods",
"children": [
- 25834
+ 8545
]
}
],
@@ -347827,7 +348715,7 @@
]
},
{
- "id": 25841,
+ "id": 8552,
"name": "cancelOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -347839,7 +348727,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 98,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L98"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L98"
}
],
"type": {
@@ -347849,7 +348737,7 @@
"defaultValue": "\"cancel-order\""
},
{
- "id": 25842,
+ "id": 8553,
"name": "cancelOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -347902,7 +348790,7 @@
},
"children": [
{
- "id": 25850,
+ "id": 8561,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -347925,7 +348813,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25851,
+ "id": 8562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -347939,7 +348827,7 @@
],
"signatures": [
{
- "id": 25852,
+ "id": 8563,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -347967,7 +348855,7 @@
],
"parameters": [
{
- "id": 25853,
+ "id": 8564,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -347983,14 +348871,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25854,
+ "id": 8565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25855,
+ "id": 8566,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -348050,7 +348938,7 @@
{
"title": "Properties",
"children": [
- 25855
+ 8566
]
}
],
@@ -348075,7 +348963,7 @@
}
},
{
- "id": 25856,
+ "id": 8567,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -348098,7 +348986,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25857,
+ "id": 8568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -348112,7 +349000,7 @@
],
"signatures": [
{
- "id": 25858,
+ "id": 8569,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -348140,7 +349028,7 @@
],
"typeParameters": [
{
- "id": 25859,
+ "id": 8570,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -348151,7 +349039,7 @@
}
},
{
- "id": 25860,
+ "id": 8571,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -348164,7 +349052,7 @@
],
"parameters": [
{
- "id": 25861,
+ "id": 8572,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -348197,7 +349085,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -348217,7 +349105,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -348250,7 +349138,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -348265,7 +349153,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -348285,7 +349173,7 @@
}
},
{
- "id": 25862,
+ "id": 8573,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -348308,7 +349196,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25863,
+ "id": 8574,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -348322,7 +349210,7 @@
],
"signatures": [
{
- "id": 25864,
+ "id": 8575,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -348344,7 +349232,7 @@
}
},
{
- "id": 25865,
+ "id": 8576,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -348367,7 +349255,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25866,
+ "id": 8577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -348381,7 +349269,7 @@
],
"signatures": [
{
- "id": 25867,
+ "id": 8578,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -348395,7 +349283,7 @@
],
"parameters": [
{
- "id": 25868,
+ "id": 8579,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -348421,7 +349309,7 @@
}
},
{
- "id": 25869,
+ "id": 8580,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -348444,14 +349332,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25870,
+ "id": 8581,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25871,
+ "id": 8582,
"name": "orderCanceled",
"variant": "declaration",
"kind": 1024,
@@ -348459,7 +349347,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25872,
+ "id": 8583,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -348473,7 +349361,7 @@
],
"signatures": [
{
- "id": 25873,
+ "id": 8584,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -348487,7 +349375,7 @@
],
"typeParameters": [
{
- "id": 25874,
+ "id": 8585,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -348496,7 +349384,7 @@
],
"parameters": [
{
- "id": 25875,
+ "id": 8586,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -348511,14 +349399,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25876,
+ "id": 8587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25877,
+ "id": 8588,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -348528,7 +349416,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L218"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L218"
}
],
"type": {
@@ -348541,7 +349429,7 @@
{
"title": "Properties",
"children": [
- 25877
+ 8588
]
}
],
@@ -348550,7 +349438,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 217,
"character": 54,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L217"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L217"
}
]
}
@@ -348561,7 +349449,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -348572,7 +349460,7 @@
}
},
{
- "id": 25878,
+ "id": 8589,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -348588,7 +349476,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -348609,7 +349497,7 @@
}
},
{
- "id": 42487,
+ "id": 25428,
"name": "orderCanceled",
"variant": "declaration",
"kind": 64,
@@ -348644,14 +349532,14 @@
},
"signatures": [
{
- "id": 42488,
+ "id": 25429,
"name": "orderCanceled",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42489,
+ "id": 25430,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -348666,7 +349554,7 @@
},
"type": {
"type": "reference",
- "target": 25876,
+ "target": 8587,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -348680,13 +349568,13 @@
{
"title": "Properties",
"children": [
- 25871
+ 8582
]
},
{
"title": "Functions",
"children": [
- 42487
+ 25428
]
}
],
@@ -348703,7 +349591,7 @@
],
"documents": [
{
- "id": 42480,
+ "id": 25421,
"name": "cancelValidateOrder",
"variant": "document",
"kind": 8388608,
@@ -348729,7 +349617,7 @@
"frontmatter": {}
},
{
- "id": 42481,
+ "id": 25422,
"name": "deleteReservationsByLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -348755,7 +349643,7 @@
"frontmatter": {}
},
{
- "id": 42482,
+ "id": 25423,
"name": "cancelPaymentStep",
"variant": "document",
"kind": 8388608,
@@ -348781,7 +349669,7 @@
"frontmatter": {}
},
{
- "id": 42483,
+ "id": 25424,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -348807,7 +349695,7 @@
"frontmatter": {}
},
{
- "id": 42484,
+ "id": 25425,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -348842,7 +349730,7 @@
"frontmatter": {},
"children": [
{
- "id": 42485,
+ "id": 25426,
"name": "updatePaymentCollectionStep",
"variant": "document",
"kind": 8388608,
@@ -348870,7 +349758,7 @@
]
},
{
- "id": 42486,
+ "id": 25427,
"name": "cancelOrdersStep",
"variant": "document",
"kind": 8388608,
@@ -348896,7 +349784,7 @@
"frontmatter": {}
},
{
- "id": 42490,
+ "id": 25431,
"name": "orderCanceled",
"variant": "document",
"kind": 8388608,
@@ -348923,21 +349811,21 @@
}
],
"childrenIncludingDocuments": [
- 25850,
- 25856,
- 25862,
- 25865,
- 25869
+ 8561,
+ 8567,
+ 8573,
+ 8576,
+ 8580
],
"groups": [
{
"title": "Properties",
"children": [
- 25850,
- 25856,
- 25862,
- 25865,
- 25869
+ 8561,
+ 8567,
+ 8573,
+ 8576,
+ 8580
]
}
],
@@ -348946,12 +349834,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 125,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L125"
}
],
"signatures": [
{
- "id": 25843,
+ "id": 8554,
"name": "cancelOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -349007,12 +349895,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 125,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L125"
}
],
"typeParameters": [
{
- "id": 25844,
+ "id": 8555,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -349023,7 +349911,7 @@
}
},
{
- "id": 25845,
+ "id": 8556,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -349036,7 +349924,7 @@
],
"parameters": [
{
- "id": 25846,
+ "id": 8557,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -349060,14 +349948,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 25847,
+ "id": 8558,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25848,
+ "id": 8559,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -349090,7 +349978,7 @@
}
},
{
- "id": 25849,
+ "id": 8560,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -349117,8 +350005,8 @@
{
"title": "Properties",
"children": [
- 25848,
- 25849
+ 8559,
+ 8560
]
}
],
@@ -349206,14 +350094,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -349228,14 +350116,14 @@
]
},
{
- "id": 25876,
+ "id": 8587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25877,
+ "id": 8588,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -349245,7 +350133,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L218"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L218"
}
],
"type": {
@@ -349258,7 +350146,7 @@
{
"title": "Properties",
"children": [
- 25877
+ 8588
]
}
],
@@ -349267,12 +350155,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 217,
"character": 54,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L217"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L217"
}
]
},
{
- "id": 25877,
+ "id": 8588,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -349282,7 +350170,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order.ts#L218"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order.ts#L218"
}
],
"type": {
@@ -349291,7 +350179,7 @@
}
},
{
- "id": 25879,
+ "id": 8590,
"name": "cancelOrderChangeWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -349303,7 +350191,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-change.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-change.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-change.ts#L5"
}
],
"type": {
@@ -349313,7 +350201,7 @@
"defaultValue": "\"cancel-order-change\""
},
{
- "id": 25880,
+ "id": 8591,
"name": "cancelOrderChangeWorkflow",
"variant": "declaration",
"kind": 64,
@@ -349348,7 +350236,7 @@
},
"children": [
{
- "id": 25888,
+ "id": 8599,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -349371,7 +350259,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25889,
+ "id": 8600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -349385,7 +350273,7 @@
],
"signatures": [
{
- "id": 25890,
+ "id": 8601,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -349413,7 +350301,7 @@
],
"parameters": [
{
- "id": 25891,
+ "id": 8602,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -349429,14 +350317,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25892,
+ "id": 8603,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25893,
+ "id": 8604,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -349496,7 +350384,7 @@
{
"title": "Properties",
"children": [
- 25893
+ 8604
]
}
],
@@ -349532,14 +350420,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25894,
+ "id": 8605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25895,
+ "id": 8606,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -349553,7 +350441,7 @@
],
"signatures": [
{
- "id": 25896,
+ "id": 8607,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -349567,7 +350455,7 @@
],
"parameters": [
{
- "id": 25897,
+ "id": 8608,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -349578,14 +350466,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25898,
+ "id": 8609,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25899,
+ "id": 8610,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -349609,7 +350497,7 @@
{
"title": "Properties",
"children": [
- 25899
+ 8610
]
}
],
@@ -349686,7 +350574,7 @@
{
"title": "Methods",
"children": [
- 25895
+ 8606
]
}
],
@@ -349722,7 +350610,7 @@
}
},
{
- "id": 25900,
+ "id": 8611,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -349745,7 +350633,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25901,
+ "id": 8612,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -349759,7 +350647,7 @@
],
"signatures": [
{
- "id": 25902,
+ "id": 8613,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -349787,7 +350675,7 @@
],
"typeParameters": [
{
- "id": 25903,
+ "id": 8614,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -349798,7 +350686,7 @@
}
},
{
- "id": 25904,
+ "id": 8615,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -349811,7 +350699,7 @@
],
"parameters": [
{
- "id": 25905,
+ "id": 8616,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -349844,7 +350732,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -349864,7 +350752,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -349897,7 +350785,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -349912,7 +350800,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -349932,7 +350820,7 @@
}
},
{
- "id": 25906,
+ "id": 8617,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -349955,7 +350843,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25907,
+ "id": 8618,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -349969,7 +350857,7 @@
],
"signatures": [
{
- "id": 25908,
+ "id": 8619,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -349991,7 +350879,7 @@
}
},
{
- "id": 25909,
+ "id": 8620,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -350014,7 +350902,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25910,
+ "id": 8621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -350028,7 +350916,7 @@
],
"signatures": [
{
- "id": 25911,
+ "id": 8622,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -350042,7 +350930,7 @@
],
"parameters": [
{
- "id": 25912,
+ "id": 8623,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -350068,7 +350956,7 @@
}
},
{
- "id": 25913,
+ "id": 8624,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -350091,7 +350979,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25914,
+ "id": 8625,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -350102,7 +350990,7 @@
],
"documents": [
{
- "id": 42491,
+ "id": 25432,
"name": "cancelOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -350129,21 +351017,21 @@
}
],
"childrenIncludingDocuments": [
- 25888,
- 25900,
- 25906,
- 25909,
- 25913
+ 8599,
+ 8611,
+ 8617,
+ 8620,
+ 8624
],
"groups": [
{
"title": "Properties",
"children": [
- 25888,
- 25900,
- 25906,
- 25909,
- 25913
+ 8599,
+ 8611,
+ 8617,
+ 8620,
+ 8624
]
}
],
@@ -350152,12 +351040,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order-change.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-change.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-change.ts#L16"
}
],
"signatures": [
{
- "id": 25881,
+ "id": 8592,
"name": "cancelOrderChangeWorkflow",
"variant": "signature",
"kind": 4096,
@@ -350195,12 +351083,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order-change.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-change.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-change.ts#L16"
}
],
"typeParameters": [
{
- "id": 25882,
+ "id": 8593,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -350211,7 +351099,7 @@
}
},
{
- "id": 25883,
+ "id": 8594,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -350224,7 +351112,7 @@
],
"parameters": [
{
- "id": 25884,
+ "id": 8595,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -350248,14 +351136,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 25885,
+ "id": 8596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25886,
+ "id": 8597,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -350278,7 +351166,7 @@
}
},
{
- "id": 25887,
+ "id": 8598,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -350305,8 +351193,8 @@
{
"title": "Properties",
"children": [
- 25886,
- 25887
+ 8597,
+ 8598
]
}
],
@@ -350394,14 +351282,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -350416,7 +351304,7 @@
]
},
{
- "id": 25919,
+ "id": 8630,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -350434,7 +351322,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L66"
}
],
"type": {
@@ -350451,7 +351339,7 @@
}
},
{
- "id": 25917,
+ "id": 8628,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -350469,7 +351357,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L62"
}
],
"type": {
@@ -350487,14 +351375,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25918,
+ "id": 8629,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25919,
+ "id": 8630,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -350512,7 +351400,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L66"
}
],
"type": {
@@ -350533,7 +351421,7 @@
{
"title": "Properties",
"children": [
- 25919
+ 8630
]
}
],
@@ -350542,7 +351430,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 62,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L62"
}
]
}
@@ -350551,7 +351439,7 @@
}
},
{
- "id": 25920,
+ "id": 8631,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -350569,7 +351457,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L71"
}
],
"type": {
@@ -350584,7 +351472,7 @@
}
},
{
- "id": 25921,
+ "id": 8632,
"name": "cancelOrderFulfillmentValidateOrder",
"variant": "declaration",
"kind": 64,
@@ -350619,7 +351507,7 @@
},
"children": [
{
- "id": 25930,
+ "id": 8641,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -350637,7 +351525,7 @@
}
},
{
- "id": 25931,
+ "id": 8642,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -350659,8 +351547,8 @@
{
"title": "Properties",
"children": [
- 25930,
- 25931
+ 8641,
+ 8642
]
}
],
@@ -350669,12 +351557,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L103"
}
],
"signatures": [
{
- "id": 25922,
+ "id": 8633,
"name": "cancelOrderFulfillmentValidateOrder",
"variant": "signature",
"kind": 4096,
@@ -350712,12 +351600,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L103"
}
],
"parameters": [
{
- "id": 25923,
+ "id": 8634,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -350727,7 +351615,7 @@
"types": [
{
"type": "reference",
- "target": 25915,
+ "target": 8626,
"name": "CancelOrderFulfillmentValidateOrderStep",
"package": "@medusajs/core-flows"
},
@@ -350740,7 +351628,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25915,
+ "target": 8626,
"name": "CancelOrderFulfillmentValidateOrderStep",
"package": "@medusajs/core-flows"
}
@@ -350773,14 +351661,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25924,
+ "id": 8635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25925,
+ "id": 8636,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -350794,7 +351682,7 @@
],
"signatures": [
{
- "id": 25926,
+ "id": 8637,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -350808,7 +351696,7 @@
],
"parameters": [
{
- "id": 25927,
+ "id": 8638,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -350819,14 +351707,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25928,
+ "id": 8639,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25929,
+ "id": 8640,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -350850,7 +351738,7 @@
{
"title": "Properties",
"children": [
- 25929
+ 8640
]
}
],
@@ -350927,7 +351815,7 @@
{
"title": "Methods",
"children": [
- 25925
+ 8636
]
}
],
@@ -350961,7 +351849,7 @@
]
},
{
- "id": 25933,
+ "id": 8644,
"name": "cancelOrderFulfillmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -350973,7 +351861,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 286,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L286"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L286"
}
],
"type": {
@@ -350983,7 +351871,7 @@
"defaultValue": "\"cancel-order-fulfillment\""
},
{
- "id": 25934,
+ "id": 8645,
"name": "cancelOrderFulfillmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -351053,7 +351941,7 @@
},
"children": [
{
- "id": 25942,
+ "id": 8653,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -351076,7 +351964,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25943,
+ "id": 8654,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -351090,7 +351978,7 @@
],
"signatures": [
{
- "id": 25944,
+ "id": 8655,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -351118,7 +352006,7 @@
],
"parameters": [
{
- "id": 25945,
+ "id": 8656,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -351134,14 +352022,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25946,
+ "id": 8657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25947,
+ "id": 8658,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -351166,7 +352054,7 @@
"types": [
{
"type": "reference",
- "target": 25932,
+ "target": 8643,
"name": "CancelOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -351179,7 +352067,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25932,
+ "target": 8643,
"name": "CancelOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -351195,7 +352083,7 @@
{
"title": "Properties",
"children": [
- 25947
+ 8658
]
}
],
@@ -351220,7 +352108,7 @@
}
},
{
- "id": 25948,
+ "id": 8659,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -351243,7 +352131,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25949,
+ "id": 8660,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -351257,7 +352145,7 @@
],
"signatures": [
{
- "id": 25950,
+ "id": 8661,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -351285,7 +352173,7 @@
],
"typeParameters": [
{
- "id": 25951,
+ "id": 8662,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -351296,7 +352184,7 @@
}
},
{
- "id": 25952,
+ "id": 8663,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -351309,7 +352197,7 @@
],
"parameters": [
{
- "id": 25953,
+ "id": 8664,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -351342,7 +352230,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -351353,13 +352241,13 @@
},
"trueType": {
"type": "reference",
- "target": 25932,
+ "target": 8643,
"name": "CancelOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -351392,7 +352280,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -351407,7 +352295,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -351427,7 +352315,7 @@
}
},
{
- "id": 25954,
+ "id": 8665,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -351450,7 +352338,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25955,
+ "id": 8666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -351464,7 +352352,7 @@
],
"signatures": [
{
- "id": 25956,
+ "id": 8667,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -351486,7 +352374,7 @@
}
},
{
- "id": 25957,
+ "id": 8668,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -351509,7 +352397,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25958,
+ "id": 8669,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -351523,7 +352411,7 @@
],
"signatures": [
{
- "id": 25959,
+ "id": 8670,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -351537,7 +352425,7 @@
],
"parameters": [
{
- "id": 25960,
+ "id": 8671,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -351563,7 +352451,7 @@
}
},
{
- "id": 25961,
+ "id": 8672,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -351586,14 +352474,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25962,
+ "id": 8673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25963,
+ "id": 8674,
"name": "orderFulfillmentCanceled",
"variant": "declaration",
"kind": 1024,
@@ -351601,7 +352489,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25964,
+ "id": 8675,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -351615,7 +352503,7 @@
],
"signatures": [
{
- "id": 25965,
+ "id": 8676,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -351629,7 +352517,7 @@
],
"typeParameters": [
{
- "id": 25966,
+ "id": 8677,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -351638,7 +352526,7 @@
],
"parameters": [
{
- "id": 25967,
+ "id": 8678,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -351653,14 +352541,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25968,
+ "id": 8679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25969,
+ "id": 8680,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -351670,7 +352558,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 404,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L404"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L404"
}
],
"type": {
@@ -351679,7 +352567,7 @@
}
},
{
- "id": 25970,
+ "id": 8681,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -351697,7 +352585,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 405,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L405"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L405"
}
],
"type": {
@@ -351720,8 +352608,8 @@
{
"title": "Properties",
"children": [
- 25969,
- 25970
+ 8680,
+ 8681
]
}
],
@@ -351730,7 +352618,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 403,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L403"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L403"
}
]
}
@@ -351741,7 +352629,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -351752,7 +352640,7 @@
}
},
{
- "id": 25971,
+ "id": 8682,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -351768,7 +352656,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -351789,7 +352677,7 @@
}
},
{
- "id": 42499,
+ "id": 25440,
"name": "orderFulfillmentCanceled",
"variant": "declaration",
"kind": 64,
@@ -351824,14 +352712,14 @@
},
"signatures": [
{
- "id": 42500,
+ "id": 25441,
"name": "orderFulfillmentCanceled",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42501,
+ "id": 25442,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -351846,7 +352734,7 @@
},
"type": {
"type": "reference",
- "target": 25968,
+ "target": 8679,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -351860,13 +352748,13 @@
{
"title": "Properties",
"children": [
- 25963
+ 8674
]
},
{
"title": "Functions",
"children": [
- 42499
+ 25440
]
}
],
@@ -351883,7 +352771,7 @@
],
"documents": [
{
- "id": 42492,
+ "id": 25433,
"name": "cancelOrderFulfillmentValidateOrder",
"variant": "document",
"kind": 8388608,
@@ -351909,7 +352797,7 @@
"frontmatter": {}
},
{
- "id": 42493,
+ "id": 25434,
"name": "adjustInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -351935,7 +352823,7 @@
"frontmatter": {}
},
{
- "id": 42494,
+ "id": 25435,
"name": "cancelOrderFulfillmentStep",
"variant": "document",
"kind": 8388608,
@@ -351961,7 +352849,7 @@
"frontmatter": {}
},
{
- "id": 42495,
+ "id": 25436,
"name": "createReservationsStep",
"variant": "document",
"kind": 8388608,
@@ -351987,7 +352875,7 @@
"frontmatter": {}
},
{
- "id": 42496,
+ "id": 25437,
"name": "updateReservationsStep",
"variant": "document",
"kind": 8388608,
@@ -352013,7 +352901,7 @@
"frontmatter": {}
},
{
- "id": 42497,
+ "id": 25438,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -352039,7 +352927,7 @@
"frontmatter": {}
},
{
- "id": 42498,
+ "id": 25439,
"name": "cancelFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -352065,7 +352953,7 @@
"frontmatter": {}
},
{
- "id": 42502,
+ "id": 25443,
"name": "orderFulfillmentCanceled",
"variant": "document",
"kind": 8388608,
@@ -352092,21 +352980,21 @@
}
],
"childrenIncludingDocuments": [
- 25942,
- 25948,
- 25954,
- 25957,
- 25961
+ 8653,
+ 8659,
+ 8665,
+ 8668,
+ 8672
],
"groups": [
{
"title": "Properties",
"children": [
- 25942,
- 25948,
- 25954,
- 25957,
- 25961
+ 8653,
+ 8659,
+ 8665,
+ 8668,
+ 8672
]
}
],
@@ -352115,12 +353003,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 313,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L313"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L313"
}
],
"signatures": [
{
- "id": 25935,
+ "id": 8646,
"name": "cancelOrderFulfillmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -352193,12 +353081,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 313,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L313"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L313"
}
],
"typeParameters": [
{
- "id": 25936,
+ "id": 8647,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -352209,7 +353097,7 @@
}
},
{
- "id": 25937,
+ "id": 8648,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -352222,7 +353110,7 @@
],
"parameters": [
{
- "id": 25938,
+ "id": 8649,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -352246,14 +353134,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 25939,
+ "id": 8650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25940,
+ "id": 8651,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -352276,7 +353164,7 @@
}
},
{
- "id": 25941,
+ "id": 8652,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -352303,8 +353191,8 @@
{
"title": "Properties",
"children": [
- 25940,
- 25941
+ 8651,
+ 8652
]
}
],
@@ -352379,7 +353267,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25932,
+ "target": 8643,
"name": "CancelOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -352389,14 +353277,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -352411,14 +353299,14 @@
]
},
{
- "id": 25968,
+ "id": 8679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25969,
+ "id": 8680,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -352428,7 +353316,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 404,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L404"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L404"
}
],
"type": {
@@ -352437,7 +353325,7 @@
}
},
{
- "id": 25970,
+ "id": 8681,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -352455,7 +353343,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 405,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L405"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L405"
}
],
"type": {
@@ -352478,8 +353366,8 @@
{
"title": "Properties",
"children": [
- 25969,
- 25970
+ 8680,
+ 8681
]
}
],
@@ -352488,12 +353376,12 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 403,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L403"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L403"
}
]
},
{
- "id": 25969,
+ "id": 8680,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -352503,7 +353391,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 404,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L404"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L404"
}
],
"type": {
@@ -352512,7 +353400,7 @@
}
},
{
- "id": 25970,
+ "id": 8681,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -352530,7 +353418,7 @@
"fileName": "core-flows/src/order/workflows/cancel-order-fulfillment.ts",
"line": 405,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L405"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/cancel-order-fulfillment.ts#L405"
}
],
"type": {
@@ -352549,7 +353437,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 25974,
+ "id": 8685,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -352567,7 +353455,7 @@
"fileName": "core-flows/src/order/workflows/claim/begin-order-claim.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L25"
}
],
"type": {
@@ -352581,7 +353469,7 @@
}
},
{
- "id": 25975,
+ "id": 8686,
"name": "beginClaimOrderValidationStep",
"variant": "declaration",
"kind": 64,
@@ -352616,7 +353504,7 @@
},
"children": [
{
- "id": 25984,
+ "id": 8695,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -352634,7 +353522,7 @@
}
},
{
- "id": 25985,
+ "id": 8696,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -352656,8 +353544,8 @@
{
"title": "Properties",
"children": [
- 25984,
- 25985
+ 8695,
+ 8696
]
}
],
@@ -352666,12 +353554,12 @@
"fileName": "core-flows/src/order/workflows/claim/begin-order-claim.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L47"
}
],
"signatures": [
{
- "id": 25976,
+ "id": 8687,
"name": "beginClaimOrderValidationStep",
"variant": "signature",
"kind": 4096,
@@ -352709,12 +353597,12 @@
"fileName": "core-flows/src/order/workflows/claim/begin-order-claim.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L47"
}
],
"parameters": [
{
- "id": 25977,
+ "id": 8688,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -352724,7 +353612,7 @@
"types": [
{
"type": "reference",
- "target": 25972,
+ "target": 8683,
"name": "BeginClaimOrderValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -352737,7 +353625,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 25972,
+ "target": 8683,
"name": "BeginClaimOrderValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -352770,14 +353658,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25978,
+ "id": 8689,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25979,
+ "id": 8690,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -352791,7 +353679,7 @@
],
"signatures": [
{
- "id": 25980,
+ "id": 8691,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -352805,7 +353693,7 @@
],
"parameters": [
{
- "id": 25981,
+ "id": 8692,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -352816,14 +353704,14 @@
{
"type": "reflection",
"declaration": {
- "id": 25982,
+ "id": 8693,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25983,
+ "id": 8694,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -352847,7 +353735,7 @@
{
"title": "Properties",
"children": [
- 25983
+ 8694
]
}
],
@@ -352924,7 +353812,7 @@
{
"title": "Methods",
"children": [
- 25979
+ 8690
]
}
],
@@ -352958,7 +353846,7 @@
]
},
{
- "id": 25986,
+ "id": 8697,
"name": "beginClaimOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -352970,7 +353858,7 @@
"fileName": "core-flows/src/order/workflows/claim/begin-order-claim.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L54"
}
],
"type": {
@@ -352980,7 +353868,7 @@
"defaultValue": "\"begin-claim-order\""
},
{
- "id": 25987,
+ "id": 8698,
"name": "beginClaimOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -353024,7 +353912,7 @@
},
"children": [
{
- "id": 25995,
+ "id": 8706,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -353047,7 +353935,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25996,
+ "id": 8707,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -353061,7 +353949,7 @@
],
"signatures": [
{
- "id": 25997,
+ "id": 8708,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -353089,7 +353977,7 @@
],
"parameters": [
{
- "id": 25998,
+ "id": 8709,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -353105,14 +353993,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 25999,
+ "id": 8710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26000,
+ "id": 8711,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -353172,7 +354060,7 @@
{
"title": "Properties",
"children": [
- 26000
+ 8711
]
}
],
@@ -353193,14 +354081,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26001,
+ "id": 8712,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26002,
+ "id": 8713,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -353246,7 +354134,7 @@
}
},
{
- "id": 26003,
+ "id": 8714,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -353292,7 +354180,7 @@
}
},
{
- "id": 26004,
+ "id": 8715,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -353381,7 +354269,7 @@
}
},
{
- "id": 26005,
+ "id": 8716,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -353446,7 +354334,7 @@
}
},
{
- "id": 26006,
+ "id": 8717,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -353492,7 +354380,7 @@
}
},
{
- "id": 26007,
+ "id": 8718,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -353538,7 +354426,7 @@
}
},
{
- "id": 26008,
+ "id": 8719,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -353584,7 +354472,7 @@
}
},
{
- "id": 26009,
+ "id": 8720,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -353630,7 +354518,7 @@
}
},
{
- "id": 26010,
+ "id": 8721,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -353689,7 +354577,7 @@
}
},
{
- "id": 26011,
+ "id": 8722,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -353748,7 +354636,7 @@
}
},
{
- "id": 26012,
+ "id": 8723,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -353807,7 +354695,7 @@
}
},
{
- "id": 26013,
+ "id": 8724,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -353866,7 +354754,7 @@
}
},
{
- "id": 26014,
+ "id": 8725,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -353931,7 +354819,7 @@
}
},
{
- "id": 26015,
+ "id": 8726,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -353987,7 +354875,7 @@
}
},
{
- "id": 26016,
+ "id": 8727,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -354046,7 +354934,7 @@
}
},
{
- "id": 26017,
+ "id": 8728,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -354123,7 +355011,7 @@
}
},
{
- "id": 26018,
+ "id": 8729,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -354182,7 +355070,7 @@
}
},
{
- "id": 26019,
+ "id": 8730,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -354259,7 +355147,7 @@
}
},
{
- "id": 26020,
+ "id": 8731,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -354318,7 +355206,7 @@
}
},
{
- "id": 26021,
+ "id": 8732,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -354377,7 +355265,7 @@
}
},
{
- "id": 26022,
+ "id": 8733,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -354466,7 +355354,7 @@
}
},
{
- "id": 26023,
+ "id": 8734,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -354543,7 +355431,7 @@
}
},
{
- "id": 26024,
+ "id": 8735,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -354602,7 +355490,7 @@
}
},
{
- "id": 26025,
+ "id": 8736,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -354679,7 +355567,7 @@
}
},
{
- "id": 26026,
+ "id": 8737,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -354748,7 +355636,7 @@
}
},
{
- "id": 26027,
+ "id": 8738,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -354821,32 +355709,32 @@
{
"title": "Properties",
"children": [
- 26002,
- 26003,
- 26004,
- 26005,
- 26006,
- 26007,
- 26008,
- 26009,
- 26010,
- 26011,
- 26012,
- 26013,
- 26014,
- 26015,
- 26016,
- 26017,
- 26018,
- 26019,
- 26020,
- 26021,
- 26022,
- 26023,
- 26024,
- 26025,
- 26026,
- 26027
+ 8713,
+ 8714,
+ 8715,
+ 8716,
+ 8717,
+ 8718,
+ 8719,
+ 8720,
+ 8721,
+ 8722,
+ 8723,
+ 8724,
+ 8725,
+ 8726,
+ 8727,
+ 8728,
+ 8729,
+ 8730,
+ 8731,
+ 8732,
+ 8733,
+ 8734,
+ 8735,
+ 8736,
+ 8737,
+ 8738
]
}
],
@@ -354891,14 +355779,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26028,
+ "id": 8739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26029,
+ "id": 8740,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -354912,7 +355800,7 @@
],
"signatures": [
{
- "id": 26030,
+ "id": 8741,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -354926,7 +355814,7 @@
],
"parameters": [
{
- "id": 26031,
+ "id": 8742,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -354937,14 +355825,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26032,
+ "id": 8743,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26033,
+ "id": 8744,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -354968,7 +355856,7 @@
{
"title": "Properties",
"children": [
- 26033
+ 8744
]
}
],
@@ -355050,7 +355938,7 @@
{
"title": "Methods",
"children": [
- 26029
+ 8740
]
}
],
@@ -355091,7 +355979,7 @@
}
},
{
- "id": 26034,
+ "id": 8745,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -355114,7 +356002,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26035,
+ "id": 8746,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -355128,7 +356016,7 @@
],
"signatures": [
{
- "id": 26036,
+ "id": 8747,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -355156,7 +356044,7 @@
],
"typeParameters": [
{
- "id": 26037,
+ "id": 8748,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -355167,7 +356055,7 @@
}
},
{
- "id": 26038,
+ "id": 8749,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -355180,7 +356068,7 @@
],
"parameters": [
{
- "id": 26039,
+ "id": 8750,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -355213,7 +356101,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -355233,7 +356121,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -355266,7 +356154,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -355286,7 +356174,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -355306,7 +356194,7 @@
}
},
{
- "id": 26040,
+ "id": 8751,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -355329,7 +356217,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26041,
+ "id": 8752,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -355343,7 +356231,7 @@
],
"signatures": [
{
- "id": 26042,
+ "id": 8753,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -355365,7 +356253,7 @@
}
},
{
- "id": 26043,
+ "id": 8754,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -355388,7 +356276,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26044,
+ "id": 8755,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -355402,7 +356290,7 @@
],
"signatures": [
{
- "id": 26045,
+ "id": 8756,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -355416,7 +356304,7 @@
],
"parameters": [
{
- "id": 26046,
+ "id": 8757,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -355442,7 +356330,7 @@
}
},
{
- "id": 26047,
+ "id": 8758,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -355465,7 +356353,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26048,
+ "id": 8759,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -355476,7 +356364,7 @@
],
"documents": [
{
- "id": 42503,
+ "id": 25444,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -355502,7 +356390,7 @@
"frontmatter": {}
},
{
- "id": 42504,
+ "id": 25445,
"name": "beginClaimOrderValidationStep",
"variant": "document",
"kind": 8388608,
@@ -355528,7 +356416,7 @@
"frontmatter": {}
},
{
- "id": 42505,
+ "id": 25446,
"name": "createOrderClaimsStep",
"variant": "document",
"kind": 8388608,
@@ -355554,7 +356442,7 @@
"frontmatter": {}
},
{
- "id": 42506,
+ "id": 25447,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -355581,21 +356469,21 @@
}
],
"childrenIncludingDocuments": [
- 25995,
- 26034,
- 26040,
- 26043,
- 26047
+ 8706,
+ 8745,
+ 8751,
+ 8754,
+ 8758
],
"groups": [
{
"title": "Properties",
"children": [
- 25995,
- 26034,
- 26040,
- 26043,
- 26047
+ 8706,
+ 8745,
+ 8751,
+ 8754,
+ 8758
]
}
],
@@ -355604,12 +356492,12 @@
"fileName": "core-flows/src/order/workflows/claim/begin-order-claim.ts",
"line": 75,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L75"
}
],
"signatures": [
{
- "id": 25988,
+ "id": 8699,
"name": "beginClaimOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -355656,12 +356544,12 @@
"fileName": "core-flows/src/order/workflows/claim/begin-order-claim.ts",
"line": 75,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/begin-order-claim.ts#L75"
}
],
"typeParameters": [
{
- "id": 25989,
+ "id": 8700,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -355672,7 +356560,7 @@
}
},
{
- "id": 25990,
+ "id": 8701,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -355685,7 +356573,7 @@
],
"parameters": [
{
- "id": 25991,
+ "id": 8702,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -355709,14 +356597,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 25992,
+ "id": 8703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 25993,
+ "id": 8704,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -355739,7 +356627,7 @@
}
},
{
- "id": 25994,
+ "id": 8705,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -355766,8 +356654,8 @@
{
"title": "Properties",
"children": [
- 25993,
- 25994
+ 8704,
+ 8705
]
}
],
@@ -355860,14 +356748,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -355882,7 +356770,7 @@
]
},
{
- "id": 26051,
+ "id": 8762,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -355900,7 +356788,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L33"
}
],
"type": {
@@ -355914,7 +356802,7 @@
}
},
{
- "id": 26052,
+ "id": 8763,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -355932,7 +356820,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L37"
}
],
"type": {
@@ -355946,7 +356834,7 @@
}
},
{
- "id": 26053,
+ "id": 8764,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -355964,7 +356852,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L41"
}
],
"type": {
@@ -355978,7 +356866,7 @@
}
},
{
- "id": 26054,
+ "id": 8765,
"name": "cancelBeginOrderClaimValidationStep",
"variant": "declaration",
"kind": 64,
@@ -356013,7 +356901,7 @@
},
"children": [
{
- "id": 26063,
+ "id": 8774,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -356031,7 +356919,7 @@
}
},
{
- "id": 26064,
+ "id": 8775,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -356053,8 +356941,8 @@
{
"title": "Properties",
"children": [
- 26063,
- 26064
+ 8774,
+ 8775
]
}
],
@@ -356063,12 +356951,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L71"
}
],
"signatures": [
{
- "id": 26055,
+ "id": 8766,
"name": "cancelBeginOrderClaimValidationStep",
"variant": "signature",
"kind": 4096,
@@ -356106,12 +356994,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L71"
}
],
"parameters": [
{
- "id": 26056,
+ "id": 8767,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -356121,7 +357009,7 @@
"types": [
{
"type": "reference",
- "target": 26049,
+ "target": 8760,
"name": "CancelBeginOrderClaimValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -356134,7 +357022,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26049,
+ "target": 8760,
"name": "CancelBeginOrderClaimValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -356167,14 +357055,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26057,
+ "id": 8768,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26058,
+ "id": 8769,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -356188,7 +357076,7 @@
],
"signatures": [
{
- "id": 26059,
+ "id": 8770,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -356202,7 +357090,7 @@
],
"parameters": [
{
- "id": 26060,
+ "id": 8771,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -356213,14 +357101,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26061,
+ "id": 8772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26062,
+ "id": 8773,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -356244,7 +357132,7 @@
{
"title": "Properties",
"children": [
- 26062
+ 8773
]
}
],
@@ -356321,7 +357209,7 @@
{
"title": "Methods",
"children": [
- 26058
+ 8769
]
}
],
@@ -356355,7 +357243,7 @@
]
},
{
- "id": 26067,
+ "id": 8778,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -356373,7 +357261,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L91"
}
],
"type": {
@@ -356382,7 +357270,7 @@
}
},
{
- "id": 26068,
+ "id": 8779,
"name": "cancelBeginOrderClaimWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -356394,7 +357282,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 94,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L94"
}
],
"type": {
@@ -356404,7 +357292,7 @@
"defaultValue": "\"cancel-begin-order-claim\""
},
{
- "id": 26069,
+ "id": 8780,
"name": "cancelBeginOrderClaimWorkflow",
"variant": "declaration",
"kind": 64,
@@ -356448,7 +357336,7 @@
},
"children": [
{
- "id": 26077,
+ "id": 8788,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -356471,7 +357359,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26078,
+ "id": 8789,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -356485,7 +357373,7 @@
],
"signatures": [
{
- "id": 26079,
+ "id": 8790,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -356513,7 +357401,7 @@
],
"parameters": [
{
- "id": 26080,
+ "id": 8791,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -356529,14 +357417,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26081,
+ "id": 8792,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26082,
+ "id": 8793,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -356561,7 +357449,7 @@
"types": [
{
"type": "reference",
- "target": 26065,
+ "target": 8776,
"name": "CancelBeginOrderClaimWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -356574,7 +357462,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26065,
+ "target": 8776,
"name": "CancelBeginOrderClaimWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -356590,7 +357478,7 @@
{
"title": "Properties",
"children": [
- 26082
+ 8793
]
}
],
@@ -356626,14 +357514,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26083,
+ "id": 8794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26084,
+ "id": 8795,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -356647,7 +357535,7 @@
],
"signatures": [
{
- "id": 26085,
+ "id": 8796,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -356661,7 +357549,7 @@
],
"parameters": [
{
- "id": 26086,
+ "id": 8797,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -356672,14 +357560,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26087,
+ "id": 8798,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26088,
+ "id": 8799,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -356703,7 +357591,7 @@
{
"title": "Properties",
"children": [
- 26088
+ 8799
]
}
],
@@ -356780,7 +357668,7 @@
{
"title": "Methods",
"children": [
- 26084
+ 8795
]
}
],
@@ -356816,7 +357704,7 @@
}
},
{
- "id": 26089,
+ "id": 8800,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -356839,7 +357727,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26090,
+ "id": 8801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -356853,7 +357741,7 @@
],
"signatures": [
{
- "id": 26091,
+ "id": 8802,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -356881,7 +357769,7 @@
],
"typeParameters": [
{
- "id": 26092,
+ "id": 8803,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -356892,7 +357780,7 @@
}
},
{
- "id": 26093,
+ "id": 8804,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -356905,7 +357793,7 @@
],
"parameters": [
{
- "id": 26094,
+ "id": 8805,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -356938,7 +357826,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -356949,13 +357837,13 @@
},
"trueType": {
"type": "reference",
- "target": 26065,
+ "target": 8776,
"name": "CancelBeginOrderClaimWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -356988,7 +357876,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -357003,7 +357891,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -357023,7 +357911,7 @@
}
},
{
- "id": 26095,
+ "id": 8806,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -357046,7 +357934,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26096,
+ "id": 8807,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -357060,7 +357948,7 @@
],
"signatures": [
{
- "id": 26097,
+ "id": 8808,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -357082,7 +357970,7 @@
}
},
{
- "id": 26098,
+ "id": 8809,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -357105,7 +357993,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26099,
+ "id": 8810,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -357119,7 +358007,7 @@
],
"signatures": [
{
- "id": 26100,
+ "id": 8811,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -357133,7 +358021,7 @@
],
"parameters": [
{
- "id": 26101,
+ "id": 8812,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -357159,7 +358047,7 @@
}
},
{
- "id": 26102,
+ "id": 8813,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -357182,7 +358070,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26103,
+ "id": 8814,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -357193,7 +358081,7 @@
],
"documents": [
{
- "id": 42507,
+ "id": 25448,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -357219,7 +358107,7 @@
"frontmatter": {}
},
{
- "id": 42508,
+ "id": 25449,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -357245,7 +358133,7 @@
"frontmatter": {}
},
{
- "id": 42509,
+ "id": 25450,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -357271,7 +358159,7 @@
"frontmatter": {}
},
{
- "id": 42510,
+ "id": 25451,
"name": "cancelBeginOrderClaimValidationStep",
"variant": "document",
"kind": 8388608,
@@ -357297,7 +358185,7 @@
"frontmatter": {}
},
{
- "id": 42511,
+ "id": 25452,
"name": "deleteReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -357323,7 +358211,7 @@
"frontmatter": {}
},
{
- "id": 42512,
+ "id": 25453,
"name": "deleteClaimsStep",
"variant": "document",
"kind": 8388608,
@@ -357349,7 +358237,7 @@
"frontmatter": {}
},
{
- "id": 42513,
+ "id": 25454,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -357375,7 +358263,7 @@
"frontmatter": {}
},
{
- "id": 42514,
+ "id": 25455,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -357402,21 +358290,21 @@
}
],
"childrenIncludingDocuments": [
- 26077,
- 26089,
- 26095,
- 26098,
- 26102
+ 8788,
+ 8800,
+ 8806,
+ 8809,
+ 8813
],
"groups": [
{
"title": "Properties",
"children": [
- 26077,
- 26089,
- 26095,
- 26098,
- 26102
+ 8788,
+ 8800,
+ 8806,
+ 8809,
+ 8813
]
}
],
@@ -357425,12 +358313,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L114"
}
],
"signatures": [
{
- "id": 26070,
+ "id": 8781,
"name": "cancelBeginOrderClaimWorkflow",
"variant": "signature",
"kind": 4096,
@@ -357477,12 +358365,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-begin-order-claim.ts#L114"
}
],
"typeParameters": [
{
- "id": 26071,
+ "id": 8782,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -357493,7 +358381,7 @@
}
},
{
- "id": 26072,
+ "id": 8783,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -357506,7 +358394,7 @@
],
"parameters": [
{
- "id": 26073,
+ "id": 8784,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -357530,14 +358418,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26074,
+ "id": 8785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26075,
+ "id": 8786,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -357560,7 +358448,7 @@
}
},
{
- "id": 26076,
+ "id": 8787,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -357587,8 +358475,8 @@
{
"title": "Properties",
"children": [
- 26075,
- 26076
+ 8786,
+ 8787
]
}
],
@@ -357663,7 +358551,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26065,
+ "target": 8776,
"name": "CancelBeginOrderClaimWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -357673,14 +358561,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -357695,7 +358583,7 @@
]
},
{
- "id": 26106,
+ "id": 8817,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -357713,7 +358601,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L29"
}
],
"type": {
@@ -357727,7 +358615,7 @@
}
},
{
- "id": 26109,
+ "id": 8820,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -357737,7 +358625,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 33,
"character": 29,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
}
],
"type": {
@@ -357754,7 +358642,7 @@
}
},
{
- "id": 26107,
+ "id": 8818,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -357772,7 +358660,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
}
],
"type": {
@@ -357790,14 +358678,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26108,
+ "id": 8819,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26109,
+ "id": 8820,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -357807,7 +358695,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 33,
"character": 29,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
}
],
"type": {
@@ -357828,7 +358716,7 @@
{
"title": "Properties",
"children": [
- 26109
+ 8820
]
}
],
@@ -357837,7 +358725,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 33,
"character": 27,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L33"
}
]
}
@@ -357846,7 +358734,7 @@
}
},
{
- "id": 26110,
+ "id": 8821,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -357864,7 +358752,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L37"
}
],
"type": {
@@ -357879,7 +358767,7 @@
}
},
{
- "id": 26111,
+ "id": 8822,
"name": "cancelClaimValidateOrderStep",
"variant": "declaration",
"kind": 64,
@@ -357914,7 +358802,7 @@
},
"children": [
{
- "id": 26120,
+ "id": 8831,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -357932,7 +358820,7 @@
}
},
{
- "id": 26121,
+ "id": 8832,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -357954,8 +358842,8 @@
{
"title": "Properties",
"children": [
- 26120,
- 26121
+ 8831,
+ 8832
]
}
],
@@ -357964,12 +358852,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 62,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L62"
}
],
"signatures": [
{
- "id": 26112,
+ "id": 8823,
"name": "cancelClaimValidateOrderStep",
"variant": "signature",
"kind": 4096,
@@ -358007,12 +358895,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 62,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L62"
}
],
"parameters": [
{
- "id": 26113,
+ "id": 8824,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -358022,7 +358910,7 @@
"types": [
{
"type": "reference",
- "target": 26104,
+ "target": 8815,
"name": "CancelClaimValidateOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -358035,7 +358923,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26104,
+ "target": 8815,
"name": "CancelClaimValidateOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -358068,14 +358956,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26114,
+ "id": 8825,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26115,
+ "id": 8826,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -358089,7 +358977,7 @@
],
"signatures": [
{
- "id": 26116,
+ "id": 8827,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -358103,7 +358991,7 @@
],
"parameters": [
{
- "id": 26117,
+ "id": 8828,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -358114,14 +359002,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26118,
+ "id": 8829,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26119,
+ "id": 8830,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -358145,7 +359033,7 @@
{
"title": "Properties",
"children": [
- 26119
+ 8830
]
}
],
@@ -358222,7 +359110,7 @@
{
"title": "Methods",
"children": [
- 26115
+ 8826
]
}
],
@@ -358256,7 +359144,7 @@
]
},
{
- "id": 26122,
+ "id": 8833,
"name": "cancelOrderClaimWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -358268,7 +359156,7 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L91"
}
],
"type": {
@@ -358278,7 +359166,7 @@
"defaultValue": "\"cancel-claim\""
},
{
- "id": 26123,
+ "id": 8834,
"name": "cancelOrderClaimWorkflow",
"variant": "declaration",
"kind": 64,
@@ -358331,7 +359219,7 @@
},
"children": [
{
- "id": 26131,
+ "id": 8842,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -358354,7 +359242,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26132,
+ "id": 8843,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -358368,7 +359256,7 @@
],
"signatures": [
{
- "id": 26133,
+ "id": 8844,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -358396,7 +359284,7 @@
],
"parameters": [
{
- "id": 26134,
+ "id": 8845,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -358412,14 +359300,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26135,
+ "id": 8846,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26136,
+ "id": 8847,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -358479,7 +359367,7 @@
{
"title": "Properties",
"children": [
- 26136
+ 8847
]
}
],
@@ -358515,14 +359403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26137,
+ "id": 8848,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26138,
+ "id": 8849,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -358536,7 +359424,7 @@
],
"signatures": [
{
- "id": 26139,
+ "id": 8850,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -358550,7 +359438,7 @@
],
"parameters": [
{
- "id": 26140,
+ "id": 8851,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -358561,14 +359449,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26141,
+ "id": 8852,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26142,
+ "id": 8853,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -358592,7 +359480,7 @@
{
"title": "Properties",
"children": [
- 26142
+ 8853
]
}
],
@@ -358669,7 +359557,7 @@
{
"title": "Methods",
"children": [
- 26138
+ 8849
]
}
],
@@ -358705,7 +359593,7 @@
}
},
{
- "id": 26143,
+ "id": 8854,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -358728,7 +359616,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26144,
+ "id": 8855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -358742,7 +359630,7 @@
],
"signatures": [
{
- "id": 26145,
+ "id": 8856,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -358770,7 +359658,7 @@
],
"typeParameters": [
{
- "id": 26146,
+ "id": 8857,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -358781,7 +359669,7 @@
}
},
{
- "id": 26147,
+ "id": 8858,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -358794,7 +359682,7 @@
],
"parameters": [
{
- "id": 26148,
+ "id": 8859,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -358827,7 +359715,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -358847,7 +359735,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -358880,7 +359768,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -358895,7 +359783,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -358915,7 +359803,7 @@
}
},
{
- "id": 26149,
+ "id": 8860,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -358938,7 +359826,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26150,
+ "id": 8861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -358952,7 +359840,7 @@
],
"signatures": [
{
- "id": 26151,
+ "id": 8862,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -358974,7 +359862,7 @@
}
},
{
- "id": 26152,
+ "id": 8863,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -358997,7 +359885,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26153,
+ "id": 8864,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -359011,7 +359899,7 @@
],
"signatures": [
{
- "id": 26154,
+ "id": 8865,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -359025,7 +359913,7 @@
],
"parameters": [
{
- "id": 26155,
+ "id": 8866,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -359051,7 +359939,7 @@
}
},
{
- "id": 26156,
+ "id": 8867,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -359074,7 +359962,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26157,
+ "id": 8868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -359085,7 +359973,7 @@
],
"documents": [
{
- "id": 42515,
+ "id": 25456,
"name": "cancelClaimValidateOrderStep",
"variant": "document",
"kind": 8388608,
@@ -359111,7 +359999,7 @@
"frontmatter": {}
},
{
- "id": 42516,
+ "id": 25457,
"name": "cancelOrderClaimStep",
"variant": "document",
"kind": 8388608,
@@ -359137,7 +360025,7 @@
"frontmatter": {}
},
{
- "id": 42517,
+ "id": 25458,
"name": "deleteReservationsByLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -359163,7 +360051,7 @@
"frontmatter": {}
},
{
- "id": 42518,
+ "id": 25459,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -359198,7 +360086,7 @@
"frontmatter": {},
"children": [
{
- "id": 42519,
+ "id": 25460,
"name": "cancelReturnWorkflow",
"variant": "document",
"kind": 8388608,
@@ -359227,21 +360115,21 @@
}
],
"childrenIncludingDocuments": [
- 26131,
- 26143,
- 26149,
- 26152,
- 26156
+ 8842,
+ 8854,
+ 8860,
+ 8863,
+ 8867
],
"groups": [
{
"title": "Properties",
"children": [
- 26131,
- 26143,
- 26149,
- 26152,
- 26156
+ 8842,
+ 8854,
+ 8860,
+ 8863,
+ 8867
]
}
],
@@ -359250,12 +360138,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L111"
}
],
"signatures": [
{
- "id": 26124,
+ "id": 8835,
"name": "cancelOrderClaimWorkflow",
"variant": "signature",
"kind": 4096,
@@ -359311,12 +360199,12 @@
"fileName": "core-flows/src/order/workflows/claim/cancel-claim.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/cancel-claim.ts#L111"
}
],
"typeParameters": [
{
- "id": 26125,
+ "id": 8836,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -359327,7 +360215,7 @@
}
},
{
- "id": 26126,
+ "id": 8837,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -359340,7 +360228,7 @@
],
"parameters": [
{
- "id": 26127,
+ "id": 8838,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -359364,14 +360252,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26128,
+ "id": 8839,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26129,
+ "id": 8840,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -359394,7 +360282,7 @@
}
},
{
- "id": 26130,
+ "id": 8841,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -359421,8 +360309,8 @@
{
"title": "Properties",
"children": [
- 26129,
- 26130
+ 8840,
+ 8841
]
}
],
@@ -359510,14 +360398,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -359532,7 +360420,7 @@
]
},
{
- "id": 26160,
+ "id": 8871,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -359550,7 +360438,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L34"
}
],
"type": {
@@ -359564,7 +360452,7 @@
}
},
{
- "id": 26161,
+ "id": 8872,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -359582,7 +360470,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L38"
}
],
"type": {
@@ -359596,7 +360484,7 @@
}
},
{
- "id": 26162,
+ "id": 8873,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -359614,7 +360502,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L42"
}
],
"type": {
@@ -359628,7 +360516,7 @@
}
},
{
- "id": 26163,
+ "id": 8874,
"name": "orderClaimAddNewItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -359663,7 +360551,7 @@
},
"children": [
{
- "id": 26172,
+ "id": 8883,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -359681,7 +360569,7 @@
}
},
{
- "id": 26173,
+ "id": 8884,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -359703,8 +360591,8 @@
{
"title": "Properties",
"children": [
- 26172,
- 26173
+ 8883,
+ 8884
]
}
],
@@ -359713,12 +360601,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L72"
}
],
"signatures": [
{
- "id": 26164,
+ "id": 8875,
"name": "orderClaimAddNewItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -359756,12 +360644,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L72"
}
],
"parameters": [
{
- "id": 26165,
+ "id": 8876,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -359771,7 +360659,7 @@
"types": [
{
"type": "reference",
- "target": 26158,
+ "target": 8869,
"name": "OrderClaimAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -359784,7 +360672,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26158,
+ "target": 8869,
"name": "OrderClaimAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -359817,14 +360705,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26166,
+ "id": 8877,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26167,
+ "id": 8878,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -359838,7 +360726,7 @@
],
"signatures": [
{
- "id": 26168,
+ "id": 8879,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -359852,7 +360740,7 @@
],
"parameters": [
{
- "id": 26169,
+ "id": 8880,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -359863,14 +360751,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26170,
+ "id": 8881,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26171,
+ "id": 8882,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -359894,7 +360782,7 @@
{
"title": "Properties",
"children": [
- 26171
+ 8882
]
}
],
@@ -359971,7 +360859,7 @@
{
"title": "Methods",
"children": [
- 26167
+ 8878
]
}
],
@@ -360005,7 +360893,7 @@
]
},
{
- "id": 26174,
+ "id": 8885,
"name": "orderClaimAddNewItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -360017,7 +360905,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L85"
}
],
"type": {
@@ -360027,7 +360915,7 @@
"defaultValue": "\"claim-add-new-item\""
},
{
- "id": 26175,
+ "id": 8886,
"name": "orderClaimAddNewItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -360080,7 +360968,7 @@
},
"children": [
{
- "id": 26183,
+ "id": 8894,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -360103,7 +360991,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26184,
+ "id": 8895,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -360117,7 +361005,7 @@
],
"signatures": [
{
- "id": 26185,
+ "id": 8896,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -360145,7 +361033,7 @@
],
"parameters": [
{
- "id": 26186,
+ "id": 8897,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -360161,14 +361049,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26187,
+ "id": 8898,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26188,
+ "id": 8899,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -360228,7 +361116,7 @@
{
"title": "Properties",
"children": [
- 26188
+ 8899
]
}
],
@@ -360249,14 +361137,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26189,
+ "id": 8900,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26202,
+ "id": 8913,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -360302,7 +361190,7 @@
}
},
{
- "id": 26262,
+ "id": 8973,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -360348,7 +361236,7 @@
}
},
{
- "id": 26263,
+ "id": 8974,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -360394,7 +361282,7 @@
}
},
{
- "id": 26264,
+ "id": 8975,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -360451,7 +361339,7 @@
}
},
{
- "id": 26265,
+ "id": 8976,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -360507,7 +361395,7 @@
}
},
{
- "id": 26230,
+ "id": 8941,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -360564,7 +361452,7 @@
}
},
{
- "id": 26231,
+ "id": 8942,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -360621,7 +361509,7 @@
}
},
{
- "id": 26232,
+ "id": 8943,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -360678,7 +361566,7 @@
}
},
{
- "id": 26207,
+ "id": 8918,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -360735,7 +361623,7 @@
}
},
{
- "id": 26233,
+ "id": 8944,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -360781,7 +361669,7 @@
}
},
{
- "id": 26234,
+ "id": 8945,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -360851,7 +361739,7 @@
}
},
{
- "id": 26235,
+ "id": 8946,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -360921,7 +361809,7 @@
}
},
{
- "id": 26266,
+ "id": 8977,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -360997,7 +361885,7 @@
}
},
{
- "id": 26236,
+ "id": 8947,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -361073,7 +361961,7 @@
}
},
{
- "id": 26267,
+ "id": 8978,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -361143,7 +362031,7 @@
}
},
{
- "id": 26268,
+ "id": 8979,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -361200,7 +362088,7 @@
}
},
{
- "id": 26206,
+ "id": 8917,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -361295,7 +362183,7 @@
}
},
{
- "id": 26261,
+ "id": 8972,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -361370,7 +362258,7 @@
}
},
{
- "id": 26203,
+ "id": 8914,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -361439,7 +362327,7 @@
}
},
{
- "id": 26204,
+ "id": 8915,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -361508,7 +362396,7 @@
}
},
{
- "id": 26205,
+ "id": 8916,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -361583,7 +362471,7 @@
}
},
{
- "id": 26237,
+ "id": 8948,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -361639,7 +362527,7 @@
}
},
{
- "id": 26238,
+ "id": 8949,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -361695,7 +362583,7 @@
}
},
{
- "id": 26239,
+ "id": 8950,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -361751,7 +362639,7 @@
}
},
{
- "id": 26211,
+ "id": 8922,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -361807,7 +362695,7 @@
}
},
{
- "id": 26212,
+ "id": 8923,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -361863,7 +362751,7 @@
}
},
{
- "id": 26213,
+ "id": 8924,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -361919,7 +362807,7 @@
}
},
{
- "id": 26269,
+ "id": 8980,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -361975,7 +362863,7 @@
}
},
{
- "id": 26208,
+ "id": 8919,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -362031,7 +362919,7 @@
}
},
{
- "id": 26209,
+ "id": 8920,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -362087,7 +362975,7 @@
}
},
{
- "id": 26210,
+ "id": 8921,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -362143,7 +363031,7 @@
}
},
{
- "id": 26214,
+ "id": 8925,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -362199,7 +363087,7 @@
}
},
{
- "id": 26215,
+ "id": 8926,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -362255,7 +363143,7 @@
}
},
{
- "id": 26216,
+ "id": 8927,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -362311,7 +363199,7 @@
}
},
{
- "id": 26270,
+ "id": 8981,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -362367,7 +363255,7 @@
}
},
{
- "id": 26217,
+ "id": 8928,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -362423,7 +363311,7 @@
}
},
{
- "id": 26218,
+ "id": 8929,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -362479,7 +363367,7 @@
}
},
{
- "id": 26260,
+ "id": 8971,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -362535,7 +363423,7 @@
}
},
{
- "id": 26240,
+ "id": 8951,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -362591,7 +363479,7 @@
}
},
{
- "id": 26241,
+ "id": 8952,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -362647,7 +363535,7 @@
}
},
{
- "id": 26242,
+ "id": 8953,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -362703,7 +363591,7 @@
}
},
{
- "id": 26243,
+ "id": 8954,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -362759,7 +363647,7 @@
}
},
{
- "id": 26244,
+ "id": 8955,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -362815,7 +363703,7 @@
}
},
{
- "id": 26271,
+ "id": 8982,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -362871,7 +363759,7 @@
}
},
{
- "id": 26245,
+ "id": 8956,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -362927,7 +363815,7 @@
}
},
{
- "id": 26246,
+ "id": 8957,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -362983,7 +363871,7 @@
}
},
{
- "id": 26247,
+ "id": 8958,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -363039,7 +363927,7 @@
}
},
{
- "id": 26190,
+ "id": 8901,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -363095,7 +363983,7 @@
}
},
{
- "id": 26191,
+ "id": 8902,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -363135,14 +364023,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26192,
+ "id": 8903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26193,
+ "id": 8904,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -363174,7 +364062,7 @@
{
"title": "Properties",
"children": [
- 26193
+ 8904
]
}
],
@@ -363214,14 +364102,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26194,
+ "id": 8905,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26195,
+ "id": 8906,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -363253,7 +364141,7 @@
{
"title": "Properties",
"children": [
- 26195
+ 8906
]
}
],
@@ -363277,7 +364165,7 @@
}
},
{
- "id": 26196,
+ "id": 8907,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -363317,14 +364205,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26197,
+ "id": 8908,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26198,
+ "id": 8909,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -363356,7 +364244,7 @@
{
"title": "Properties",
"children": [
- 26198
+ 8909
]
}
],
@@ -363396,14 +364284,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26199,
+ "id": 8910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26200,
+ "id": 8911,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -363435,7 +364323,7 @@
{
"title": "Properties",
"children": [
- 26200
+ 8911
]
}
],
@@ -363459,7 +364347,7 @@
}
},
{
- "id": 26201,
+ "id": 8912,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -363509,57 +364397,57 @@
{
"title": "Properties",
"children": [
- 26202,
- 26262,
- 26263,
- 26264,
- 26265,
- 26230,
- 26231,
- 26232,
- 26207,
- 26233,
- 26234,
- 26235,
- 26266,
- 26236,
- 26267,
- 26268,
- 26206,
- 26261,
- 26203,
- 26204,
- 26205,
- 26237,
- 26238,
- 26239,
- 26211,
- 26212,
- 26213,
- 26269,
- 26208,
- 26209,
- 26210,
- 26214,
- 26215,
- 26216,
- 26270,
- 26217,
- 26218,
- 26260,
- 26240,
- 26241,
- 26242,
- 26243,
- 26244,
- 26271,
- 26245,
- 26246,
- 26247,
- 26190,
- 26191,
- 26196,
- 26201
+ 8913,
+ 8973,
+ 8974,
+ 8975,
+ 8976,
+ 8941,
+ 8942,
+ 8943,
+ 8918,
+ 8944,
+ 8945,
+ 8946,
+ 8977,
+ 8947,
+ 8978,
+ 8979,
+ 8917,
+ 8972,
+ 8914,
+ 8915,
+ 8916,
+ 8948,
+ 8949,
+ 8950,
+ 8922,
+ 8923,
+ 8924,
+ 8980,
+ 8919,
+ 8920,
+ 8921,
+ 8925,
+ 8926,
+ 8927,
+ 8981,
+ 8928,
+ 8929,
+ 8971,
+ 8951,
+ 8952,
+ 8953,
+ 8954,
+ 8955,
+ 8982,
+ 8956,
+ 8957,
+ 8958,
+ 8901,
+ 8902,
+ 8907,
+ 8912
]
}
],
@@ -363604,14 +364492,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26272,
+ "id": 8983,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26273,
+ "id": 8984,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -363625,7 +364513,7 @@
],
"signatures": [
{
- "id": 26274,
+ "id": 8985,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -363639,7 +364527,7 @@
],
"parameters": [
{
- "id": 26275,
+ "id": 8986,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -363650,14 +364538,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26276,
+ "id": 8987,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26277,
+ "id": 8988,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -363681,7 +364569,7 @@
{
"title": "Properties",
"children": [
- 26277
+ 8988
]
}
],
@@ -363763,7 +364651,7 @@
{
"title": "Methods",
"children": [
- 26273
+ 8984
]
}
],
@@ -363804,7 +364692,7 @@
}
},
{
- "id": 26278,
+ "id": 8989,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -363827,7 +364715,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26279,
+ "id": 8990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -363841,7 +364729,7 @@
],
"signatures": [
{
- "id": 26280,
+ "id": 8991,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -363869,7 +364757,7 @@
],
"typeParameters": [
{
- "id": 26281,
+ "id": 8992,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -363880,7 +364768,7 @@
}
},
{
- "id": 26282,
+ "id": 8993,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -363893,7 +364781,7 @@
],
"parameters": [
{
- "id": 26283,
+ "id": 8994,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -363926,7 +364814,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -363946,7 +364834,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -363979,7 +364867,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -363999,7 +364887,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -364019,7 +364907,7 @@
}
},
{
- "id": 26284,
+ "id": 8995,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -364042,7 +364930,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26285,
+ "id": 8996,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -364056,7 +364944,7 @@
],
"signatures": [
{
- "id": 26286,
+ "id": 8997,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -364078,7 +364966,7 @@
}
},
{
- "id": 26287,
+ "id": 8998,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -364101,7 +364989,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26288,
+ "id": 8999,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -364115,7 +365003,7 @@
],
"signatures": [
{
- "id": 26289,
+ "id": 9000,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -364129,7 +365017,7 @@
],
"parameters": [
{
- "id": 26290,
+ "id": 9001,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -364155,7 +365043,7 @@
}
},
{
- "id": 26291,
+ "id": 9002,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -364178,7 +365066,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26292,
+ "id": 9003,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -364189,7 +365077,7 @@
],
"documents": [
{
- "id": 42520,
+ "id": 25461,
"name": "orderClaimAddNewItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -364215,7 +365103,7 @@
"frontmatter": {}
},
{
- "id": 42521,
+ "id": 25462,
"name": "addOrderLineItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -364241,7 +365129,7 @@
"frontmatter": {}
},
{
- "id": 42522,
+ "id": 25463,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -364267,7 +365155,7 @@
"frontmatter": {}
},
{
- "id": 42523,
+ "id": 25464,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -364293,7 +365181,7 @@
"frontmatter": {}
},
{
- "id": 42524,
+ "id": 25465,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -364320,21 +365208,21 @@
}
],
"childrenIncludingDocuments": [
- 26183,
- 26278,
- 26284,
- 26287,
- 26291
+ 8894,
+ 8989,
+ 8995,
+ 8998,
+ 9002
],
"groups": [
{
"title": "Properties",
"children": [
- 26183,
- 26278,
- 26284,
- 26287,
- 26291
+ 8894,
+ 8989,
+ 8995,
+ 8998,
+ 9002
]
}
],
@@ -364343,12 +365231,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L111"
}
],
"signatures": [
{
- "id": 26176,
+ "id": 8887,
"name": "orderClaimAddNewItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -364404,12 +365292,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-add-new-item.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-add-new-item.ts#L111"
}
],
"typeParameters": [
{
- "id": 26177,
+ "id": 8888,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -364420,7 +365308,7 @@
}
},
{
- "id": 26178,
+ "id": 8889,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -364433,7 +365321,7 @@
],
"parameters": [
{
- "id": 26179,
+ "id": 8890,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -364457,14 +365345,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26180,
+ "id": 8891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26181,
+ "id": 8892,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -364487,7 +365375,7 @@
}
},
{
- "id": 26182,
+ "id": 8893,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -364514,8 +365402,8 @@
{
"title": "Properties",
"children": [
- 26181,
- 26182
+ 8892,
+ 8893
]
}
],
@@ -364608,14 +365496,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -364630,7 +365518,7 @@
]
},
{
- "id": 26295,
+ "id": 9006,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -364648,7 +365536,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L31"
}
],
"type": {
@@ -364662,7 +365550,7 @@
}
},
{
- "id": 26296,
+ "id": 9007,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -364680,7 +365568,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L35"
}
],
"type": {
@@ -364694,7 +365582,7 @@
}
},
{
- "id": 26297,
+ "id": 9008,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -364712,7 +365600,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L39"
}
],
"type": {
@@ -364726,7 +365614,7 @@
}
},
{
- "id": 26298,
+ "id": 9009,
"name": "orderClaimItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -364761,7 +365649,7 @@
},
"children": [
{
- "id": 26315,
+ "id": 9026,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -364779,7 +365667,7 @@
}
},
{
- "id": 26316,
+ "id": 9027,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -364801,8 +365689,8 @@
{
"title": "Properties",
"children": [
- 26315,
- 26316
+ 9026,
+ 9027
]
}
],
@@ -364811,12 +365699,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L69"
}
],
"signatures": [
{
- "id": 26299,
+ "id": 9010,
"name": "orderClaimItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -364854,12 +365742,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L69"
}
],
"parameters": [
{
- "id": 26300,
+ "id": 9011,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -364870,14 +365758,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26301,
+ "id": 9012,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26302,
+ "id": 9013,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -364887,7 +365775,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
}
],
"type": {
@@ -364901,7 +365789,7 @@
}
},
{
- "id": 26303,
+ "id": 9014,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -364911,7 +365799,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 77,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
}
],
"type": {
@@ -364925,7 +365813,7 @@
}
},
{
- "id": 26304,
+ "id": 9015,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -364935,7 +365823,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 78,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
}
],
"type": {
@@ -364953,9 +365841,9 @@
{
"title": "Properties",
"children": [
- 26302,
- 26303,
- 26304
+ 9013,
+ 9014,
+ 9015
]
}
],
@@ -364964,7 +365852,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 75,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L75"
}
]
}
@@ -364979,14 +365867,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26305,
+ "id": 9016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26306,
+ "id": 9017,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -364996,7 +365884,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
}
],
"type": {
@@ -365010,7 +365898,7 @@
}
},
{
- "id": 26307,
+ "id": 9018,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -365020,7 +365908,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 77,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
}
],
"type": {
@@ -365034,7 +365922,7 @@
}
},
{
- "id": 26308,
+ "id": 9019,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -365044,7 +365932,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 78,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
}
],
"type": {
@@ -365062,9 +365950,9 @@
{
"title": "Properties",
"children": [
- 26306,
- 26307,
- 26308
+ 9017,
+ 9018,
+ 9019
]
}
],
@@ -365073,7 +365961,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 75,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L75"
}
]
}
@@ -365107,14 +365995,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26309,
+ "id": 9020,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26310,
+ "id": 9021,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -365128,7 +366016,7 @@
],
"signatures": [
{
- "id": 26311,
+ "id": 9022,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -365142,7 +366030,7 @@
],
"parameters": [
{
- "id": 26312,
+ "id": 9023,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -365153,14 +366041,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26313,
+ "id": 9024,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26314,
+ "id": 9025,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -365184,7 +366072,7 @@
{
"title": "Properties",
"children": [
- 26314
+ 9025
]
}
],
@@ -365261,7 +366149,7 @@
{
"title": "Methods",
"children": [
- 26310
+ 9021
]
}
],
@@ -365295,7 +366183,7 @@
]
},
{
- "id": 26302,
+ "id": 9013,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -365305,7 +366193,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
}
],
"type": {
@@ -365319,7 +366207,7 @@
}
},
{
- "id": 26303,
+ "id": 9014,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -365329,7 +366217,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 77,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
}
],
"type": {
@@ -365343,7 +366231,7 @@
}
},
{
- "id": 26304,
+ "id": 9015,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -365353,7 +366241,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 78,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
}
],
"type": {
@@ -365367,7 +366255,7 @@
}
},
{
- "id": 26306,
+ "id": 9017,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -365377,7 +366265,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L76"
}
],
"type": {
@@ -365391,7 +366279,7 @@
}
},
{
- "id": 26307,
+ "id": 9018,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -365401,7 +366289,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 77,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L77"
}
],
"type": {
@@ -365415,7 +366303,7 @@
}
},
{
- "id": 26308,
+ "id": 9019,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -365425,7 +366313,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 78,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L78"
}
],
"type": {
@@ -365439,7 +366327,7 @@
}
},
{
- "id": 26317,
+ "id": 9028,
"name": "orderClaimItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -365451,7 +366339,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L86"
}
],
"type": {
@@ -365461,7 +366349,7 @@
"defaultValue": "\"claim-item\""
},
{
- "id": 26318,
+ "id": 9029,
"name": "orderClaimItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -365514,7 +366402,7 @@
},
"children": [
{
- "id": 26326,
+ "id": 9037,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -365537,7 +366425,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26327,
+ "id": 9038,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -365551,7 +366439,7 @@
],
"signatures": [
{
- "id": 26328,
+ "id": 9039,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -365579,7 +366467,7 @@
],
"parameters": [
{
- "id": 26329,
+ "id": 9040,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -365595,14 +366483,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26330,
+ "id": 9041,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26331,
+ "id": 9042,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -365662,7 +366550,7 @@
{
"title": "Properties",
"children": [
- 26331
+ 9042
]
}
],
@@ -365683,14 +366571,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26332,
+ "id": 9043,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26345,
+ "id": 9056,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -365736,7 +366624,7 @@
}
},
{
- "id": 26405,
+ "id": 9116,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -365782,7 +366670,7 @@
}
},
{
- "id": 26406,
+ "id": 9117,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -365828,7 +366716,7 @@
}
},
{
- "id": 26407,
+ "id": 9118,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -365885,7 +366773,7 @@
}
},
{
- "id": 26408,
+ "id": 9119,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -365941,7 +366829,7 @@
}
},
{
- "id": 26373,
+ "id": 9084,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -365998,7 +366886,7 @@
}
},
{
- "id": 26374,
+ "id": 9085,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -366055,7 +366943,7 @@
}
},
{
- "id": 26375,
+ "id": 9086,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -366112,7 +367000,7 @@
}
},
{
- "id": 26350,
+ "id": 9061,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -366169,7 +367057,7 @@
}
},
{
- "id": 26376,
+ "id": 9087,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -366215,7 +367103,7 @@
}
},
{
- "id": 26377,
+ "id": 9088,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -366285,7 +367173,7 @@
}
},
{
- "id": 26378,
+ "id": 9089,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -366355,7 +367243,7 @@
}
},
{
- "id": 26409,
+ "id": 9120,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -366431,7 +367319,7 @@
}
},
{
- "id": 26379,
+ "id": 9090,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -366507,7 +367395,7 @@
}
},
{
- "id": 26410,
+ "id": 9121,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -366577,7 +367465,7 @@
}
},
{
- "id": 26411,
+ "id": 9122,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -366634,7 +367522,7 @@
}
},
{
- "id": 26349,
+ "id": 9060,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -366729,7 +367617,7 @@
}
},
{
- "id": 26404,
+ "id": 9115,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -366804,7 +367692,7 @@
}
},
{
- "id": 26346,
+ "id": 9057,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -366873,7 +367761,7 @@
}
},
{
- "id": 26347,
+ "id": 9058,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -366942,7 +367830,7 @@
}
},
{
- "id": 26348,
+ "id": 9059,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -367017,7 +367905,7 @@
}
},
{
- "id": 26380,
+ "id": 9091,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -367073,7 +367961,7 @@
}
},
{
- "id": 26381,
+ "id": 9092,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -367129,7 +368017,7 @@
}
},
{
- "id": 26382,
+ "id": 9093,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -367185,7 +368073,7 @@
}
},
{
- "id": 26354,
+ "id": 9065,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -367241,7 +368129,7 @@
}
},
{
- "id": 26355,
+ "id": 9066,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -367297,7 +368185,7 @@
}
},
{
- "id": 26356,
+ "id": 9067,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -367353,7 +368241,7 @@
}
},
{
- "id": 26412,
+ "id": 9123,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -367409,7 +368297,7 @@
}
},
{
- "id": 26351,
+ "id": 9062,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -367465,7 +368353,7 @@
}
},
{
- "id": 26352,
+ "id": 9063,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -367521,7 +368409,7 @@
}
},
{
- "id": 26353,
+ "id": 9064,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -367577,7 +368465,7 @@
}
},
{
- "id": 26357,
+ "id": 9068,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -367633,7 +368521,7 @@
}
},
{
- "id": 26358,
+ "id": 9069,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -367689,7 +368577,7 @@
}
},
{
- "id": 26359,
+ "id": 9070,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -367745,7 +368633,7 @@
}
},
{
- "id": 26413,
+ "id": 9124,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -367801,7 +368689,7 @@
}
},
{
- "id": 26360,
+ "id": 9071,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -367857,7 +368745,7 @@
}
},
{
- "id": 26361,
+ "id": 9072,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -367913,7 +368801,7 @@
}
},
{
- "id": 26403,
+ "id": 9114,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -367969,7 +368857,7 @@
}
},
{
- "id": 26383,
+ "id": 9094,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -368025,7 +368913,7 @@
}
},
{
- "id": 26384,
+ "id": 9095,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -368081,7 +368969,7 @@
}
},
{
- "id": 26385,
+ "id": 9096,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -368137,7 +369025,7 @@
}
},
{
- "id": 26386,
+ "id": 9097,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -368193,7 +369081,7 @@
}
},
{
- "id": 26387,
+ "id": 9098,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -368249,7 +369137,7 @@
}
},
{
- "id": 26414,
+ "id": 9125,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -368305,7 +369193,7 @@
}
},
{
- "id": 26388,
+ "id": 9099,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -368361,7 +369249,7 @@
}
},
{
- "id": 26389,
+ "id": 9100,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -368417,7 +369305,7 @@
}
},
{
- "id": 26390,
+ "id": 9101,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -368473,7 +369361,7 @@
}
},
{
- "id": 26333,
+ "id": 9044,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -368529,7 +369417,7 @@
}
},
{
- "id": 26334,
+ "id": 9045,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -368569,14 +369457,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26335,
+ "id": 9046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26336,
+ "id": 9047,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -368608,7 +369496,7 @@
{
"title": "Properties",
"children": [
- 26336
+ 9047
]
}
],
@@ -368648,14 +369536,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26337,
+ "id": 9048,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26338,
+ "id": 9049,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -368687,7 +369575,7 @@
{
"title": "Properties",
"children": [
- 26338
+ 9049
]
}
],
@@ -368711,7 +369599,7 @@
}
},
{
- "id": 26339,
+ "id": 9050,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -368751,14 +369639,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26340,
+ "id": 9051,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26341,
+ "id": 9052,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -368790,7 +369678,7 @@
{
"title": "Properties",
"children": [
- 26341
+ 9052
]
}
],
@@ -368830,14 +369718,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26342,
+ "id": 9053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26343,
+ "id": 9054,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -368869,7 +369757,7 @@
{
"title": "Properties",
"children": [
- 26343
+ 9054
]
}
],
@@ -368893,7 +369781,7 @@
}
},
{
- "id": 26344,
+ "id": 9055,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -368943,57 +369831,57 @@
{
"title": "Properties",
"children": [
- 26345,
- 26405,
- 26406,
- 26407,
- 26408,
- 26373,
- 26374,
- 26375,
- 26350,
- 26376,
- 26377,
- 26378,
- 26409,
- 26379,
- 26410,
- 26411,
- 26349,
- 26404,
- 26346,
- 26347,
- 26348,
- 26380,
- 26381,
- 26382,
- 26354,
- 26355,
- 26356,
- 26412,
- 26351,
- 26352,
- 26353,
- 26357,
- 26358,
- 26359,
- 26413,
- 26360,
- 26361,
- 26403,
- 26383,
- 26384,
- 26385,
- 26386,
- 26387,
- 26414,
- 26388,
- 26389,
- 26390,
- 26333,
- 26334,
- 26339,
- 26344
+ 9056,
+ 9116,
+ 9117,
+ 9118,
+ 9119,
+ 9084,
+ 9085,
+ 9086,
+ 9061,
+ 9087,
+ 9088,
+ 9089,
+ 9120,
+ 9090,
+ 9121,
+ 9122,
+ 9060,
+ 9115,
+ 9057,
+ 9058,
+ 9059,
+ 9091,
+ 9092,
+ 9093,
+ 9065,
+ 9066,
+ 9067,
+ 9123,
+ 9062,
+ 9063,
+ 9064,
+ 9068,
+ 9069,
+ 9070,
+ 9124,
+ 9071,
+ 9072,
+ 9114,
+ 9094,
+ 9095,
+ 9096,
+ 9097,
+ 9098,
+ 9125,
+ 9099,
+ 9100,
+ 9101,
+ 9044,
+ 9045,
+ 9050,
+ 9055
]
}
],
@@ -369038,14 +369926,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26415,
+ "id": 9126,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26416,
+ "id": 9127,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -369059,7 +369947,7 @@
],
"signatures": [
{
- "id": 26417,
+ "id": 9128,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -369073,7 +369961,7 @@
],
"parameters": [
{
- "id": 26418,
+ "id": 9129,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -369084,14 +369972,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26419,
+ "id": 9130,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26420,
+ "id": 9131,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -369115,7 +370003,7 @@
{
"title": "Properties",
"children": [
- 26420
+ 9131
]
}
],
@@ -369197,7 +370085,7 @@
{
"title": "Methods",
"children": [
- 26416
+ 9127
]
}
],
@@ -369238,7 +370126,7 @@
}
},
{
- "id": 26421,
+ "id": 9132,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -369261,7 +370149,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26422,
+ "id": 9133,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -369275,7 +370163,7 @@
],
"signatures": [
{
- "id": 26423,
+ "id": 9134,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -369303,7 +370191,7 @@
],
"typeParameters": [
{
- "id": 26424,
+ "id": 9135,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -369314,7 +370202,7 @@
}
},
{
- "id": 26425,
+ "id": 9136,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -369327,7 +370215,7 @@
],
"parameters": [
{
- "id": 26426,
+ "id": 9137,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -369360,7 +370248,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -369380,7 +370268,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -369413,7 +370301,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -369433,7 +370321,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -369453,7 +370341,7 @@
}
},
{
- "id": 26427,
+ "id": 9138,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -369476,7 +370364,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26428,
+ "id": 9139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -369490,7 +370378,7 @@
],
"signatures": [
{
- "id": 26429,
+ "id": 9140,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -369512,7 +370400,7 @@
}
},
{
- "id": 26430,
+ "id": 9141,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -369535,7 +370423,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26431,
+ "id": 9142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -369549,7 +370437,7 @@
],
"signatures": [
{
- "id": 26432,
+ "id": 9143,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -369563,7 +370451,7 @@
],
"parameters": [
{
- "id": 26433,
+ "id": 9144,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -369589,7 +370477,7 @@
}
},
{
- "id": 26434,
+ "id": 9145,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -369612,7 +370500,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26435,
+ "id": 9146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -369623,7 +370511,7 @@
],
"documents": [
{
- "id": 42525,
+ "id": 25466,
"name": "orderClaimItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -369649,7 +370537,7 @@
"frontmatter": {}
},
{
- "id": 42526,
+ "id": 25467,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -369675,7 +370563,7 @@
"frontmatter": {}
},
{
- "id": 42527,
+ "id": 25468,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -369702,21 +370590,21 @@
}
],
"childrenIncludingDocuments": [
- 26326,
- 26421,
- 26427,
- 26430,
- 26434
+ 9037,
+ 9132,
+ 9138,
+ 9141,
+ 9145
],
"groups": [
{
"title": "Properties",
"children": [
- 26326,
- 26421,
- 26427,
- 26430,
- 26434
+ 9037,
+ 9132,
+ 9138,
+ 9141,
+ 9145
]
}
],
@@ -369725,12 +370613,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L112"
}
],
"signatures": [
{
- "id": 26319,
+ "id": 9030,
"name": "orderClaimItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -369786,12 +370674,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-item.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-item.ts#L112"
}
],
"typeParameters": [
{
- "id": 26320,
+ "id": 9031,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -369802,7 +370690,7 @@
}
},
{
- "id": 26321,
+ "id": 9032,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -369815,7 +370703,7 @@
],
"parameters": [
{
- "id": 26322,
+ "id": 9033,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -369839,14 +370727,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26323,
+ "id": 9034,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26324,
+ "id": 9035,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -369869,7 +370757,7 @@
}
},
{
- "id": 26325,
+ "id": 9036,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -369896,8 +370784,8 @@
{
"title": "Properties",
"children": [
- 26324,
- 26325
+ 9035,
+ 9036
]
}
],
@@ -369990,14 +370878,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -370012,7 +370900,7 @@
]
},
{
- "id": 26438,
+ "id": 9149,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -370030,7 +370918,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L44"
}
],
"type": {
@@ -370044,7 +370932,7 @@
}
},
{
- "id": 26439,
+ "id": 9150,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -370062,7 +370950,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L48"
}
],
"type": {
@@ -370076,7 +370964,7 @@
}
},
{
- "id": 26440,
+ "id": 9151,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -370094,7 +370982,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L52"
}
],
"type": {
@@ -370108,7 +370996,7 @@
}
},
{
- "id": 26441,
+ "id": 9152,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -370126,7 +371014,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L56"
}
],
"type": {
@@ -370140,7 +371028,7 @@
}
},
{
- "id": 26442,
+ "id": 9153,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -370158,7 +371046,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L60"
}
],
"type": {
@@ -370180,7 +371068,7 @@
}
},
{
- "id": 26443,
+ "id": 9154,
"name": "orderClaimRequestItemReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -370215,7 +371103,7 @@
},
"children": [
{
- "id": 26452,
+ "id": 9163,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -370233,7 +371121,7 @@
}
},
{
- "id": 26453,
+ "id": 9164,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -370255,8 +371143,8 @@
{
"title": "Properties",
"children": [
- 26452,
- 26453
+ 9163,
+ 9164
]
}
],
@@ -370265,12 +371153,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L100"
}
],
"signatures": [
{
- "id": 26444,
+ "id": 9155,
"name": "orderClaimRequestItemReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -370308,12 +371196,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L100"
}
],
"parameters": [
{
- "id": 26445,
+ "id": 9156,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -370323,7 +371211,7 @@
"types": [
{
"type": "reference",
- "target": 26436,
+ "target": 9147,
"name": "OrderClaimRequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -370336,7 +371224,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26436,
+ "target": 9147,
"name": "OrderClaimRequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -370369,14 +371257,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26446,
+ "id": 9157,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26447,
+ "id": 9158,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -370390,7 +371278,7 @@
],
"signatures": [
{
- "id": 26448,
+ "id": 9159,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -370404,7 +371292,7 @@
],
"parameters": [
{
- "id": 26449,
+ "id": 9160,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -370415,14 +371303,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26450,
+ "id": 9161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26451,
+ "id": 9162,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -370446,7 +371334,7 @@
{
"title": "Properties",
"children": [
- 26451
+ 9162
]
}
],
@@ -370523,7 +371411,7 @@
{
"title": "Methods",
"children": [
- 26447
+ 9158
]
}
],
@@ -370557,7 +371445,7 @@
]
},
{
- "id": 26454,
+ "id": 9165,
"name": "orderClaimRequestItemReturnWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -370569,7 +371457,7 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 122,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L122"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L122"
}
],
"type": {
@@ -370579,7 +371467,7 @@
"defaultValue": "\"claim-request-item-return\""
},
{
- "id": 26455,
+ "id": 9166,
"name": "orderClaimRequestItemReturnWorkflow",
"variant": "declaration",
"kind": 64,
@@ -370632,7 +371520,7 @@
},
"children": [
{
- "id": 26463,
+ "id": 9174,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -370655,7 +371543,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26464,
+ "id": 9175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -370669,7 +371557,7 @@
],
"signatures": [
{
- "id": 26465,
+ "id": 9176,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -370697,7 +371585,7 @@
],
"parameters": [
{
- "id": 26466,
+ "id": 9177,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -370713,14 +371601,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26467,
+ "id": 9178,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26468,
+ "id": 9179,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -370780,7 +371668,7 @@
{
"title": "Properties",
"children": [
- 26468
+ 9179
]
}
],
@@ -370801,14 +371689,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26469,
+ "id": 9180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26482,
+ "id": 9193,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -370854,7 +371742,7 @@
}
},
{
- "id": 26542,
+ "id": 9253,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -370900,7 +371788,7 @@
}
},
{
- "id": 26543,
+ "id": 9254,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -370946,7 +371834,7 @@
}
},
{
- "id": 26544,
+ "id": 9255,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -371003,7 +371891,7 @@
}
},
{
- "id": 26545,
+ "id": 9256,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -371059,7 +371947,7 @@
}
},
{
- "id": 26510,
+ "id": 9221,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -371116,7 +372004,7 @@
}
},
{
- "id": 26511,
+ "id": 9222,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -371173,7 +372061,7 @@
}
},
{
- "id": 26512,
+ "id": 9223,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -371230,7 +372118,7 @@
}
},
{
- "id": 26487,
+ "id": 9198,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -371287,7 +372175,7 @@
}
},
{
- "id": 26513,
+ "id": 9224,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -371333,7 +372221,7 @@
}
},
{
- "id": 26514,
+ "id": 9225,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -371403,7 +372291,7 @@
}
},
{
- "id": 26515,
+ "id": 9226,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -371473,7 +372361,7 @@
}
},
{
- "id": 26546,
+ "id": 9257,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -371549,7 +372437,7 @@
}
},
{
- "id": 26516,
+ "id": 9227,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -371625,7 +372513,7 @@
}
},
{
- "id": 26547,
+ "id": 9258,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -371695,7 +372583,7 @@
}
},
{
- "id": 26548,
+ "id": 9259,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -371752,7 +372640,7 @@
}
},
{
- "id": 26486,
+ "id": 9197,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -371847,7 +372735,7 @@
}
},
{
- "id": 26541,
+ "id": 9252,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -371922,7 +372810,7 @@
}
},
{
- "id": 26483,
+ "id": 9194,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -371991,7 +372879,7 @@
}
},
{
- "id": 26484,
+ "id": 9195,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -372060,7 +372948,7 @@
}
},
{
- "id": 26485,
+ "id": 9196,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -372135,7 +373023,7 @@
}
},
{
- "id": 26517,
+ "id": 9228,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -372191,7 +373079,7 @@
}
},
{
- "id": 26518,
+ "id": 9229,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -372247,7 +373135,7 @@
}
},
{
- "id": 26519,
+ "id": 9230,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -372303,7 +373191,7 @@
}
},
{
- "id": 26491,
+ "id": 9202,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -372359,7 +373247,7 @@
}
},
{
- "id": 26492,
+ "id": 9203,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -372415,7 +373303,7 @@
}
},
{
- "id": 26493,
+ "id": 9204,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -372471,7 +373359,7 @@
}
},
{
- "id": 26549,
+ "id": 9260,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -372527,7 +373415,7 @@
}
},
{
- "id": 26488,
+ "id": 9199,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -372583,7 +373471,7 @@
}
},
{
- "id": 26489,
+ "id": 9200,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -372639,7 +373527,7 @@
}
},
{
- "id": 26490,
+ "id": 9201,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -372695,7 +373583,7 @@
}
},
{
- "id": 26494,
+ "id": 9205,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -372751,7 +373639,7 @@
}
},
{
- "id": 26495,
+ "id": 9206,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -372807,7 +373695,7 @@
}
},
{
- "id": 26496,
+ "id": 9207,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -372863,7 +373751,7 @@
}
},
{
- "id": 26550,
+ "id": 9261,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -372919,7 +373807,7 @@
}
},
{
- "id": 26497,
+ "id": 9208,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -372975,7 +373863,7 @@
}
},
{
- "id": 26498,
+ "id": 9209,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -373031,7 +373919,7 @@
}
},
{
- "id": 26540,
+ "id": 9251,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -373087,7 +373975,7 @@
}
},
{
- "id": 26520,
+ "id": 9231,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -373143,7 +374031,7 @@
}
},
{
- "id": 26521,
+ "id": 9232,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -373199,7 +374087,7 @@
}
},
{
- "id": 26522,
+ "id": 9233,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -373255,7 +374143,7 @@
}
},
{
- "id": 26523,
+ "id": 9234,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -373311,7 +374199,7 @@
}
},
{
- "id": 26524,
+ "id": 9235,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -373367,7 +374255,7 @@
}
},
{
- "id": 26551,
+ "id": 9262,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -373423,7 +374311,7 @@
}
},
{
- "id": 26525,
+ "id": 9236,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -373479,7 +374367,7 @@
}
},
{
- "id": 26526,
+ "id": 9237,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -373535,7 +374423,7 @@
}
},
{
- "id": 26527,
+ "id": 9238,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -373591,7 +374479,7 @@
}
},
{
- "id": 26470,
+ "id": 9181,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -373647,7 +374535,7 @@
}
},
{
- "id": 26471,
+ "id": 9182,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -373687,14 +374575,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26472,
+ "id": 9183,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26473,
+ "id": 9184,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -373726,7 +374614,7 @@
{
"title": "Properties",
"children": [
- 26473
+ 9184
]
}
],
@@ -373766,14 +374654,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26474,
+ "id": 9185,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26475,
+ "id": 9186,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -373805,7 +374693,7 @@
{
"title": "Properties",
"children": [
- 26475
+ 9186
]
}
],
@@ -373829,7 +374717,7 @@
}
},
{
- "id": 26476,
+ "id": 9187,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -373869,14 +374757,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26477,
+ "id": 9188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26478,
+ "id": 9189,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -373908,7 +374796,7 @@
{
"title": "Properties",
"children": [
- 26478
+ 9189
]
}
],
@@ -373948,14 +374836,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26479,
+ "id": 9190,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26480,
+ "id": 9191,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -373987,7 +374875,7 @@
{
"title": "Properties",
"children": [
- 26480
+ 9191
]
}
],
@@ -374011,7 +374899,7 @@
}
},
{
- "id": 26481,
+ "id": 9192,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -374061,57 +374949,57 @@
{
"title": "Properties",
"children": [
- 26482,
- 26542,
- 26543,
- 26544,
- 26545,
- 26510,
- 26511,
- 26512,
- 26487,
- 26513,
- 26514,
- 26515,
- 26546,
- 26516,
- 26547,
- 26548,
- 26486,
- 26541,
- 26483,
- 26484,
- 26485,
- 26517,
- 26518,
- 26519,
- 26491,
- 26492,
- 26493,
- 26549,
- 26488,
- 26489,
- 26490,
- 26494,
- 26495,
- 26496,
- 26550,
- 26497,
- 26498,
- 26540,
- 26520,
- 26521,
- 26522,
- 26523,
- 26524,
- 26551,
- 26525,
- 26526,
- 26527,
- 26470,
- 26471,
- 26476,
- 26481
+ 9193,
+ 9253,
+ 9254,
+ 9255,
+ 9256,
+ 9221,
+ 9222,
+ 9223,
+ 9198,
+ 9224,
+ 9225,
+ 9226,
+ 9257,
+ 9227,
+ 9258,
+ 9259,
+ 9197,
+ 9252,
+ 9194,
+ 9195,
+ 9196,
+ 9228,
+ 9229,
+ 9230,
+ 9202,
+ 9203,
+ 9204,
+ 9260,
+ 9199,
+ 9200,
+ 9201,
+ 9205,
+ 9206,
+ 9207,
+ 9261,
+ 9208,
+ 9209,
+ 9251,
+ 9231,
+ 9232,
+ 9233,
+ 9234,
+ 9235,
+ 9262,
+ 9236,
+ 9237,
+ 9238,
+ 9181,
+ 9182,
+ 9187,
+ 9192
]
}
],
@@ -374156,14 +375044,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26552,
+ "id": 9263,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26553,
+ "id": 9264,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -374177,7 +375065,7 @@
],
"signatures": [
{
- "id": 26554,
+ "id": 9265,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -374191,7 +375079,7 @@
],
"parameters": [
{
- "id": 26555,
+ "id": 9266,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -374202,14 +375090,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26556,
+ "id": 9267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26557,
+ "id": 9268,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -374233,7 +375121,7 @@
{
"title": "Properties",
"children": [
- 26557
+ 9268
]
}
],
@@ -374315,7 +375203,7 @@
{
"title": "Methods",
"children": [
- 26553
+ 9264
]
}
],
@@ -374356,7 +375244,7 @@
}
},
{
- "id": 26558,
+ "id": 9269,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -374379,7 +375267,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26559,
+ "id": 9270,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -374393,7 +375281,7 @@
],
"signatures": [
{
- "id": 26560,
+ "id": 9271,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -374421,7 +375309,7 @@
],
"typeParameters": [
{
- "id": 26561,
+ "id": 9272,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -374432,7 +375320,7 @@
}
},
{
- "id": 26562,
+ "id": 9273,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -374445,7 +375333,7 @@
],
"parameters": [
{
- "id": 26563,
+ "id": 9274,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -374478,7 +375366,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -374498,7 +375386,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -374531,7 +375419,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -374551,7 +375439,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -374571,7 +375459,7 @@
}
},
{
- "id": 26564,
+ "id": 9275,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -374594,7 +375482,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26565,
+ "id": 9276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -374608,7 +375496,7 @@
],
"signatures": [
{
- "id": 26566,
+ "id": 9277,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -374630,7 +375518,7 @@
}
},
{
- "id": 26567,
+ "id": 9278,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -374653,7 +375541,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26568,
+ "id": 9279,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -374667,7 +375555,7 @@
],
"signatures": [
{
- "id": 26569,
+ "id": 9280,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -374681,7 +375569,7 @@
],
"parameters": [
{
- "id": 26570,
+ "id": 9281,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -374707,7 +375595,7 @@
}
},
{
- "id": 26571,
+ "id": 9282,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -374730,7 +375618,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26572,
+ "id": 9283,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -374741,7 +375629,7 @@
],
"documents": [
{
- "id": 42529,
+ "id": 25470,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -374776,7 +375664,7 @@
"frontmatter": {},
"children": [
{
- "id": 42530,
+ "id": 25471,
"name": "createReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -374804,7 +375692,7 @@
]
},
{
- "id": 42531,
+ "id": 25472,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -374839,7 +375727,7 @@
"frontmatter": {},
"children": [
{
- "id": 42532,
+ "id": 25473,
"name": "updateOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -374867,7 +375755,7 @@
]
},
{
- "id": 42533,
+ "id": 25474,
"name": "orderClaimRequestItemReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -374893,7 +375781,7 @@
"frontmatter": {}
},
{
- "id": 42535,
+ "id": 25476,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -374919,7 +375807,7 @@
"frontmatter": {}
},
{
- "id": 42536,
+ "id": 25477,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -374946,21 +375834,21 @@
}
],
"childrenIncludingDocuments": [
- 26463,
- 26558,
- 26564,
- 26567,
- 26571
+ 9174,
+ 9269,
+ 9275,
+ 9278,
+ 9282
],
"groups": [
{
"title": "Properties",
"children": [
- 26463,
- 26558,
- 26564,
- 26567,
- 26571
+ 9174,
+ 9269,
+ 9275,
+ 9278,
+ 9282
]
}
],
@@ -374969,12 +375857,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 150,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L150"
}
],
"signatures": [
{
- "id": 26456,
+ "id": 9167,
"name": "orderClaimRequestItemReturnWorkflow",
"variant": "signature",
"kind": 4096,
@@ -375030,12 +375918,12 @@
"fileName": "core-flows/src/order/workflows/claim/claim-request-item-return.ts",
"line": 150,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/claim-request-item-return.ts#L150"
}
],
"typeParameters": [
{
- "id": 26457,
+ "id": 9168,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -375046,7 +375934,7 @@
}
},
{
- "id": 26458,
+ "id": 9169,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -375059,7 +375947,7 @@
],
"parameters": [
{
- "id": 26459,
+ "id": 9170,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -375083,14 +375971,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26460,
+ "id": 9171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26461,
+ "id": 9172,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -375113,7 +376001,7 @@
}
},
{
- "id": 26462,
+ "id": 9173,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -375140,8 +376028,8 @@
{
"title": "Properties",
"children": [
- 26461,
- 26462
+ 9172,
+ 9173
]
}
],
@@ -375234,14 +376122,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -375256,7 +376144,7 @@
]
},
{
- "id": 26575,
+ "id": 9286,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -375274,7 +376162,7 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L64"
}
],
"type": {
@@ -375288,7 +376176,7 @@
}
},
{
- "id": 26576,
+ "id": 9287,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -375306,7 +376194,7 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L68"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L68"
}
],
"type": {
@@ -375320,7 +376208,7 @@
}
},
{
- "id": 26577,
+ "id": 9288,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -375338,7 +376226,7 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L72"
}
],
"type": {
@@ -375352,7 +376240,7 @@
}
},
{
- "id": 26578,
+ "id": 9289,
"name": "confirmClaimRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -375387,7 +376275,7 @@
},
"children": [
{
- "id": 26587,
+ "id": 9298,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -375405,7 +376293,7 @@
}
},
{
- "id": 26588,
+ "id": 9299,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -375427,8 +376315,8 @@
{
"title": "Properties",
"children": [
- 26587,
- 26588
+ 9298,
+ 9299
]
}
],
@@ -375437,12 +376325,12 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 102,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L102"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L102"
}
],
"signatures": [
{
- "id": 26579,
+ "id": 9290,
"name": "confirmClaimRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -375480,12 +376368,12 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 102,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L102"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L102"
}
],
"parameters": [
{
- "id": 26580,
+ "id": 9291,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -375495,7 +376383,7 @@
"types": [
{
"type": "reference",
- "target": 26573,
+ "target": 9284,
"name": "ConfirmClaimRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -375508,7 +376396,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26573,
+ "target": 9284,
"name": "ConfirmClaimRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -375541,14 +376429,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26581,
+ "id": 9292,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26582,
+ "id": 9293,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -375562,7 +376450,7 @@
],
"signatures": [
{
- "id": 26583,
+ "id": 9294,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -375576,7 +376464,7 @@
],
"parameters": [
{
- "id": 26584,
+ "id": 9295,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -375587,14 +376475,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26585,
+ "id": 9296,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26586,
+ "id": 9297,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -375618,7 +376506,7 @@
{
"title": "Properties",
"children": [
- 26586
+ 9297
]
}
],
@@ -375695,7 +376583,7 @@
{
"title": "Methods",
"children": [
- 26582
+ 9293
]
}
],
@@ -375729,7 +376617,7 @@
]
},
{
- "id": 26591,
+ "id": 9302,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -375747,7 +376635,7 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L264"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L264"
}
],
"type": {
@@ -375756,7 +376644,7 @@
}
},
{
- "id": 26592,
+ "id": 9303,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -375776,7 +376664,7 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 268,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L268"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L268"
}
],
"type": {
@@ -375785,7 +376673,7 @@
}
},
{
- "id": 26593,
+ "id": 9304,
"name": "confirmClaimRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -375797,7 +376685,7 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 271,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L271"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L271"
}
],
"type": {
@@ -375807,7 +376695,7 @@
"defaultValue": "\"confirm-claim-request\""
},
{
- "id": 26594,
+ "id": 9305,
"name": "confirmClaimRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -375869,7 +376757,7 @@
},
"children": [
{
- "id": 26602,
+ "id": 9313,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -375892,7 +376780,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26603,
+ "id": 9314,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -375906,7 +376794,7 @@
],
"signatures": [
{
- "id": 26604,
+ "id": 9315,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -375934,7 +376822,7 @@
],
"parameters": [
{
- "id": 26605,
+ "id": 9316,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -375950,14 +376838,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26606,
+ "id": 9317,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26607,
+ "id": 9318,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -375982,7 +376870,7 @@
"types": [
{
"type": "reference",
- "target": 26589,
+ "target": 9300,
"name": "ConfirmClaimRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -375995,7 +376883,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26589,
+ "target": 9300,
"name": "ConfirmClaimRequestWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -376011,7 +376899,7 @@
{
"title": "Properties",
"children": [
- 26607
+ 9318
]
}
],
@@ -376032,14 +376920,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26608,
+ "id": 9319,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26621,
+ "id": 9332,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -376085,7 +376973,7 @@
}
},
{
- "id": 26681,
+ "id": 9392,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -376131,7 +377019,7 @@
}
},
{
- "id": 26682,
+ "id": 9393,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -376177,7 +377065,7 @@
}
},
{
- "id": 26683,
+ "id": 9394,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -376234,7 +377122,7 @@
}
},
{
- "id": 26684,
+ "id": 9395,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -376290,7 +377178,7 @@
}
},
{
- "id": 26649,
+ "id": 9360,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -376347,7 +377235,7 @@
}
},
{
- "id": 26650,
+ "id": 9361,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -376404,7 +377292,7 @@
}
},
{
- "id": 26651,
+ "id": 9362,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -376461,7 +377349,7 @@
}
},
{
- "id": 26626,
+ "id": 9337,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -376518,7 +377406,7 @@
}
},
{
- "id": 26652,
+ "id": 9363,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -376564,7 +377452,7 @@
}
},
{
- "id": 26653,
+ "id": 9364,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -376634,7 +377522,7 @@
}
},
{
- "id": 26654,
+ "id": 9365,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -376704,7 +377592,7 @@
}
},
{
- "id": 26685,
+ "id": 9396,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -376780,7 +377668,7 @@
}
},
{
- "id": 26655,
+ "id": 9366,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -376856,7 +377744,7 @@
}
},
{
- "id": 26686,
+ "id": 9397,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -376926,7 +377814,7 @@
}
},
{
- "id": 26687,
+ "id": 9398,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -376983,7 +377871,7 @@
}
},
{
- "id": 26625,
+ "id": 9336,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -377078,7 +377966,7 @@
}
},
{
- "id": 26680,
+ "id": 9391,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -377153,7 +378041,7 @@
}
},
{
- "id": 26622,
+ "id": 9333,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -377222,7 +378110,7 @@
}
},
{
- "id": 26623,
+ "id": 9334,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -377291,7 +378179,7 @@
}
},
{
- "id": 26624,
+ "id": 9335,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -377366,7 +378254,7 @@
}
},
{
- "id": 26656,
+ "id": 9367,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -377422,7 +378310,7 @@
}
},
{
- "id": 26657,
+ "id": 9368,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -377478,7 +378366,7 @@
}
},
{
- "id": 26658,
+ "id": 9369,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -377534,7 +378422,7 @@
}
},
{
- "id": 26630,
+ "id": 9341,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -377590,7 +378478,7 @@
}
},
{
- "id": 26631,
+ "id": 9342,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -377646,7 +378534,7 @@
}
},
{
- "id": 26632,
+ "id": 9343,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -377702,7 +378590,7 @@
}
},
{
- "id": 26688,
+ "id": 9399,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -377758,7 +378646,7 @@
}
},
{
- "id": 26627,
+ "id": 9338,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -377814,7 +378702,7 @@
}
},
{
- "id": 26628,
+ "id": 9339,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -377870,7 +378758,7 @@
}
},
{
- "id": 26629,
+ "id": 9340,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -377926,7 +378814,7 @@
}
},
{
- "id": 26633,
+ "id": 9344,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -377982,7 +378870,7 @@
}
},
{
- "id": 26634,
+ "id": 9345,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -378038,7 +378926,7 @@
}
},
{
- "id": 26635,
+ "id": 9346,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -378094,7 +378982,7 @@
}
},
{
- "id": 26689,
+ "id": 9400,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -378150,7 +379038,7 @@
}
},
{
- "id": 26636,
+ "id": 9347,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -378206,7 +379094,7 @@
}
},
{
- "id": 26637,
+ "id": 9348,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -378262,7 +379150,7 @@
}
},
{
- "id": 26679,
+ "id": 9390,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -378318,7 +379206,7 @@
}
},
{
- "id": 26659,
+ "id": 9370,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -378374,7 +379262,7 @@
}
},
{
- "id": 26660,
+ "id": 9371,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -378430,7 +379318,7 @@
}
},
{
- "id": 26661,
+ "id": 9372,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -378486,7 +379374,7 @@
}
},
{
- "id": 26662,
+ "id": 9373,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -378542,7 +379430,7 @@
}
},
{
- "id": 26663,
+ "id": 9374,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -378598,7 +379486,7 @@
}
},
{
- "id": 26690,
+ "id": 9401,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -378654,7 +379542,7 @@
}
},
{
- "id": 26664,
+ "id": 9375,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -378710,7 +379598,7 @@
}
},
{
- "id": 26665,
+ "id": 9376,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -378766,7 +379654,7 @@
}
},
{
- "id": 26666,
+ "id": 9377,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -378822,7 +379710,7 @@
}
},
{
- "id": 26609,
+ "id": 9320,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -378878,7 +379766,7 @@
}
},
{
- "id": 26610,
+ "id": 9321,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -378918,14 +379806,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26611,
+ "id": 9322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26612,
+ "id": 9323,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -378957,7 +379845,7 @@
{
"title": "Properties",
"children": [
- 26612
+ 9323
]
}
],
@@ -378997,14 +379885,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26613,
+ "id": 9324,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26614,
+ "id": 9325,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -379036,7 +379924,7 @@
{
"title": "Properties",
"children": [
- 26614
+ 9325
]
}
],
@@ -379060,7 +379948,7 @@
}
},
{
- "id": 26615,
+ "id": 9326,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -379100,14 +379988,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26616,
+ "id": 9327,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26617,
+ "id": 9328,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -379139,7 +380027,7 @@
{
"title": "Properties",
"children": [
- 26617
+ 9328
]
}
],
@@ -379179,14 +380067,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26618,
+ "id": 9329,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26619,
+ "id": 9330,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -379218,7 +380106,7 @@
{
"title": "Properties",
"children": [
- 26619
+ 9330
]
}
],
@@ -379242,7 +380130,7 @@
}
},
{
- "id": 26620,
+ "id": 9331,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -379292,57 +380180,57 @@
{
"title": "Properties",
"children": [
- 26621,
- 26681,
- 26682,
- 26683,
- 26684,
- 26649,
- 26650,
- 26651,
- 26626,
- 26652,
- 26653,
- 26654,
- 26685,
- 26655,
- 26686,
- 26687,
- 26625,
- 26680,
- 26622,
- 26623,
- 26624,
- 26656,
- 26657,
- 26658,
- 26630,
- 26631,
- 26632,
- 26688,
- 26627,
- 26628,
- 26629,
- 26633,
- 26634,
- 26635,
- 26689,
- 26636,
- 26637,
- 26679,
- 26659,
- 26660,
- 26661,
- 26662,
- 26663,
- 26690,
- 26664,
- 26665,
- 26666,
- 26609,
- 26610,
- 26615,
- 26620
+ 9332,
+ 9392,
+ 9393,
+ 9394,
+ 9395,
+ 9360,
+ 9361,
+ 9362,
+ 9337,
+ 9363,
+ 9364,
+ 9365,
+ 9396,
+ 9366,
+ 9397,
+ 9398,
+ 9336,
+ 9391,
+ 9333,
+ 9334,
+ 9335,
+ 9367,
+ 9368,
+ 9369,
+ 9341,
+ 9342,
+ 9343,
+ 9399,
+ 9338,
+ 9339,
+ 9340,
+ 9344,
+ 9345,
+ 9346,
+ 9400,
+ 9347,
+ 9348,
+ 9390,
+ 9370,
+ 9371,
+ 9372,
+ 9373,
+ 9374,
+ 9401,
+ 9375,
+ 9376,
+ 9377,
+ 9320,
+ 9321,
+ 9326,
+ 9331
]
}
],
@@ -379387,14 +380275,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26691,
+ "id": 9402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26692,
+ "id": 9403,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -379408,7 +380296,7 @@
],
"signatures": [
{
- "id": 26693,
+ "id": 9404,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -379422,7 +380310,7 @@
],
"parameters": [
{
- "id": 26694,
+ "id": 9405,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -379433,14 +380321,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26695,
+ "id": 9406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26696,
+ "id": 9407,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -379464,7 +380352,7 @@
{
"title": "Properties",
"children": [
- 26696
+ 9407
]
}
],
@@ -379546,7 +380434,7 @@
{
"title": "Methods",
"children": [
- 26692
+ 9403
]
}
],
@@ -379587,7 +380475,7 @@
}
},
{
- "id": 26697,
+ "id": 9408,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -379610,7 +380498,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26698,
+ "id": 9409,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -379624,7 +380512,7 @@
],
"signatures": [
{
- "id": 26699,
+ "id": 9410,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -379652,7 +380540,7 @@
],
"typeParameters": [
{
- "id": 26700,
+ "id": 9411,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -379663,7 +380551,7 @@
}
},
{
- "id": 26701,
+ "id": 9412,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -379676,7 +380564,7 @@
],
"parameters": [
{
- "id": 26702,
+ "id": 9413,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -379709,7 +380597,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -379720,13 +380608,13 @@
},
"trueType": {
"type": "reference",
- "target": 26589,
+ "target": 9300,
"name": "ConfirmClaimRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -379759,7 +380647,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -379779,7 +380667,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -379799,7 +380687,7 @@
}
},
{
- "id": 26703,
+ "id": 9414,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -379822,7 +380710,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26704,
+ "id": 9415,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -379836,7 +380724,7 @@
],
"signatures": [
{
- "id": 26705,
+ "id": 9416,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -379858,7 +380746,7 @@
}
},
{
- "id": 26706,
+ "id": 9417,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -379881,7 +380769,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26707,
+ "id": 9418,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -379895,7 +380783,7 @@
],
"signatures": [
{
- "id": 26708,
+ "id": 9419,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -379909,7 +380797,7 @@
],
"parameters": [
{
- "id": 26709,
+ "id": 9420,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -379935,7 +380823,7 @@
}
},
{
- "id": 26710,
+ "id": 9421,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -379958,7 +380846,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26711,
+ "id": 9422,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -379969,7 +380857,7 @@
],
"documents": [
{
- "id": 42537,
+ "id": 25478,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -379995,7 +380883,7 @@
"frontmatter": {}
},
{
- "id": 42538,
+ "id": 25479,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -380021,7 +380909,7 @@
"frontmatter": {}
},
{
- "id": 42539,
+ "id": 25480,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -380047,7 +380935,7 @@
"frontmatter": {}
},
{
- "id": 42540,
+ "id": 25481,
"name": "confirmClaimRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -380073,7 +380961,7 @@
"frontmatter": {}
},
{
- "id": 42541,
+ "id": 25482,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -380099,7 +380987,7 @@
"frontmatter": {}
},
{
- "id": 42542,
+ "id": 25483,
"name": "createOrderClaimItemsFromActionsStep",
"variant": "document",
"kind": 8388608,
@@ -380125,7 +381013,7 @@
"frontmatter": {}
},
{
- "id": 42543,
+ "id": 25484,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -380160,7 +381048,7 @@
"frontmatter": {},
"children": [
{
- "id": 42544,
+ "id": 25485,
"name": "updateReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -380188,7 +381076,7 @@
]
},
{
- "id": 42545,
+ "id": 25486,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -380223,7 +381111,7 @@
"frontmatter": {},
"children": [
{
- "id": 42546,
+ "id": 25487,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -380249,7 +381137,7 @@
"frontmatter": {}
},
{
- "id": 42547,
+ "id": 25488,
"name": "reserveInventoryStep",
"variant": "document",
"kind": 8388608,
@@ -380277,7 +381165,7 @@
]
},
{
- "id": 42548,
+ "id": 25489,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -380312,7 +381200,7 @@
"frontmatter": {},
"children": [
{
- "id": 42549,
+ "id": 25490,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -380338,7 +381226,7 @@
"frontmatter": {}
},
{
- "id": 42550,
+ "id": 25491,
"name": "createReturnFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -380366,7 +381254,7 @@
]
},
{
- "id": 42551,
+ "id": 25492,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -380392,7 +381280,7 @@
"frontmatter": {}
},
{
- "id": 42552,
+ "id": 25493,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -380419,21 +381307,21 @@
}
],
"childrenIncludingDocuments": [
- 26602,
- 26697,
- 26703,
- 26706,
- 26710
+ 9313,
+ 9408,
+ 9414,
+ 9417,
+ 9421
],
"groups": [
{
"title": "Properties",
"children": [
- 26602,
- 26697,
- 26703,
- 26706,
- 26710
+ 9313,
+ 9408,
+ 9414,
+ 9417,
+ 9421
]
}
],
@@ -380442,12 +381330,12 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 291,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L291"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L291"
}
],
"signatures": [
{
- "id": 26595,
+ "id": 9306,
"name": "confirmClaimRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -380512,12 +381400,12 @@
"fileName": "core-flows/src/order/workflows/claim/confirm-claim-request.ts",
"line": 291,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L291"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/confirm-claim-request.ts#L291"
}
],
"typeParameters": [
{
- "id": 26596,
+ "id": 9307,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -380528,7 +381416,7 @@
}
},
{
- "id": 26597,
+ "id": 9308,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -380541,7 +381429,7 @@
],
"parameters": [
{
- "id": 26598,
+ "id": 9309,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -380565,14 +381453,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26599,
+ "id": 9310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26600,
+ "id": 9311,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -380595,7 +381483,7 @@
}
},
{
- "id": 26601,
+ "id": 9312,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -380622,8 +381510,8 @@
{
"title": "Properties",
"children": [
- 26600,
- 26601
+ 9311,
+ 9312
]
}
],
@@ -380698,7 +381586,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26589,
+ "target": 9300,
"name": "ConfirmClaimRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -380713,14 +381601,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -380735,7 +381623,7 @@
]
},
{
- "id": 26714,
+ "id": 9425,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -380753,7 +381641,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L35"
}
],
"type": {
@@ -380767,7 +381655,7 @@
}
},
{
- "id": 26715,
+ "id": 9426,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -380785,7 +381673,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L39"
}
],
"type": {
@@ -380799,7 +381687,7 @@
}
},
{
- "id": 26716,
+ "id": 9427,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -380817,7 +381705,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L43"
}
],
"type": {
@@ -380831,7 +381719,7 @@
}
},
{
- "id": 26717,
+ "id": 9428,
"name": "createClaimShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -380866,7 +381754,7 @@
},
"children": [
{
- "id": 26726,
+ "id": 9437,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -380884,7 +381772,7 @@
}
},
{
- "id": 26727,
+ "id": 9438,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -380906,8 +381794,8 @@
{
"title": "Properties",
"children": [
- 26726,
- 26727
+ 9437,
+ 9438
]
}
],
@@ -380916,12 +381804,12 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L73"
}
],
"signatures": [
{
- "id": 26718,
+ "id": 9429,
"name": "createClaimShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -380959,12 +381847,12 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L73"
}
],
"parameters": [
{
- "id": 26719,
+ "id": 9430,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -380974,7 +381862,7 @@
"types": [
{
"type": "reference",
- "target": 26712,
+ "target": 9423,
"name": "CreateClaimShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -380987,7 +381875,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26712,
+ "target": 9423,
"name": "CreateClaimShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -381020,14 +381908,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26720,
+ "id": 9431,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26721,
+ "id": 9432,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -381041,7 +381929,7 @@
],
"signatures": [
{
- "id": 26722,
+ "id": 9433,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -381055,7 +381943,7 @@
],
"parameters": [
{
- "id": 26723,
+ "id": 9434,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -381066,14 +381954,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26724,
+ "id": 9435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26725,
+ "id": 9436,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -381097,7 +381985,7 @@
{
"title": "Properties",
"children": [
- 26725
+ 9436
]
}
],
@@ -381174,7 +382062,7 @@
{
"title": "Methods",
"children": [
- 26721
+ 9432
]
}
],
@@ -381208,7 +382096,7 @@
]
},
{
- "id": 26730,
+ "id": 9441,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -381228,7 +382116,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L95"
}
],
"type": {
@@ -381237,7 +382125,7 @@
}
},
{
- "id": 26731,
+ "id": 9442,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -381257,7 +382145,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L99"
}
],
"type": {
@@ -381266,7 +382154,7 @@
}
},
{
- "id": 26732,
+ "id": 9443,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -381284,7 +382172,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L103"
}
],
"type": {
@@ -381293,7 +382181,7 @@
}
},
{
- "id": 26733,
+ "id": 9444,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -381313,7 +382201,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L107"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L107"
}
],
"type": {
@@ -381336,7 +382224,7 @@
}
},
{
- "id": 26734,
+ "id": 9445,
"name": "createClaimShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -381348,7 +382236,7 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L110"
}
],
"type": {
@@ -381358,7 +382246,7 @@
"defaultValue": "\"create-claim-shipping-method\""
},
{
- "id": 26735,
+ "id": 9446,
"name": "createClaimShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -381423,7 +382311,7 @@
},
"children": [
{
- "id": 26743,
+ "id": 9454,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -381446,7 +382334,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26744,
+ "id": 9455,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -381460,7 +382348,7 @@
],
"signatures": [
{
- "id": 26745,
+ "id": 9456,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -381488,7 +382376,7 @@
],
"parameters": [
{
- "id": 26746,
+ "id": 9457,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -381504,14 +382392,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26747,
+ "id": 9458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26748,
+ "id": 9459,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -381536,7 +382424,7 @@
"types": [
{
"type": "reference",
- "target": 26728,
+ "target": 9439,
"name": "CreateClaimShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -381549,7 +382437,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26728,
+ "target": 9439,
"name": "CreateClaimShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -381565,7 +382453,7 @@
{
"title": "Properties",
"children": [
- 26748
+ 9459
]
}
],
@@ -381586,14 +382474,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26749,
+ "id": 9460,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26762,
+ "id": 9473,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -381639,7 +382527,7 @@
}
},
{
- "id": 26822,
+ "id": 9533,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -381685,7 +382573,7 @@
}
},
{
- "id": 26823,
+ "id": 9534,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -381731,7 +382619,7 @@
}
},
{
- "id": 26824,
+ "id": 9535,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -381788,7 +382676,7 @@
}
},
{
- "id": 26825,
+ "id": 9536,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -381844,7 +382732,7 @@
}
},
{
- "id": 26790,
+ "id": 9501,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -381901,7 +382789,7 @@
}
},
{
- "id": 26791,
+ "id": 9502,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -381958,7 +382846,7 @@
}
},
{
- "id": 26792,
+ "id": 9503,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -382015,7 +382903,7 @@
}
},
{
- "id": 26767,
+ "id": 9478,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -382072,7 +382960,7 @@
}
},
{
- "id": 26793,
+ "id": 9504,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -382118,7 +383006,7 @@
}
},
{
- "id": 26794,
+ "id": 9505,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -382188,7 +383076,7 @@
}
},
{
- "id": 26795,
+ "id": 9506,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -382258,7 +383146,7 @@
}
},
{
- "id": 26826,
+ "id": 9537,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -382334,7 +383222,7 @@
}
},
{
- "id": 26796,
+ "id": 9507,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -382410,7 +383298,7 @@
}
},
{
- "id": 26827,
+ "id": 9538,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -382480,7 +383368,7 @@
}
},
{
- "id": 26828,
+ "id": 9539,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -382537,7 +383425,7 @@
}
},
{
- "id": 26766,
+ "id": 9477,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -382632,7 +383520,7 @@
}
},
{
- "id": 26821,
+ "id": 9532,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -382707,7 +383595,7 @@
}
},
{
- "id": 26763,
+ "id": 9474,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -382776,7 +383664,7 @@
}
},
{
- "id": 26764,
+ "id": 9475,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -382845,7 +383733,7 @@
}
},
{
- "id": 26765,
+ "id": 9476,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -382920,7 +383808,7 @@
}
},
{
- "id": 26797,
+ "id": 9508,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -382976,7 +383864,7 @@
}
},
{
- "id": 26798,
+ "id": 9509,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -383032,7 +383920,7 @@
}
},
{
- "id": 26799,
+ "id": 9510,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -383088,7 +383976,7 @@
}
},
{
- "id": 26771,
+ "id": 9482,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -383144,7 +384032,7 @@
}
},
{
- "id": 26772,
+ "id": 9483,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -383200,7 +384088,7 @@
}
},
{
- "id": 26773,
+ "id": 9484,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -383256,7 +384144,7 @@
}
},
{
- "id": 26829,
+ "id": 9540,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -383312,7 +384200,7 @@
}
},
{
- "id": 26768,
+ "id": 9479,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -383368,7 +384256,7 @@
}
},
{
- "id": 26769,
+ "id": 9480,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -383424,7 +384312,7 @@
}
},
{
- "id": 26770,
+ "id": 9481,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -383480,7 +384368,7 @@
}
},
{
- "id": 26774,
+ "id": 9485,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -383536,7 +384424,7 @@
}
},
{
- "id": 26775,
+ "id": 9486,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -383592,7 +384480,7 @@
}
},
{
- "id": 26776,
+ "id": 9487,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -383648,7 +384536,7 @@
}
},
{
- "id": 26830,
+ "id": 9541,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -383704,7 +384592,7 @@
}
},
{
- "id": 26777,
+ "id": 9488,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -383760,7 +384648,7 @@
}
},
{
- "id": 26778,
+ "id": 9489,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -383816,7 +384704,7 @@
}
},
{
- "id": 26820,
+ "id": 9531,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -383872,7 +384760,7 @@
}
},
{
- "id": 26800,
+ "id": 9511,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -383928,7 +384816,7 @@
}
},
{
- "id": 26801,
+ "id": 9512,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -383984,7 +384872,7 @@
}
},
{
- "id": 26802,
+ "id": 9513,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -384040,7 +384928,7 @@
}
},
{
- "id": 26803,
+ "id": 9514,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -384096,7 +384984,7 @@
}
},
{
- "id": 26804,
+ "id": 9515,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -384152,7 +385040,7 @@
}
},
{
- "id": 26831,
+ "id": 9542,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -384208,7 +385096,7 @@
}
},
{
- "id": 26805,
+ "id": 9516,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -384264,7 +385152,7 @@
}
},
{
- "id": 26806,
+ "id": 9517,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -384320,7 +385208,7 @@
}
},
{
- "id": 26807,
+ "id": 9518,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -384376,7 +385264,7 @@
}
},
{
- "id": 26750,
+ "id": 9461,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -384432,7 +385320,7 @@
}
},
{
- "id": 26751,
+ "id": 9462,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -384472,14 +385360,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26752,
+ "id": 9463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26753,
+ "id": 9464,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -384511,7 +385399,7 @@
{
"title": "Properties",
"children": [
- 26753
+ 9464
]
}
],
@@ -384551,14 +385439,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26754,
+ "id": 9465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26755,
+ "id": 9466,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -384590,7 +385478,7 @@
{
"title": "Properties",
"children": [
- 26755
+ 9466
]
}
],
@@ -384614,7 +385502,7 @@
}
},
{
- "id": 26756,
+ "id": 9467,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -384654,14 +385542,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26757,
+ "id": 9468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26758,
+ "id": 9469,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -384693,7 +385581,7 @@
{
"title": "Properties",
"children": [
- 26758
+ 9469
]
}
],
@@ -384733,14 +385621,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26759,
+ "id": 9470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26760,
+ "id": 9471,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -384772,7 +385660,7 @@
{
"title": "Properties",
"children": [
- 26760
+ 9471
]
}
],
@@ -384796,7 +385684,7 @@
}
},
{
- "id": 26761,
+ "id": 9472,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -384846,57 +385734,57 @@
{
"title": "Properties",
"children": [
- 26762,
- 26822,
- 26823,
- 26824,
- 26825,
- 26790,
- 26791,
- 26792,
- 26767,
- 26793,
- 26794,
- 26795,
- 26826,
- 26796,
- 26827,
- 26828,
- 26766,
- 26821,
- 26763,
- 26764,
- 26765,
- 26797,
- 26798,
- 26799,
- 26771,
- 26772,
- 26773,
- 26829,
- 26768,
- 26769,
- 26770,
- 26774,
- 26775,
- 26776,
- 26830,
- 26777,
- 26778,
- 26820,
- 26800,
- 26801,
- 26802,
- 26803,
- 26804,
- 26831,
- 26805,
- 26806,
- 26807,
- 26750,
- 26751,
- 26756,
- 26761
+ 9473,
+ 9533,
+ 9534,
+ 9535,
+ 9536,
+ 9501,
+ 9502,
+ 9503,
+ 9478,
+ 9504,
+ 9505,
+ 9506,
+ 9537,
+ 9507,
+ 9538,
+ 9539,
+ 9477,
+ 9532,
+ 9474,
+ 9475,
+ 9476,
+ 9508,
+ 9509,
+ 9510,
+ 9482,
+ 9483,
+ 9484,
+ 9540,
+ 9479,
+ 9480,
+ 9481,
+ 9485,
+ 9486,
+ 9487,
+ 9541,
+ 9488,
+ 9489,
+ 9531,
+ 9511,
+ 9512,
+ 9513,
+ 9514,
+ 9515,
+ 9542,
+ 9516,
+ 9517,
+ 9518,
+ 9461,
+ 9462,
+ 9467,
+ 9472
]
}
],
@@ -384941,14 +385829,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26832,
+ "id": 9543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26833,
+ "id": 9544,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -384962,7 +385850,7 @@
],
"signatures": [
{
- "id": 26834,
+ "id": 9545,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -384976,7 +385864,7 @@
],
"parameters": [
{
- "id": 26835,
+ "id": 9546,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -384987,14 +385875,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26836,
+ "id": 9547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26837,
+ "id": 9548,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -385018,7 +385906,7 @@
{
"title": "Properties",
"children": [
- 26837
+ 9548
]
}
],
@@ -385100,7 +385988,7 @@
{
"title": "Methods",
"children": [
- 26833
+ 9544
]
}
],
@@ -385141,7 +386029,7 @@
}
},
{
- "id": 26838,
+ "id": 9549,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -385164,7 +386052,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26839,
+ "id": 9550,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -385178,7 +386066,7 @@
],
"signatures": [
{
- "id": 26840,
+ "id": 9551,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -385206,7 +386094,7 @@
],
"typeParameters": [
{
- "id": 26841,
+ "id": 9552,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -385217,7 +386105,7 @@
}
},
{
- "id": 26842,
+ "id": 9553,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -385230,7 +386118,7 @@
],
"parameters": [
{
- "id": 26843,
+ "id": 9554,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -385263,7 +386151,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -385274,13 +386162,13 @@
},
"trueType": {
"type": "reference",
- "target": 26728,
+ "target": 9439,
"name": "CreateClaimShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -385313,7 +386201,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -385333,7 +386221,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -385353,7 +386241,7 @@
}
},
{
- "id": 26844,
+ "id": 9555,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -385376,7 +386264,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26845,
+ "id": 9556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -385390,7 +386278,7 @@
],
"signatures": [
{
- "id": 26846,
+ "id": 9557,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -385412,7 +386300,7 @@
}
},
{
- "id": 26847,
+ "id": 9558,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -385435,7 +386323,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26848,
+ "id": 9559,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -385449,7 +386337,7 @@
],
"signatures": [
{
- "id": 26849,
+ "id": 9560,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -385463,7 +386351,7 @@
],
"parameters": [
{
- "id": 26850,
+ "id": 9561,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -385489,7 +386377,7 @@
}
},
{
- "id": 26851,
+ "id": 9562,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -385512,7 +386400,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26852,
+ "id": 9563,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -385523,7 +386411,7 @@
],
"documents": [
{
- "id": 42553,
+ "id": 25494,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -385549,7 +386437,7 @@
"frontmatter": {}
},
{
- "id": 42554,
+ "id": 25495,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -385575,7 +386463,7 @@
"frontmatter": {}
},
{
- "id": 42555,
+ "id": 25496,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -385601,7 +386489,7 @@
"frontmatter": {}
},
{
- "id": 42556,
+ "id": 25497,
"name": "fetchShippingOptionForOrderWorkflow",
"variant": "document",
"kind": 8388608,
@@ -385627,7 +386515,7 @@
"frontmatter": {}
},
{
- "id": 42557,
+ "id": 25498,
"name": "createClaimShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -385653,7 +386541,7 @@
"frontmatter": {}
},
{
- "id": 42558,
+ "id": 25499,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -385679,7 +386567,7 @@
"frontmatter": {}
},
{
- "id": 42559,
+ "id": 25500,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -385705,7 +386593,7 @@
"frontmatter": {}
},
{
- "id": 42560,
+ "id": 25501,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -385732,21 +386620,21 @@
}
],
"childrenIncludingDocuments": [
- 26743,
- 26838,
- 26844,
- 26847,
- 26851
+ 9454,
+ 9549,
+ 9555,
+ 9558,
+ 9562
],
"groups": [
{
"title": "Properties",
"children": [
- 26743,
- 26838,
- 26844,
- 26847,
- 26851
+ 9454,
+ 9549,
+ 9555,
+ 9558,
+ 9562
]
}
],
@@ -385755,12 +386643,12 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 150,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L150"
}
],
"signatures": [
{
- "id": 26736,
+ "id": 9447,
"name": "createClaimShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -385828,12 +386716,12 @@
"fileName": "core-flows/src/order/workflows/claim/create-claim-shipping-method.ts",
"line": 150,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L150"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/create-claim-shipping-method.ts#L150"
}
],
"typeParameters": [
{
- "id": 26737,
+ "id": 9448,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -385844,7 +386732,7 @@
}
},
{
- "id": 26738,
+ "id": 9449,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -385857,7 +386745,7 @@
],
"parameters": [
{
- "id": 26739,
+ "id": 9450,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -385881,14 +386769,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26740,
+ "id": 9451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26741,
+ "id": 9452,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -385911,7 +386799,7 @@
}
},
{
- "id": 26742,
+ "id": 9453,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -385938,8 +386826,8 @@
{
"title": "Properties",
"children": [
- 26741,
- 26742
+ 9452,
+ 9453
]
}
],
@@ -386014,7 +386902,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26728,
+ "target": 9439,
"name": "CreateClaimShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -386029,14 +386917,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -386051,7 +386939,7 @@
]
},
{
- "id": 26855,
+ "id": 9566,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -386069,7 +386957,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L36"
}
],
"type": {
@@ -386083,7 +386971,7 @@
}
},
{
- "id": 26856,
+ "id": 9567,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -386101,7 +386989,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L40"
}
],
"type": {
@@ -386115,7 +387003,7 @@
}
},
{
- "id": 26857,
+ "id": 9568,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -386133,7 +387021,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L44"
}
],
"type": {
@@ -386147,7 +387035,7 @@
}
},
{
- "id": 26858,
+ "id": 9569,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -386165,7 +387053,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L48"
}
],
"type": {
@@ -386180,7 +387068,7 @@
}
},
{
- "id": 26859,
+ "id": 9570,
"name": "removeClaimAddItemActionValidationStep",
"variant": "declaration",
"kind": 64,
@@ -386215,7 +387103,7 @@
},
"children": [
{
- "id": 26868,
+ "id": 9579,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -386233,7 +387121,7 @@
}
},
{
- "id": 26869,
+ "id": 9580,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -386255,8 +387143,8 @@
{
"title": "Properties",
"children": [
- 26868,
- 26869
+ 9579,
+ 9580
]
}
],
@@ -386265,12 +387153,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L82"
}
],
"signatures": [
{
- "id": 26860,
+ "id": 9571,
"name": "removeClaimAddItemActionValidationStep",
"variant": "signature",
"kind": 4096,
@@ -386308,12 +387196,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L82"
}
],
"parameters": [
{
- "id": 26861,
+ "id": 9572,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -386323,7 +387211,7 @@
"types": [
{
"type": "reference",
- "target": 26853,
+ "target": 9564,
"name": "RemoveClaimAddItemActionValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -386336,7 +387224,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26853,
+ "target": 9564,
"name": "RemoveClaimAddItemActionValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -386369,14 +387257,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26862,
+ "id": 9573,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26863,
+ "id": 9574,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -386390,7 +387278,7 @@
],
"signatures": [
{
- "id": 26864,
+ "id": 9575,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -386404,7 +387292,7 @@
],
"parameters": [
{
- "id": 26865,
+ "id": 9576,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -386415,14 +387303,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26866,
+ "id": 9577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26867,
+ "id": 9578,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -386446,7 +387334,7 @@
{
"title": "Properties",
"children": [
- 26867
+ 9578
]
}
],
@@ -386523,7 +387411,7 @@
{
"title": "Methods",
"children": [
- 26863
+ 9574
]
}
],
@@ -386557,7 +387445,7 @@
]
},
{
- "id": 26871,
+ "id": 9582,
"name": "removeAddItemClaimActionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -386569,7 +387457,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 118,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L118"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L118"
}
],
"type": {
@@ -386579,7 +387467,7 @@
"defaultValue": "\"remove-item-claim-add-action\""
},
{
- "id": 26872,
+ "id": 9583,
"name": "removeAddItemClaimActionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -386632,7 +387520,7 @@
},
"children": [
{
- "id": 26880,
+ "id": 9591,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -386655,7 +387543,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26881,
+ "id": 9592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -386669,7 +387557,7 @@
],
"signatures": [
{
- "id": 26882,
+ "id": 9593,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -386697,7 +387585,7 @@
],
"parameters": [
{
- "id": 26883,
+ "id": 9594,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -386713,14 +387601,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26884,
+ "id": 9595,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26885,
+ "id": 9596,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -386780,7 +387668,7 @@
{
"title": "Properties",
"children": [
- 26885
+ 9596
]
}
],
@@ -386801,14 +387689,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26886,
+ "id": 9597,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26899,
+ "id": 9610,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -386854,7 +387742,7 @@
}
},
{
- "id": 26959,
+ "id": 9670,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -386900,7 +387788,7 @@
}
},
{
- "id": 26960,
+ "id": 9671,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -386946,7 +387834,7 @@
}
},
{
- "id": 26961,
+ "id": 9672,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -387003,7 +387891,7 @@
}
},
{
- "id": 26962,
+ "id": 9673,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -387059,7 +387947,7 @@
}
},
{
- "id": 26927,
+ "id": 9638,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -387116,7 +388004,7 @@
}
},
{
- "id": 26928,
+ "id": 9639,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -387173,7 +388061,7 @@
}
},
{
- "id": 26929,
+ "id": 9640,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -387230,7 +388118,7 @@
}
},
{
- "id": 26904,
+ "id": 9615,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -387287,7 +388175,7 @@
}
},
{
- "id": 26930,
+ "id": 9641,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -387333,7 +388221,7 @@
}
},
{
- "id": 26931,
+ "id": 9642,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -387403,7 +388291,7 @@
}
},
{
- "id": 26932,
+ "id": 9643,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -387473,7 +388361,7 @@
}
},
{
- "id": 26963,
+ "id": 9674,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -387549,7 +388437,7 @@
}
},
{
- "id": 26933,
+ "id": 9644,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -387625,7 +388513,7 @@
}
},
{
- "id": 26964,
+ "id": 9675,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -387695,7 +388583,7 @@
}
},
{
- "id": 26965,
+ "id": 9676,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -387752,7 +388640,7 @@
}
},
{
- "id": 26903,
+ "id": 9614,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -387847,7 +388735,7 @@
}
},
{
- "id": 26958,
+ "id": 9669,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -387922,7 +388810,7 @@
}
},
{
- "id": 26900,
+ "id": 9611,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -387991,7 +388879,7 @@
}
},
{
- "id": 26901,
+ "id": 9612,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -388060,7 +388948,7 @@
}
},
{
- "id": 26902,
+ "id": 9613,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -388135,7 +389023,7 @@
}
},
{
- "id": 26934,
+ "id": 9645,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -388191,7 +389079,7 @@
}
},
{
- "id": 26935,
+ "id": 9646,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -388247,7 +389135,7 @@
}
},
{
- "id": 26936,
+ "id": 9647,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -388303,7 +389191,7 @@
}
},
{
- "id": 26908,
+ "id": 9619,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -388359,7 +389247,7 @@
}
},
{
- "id": 26909,
+ "id": 9620,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -388415,7 +389303,7 @@
}
},
{
- "id": 26910,
+ "id": 9621,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -388471,7 +389359,7 @@
}
},
{
- "id": 26966,
+ "id": 9677,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -388527,7 +389415,7 @@
}
},
{
- "id": 26905,
+ "id": 9616,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -388583,7 +389471,7 @@
}
},
{
- "id": 26906,
+ "id": 9617,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -388639,7 +389527,7 @@
}
},
{
- "id": 26907,
+ "id": 9618,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -388695,7 +389583,7 @@
}
},
{
- "id": 26911,
+ "id": 9622,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -388751,7 +389639,7 @@
}
},
{
- "id": 26912,
+ "id": 9623,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -388807,7 +389695,7 @@
}
},
{
- "id": 26913,
+ "id": 9624,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -388863,7 +389751,7 @@
}
},
{
- "id": 26967,
+ "id": 9678,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -388919,7 +389807,7 @@
}
},
{
- "id": 26914,
+ "id": 9625,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -388975,7 +389863,7 @@
}
},
{
- "id": 26915,
+ "id": 9626,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -389031,7 +389919,7 @@
}
},
{
- "id": 26957,
+ "id": 9668,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -389087,7 +389975,7 @@
}
},
{
- "id": 26937,
+ "id": 9648,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -389143,7 +390031,7 @@
}
},
{
- "id": 26938,
+ "id": 9649,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -389199,7 +390087,7 @@
}
},
{
- "id": 26939,
+ "id": 9650,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -389255,7 +390143,7 @@
}
},
{
- "id": 26940,
+ "id": 9651,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -389311,7 +390199,7 @@
}
},
{
- "id": 26941,
+ "id": 9652,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -389367,7 +390255,7 @@
}
},
{
- "id": 26968,
+ "id": 9679,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -389423,7 +390311,7 @@
}
},
{
- "id": 26942,
+ "id": 9653,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -389479,7 +390367,7 @@
}
},
{
- "id": 26943,
+ "id": 9654,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -389535,7 +390423,7 @@
}
},
{
- "id": 26944,
+ "id": 9655,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -389591,7 +390479,7 @@
}
},
{
- "id": 26887,
+ "id": 9598,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -389647,7 +390535,7 @@
}
},
{
- "id": 26888,
+ "id": 9599,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -389687,14 +390575,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26889,
+ "id": 9600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26890,
+ "id": 9601,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -389726,7 +390614,7 @@
{
"title": "Properties",
"children": [
- 26890
+ 9601
]
}
],
@@ -389766,14 +390654,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26891,
+ "id": 9602,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26892,
+ "id": 9603,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -389805,7 +390693,7 @@
{
"title": "Properties",
"children": [
- 26892
+ 9603
]
}
],
@@ -389829,7 +390717,7 @@
}
},
{
- "id": 26893,
+ "id": 9604,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -389869,14 +390757,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26894,
+ "id": 9605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26895,
+ "id": 9606,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -389908,7 +390796,7 @@
{
"title": "Properties",
"children": [
- 26895
+ 9606
]
}
],
@@ -389948,14 +390836,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26896,
+ "id": 9607,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26897,
+ "id": 9608,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -389987,7 +390875,7 @@
{
"title": "Properties",
"children": [
- 26897
+ 9608
]
}
],
@@ -390011,7 +390899,7 @@
}
},
{
- "id": 26898,
+ "id": 9609,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -390061,57 +390949,57 @@
{
"title": "Properties",
"children": [
- 26899,
- 26959,
- 26960,
- 26961,
- 26962,
- 26927,
- 26928,
- 26929,
- 26904,
- 26930,
- 26931,
- 26932,
- 26963,
- 26933,
- 26964,
- 26965,
- 26903,
- 26958,
- 26900,
- 26901,
- 26902,
- 26934,
- 26935,
- 26936,
- 26908,
- 26909,
- 26910,
- 26966,
- 26905,
- 26906,
- 26907,
- 26911,
- 26912,
- 26913,
- 26967,
- 26914,
- 26915,
- 26957,
- 26937,
- 26938,
- 26939,
- 26940,
- 26941,
- 26968,
- 26942,
- 26943,
- 26944,
- 26887,
- 26888,
- 26893,
- 26898
+ 9610,
+ 9670,
+ 9671,
+ 9672,
+ 9673,
+ 9638,
+ 9639,
+ 9640,
+ 9615,
+ 9641,
+ 9642,
+ 9643,
+ 9674,
+ 9644,
+ 9675,
+ 9676,
+ 9614,
+ 9669,
+ 9611,
+ 9612,
+ 9613,
+ 9645,
+ 9646,
+ 9647,
+ 9619,
+ 9620,
+ 9621,
+ 9677,
+ 9616,
+ 9617,
+ 9618,
+ 9622,
+ 9623,
+ 9624,
+ 9678,
+ 9625,
+ 9626,
+ 9668,
+ 9648,
+ 9649,
+ 9650,
+ 9651,
+ 9652,
+ 9679,
+ 9653,
+ 9654,
+ 9655,
+ 9598,
+ 9599,
+ 9604,
+ 9609
]
}
],
@@ -390156,14 +391044,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26969,
+ "id": 9680,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26970,
+ "id": 9681,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -390177,7 +391065,7 @@
],
"signatures": [
{
- "id": 26971,
+ "id": 9682,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -390191,7 +391079,7 @@
],
"parameters": [
{
- "id": 26972,
+ "id": 9683,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -390202,14 +391090,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26973,
+ "id": 9684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26974,
+ "id": 9685,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -390233,7 +391121,7 @@
{
"title": "Properties",
"children": [
- 26974
+ 9685
]
}
],
@@ -390315,7 +391203,7 @@
{
"title": "Methods",
"children": [
- 26970
+ 9681
]
}
],
@@ -390356,7 +391244,7 @@
}
},
{
- "id": 26975,
+ "id": 9686,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -390379,7 +391267,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26976,
+ "id": 9687,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -390393,7 +391281,7 @@
],
"signatures": [
{
- "id": 26977,
+ "id": 9688,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -390421,7 +391309,7 @@
],
"typeParameters": [
{
- "id": 26978,
+ "id": 9689,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -390432,7 +391320,7 @@
}
},
{
- "id": 26979,
+ "id": 9690,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -390445,7 +391333,7 @@
],
"parameters": [
{
- "id": 26980,
+ "id": 9691,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -390478,7 +391366,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -390498,7 +391386,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -390531,7 +391419,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -390551,7 +391439,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -390571,7 +391459,7 @@
}
},
{
- "id": 26981,
+ "id": 9692,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -390594,7 +391482,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26982,
+ "id": 9693,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -390608,7 +391496,7 @@
],
"signatures": [
{
- "id": 26983,
+ "id": 9694,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -390630,7 +391518,7 @@
}
},
{
- "id": 26984,
+ "id": 9695,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -390653,7 +391541,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26985,
+ "id": 9696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -390667,7 +391555,7 @@
],
"signatures": [
{
- "id": 26986,
+ "id": 9697,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -390681,7 +391569,7 @@
],
"parameters": [
{
- "id": 26987,
+ "id": 9698,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -390707,7 +391595,7 @@
}
},
{
- "id": 26988,
+ "id": 9699,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -390730,7 +391618,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 26989,
+ "id": 9700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -390741,7 +391629,7 @@
],
"documents": [
{
- "id": 42561,
+ "id": 25502,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -390767,7 +391655,7 @@
"frontmatter": {}
},
{
- "id": 42562,
+ "id": 25503,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -390793,7 +391681,7 @@
"frontmatter": {}
},
{
- "id": 42563,
+ "id": 25504,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -390819,7 +391707,7 @@
"frontmatter": {}
},
{
- "id": 42564,
+ "id": 25505,
"name": "removeClaimAddItemActionValidationStep",
"variant": "document",
"kind": 8388608,
@@ -390845,7 +391733,7 @@
"frontmatter": {}
},
{
- "id": 42565,
+ "id": 25506,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -390871,7 +391759,7 @@
"frontmatter": {}
},
{
- "id": 42566,
+ "id": 25507,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -390897,7 +391785,7 @@
"frontmatter": {}
},
{
- "id": 42567,
+ "id": 25508,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -390932,7 +391820,7 @@
"frontmatter": {},
"children": [
{
- "id": 42568,
+ "id": 25509,
"name": "removeClaimShippingMethodWorkflow",
"variant": "document",
"kind": 8388608,
@@ -390960,7 +391848,7 @@
]
},
{
- "id": 42569,
+ "id": 25510,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -390987,21 +391875,21 @@
}
],
"childrenIncludingDocuments": [
- 26880,
- 26975,
- 26981,
- 26984,
- 26988
+ 9591,
+ 9686,
+ 9692,
+ 9695,
+ 9699
],
"groups": [
{
"title": "Properties",
"children": [
- 26880,
- 26975,
- 26981,
- 26984,
- 26988
+ 9591,
+ 9686,
+ 9692,
+ 9695,
+ 9699
]
}
],
@@ -391010,12 +391898,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 139,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L139"
}
],
"signatures": [
{
- "id": 26873,
+ "id": 9584,
"name": "removeAddItemClaimActionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -391071,12 +391959,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts",
"line": 139,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-add-item-action.ts#L139"
}
],
"typeParameters": [
{
- "id": 26874,
+ "id": 9585,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -391087,7 +391975,7 @@
}
},
{
- "id": 26875,
+ "id": 9586,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -391100,7 +391988,7 @@
],
"parameters": [
{
- "id": 26876,
+ "id": 9587,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -391124,14 +392012,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 26877,
+ "id": 9588,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 26878,
+ "id": 9589,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -391154,7 +392042,7 @@
}
},
{
- "id": 26879,
+ "id": 9590,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -391181,8 +392069,8 @@
{
"title": "Properties",
"children": [
- 26878,
- 26879
+ 9589,
+ 9590
]
}
],
@@ -391275,14 +392163,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -391297,7 +392185,7 @@
]
},
{
- "id": 26992,
+ "id": 9703,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -391315,7 +392203,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L35"
}
],
"type": {
@@ -391329,7 +392217,7 @@
}
},
{
- "id": 26993,
+ "id": 9704,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -391347,7 +392235,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L39"
}
],
"type": {
@@ -391361,7 +392249,7 @@
}
},
{
- "id": 26994,
+ "id": 9705,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -391379,7 +392267,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L43"
}
],
"type": {
@@ -391393,7 +392281,7 @@
}
},
{
- "id": 26995,
+ "id": 9706,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -391411,7 +392299,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 47,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L47"
}
],
"type": {
@@ -391426,7 +392314,7 @@
}
},
{
- "id": 26996,
+ "id": 9707,
"name": "removeClaimItemActionValidationStep",
"variant": "declaration",
"kind": 64,
@@ -391461,7 +392349,7 @@
},
"children": [
{
- "id": 27005,
+ "id": 9716,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -391479,7 +392367,7 @@
}
},
{
- "id": 27006,
+ "id": 9717,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -391501,8 +392389,8 @@
{
"title": "Properties",
"children": [
- 27005,
- 27006
+ 9716,
+ 9717
]
}
],
@@ -391511,12 +392399,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L81"
}
],
"signatures": [
{
- "id": 26997,
+ "id": 9708,
"name": "removeClaimItemActionValidationStep",
"variant": "signature",
"kind": 4096,
@@ -391554,12 +392442,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L81"
}
],
"parameters": [
{
- "id": 26998,
+ "id": 9709,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -391569,7 +392457,7 @@
"types": [
{
"type": "reference",
- "target": 26990,
+ "target": 9701,
"name": "RemoveClaimItemActionValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -391582,7 +392470,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 26990,
+ "target": 9701,
"name": "RemoveClaimItemActionValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -391615,14 +392503,14 @@
{
"type": "reflection",
"declaration": {
- "id": 26999,
+ "id": 9710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27000,
+ "id": 9711,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -391636,7 +392524,7 @@
],
"signatures": [
{
- "id": 27001,
+ "id": 9712,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -391650,7 +392538,7 @@
],
"parameters": [
{
- "id": 27002,
+ "id": 9713,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -391661,14 +392549,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27003,
+ "id": 9714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27004,
+ "id": 9715,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -391692,7 +392580,7 @@
{
"title": "Properties",
"children": [
- 27004
+ 9715
]
}
],
@@ -391769,7 +392657,7 @@
{
"title": "Methods",
"children": [
- 27000
+ 9711
]
}
],
@@ -391803,7 +392691,7 @@
]
},
{
- "id": 27008,
+ "id": 9719,
"name": "removeItemClaimActionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -391815,7 +392703,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 118,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L118"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L118"
}
],
"type": {
@@ -391825,7 +392713,7 @@
"defaultValue": "\"remove-item-claim-action\""
},
{
- "id": 27009,
+ "id": 9720,
"name": "removeItemClaimActionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -391869,7 +392757,7 @@
},
"children": [
{
- "id": 27017,
+ "id": 9728,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -391892,7 +392780,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27018,
+ "id": 9729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -391906,7 +392794,7 @@
],
"signatures": [
{
- "id": 27019,
+ "id": 9730,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -391934,7 +392822,7 @@
],
"parameters": [
{
- "id": 27020,
+ "id": 9731,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -391950,14 +392838,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27021,
+ "id": 9732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27022,
+ "id": 9733,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -392017,7 +392905,7 @@
{
"title": "Properties",
"children": [
- 27022
+ 9733
]
}
],
@@ -392038,14 +392926,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27023,
+ "id": 9734,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27036,
+ "id": 9747,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -392091,7 +392979,7 @@
}
},
{
- "id": 27096,
+ "id": 9807,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -392137,7 +393025,7 @@
}
},
{
- "id": 27097,
+ "id": 9808,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -392183,7 +393071,7 @@
}
},
{
- "id": 27098,
+ "id": 9809,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -392240,7 +393128,7 @@
}
},
{
- "id": 27099,
+ "id": 9810,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -392296,7 +393184,7 @@
}
},
{
- "id": 27064,
+ "id": 9775,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -392353,7 +393241,7 @@
}
},
{
- "id": 27065,
+ "id": 9776,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -392410,7 +393298,7 @@
}
},
{
- "id": 27066,
+ "id": 9777,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -392467,7 +393355,7 @@
}
},
{
- "id": 27041,
+ "id": 9752,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -392524,7 +393412,7 @@
}
},
{
- "id": 27067,
+ "id": 9778,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -392570,7 +393458,7 @@
}
},
{
- "id": 27068,
+ "id": 9779,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -392640,7 +393528,7 @@
}
},
{
- "id": 27069,
+ "id": 9780,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -392710,7 +393598,7 @@
}
},
{
- "id": 27100,
+ "id": 9811,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -392786,7 +393674,7 @@
}
},
{
- "id": 27070,
+ "id": 9781,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -392862,7 +393750,7 @@
}
},
{
- "id": 27101,
+ "id": 9812,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -392932,7 +393820,7 @@
}
},
{
- "id": 27102,
+ "id": 9813,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -392989,7 +393877,7 @@
}
},
{
- "id": 27040,
+ "id": 9751,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -393084,7 +393972,7 @@
}
},
{
- "id": 27095,
+ "id": 9806,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -393159,7 +394047,7 @@
}
},
{
- "id": 27037,
+ "id": 9748,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -393228,7 +394116,7 @@
}
},
{
- "id": 27038,
+ "id": 9749,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -393297,7 +394185,7 @@
}
},
{
- "id": 27039,
+ "id": 9750,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -393372,7 +394260,7 @@
}
},
{
- "id": 27071,
+ "id": 9782,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -393428,7 +394316,7 @@
}
},
{
- "id": 27072,
+ "id": 9783,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -393484,7 +394372,7 @@
}
},
{
- "id": 27073,
+ "id": 9784,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -393540,7 +394428,7 @@
}
},
{
- "id": 27045,
+ "id": 9756,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -393596,7 +394484,7 @@
}
},
{
- "id": 27046,
+ "id": 9757,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -393652,7 +394540,7 @@
}
},
{
- "id": 27047,
+ "id": 9758,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -393708,7 +394596,7 @@
}
},
{
- "id": 27103,
+ "id": 9814,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -393764,7 +394652,7 @@
}
},
{
- "id": 27042,
+ "id": 9753,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -393820,7 +394708,7 @@
}
},
{
- "id": 27043,
+ "id": 9754,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -393876,7 +394764,7 @@
}
},
{
- "id": 27044,
+ "id": 9755,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -393932,7 +394820,7 @@
}
},
{
- "id": 27048,
+ "id": 9759,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -393988,7 +394876,7 @@
}
},
{
- "id": 27049,
+ "id": 9760,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -394044,7 +394932,7 @@
}
},
{
- "id": 27050,
+ "id": 9761,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -394100,7 +394988,7 @@
}
},
{
- "id": 27104,
+ "id": 9815,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -394156,7 +395044,7 @@
}
},
{
- "id": 27051,
+ "id": 9762,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -394212,7 +395100,7 @@
}
},
{
- "id": 27052,
+ "id": 9763,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -394268,7 +395156,7 @@
}
},
{
- "id": 27094,
+ "id": 9805,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -394324,7 +395212,7 @@
}
},
{
- "id": 27074,
+ "id": 9785,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -394380,7 +395268,7 @@
}
},
{
- "id": 27075,
+ "id": 9786,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -394436,7 +395324,7 @@
}
},
{
- "id": 27076,
+ "id": 9787,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -394492,7 +395380,7 @@
}
},
{
- "id": 27077,
+ "id": 9788,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -394548,7 +395436,7 @@
}
},
{
- "id": 27078,
+ "id": 9789,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -394604,7 +395492,7 @@
}
},
{
- "id": 27105,
+ "id": 9816,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -394660,7 +395548,7 @@
}
},
{
- "id": 27079,
+ "id": 9790,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -394716,7 +395604,7 @@
}
},
{
- "id": 27080,
+ "id": 9791,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -394772,7 +395660,7 @@
}
},
{
- "id": 27081,
+ "id": 9792,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -394828,7 +395716,7 @@
}
},
{
- "id": 27024,
+ "id": 9735,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -394884,7 +395772,7 @@
}
},
{
- "id": 27025,
+ "id": 9736,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -394924,14 +395812,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27026,
+ "id": 9737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27027,
+ "id": 9738,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -394963,7 +395851,7 @@
{
"title": "Properties",
"children": [
- 27027
+ 9738
]
}
],
@@ -395003,14 +395891,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27028,
+ "id": 9739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27029,
+ "id": 9740,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -395042,7 +395930,7 @@
{
"title": "Properties",
"children": [
- 27029
+ 9740
]
}
],
@@ -395066,7 +395954,7 @@
}
},
{
- "id": 27030,
+ "id": 9741,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -395106,14 +395994,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27031,
+ "id": 9742,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27032,
+ "id": 9743,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -395145,7 +396033,7 @@
{
"title": "Properties",
"children": [
- 27032
+ 9743
]
}
],
@@ -395185,14 +396073,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27033,
+ "id": 9744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27034,
+ "id": 9745,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -395224,7 +396112,7 @@
{
"title": "Properties",
"children": [
- 27034
+ 9745
]
}
],
@@ -395248,7 +396136,7 @@
}
},
{
- "id": 27035,
+ "id": 9746,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -395298,57 +396186,57 @@
{
"title": "Properties",
"children": [
- 27036,
- 27096,
- 27097,
- 27098,
- 27099,
- 27064,
- 27065,
- 27066,
- 27041,
- 27067,
- 27068,
- 27069,
- 27100,
- 27070,
- 27101,
- 27102,
- 27040,
- 27095,
- 27037,
- 27038,
- 27039,
- 27071,
- 27072,
- 27073,
- 27045,
- 27046,
- 27047,
- 27103,
- 27042,
- 27043,
- 27044,
- 27048,
- 27049,
- 27050,
- 27104,
- 27051,
- 27052,
- 27094,
- 27074,
- 27075,
- 27076,
- 27077,
- 27078,
- 27105,
- 27079,
- 27080,
- 27081,
- 27024,
- 27025,
- 27030,
- 27035
+ 9747,
+ 9807,
+ 9808,
+ 9809,
+ 9810,
+ 9775,
+ 9776,
+ 9777,
+ 9752,
+ 9778,
+ 9779,
+ 9780,
+ 9811,
+ 9781,
+ 9812,
+ 9813,
+ 9751,
+ 9806,
+ 9748,
+ 9749,
+ 9750,
+ 9782,
+ 9783,
+ 9784,
+ 9756,
+ 9757,
+ 9758,
+ 9814,
+ 9753,
+ 9754,
+ 9755,
+ 9759,
+ 9760,
+ 9761,
+ 9815,
+ 9762,
+ 9763,
+ 9805,
+ 9785,
+ 9786,
+ 9787,
+ 9788,
+ 9789,
+ 9816,
+ 9790,
+ 9791,
+ 9792,
+ 9735,
+ 9736,
+ 9741,
+ 9746
]
}
],
@@ -395393,14 +396281,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27106,
+ "id": 9817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27107,
+ "id": 9818,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -395414,7 +396302,7 @@
],
"signatures": [
{
- "id": 27108,
+ "id": 9819,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -395428,7 +396316,7 @@
],
"parameters": [
{
- "id": 27109,
+ "id": 9820,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -395439,14 +396327,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27110,
+ "id": 9821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27111,
+ "id": 9822,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -395470,7 +396358,7 @@
{
"title": "Properties",
"children": [
- 27111
+ 9822
]
}
],
@@ -395552,7 +396440,7 @@
{
"title": "Methods",
"children": [
- 27107
+ 9818
]
}
],
@@ -395593,7 +396481,7 @@
}
},
{
- "id": 27112,
+ "id": 9823,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -395616,7 +396504,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27113,
+ "id": 9824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -395630,7 +396518,7 @@
],
"signatures": [
{
- "id": 27114,
+ "id": 9825,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -395658,7 +396546,7 @@
],
"typeParameters": [
{
- "id": 27115,
+ "id": 9826,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -395669,7 +396557,7 @@
}
},
{
- "id": 27116,
+ "id": 9827,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -395682,7 +396570,7 @@
],
"parameters": [
{
- "id": 27117,
+ "id": 9828,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -395715,7 +396603,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -395735,7 +396623,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -395768,7 +396656,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -395788,7 +396676,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -395808,7 +396696,7 @@
}
},
{
- "id": 27118,
+ "id": 9829,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -395831,7 +396719,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27119,
+ "id": 9830,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -395845,7 +396733,7 @@
],
"signatures": [
{
- "id": 27120,
+ "id": 9831,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -395867,7 +396755,7 @@
}
},
{
- "id": 27121,
+ "id": 9832,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -395890,7 +396778,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27122,
+ "id": 9833,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -395904,7 +396792,7 @@
],
"signatures": [
{
- "id": 27123,
+ "id": 9834,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -395918,7 +396806,7 @@
],
"parameters": [
{
- "id": 27124,
+ "id": 9835,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -395944,7 +396832,7 @@
}
},
{
- "id": 27125,
+ "id": 9836,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -395967,7 +396855,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27126,
+ "id": 9837,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -395978,7 +396866,7 @@
],
"documents": [
{
- "id": 42570,
+ "id": 25511,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -396004,7 +396892,7 @@
"frontmatter": {}
},
{
- "id": 42571,
+ "id": 25512,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -396030,7 +396918,7 @@
"frontmatter": {}
},
{
- "id": 42572,
+ "id": 25513,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -396056,7 +396944,7 @@
"frontmatter": {}
},
{
- "id": 42573,
+ "id": 25514,
"name": "removeClaimItemActionValidationStep",
"variant": "document",
"kind": 8388608,
@@ -396082,7 +396970,7 @@
"frontmatter": {}
},
{
- "id": 42574,
+ "id": 25515,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -396108,7 +396996,7 @@
"frontmatter": {}
},
{
- "id": 42575,
+ "id": 25516,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -396135,21 +397023,21 @@
}
],
"childrenIncludingDocuments": [
- 27017,
- 27112,
- 27118,
- 27121,
- 27125
+ 9728,
+ 9823,
+ 9829,
+ 9832,
+ 9836
],
"groups": [
{
"title": "Properties",
"children": [
- 27017,
- 27112,
- 27118,
- 27121,
- 27125
+ 9728,
+ 9823,
+ 9829,
+ 9832,
+ 9836
]
}
],
@@ -396158,12 +397046,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 139,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L139"
}
],
"signatures": [
{
- "id": 27010,
+ "id": 9721,
"name": "removeItemClaimActionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -396210,12 +397098,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-item-action.ts",
"line": 139,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L139"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-item-action.ts#L139"
}
],
"typeParameters": [
{
- "id": 27011,
+ "id": 9722,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -396226,7 +397114,7 @@
}
},
{
- "id": 27012,
+ "id": 9723,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -396239,7 +397127,7 @@
],
"parameters": [
{
- "id": 27013,
+ "id": 9724,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -396263,14 +397151,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27014,
+ "id": 9725,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27015,
+ "id": 9726,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -396293,7 +397181,7 @@
}
},
{
- "id": 27016,
+ "id": 9727,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -396320,8 +397208,8 @@
{
"title": "Properties",
"children": [
- 27015,
- 27016
+ 9726,
+ 9727
]
}
],
@@ -396414,14 +397302,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -396436,7 +397324,7 @@
]
},
{
- "id": 27129,
+ "id": 9840,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -396454,7 +397342,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L33"
}
],
"type": {
@@ -396468,7 +397356,7 @@
}
},
{
- "id": 27130,
+ "id": 9841,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -396486,7 +397374,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L37"
}
],
"type": {
@@ -396500,7 +397388,7 @@
}
},
{
- "id": 27131,
+ "id": 9842,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -396518,7 +397406,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L41"
}
],
"type": {
@@ -396557,7 +397445,7 @@
}
},
{
- "id": 27132,
+ "id": 9843,
"name": "removeClaimShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -396592,7 +397480,7 @@
},
"children": [
{
- "id": 27141,
+ "id": 9852,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -396610,7 +397498,7 @@
}
},
{
- "id": 27142,
+ "id": 9853,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -396632,8 +397520,8 @@
{
"title": "Properties",
"children": [
- 27141,
- 27142
+ 9852,
+ 9853
]
}
],
@@ -396642,12 +397530,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L72"
}
],
"signatures": [
{
- "id": 27133,
+ "id": 9844,
"name": "removeClaimShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -396685,12 +397573,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L72"
}
],
"parameters": [
{
- "id": 27134,
+ "id": 9845,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -396700,7 +397588,7 @@
"types": [
{
"type": "reference",
- "target": 27127,
+ "target": 9838,
"name": "RemoveClaimShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -396713,7 +397601,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27127,
+ "target": 9838,
"name": "RemoveClaimShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -396746,14 +397634,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27135,
+ "id": 9846,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27136,
+ "id": 9847,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -396767,7 +397655,7 @@
],
"signatures": [
{
- "id": 27137,
+ "id": 9848,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -396781,7 +397669,7 @@
],
"parameters": [
{
- "id": 27138,
+ "id": 9849,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -396792,14 +397680,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27139,
+ "id": 9850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27140,
+ "id": 9851,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -396823,7 +397711,7 @@
{
"title": "Properties",
"children": [
- 27140
+ 9851
]
}
],
@@ -396900,7 +397788,7 @@
{
"title": "Methods",
"children": [
- 27136
+ 9847
]
}
],
@@ -396934,7 +397822,7 @@
]
},
{
- "id": 27143,
+ "id": 9854,
"name": "removeClaimShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -396946,7 +397834,7 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 98,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L98"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L98"
}
],
"type": {
@@ -396956,7 +397844,7 @@
"defaultValue": "\"remove-claim-shipping-method\""
},
{
- "id": 27144,
+ "id": 9855,
"name": "removeClaimShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -397000,7 +397888,7 @@
},
"children": [
{
- "id": 27152,
+ "id": 9863,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -397023,7 +397911,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27153,
+ "id": 9864,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -397037,7 +397925,7 @@
],
"signatures": [
{
- "id": 27154,
+ "id": 9865,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -397065,7 +397953,7 @@
],
"parameters": [
{
- "id": 27155,
+ "id": 9866,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -397081,14 +397969,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27156,
+ "id": 9867,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27157,
+ "id": 9868,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -397148,7 +398036,7 @@
{
"title": "Properties",
"children": [
- 27157
+ 9868
]
}
],
@@ -397169,14 +398057,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27158,
+ "id": 9869,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27171,
+ "id": 9882,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -397222,7 +398110,7 @@
}
},
{
- "id": 27231,
+ "id": 9942,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -397268,7 +398156,7 @@
}
},
{
- "id": 27232,
+ "id": 9943,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -397314,7 +398202,7 @@
}
},
{
- "id": 27233,
+ "id": 9944,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -397371,7 +398259,7 @@
}
},
{
- "id": 27234,
+ "id": 9945,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -397427,7 +398315,7 @@
}
},
{
- "id": 27199,
+ "id": 9910,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -397484,7 +398372,7 @@
}
},
{
- "id": 27200,
+ "id": 9911,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -397541,7 +398429,7 @@
}
},
{
- "id": 27201,
+ "id": 9912,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -397598,7 +398486,7 @@
}
},
{
- "id": 27176,
+ "id": 9887,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -397655,7 +398543,7 @@
}
},
{
- "id": 27202,
+ "id": 9913,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -397701,7 +398589,7 @@
}
},
{
- "id": 27203,
+ "id": 9914,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -397771,7 +398659,7 @@
}
},
{
- "id": 27204,
+ "id": 9915,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -397841,7 +398729,7 @@
}
},
{
- "id": 27235,
+ "id": 9946,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -397917,7 +398805,7 @@
}
},
{
- "id": 27205,
+ "id": 9916,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -397993,7 +398881,7 @@
}
},
{
- "id": 27236,
+ "id": 9947,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -398063,7 +398951,7 @@
}
},
{
- "id": 27237,
+ "id": 9948,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -398120,7 +399008,7 @@
}
},
{
- "id": 27175,
+ "id": 9886,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -398215,7 +399103,7 @@
}
},
{
- "id": 27230,
+ "id": 9941,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -398290,7 +399178,7 @@
}
},
{
- "id": 27172,
+ "id": 9883,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -398359,7 +399247,7 @@
}
},
{
- "id": 27173,
+ "id": 9884,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -398428,7 +399316,7 @@
}
},
{
- "id": 27174,
+ "id": 9885,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -398503,7 +399391,7 @@
}
},
{
- "id": 27206,
+ "id": 9917,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -398559,7 +399447,7 @@
}
},
{
- "id": 27207,
+ "id": 9918,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -398615,7 +399503,7 @@
}
},
{
- "id": 27208,
+ "id": 9919,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -398671,7 +399559,7 @@
}
},
{
- "id": 27180,
+ "id": 9891,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -398727,7 +399615,7 @@
}
},
{
- "id": 27181,
+ "id": 9892,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -398783,7 +399671,7 @@
}
},
{
- "id": 27182,
+ "id": 9893,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -398839,7 +399727,7 @@
}
},
{
- "id": 27238,
+ "id": 9949,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -398895,7 +399783,7 @@
}
},
{
- "id": 27177,
+ "id": 9888,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -398951,7 +399839,7 @@
}
},
{
- "id": 27178,
+ "id": 9889,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -399007,7 +399895,7 @@
}
},
{
- "id": 27179,
+ "id": 9890,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -399063,7 +399951,7 @@
}
},
{
- "id": 27183,
+ "id": 9894,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -399119,7 +400007,7 @@
}
},
{
- "id": 27184,
+ "id": 9895,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -399175,7 +400063,7 @@
}
},
{
- "id": 27185,
+ "id": 9896,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -399231,7 +400119,7 @@
}
},
{
- "id": 27239,
+ "id": 9950,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -399287,7 +400175,7 @@
}
},
{
- "id": 27186,
+ "id": 9897,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -399343,7 +400231,7 @@
}
},
{
- "id": 27187,
+ "id": 9898,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -399399,7 +400287,7 @@
}
},
{
- "id": 27229,
+ "id": 9940,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -399455,7 +400343,7 @@
}
},
{
- "id": 27209,
+ "id": 9920,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -399511,7 +400399,7 @@
}
},
{
- "id": 27210,
+ "id": 9921,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -399567,7 +400455,7 @@
}
},
{
- "id": 27211,
+ "id": 9922,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -399623,7 +400511,7 @@
}
},
{
- "id": 27212,
+ "id": 9923,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -399679,7 +400567,7 @@
}
},
{
- "id": 27213,
+ "id": 9924,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -399735,7 +400623,7 @@
}
},
{
- "id": 27240,
+ "id": 9951,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -399791,7 +400679,7 @@
}
},
{
- "id": 27214,
+ "id": 9925,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -399847,7 +400735,7 @@
}
},
{
- "id": 27215,
+ "id": 9926,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -399903,7 +400791,7 @@
}
},
{
- "id": 27216,
+ "id": 9927,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -399959,7 +400847,7 @@
}
},
{
- "id": 27159,
+ "id": 9870,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -400015,7 +400903,7 @@
}
},
{
- "id": 27160,
+ "id": 9871,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -400055,14 +400943,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27161,
+ "id": 9872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27162,
+ "id": 9873,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -400094,7 +400982,7 @@
{
"title": "Properties",
"children": [
- 27162
+ 9873
]
}
],
@@ -400134,14 +401022,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27163,
+ "id": 9874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27164,
+ "id": 9875,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -400173,7 +401061,7 @@
{
"title": "Properties",
"children": [
- 27164
+ 9875
]
}
],
@@ -400197,7 +401085,7 @@
}
},
{
- "id": 27165,
+ "id": 9876,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -400237,14 +401125,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27166,
+ "id": 9877,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27167,
+ "id": 9878,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -400276,7 +401164,7 @@
{
"title": "Properties",
"children": [
- 27167
+ 9878
]
}
],
@@ -400316,14 +401204,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27168,
+ "id": 9879,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27169,
+ "id": 9880,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -400355,7 +401243,7 @@
{
"title": "Properties",
"children": [
- 27169
+ 9880
]
}
],
@@ -400379,7 +401267,7 @@
}
},
{
- "id": 27170,
+ "id": 9881,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -400429,57 +401317,57 @@
{
"title": "Properties",
"children": [
- 27171,
- 27231,
- 27232,
- 27233,
- 27234,
- 27199,
- 27200,
- 27201,
- 27176,
- 27202,
- 27203,
- 27204,
- 27235,
- 27205,
- 27236,
- 27237,
- 27175,
- 27230,
- 27172,
- 27173,
- 27174,
- 27206,
- 27207,
- 27208,
- 27180,
- 27181,
- 27182,
- 27238,
- 27177,
- 27178,
- 27179,
- 27183,
- 27184,
- 27185,
- 27239,
- 27186,
- 27187,
- 27229,
- 27209,
- 27210,
- 27211,
- 27212,
- 27213,
- 27240,
- 27214,
- 27215,
- 27216,
- 27159,
- 27160,
- 27165,
- 27170
+ 9882,
+ 9942,
+ 9943,
+ 9944,
+ 9945,
+ 9910,
+ 9911,
+ 9912,
+ 9887,
+ 9913,
+ 9914,
+ 9915,
+ 9946,
+ 9916,
+ 9947,
+ 9948,
+ 9886,
+ 9941,
+ 9883,
+ 9884,
+ 9885,
+ 9917,
+ 9918,
+ 9919,
+ 9891,
+ 9892,
+ 9893,
+ 9949,
+ 9888,
+ 9889,
+ 9890,
+ 9894,
+ 9895,
+ 9896,
+ 9950,
+ 9897,
+ 9898,
+ 9940,
+ 9920,
+ 9921,
+ 9922,
+ 9923,
+ 9924,
+ 9951,
+ 9925,
+ 9926,
+ 9927,
+ 9870,
+ 9871,
+ 9876,
+ 9881
]
}
],
@@ -400524,14 +401412,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27241,
+ "id": 9952,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27242,
+ "id": 9953,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -400545,7 +401433,7 @@
],
"signatures": [
{
- "id": 27243,
+ "id": 9954,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -400559,7 +401447,7 @@
],
"parameters": [
{
- "id": 27244,
+ "id": 9955,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -400570,14 +401458,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27245,
+ "id": 9956,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27246,
+ "id": 9957,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -400601,7 +401489,7 @@
{
"title": "Properties",
"children": [
- 27246
+ 9957
]
}
],
@@ -400683,7 +401571,7 @@
{
"title": "Methods",
"children": [
- 27242
+ 9953
]
}
],
@@ -400724,7 +401612,7 @@
}
},
{
- "id": 27247,
+ "id": 9958,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -400747,7 +401635,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27248,
+ "id": 9959,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -400761,7 +401649,7 @@
],
"signatures": [
{
- "id": 27249,
+ "id": 9960,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -400789,7 +401677,7 @@
],
"typeParameters": [
{
- "id": 27250,
+ "id": 9961,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -400800,7 +401688,7 @@
}
},
{
- "id": 27251,
+ "id": 9962,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -400813,7 +401701,7 @@
],
"parameters": [
{
- "id": 27252,
+ "id": 9963,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -400846,7 +401734,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -400866,7 +401754,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -400899,7 +401787,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -400919,7 +401807,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -400939,7 +401827,7 @@
}
},
{
- "id": 27253,
+ "id": 9964,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -400962,7 +401850,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27254,
+ "id": 9965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -400976,7 +401864,7 @@
],
"signatures": [
{
- "id": 27255,
+ "id": 9966,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -400998,7 +401886,7 @@
}
},
{
- "id": 27256,
+ "id": 9967,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -401021,7 +401909,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27257,
+ "id": 9968,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -401035,7 +401923,7 @@
],
"signatures": [
{
- "id": 27258,
+ "id": 9969,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -401049,7 +401937,7 @@
],
"parameters": [
{
- "id": 27259,
+ "id": 9970,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -401075,7 +401963,7 @@
}
},
{
- "id": 27260,
+ "id": 9971,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -401098,7 +401986,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27261,
+ "id": 9972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -401109,7 +401997,7 @@
],
"documents": [
{
- "id": 42576,
+ "id": 25517,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -401135,7 +402023,7 @@
"frontmatter": {}
},
{
- "id": 42577,
+ "id": 25518,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -401161,7 +402049,7 @@
"frontmatter": {}
},
{
- "id": 42578,
+ "id": 25519,
"name": "removeClaimShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -401187,7 +402075,7 @@
"frontmatter": {}
},
{
- "id": 42579,
+ "id": 25520,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -401213,7 +402101,7 @@
"frontmatter": {}
},
{
- "id": 42580,
+ "id": 25521,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -401239,7 +402127,7 @@
"frontmatter": {}
},
{
- "id": 42581,
+ "id": 25522,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -401266,21 +402154,21 @@
}
],
"childrenIncludingDocuments": [
- 27152,
- 27247,
- 27253,
- 27256,
- 27260
+ 9863,
+ 9958,
+ 9964,
+ 9967,
+ 9971
],
"groups": [
{
"title": "Properties",
"children": [
- 27152,
- 27247,
- 27253,
- 27256,
- 27260
+ 9863,
+ 9958,
+ 9964,
+ 9967,
+ 9971
]
}
],
@@ -401289,12 +402177,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L121"
}
],
"signatures": [
{
- "id": 27145,
+ "id": 9856,
"name": "removeClaimShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -401341,12 +402229,12 @@
"fileName": "core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/remove-claim-shipping-method.ts#L121"
}
],
"typeParameters": [
{
- "id": 27146,
+ "id": 9857,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -401357,7 +402245,7 @@
}
},
{
- "id": 27147,
+ "id": 9858,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -401370,7 +402258,7 @@
],
"parameters": [
{
- "id": 27148,
+ "id": 9859,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -401394,14 +402282,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27149,
+ "id": 9860,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27150,
+ "id": 9861,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -401424,7 +402312,7 @@
}
},
{
- "id": 27151,
+ "id": 9862,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -401451,8 +402339,8 @@
{
"title": "Properties",
"children": [
- 27150,
- 27151
+ 9861,
+ 9862
]
}
],
@@ -401545,14 +402433,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -401567,7 +402455,7 @@
]
},
{
- "id": 27264,
+ "id": 9975,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -401585,7 +402473,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L35"
}
],
"type": {
@@ -401599,7 +402487,7 @@
}
},
{
- "id": 27265,
+ "id": 9976,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -401617,7 +402505,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L39"
}
],
"type": {
@@ -401631,7 +402519,7 @@
}
},
{
- "id": 27266,
+ "id": 9977,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -401649,7 +402537,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L43"
}
],
"type": {
@@ -401663,7 +402551,7 @@
}
},
{
- "id": 27267,
+ "id": 9978,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -401681,7 +402569,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 47,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L47"
}
],
"type": {
@@ -401696,7 +402584,7 @@
}
},
{
- "id": 27268,
+ "id": 9979,
"name": "updateClaimAddItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -401731,7 +402619,7 @@
},
"children": [
{
- "id": 27277,
+ "id": 9988,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -401749,7 +402637,7 @@
}
},
{
- "id": 27278,
+ "id": 9989,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -401771,8 +402659,8 @@
{
"title": "Properties",
"children": [
- 27277,
- 27278
+ 9988,
+ 9989
]
}
],
@@ -401781,12 +402669,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L85"
}
],
"signatures": [
{
- "id": 27269,
+ "id": 9980,
"name": "updateClaimAddItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -401824,12 +402712,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L85"
}
],
"parameters": [
{
- "id": 27270,
+ "id": 9981,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -401839,7 +402727,7 @@
"types": [
{
"type": "reference",
- "target": 27262,
+ "target": 9973,
"name": "UpdateClaimAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -401852,7 +402740,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27262,
+ "target": 9973,
"name": "UpdateClaimAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -401885,14 +402773,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27271,
+ "id": 9982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27272,
+ "id": 9983,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -401906,7 +402794,7 @@
],
"signatures": [
{
- "id": 27273,
+ "id": 9984,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -401920,7 +402808,7 @@
],
"parameters": [
{
- "id": 27274,
+ "id": 9985,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -401931,14 +402819,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27275,
+ "id": 9986,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27276,
+ "id": 9987,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -401962,7 +402850,7 @@
{
"title": "Properties",
"children": [
- 27276
+ 9987
]
}
],
@@ -402039,7 +402927,7 @@
{
"title": "Methods",
"children": [
- 27272
+ 9983
]
}
],
@@ -402073,7 +402961,7 @@
]
},
{
- "id": 27279,
+ "id": 9990,
"name": "updateClaimAddItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -402085,7 +402973,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L114"
}
],
"type": {
@@ -402095,7 +402983,7 @@
"defaultValue": "\"update-claim-add-item\""
},
{
- "id": 27280,
+ "id": 9991,
"name": "updateClaimAddItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -402139,7 +403027,7 @@
},
"children": [
{
- "id": 27288,
+ "id": 9999,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -402162,7 +403050,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27289,
+ "id": 10000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -402176,7 +403064,7 @@
],
"signatures": [
{
- "id": 27290,
+ "id": 10001,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -402204,7 +403092,7 @@
],
"parameters": [
{
- "id": 27291,
+ "id": 10002,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -402220,14 +403108,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27292,
+ "id": 10003,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27293,
+ "id": 10004,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -402287,7 +403175,7 @@
{
"title": "Properties",
"children": [
- 27293
+ 10004
]
}
],
@@ -402308,14 +403196,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27294,
+ "id": 10005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27307,
+ "id": 10018,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -402361,7 +403249,7 @@
}
},
{
- "id": 27367,
+ "id": 10078,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -402407,7 +403295,7 @@
}
},
{
- "id": 27368,
+ "id": 10079,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -402453,7 +403341,7 @@
}
},
{
- "id": 27369,
+ "id": 10080,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -402510,7 +403398,7 @@
}
},
{
- "id": 27370,
+ "id": 10081,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -402566,7 +403454,7 @@
}
},
{
- "id": 27335,
+ "id": 10046,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -402623,7 +403511,7 @@
}
},
{
- "id": 27336,
+ "id": 10047,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -402680,7 +403568,7 @@
}
},
{
- "id": 27337,
+ "id": 10048,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -402737,7 +403625,7 @@
}
},
{
- "id": 27312,
+ "id": 10023,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -402794,7 +403682,7 @@
}
},
{
- "id": 27338,
+ "id": 10049,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -402840,7 +403728,7 @@
}
},
{
- "id": 27339,
+ "id": 10050,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -402910,7 +403798,7 @@
}
},
{
- "id": 27340,
+ "id": 10051,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -402980,7 +403868,7 @@
}
},
{
- "id": 27371,
+ "id": 10082,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -403056,7 +403944,7 @@
}
},
{
- "id": 27341,
+ "id": 10052,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -403132,7 +404020,7 @@
}
},
{
- "id": 27372,
+ "id": 10083,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -403202,7 +404090,7 @@
}
},
{
- "id": 27373,
+ "id": 10084,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -403259,7 +404147,7 @@
}
},
{
- "id": 27311,
+ "id": 10022,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -403354,7 +404242,7 @@
}
},
{
- "id": 27366,
+ "id": 10077,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -403429,7 +404317,7 @@
}
},
{
- "id": 27308,
+ "id": 10019,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -403498,7 +404386,7 @@
}
},
{
- "id": 27309,
+ "id": 10020,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -403567,7 +404455,7 @@
}
},
{
- "id": 27310,
+ "id": 10021,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -403642,7 +404530,7 @@
}
},
{
- "id": 27342,
+ "id": 10053,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -403698,7 +404586,7 @@
}
},
{
- "id": 27343,
+ "id": 10054,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -403754,7 +404642,7 @@
}
},
{
- "id": 27344,
+ "id": 10055,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -403810,7 +404698,7 @@
}
},
{
- "id": 27316,
+ "id": 10027,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -403866,7 +404754,7 @@
}
},
{
- "id": 27317,
+ "id": 10028,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -403922,7 +404810,7 @@
}
},
{
- "id": 27318,
+ "id": 10029,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -403978,7 +404866,7 @@
}
},
{
- "id": 27374,
+ "id": 10085,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -404034,7 +404922,7 @@
}
},
{
- "id": 27313,
+ "id": 10024,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -404090,7 +404978,7 @@
}
},
{
- "id": 27314,
+ "id": 10025,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -404146,7 +405034,7 @@
}
},
{
- "id": 27315,
+ "id": 10026,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -404202,7 +405090,7 @@
}
},
{
- "id": 27319,
+ "id": 10030,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -404258,7 +405146,7 @@
}
},
{
- "id": 27320,
+ "id": 10031,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -404314,7 +405202,7 @@
}
},
{
- "id": 27321,
+ "id": 10032,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -404370,7 +405258,7 @@
}
},
{
- "id": 27375,
+ "id": 10086,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -404426,7 +405314,7 @@
}
},
{
- "id": 27322,
+ "id": 10033,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -404482,7 +405370,7 @@
}
},
{
- "id": 27323,
+ "id": 10034,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -404538,7 +405426,7 @@
}
},
{
- "id": 27365,
+ "id": 10076,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -404594,7 +405482,7 @@
}
},
{
- "id": 27345,
+ "id": 10056,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -404650,7 +405538,7 @@
}
},
{
- "id": 27346,
+ "id": 10057,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -404706,7 +405594,7 @@
}
},
{
- "id": 27347,
+ "id": 10058,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -404762,7 +405650,7 @@
}
},
{
- "id": 27348,
+ "id": 10059,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -404818,7 +405706,7 @@
}
},
{
- "id": 27349,
+ "id": 10060,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -404874,7 +405762,7 @@
}
},
{
- "id": 27376,
+ "id": 10087,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -404930,7 +405818,7 @@
}
},
{
- "id": 27350,
+ "id": 10061,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -404986,7 +405874,7 @@
}
},
{
- "id": 27351,
+ "id": 10062,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -405042,7 +405930,7 @@
}
},
{
- "id": 27352,
+ "id": 10063,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -405098,7 +405986,7 @@
}
},
{
- "id": 27295,
+ "id": 10006,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -405154,7 +406042,7 @@
}
},
{
- "id": 27296,
+ "id": 10007,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -405194,14 +406082,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27297,
+ "id": 10008,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27298,
+ "id": 10009,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -405233,7 +406121,7 @@
{
"title": "Properties",
"children": [
- 27298
+ 10009
]
}
],
@@ -405273,14 +406161,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27299,
+ "id": 10010,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27300,
+ "id": 10011,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -405312,7 +406200,7 @@
{
"title": "Properties",
"children": [
- 27300
+ 10011
]
}
],
@@ -405336,7 +406224,7 @@
}
},
{
- "id": 27301,
+ "id": 10012,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -405376,14 +406264,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27302,
+ "id": 10013,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27303,
+ "id": 10014,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -405415,7 +406303,7 @@
{
"title": "Properties",
"children": [
- 27303
+ 10014
]
}
],
@@ -405455,14 +406343,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27304,
+ "id": 10015,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27305,
+ "id": 10016,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -405494,7 +406382,7 @@
{
"title": "Properties",
"children": [
- 27305
+ 10016
]
}
],
@@ -405518,7 +406406,7 @@
}
},
{
- "id": 27306,
+ "id": 10017,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -405568,57 +406456,57 @@
{
"title": "Properties",
"children": [
- 27307,
- 27367,
- 27368,
- 27369,
- 27370,
- 27335,
- 27336,
- 27337,
- 27312,
- 27338,
- 27339,
- 27340,
- 27371,
- 27341,
- 27372,
- 27373,
- 27311,
- 27366,
- 27308,
- 27309,
- 27310,
- 27342,
- 27343,
- 27344,
- 27316,
- 27317,
- 27318,
- 27374,
- 27313,
- 27314,
- 27315,
- 27319,
- 27320,
- 27321,
- 27375,
- 27322,
- 27323,
- 27365,
- 27345,
- 27346,
- 27347,
- 27348,
- 27349,
- 27376,
- 27350,
- 27351,
- 27352,
- 27295,
- 27296,
- 27301,
- 27306
+ 10018,
+ 10078,
+ 10079,
+ 10080,
+ 10081,
+ 10046,
+ 10047,
+ 10048,
+ 10023,
+ 10049,
+ 10050,
+ 10051,
+ 10082,
+ 10052,
+ 10083,
+ 10084,
+ 10022,
+ 10077,
+ 10019,
+ 10020,
+ 10021,
+ 10053,
+ 10054,
+ 10055,
+ 10027,
+ 10028,
+ 10029,
+ 10085,
+ 10024,
+ 10025,
+ 10026,
+ 10030,
+ 10031,
+ 10032,
+ 10086,
+ 10033,
+ 10034,
+ 10076,
+ 10056,
+ 10057,
+ 10058,
+ 10059,
+ 10060,
+ 10087,
+ 10061,
+ 10062,
+ 10063,
+ 10006,
+ 10007,
+ 10012,
+ 10017
]
}
],
@@ -405663,14 +406551,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27377,
+ "id": 10088,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27378,
+ "id": 10089,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -405684,7 +406572,7 @@
],
"signatures": [
{
- "id": 27379,
+ "id": 10090,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -405698,7 +406586,7 @@
],
"parameters": [
{
- "id": 27380,
+ "id": 10091,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -405709,14 +406597,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27381,
+ "id": 10092,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27382,
+ "id": 10093,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -405740,7 +406628,7 @@
{
"title": "Properties",
"children": [
- 27382
+ 10093
]
}
],
@@ -405822,7 +406710,7 @@
{
"title": "Methods",
"children": [
- 27378
+ 10089
]
}
],
@@ -405863,7 +406751,7 @@
}
},
{
- "id": 27383,
+ "id": 10094,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -405886,7 +406774,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27384,
+ "id": 10095,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -405900,7 +406788,7 @@
],
"signatures": [
{
- "id": 27385,
+ "id": 10096,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -405928,7 +406816,7 @@
],
"typeParameters": [
{
- "id": 27386,
+ "id": 10097,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -405939,7 +406827,7 @@
}
},
{
- "id": 27387,
+ "id": 10098,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -405952,7 +406840,7 @@
],
"parameters": [
{
- "id": 27388,
+ "id": 10099,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -405985,7 +406873,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -406005,7 +406893,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -406038,7 +406926,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -406058,7 +406946,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -406078,7 +406966,7 @@
}
},
{
- "id": 27389,
+ "id": 10100,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -406101,7 +406989,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27390,
+ "id": 10101,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -406115,7 +407003,7 @@
],
"signatures": [
{
- "id": 27391,
+ "id": 10102,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -406137,7 +407025,7 @@
}
},
{
- "id": 27392,
+ "id": 10103,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -406160,7 +407048,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27393,
+ "id": 10104,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -406174,7 +407062,7 @@
],
"signatures": [
{
- "id": 27394,
+ "id": 10105,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -406188,7 +407076,7 @@
],
"parameters": [
{
- "id": 27395,
+ "id": 10106,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -406214,7 +407102,7 @@
}
},
{
- "id": 27396,
+ "id": 10107,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -406237,7 +407125,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27397,
+ "id": 10108,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -406248,7 +407136,7 @@
],
"documents": [
{
- "id": 42582,
+ "id": 25523,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -406274,7 +407162,7 @@
"frontmatter": {}
},
{
- "id": 42583,
+ "id": 25524,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -406300,7 +407188,7 @@
"frontmatter": {}
},
{
- "id": 42584,
+ "id": 25525,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -406326,7 +407214,7 @@
"frontmatter": {}
},
{
- "id": 42585,
+ "id": 25526,
"name": "updateClaimAddItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -406352,7 +407240,7 @@
"frontmatter": {}
},
{
- "id": 42586,
+ "id": 25527,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -406378,7 +407266,7 @@
"frontmatter": {}
},
{
- "id": 42587,
+ "id": 25528,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -406405,21 +407293,21 @@
}
],
"childrenIncludingDocuments": [
- 27288,
- 27383,
- 27389,
- 27392,
- 27396
+ 9999,
+ 10094,
+ 10100,
+ 10103,
+ 10107
],
"groups": [
{
"title": "Properties",
"children": [
- 27288,
- 27383,
- 27389,
- 27392,
- 27396
+ 9999,
+ 10094,
+ 10100,
+ 10103,
+ 10107
]
}
],
@@ -406428,12 +407316,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 138,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L138"
}
],
"signatures": [
{
- "id": 27281,
+ "id": 9992,
"name": "updateClaimAddItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -406480,12 +407368,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-add-item.ts",
"line": 138,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-add-item.ts#L138"
}
],
"typeParameters": [
{
- "id": 27282,
+ "id": 9993,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -406496,7 +407384,7 @@
}
},
{
- "id": 27283,
+ "id": 9994,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -406509,7 +407397,7 @@
],
"parameters": [
{
- "id": 27284,
+ "id": 9995,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -406533,14 +407421,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27285,
+ "id": 9996,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27286,
+ "id": 9997,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -406563,7 +407451,7 @@
}
},
{
- "id": 27287,
+ "id": 9998,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -406590,8 +407478,8 @@
{
"title": "Properties",
"children": [
- 27286,
- 27287
+ 9997,
+ 9998
]
}
],
@@ -406684,14 +407572,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -406706,7 +407594,7 @@
]
},
{
- "id": 27400,
+ "id": 10111,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -406724,7 +407612,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L34"
}
],
"type": {
@@ -406738,7 +407626,7 @@
}
},
{
- "id": 27401,
+ "id": 10112,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -406756,7 +407644,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L38"
}
],
"type": {
@@ -406770,7 +407658,7 @@
}
},
{
- "id": 27402,
+ "id": 10113,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -406788,7 +407676,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L42"
}
],
"type": {
@@ -406802,7 +407690,7 @@
}
},
{
- "id": 27403,
+ "id": 10114,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -406820,7 +407708,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L46"
}
],
"type": {
@@ -406835,7 +407723,7 @@
}
},
{
- "id": 27404,
+ "id": 10115,
"name": "updateClaimItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -406870,7 +407758,7 @@
},
"children": [
{
- "id": 27413,
+ "id": 10124,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -406888,7 +407776,7 @@
}
},
{
- "id": 27414,
+ "id": 10125,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -406910,8 +407798,8 @@
{
"title": "Properties",
"children": [
- 27413,
- 27414
+ 10124,
+ 10125
]
}
],
@@ -406920,12 +407808,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 84,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L84"
}
],
"signatures": [
{
- "id": 27405,
+ "id": 10116,
"name": "updateClaimItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -406963,12 +407851,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 84,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L84"
}
],
"parameters": [
{
- "id": 27406,
+ "id": 10117,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -406978,7 +407866,7 @@
"types": [
{
"type": "reference",
- "target": 27398,
+ "target": 10109,
"name": "UpdateClaimItemValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -406991,7 +407879,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27398,
+ "target": 10109,
"name": "UpdateClaimItemValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -407024,14 +407912,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27407,
+ "id": 10118,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27408,
+ "id": 10119,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -407045,7 +407933,7 @@
],
"signatures": [
{
- "id": 27409,
+ "id": 10120,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -407059,7 +407947,7 @@
],
"parameters": [
{
- "id": 27410,
+ "id": 10121,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -407070,14 +407958,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27411,
+ "id": 10122,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27412,
+ "id": 10123,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -407101,7 +407989,7 @@
{
"title": "Properties",
"children": [
- 27412
+ 10123
]
}
],
@@ -407178,7 +408066,7 @@
{
"title": "Methods",
"children": [
- 27408
+ 10119
]
}
],
@@ -407212,7 +408100,7 @@
]
},
{
- "id": 27415,
+ "id": 10126,
"name": "updateClaimItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -407224,7 +408112,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 113,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L113"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L113"
}
],
"type": {
@@ -407234,7 +408122,7 @@
"defaultValue": "\"update-claim-item\""
},
{
- "id": 27416,
+ "id": 10127,
"name": "updateClaimItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -407278,7 +408166,7 @@
},
"children": [
{
- "id": 27424,
+ "id": 10135,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -407301,7 +408189,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27425,
+ "id": 10136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -407315,7 +408203,7 @@
],
"signatures": [
{
- "id": 27426,
+ "id": 10137,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -407343,7 +408231,7 @@
],
"parameters": [
{
- "id": 27427,
+ "id": 10138,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -407359,14 +408247,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27428,
+ "id": 10139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27429,
+ "id": 10140,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -407426,7 +408314,7 @@
{
"title": "Properties",
"children": [
- 27429
+ 10140
]
}
],
@@ -407447,14 +408335,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27430,
+ "id": 10141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27443,
+ "id": 10154,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -407500,7 +408388,7 @@
}
},
{
- "id": 27503,
+ "id": 10214,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -407546,7 +408434,7 @@
}
},
{
- "id": 27504,
+ "id": 10215,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -407592,7 +408480,7 @@
}
},
{
- "id": 27505,
+ "id": 10216,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -407649,7 +408537,7 @@
}
},
{
- "id": 27506,
+ "id": 10217,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -407705,7 +408593,7 @@
}
},
{
- "id": 27471,
+ "id": 10182,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -407762,7 +408650,7 @@
}
},
{
- "id": 27472,
+ "id": 10183,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -407819,7 +408707,7 @@
}
},
{
- "id": 27473,
+ "id": 10184,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -407876,7 +408764,7 @@
}
},
{
- "id": 27448,
+ "id": 10159,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -407933,7 +408821,7 @@
}
},
{
- "id": 27474,
+ "id": 10185,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -407979,7 +408867,7 @@
}
},
{
- "id": 27475,
+ "id": 10186,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -408049,7 +408937,7 @@
}
},
{
- "id": 27476,
+ "id": 10187,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -408119,7 +409007,7 @@
}
},
{
- "id": 27507,
+ "id": 10218,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -408195,7 +409083,7 @@
}
},
{
- "id": 27477,
+ "id": 10188,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -408271,7 +409159,7 @@
}
},
{
- "id": 27508,
+ "id": 10219,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -408341,7 +409229,7 @@
}
},
{
- "id": 27509,
+ "id": 10220,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -408398,7 +409286,7 @@
}
},
{
- "id": 27447,
+ "id": 10158,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -408493,7 +409381,7 @@
}
},
{
- "id": 27502,
+ "id": 10213,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -408568,7 +409456,7 @@
}
},
{
- "id": 27444,
+ "id": 10155,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -408637,7 +409525,7 @@
}
},
{
- "id": 27445,
+ "id": 10156,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -408706,7 +409594,7 @@
}
},
{
- "id": 27446,
+ "id": 10157,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -408781,7 +409669,7 @@
}
},
{
- "id": 27478,
+ "id": 10189,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -408837,7 +409725,7 @@
}
},
{
- "id": 27479,
+ "id": 10190,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -408893,7 +409781,7 @@
}
},
{
- "id": 27480,
+ "id": 10191,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -408949,7 +409837,7 @@
}
},
{
- "id": 27452,
+ "id": 10163,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -409005,7 +409893,7 @@
}
},
{
- "id": 27453,
+ "id": 10164,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -409061,7 +409949,7 @@
}
},
{
- "id": 27454,
+ "id": 10165,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -409117,7 +410005,7 @@
}
},
{
- "id": 27510,
+ "id": 10221,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -409173,7 +410061,7 @@
}
},
{
- "id": 27449,
+ "id": 10160,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -409229,7 +410117,7 @@
}
},
{
- "id": 27450,
+ "id": 10161,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -409285,7 +410173,7 @@
}
},
{
- "id": 27451,
+ "id": 10162,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -409341,7 +410229,7 @@
}
},
{
- "id": 27455,
+ "id": 10166,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -409397,7 +410285,7 @@
}
},
{
- "id": 27456,
+ "id": 10167,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -409453,7 +410341,7 @@
}
},
{
- "id": 27457,
+ "id": 10168,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -409509,7 +410397,7 @@
}
},
{
- "id": 27511,
+ "id": 10222,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -409565,7 +410453,7 @@
}
},
{
- "id": 27458,
+ "id": 10169,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -409621,7 +410509,7 @@
}
},
{
- "id": 27459,
+ "id": 10170,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -409677,7 +410565,7 @@
}
},
{
- "id": 27501,
+ "id": 10212,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -409733,7 +410621,7 @@
}
},
{
- "id": 27481,
+ "id": 10192,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -409789,7 +410677,7 @@
}
},
{
- "id": 27482,
+ "id": 10193,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -409845,7 +410733,7 @@
}
},
{
- "id": 27483,
+ "id": 10194,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -409901,7 +410789,7 @@
}
},
{
- "id": 27484,
+ "id": 10195,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -409957,7 +410845,7 @@
}
},
{
- "id": 27485,
+ "id": 10196,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -410013,7 +410901,7 @@
}
},
{
- "id": 27512,
+ "id": 10223,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -410069,7 +410957,7 @@
}
},
{
- "id": 27486,
+ "id": 10197,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -410125,7 +411013,7 @@
}
},
{
- "id": 27487,
+ "id": 10198,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -410181,7 +411069,7 @@
}
},
{
- "id": 27488,
+ "id": 10199,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -410237,7 +411125,7 @@
}
},
{
- "id": 27431,
+ "id": 10142,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -410293,7 +411181,7 @@
}
},
{
- "id": 27432,
+ "id": 10143,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -410333,14 +411221,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27433,
+ "id": 10144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27434,
+ "id": 10145,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -410372,7 +411260,7 @@
{
"title": "Properties",
"children": [
- 27434
+ 10145
]
}
],
@@ -410412,14 +411300,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27435,
+ "id": 10146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27436,
+ "id": 10147,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -410451,7 +411339,7 @@
{
"title": "Properties",
"children": [
- 27436
+ 10147
]
}
],
@@ -410475,7 +411363,7 @@
}
},
{
- "id": 27437,
+ "id": 10148,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -410515,14 +411403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27438,
+ "id": 10149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27439,
+ "id": 10150,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -410554,7 +411442,7 @@
{
"title": "Properties",
"children": [
- 27439
+ 10150
]
}
],
@@ -410594,14 +411482,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27440,
+ "id": 10151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27441,
+ "id": 10152,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -410633,7 +411521,7 @@
{
"title": "Properties",
"children": [
- 27441
+ 10152
]
}
],
@@ -410657,7 +411545,7 @@
}
},
{
- "id": 27442,
+ "id": 10153,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -410707,57 +411595,57 @@
{
"title": "Properties",
"children": [
- 27443,
- 27503,
- 27504,
- 27505,
- 27506,
- 27471,
- 27472,
- 27473,
- 27448,
- 27474,
- 27475,
- 27476,
- 27507,
- 27477,
- 27508,
- 27509,
- 27447,
- 27502,
- 27444,
- 27445,
- 27446,
- 27478,
- 27479,
- 27480,
- 27452,
- 27453,
- 27454,
- 27510,
- 27449,
- 27450,
- 27451,
- 27455,
- 27456,
- 27457,
- 27511,
- 27458,
- 27459,
- 27501,
- 27481,
- 27482,
- 27483,
- 27484,
- 27485,
- 27512,
- 27486,
- 27487,
- 27488,
- 27431,
- 27432,
- 27437,
- 27442
+ 10154,
+ 10214,
+ 10215,
+ 10216,
+ 10217,
+ 10182,
+ 10183,
+ 10184,
+ 10159,
+ 10185,
+ 10186,
+ 10187,
+ 10218,
+ 10188,
+ 10219,
+ 10220,
+ 10158,
+ 10213,
+ 10155,
+ 10156,
+ 10157,
+ 10189,
+ 10190,
+ 10191,
+ 10163,
+ 10164,
+ 10165,
+ 10221,
+ 10160,
+ 10161,
+ 10162,
+ 10166,
+ 10167,
+ 10168,
+ 10222,
+ 10169,
+ 10170,
+ 10212,
+ 10192,
+ 10193,
+ 10194,
+ 10195,
+ 10196,
+ 10223,
+ 10197,
+ 10198,
+ 10199,
+ 10142,
+ 10143,
+ 10148,
+ 10153
]
}
],
@@ -410802,14 +411690,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27513,
+ "id": 10224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27514,
+ "id": 10225,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -410823,7 +411711,7 @@
],
"signatures": [
{
- "id": 27515,
+ "id": 10226,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -410837,7 +411725,7 @@
],
"parameters": [
{
- "id": 27516,
+ "id": 10227,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -410848,14 +411736,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27517,
+ "id": 10228,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27518,
+ "id": 10229,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -410879,7 +411767,7 @@
{
"title": "Properties",
"children": [
- 27518
+ 10229
]
}
],
@@ -410961,7 +411849,7 @@
{
"title": "Methods",
"children": [
- 27514
+ 10225
]
}
],
@@ -411002,7 +411890,7 @@
}
},
{
- "id": 27519,
+ "id": 10230,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -411025,7 +411913,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27520,
+ "id": 10231,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -411039,7 +411927,7 @@
],
"signatures": [
{
- "id": 27521,
+ "id": 10232,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -411067,7 +411955,7 @@
],
"typeParameters": [
{
- "id": 27522,
+ "id": 10233,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -411078,7 +411966,7 @@
}
},
{
- "id": 27523,
+ "id": 10234,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -411091,7 +411979,7 @@
],
"parameters": [
{
- "id": 27524,
+ "id": 10235,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -411124,7 +412012,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -411144,7 +412032,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -411177,7 +412065,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -411197,7 +412085,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -411217,7 +412105,7 @@
}
},
{
- "id": 27525,
+ "id": 10236,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -411240,7 +412128,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27526,
+ "id": 10237,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -411254,7 +412142,7 @@
],
"signatures": [
{
- "id": 27527,
+ "id": 10238,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -411276,7 +412164,7 @@
}
},
{
- "id": 27528,
+ "id": 10239,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -411299,7 +412187,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27529,
+ "id": 10240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -411313,7 +412201,7 @@
],
"signatures": [
{
- "id": 27530,
+ "id": 10241,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -411327,7 +412215,7 @@
],
"parameters": [
{
- "id": 27531,
+ "id": 10242,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -411353,7 +412241,7 @@
}
},
{
- "id": 27532,
+ "id": 10243,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -411376,7 +412264,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27533,
+ "id": 10244,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -411387,7 +412275,7 @@
],
"documents": [
{
- "id": 42588,
+ "id": 25529,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -411413,7 +412301,7 @@
"frontmatter": {}
},
{
- "id": 42589,
+ "id": 25530,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -411439,7 +412327,7 @@
"frontmatter": {}
},
{
- "id": 42590,
+ "id": 25531,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -411465,7 +412353,7 @@
"frontmatter": {}
},
{
- "id": 42591,
+ "id": 25532,
"name": "updateClaimItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -411491,7 +412379,7 @@
"frontmatter": {}
},
{
- "id": 42592,
+ "id": 25533,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -411517,7 +412405,7 @@
"frontmatter": {}
},
{
- "id": 42593,
+ "id": 25534,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -411544,21 +412432,21 @@
}
],
"childrenIncludingDocuments": [
- 27424,
- 27519,
- 27525,
- 27528,
- 27532
+ 10135,
+ 10230,
+ 10236,
+ 10239,
+ 10243
],
"groups": [
{
"title": "Properties",
"children": [
- 27424,
- 27519,
- 27525,
- 27528,
- 27532
+ 10135,
+ 10230,
+ 10236,
+ 10239,
+ 10243
]
}
],
@@ -411567,12 +412455,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 137,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L137"
}
],
"signatures": [
{
- "id": 27417,
+ "id": 10128,
"name": "updateClaimItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -411619,12 +412507,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-item.ts",
"line": 137,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-item.ts#L137"
}
],
"typeParameters": [
{
- "id": 27418,
+ "id": 10129,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -411635,7 +412523,7 @@
}
},
{
- "id": 27419,
+ "id": 10130,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -411648,7 +412536,7 @@
],
"parameters": [
{
- "id": 27420,
+ "id": 10131,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -411672,14 +412560,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27421,
+ "id": 10132,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27422,
+ "id": 10133,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -411702,7 +412590,7 @@
}
},
{
- "id": 27423,
+ "id": 10134,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -411729,8 +412617,8 @@
{
"title": "Properties",
"children": [
- 27422,
- 27423
+ 10133,
+ 10134
]
}
],
@@ -411823,14 +412711,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -411845,7 +412733,7 @@
]
},
{
- "id": 27536,
+ "id": 10247,
"name": "orderClaim",
"variant": "declaration",
"kind": 1024,
@@ -411863,7 +412751,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L40"
}
],
"type": {
@@ -411877,7 +412765,7 @@
}
},
{
- "id": 27537,
+ "id": 10248,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -411895,7 +412783,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L44"
}
],
"type": {
@@ -411909,7 +412797,7 @@
}
},
{
- "id": 27538,
+ "id": 10249,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -411927,7 +412815,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L48"
}
],
"type": {
@@ -411966,7 +412854,7 @@
}
},
{
- "id": 27539,
+ "id": 10250,
"name": "updateClaimShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -412001,7 +412889,7 @@
},
"children": [
{
- "id": 27548,
+ "id": 10259,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -412019,7 +412907,7 @@
}
},
{
- "id": 27549,
+ "id": 10260,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -412041,8 +412929,8 @@
{
"title": "Properties",
"children": [
- 27548,
- 27549
+ 10259,
+ 10260
]
}
],
@@ -412051,12 +412939,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L82"
}
],
"signatures": [
{
- "id": 27540,
+ "id": 10251,
"name": "updateClaimShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -412094,12 +412982,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L82"
}
],
"parameters": [
{
- "id": 27541,
+ "id": 10252,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -412109,7 +412997,7 @@
"types": [
{
"type": "reference",
- "target": 27534,
+ "target": 10245,
"name": "UpdateClaimShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -412122,7 +413010,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27534,
+ "target": 10245,
"name": "UpdateClaimShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -412155,14 +413043,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27542,
+ "id": 10253,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27543,
+ "id": 10254,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -412176,7 +413064,7 @@
],
"signatures": [
{
- "id": 27544,
+ "id": 10255,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -412190,7 +413078,7 @@
],
"parameters": [
{
- "id": 27545,
+ "id": 10256,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -412201,14 +413089,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27546,
+ "id": 10257,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27547,
+ "id": 10258,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -412232,7 +413120,7 @@
{
"title": "Properties",
"children": [
- 27547
+ 10258
]
}
],
@@ -412309,7 +413197,7 @@
{
"title": "Methods",
"children": [
- 27543
+ 10254
]
}
],
@@ -412343,7 +413231,7 @@
]
},
{
- "id": 27550,
+ "id": 10261,
"name": "updateClaimShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -412355,7 +413243,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 108,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L108"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L108"
}
],
"type": {
@@ -412365,7 +413253,7 @@
"defaultValue": "\"update-claim-shipping-method\""
},
{
- "id": 27551,
+ "id": 10262,
"name": "updateClaimShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -412409,7 +413297,7 @@
},
"children": [
{
- "id": 27559,
+ "id": 10270,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -412432,7 +413320,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27560,
+ "id": 10271,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -412446,7 +413334,7 @@
],
"signatures": [
{
- "id": 27561,
+ "id": 10272,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -412474,7 +413362,7 @@
],
"parameters": [
{
- "id": 27562,
+ "id": 10273,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -412490,14 +413378,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27563,
+ "id": 10274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27564,
+ "id": 10275,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -412585,7 +413473,7 @@
{
"title": "Properties",
"children": [
- 27564
+ 10275
]
}
],
@@ -412606,14 +413494,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27565,
+ "id": 10276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27578,
+ "id": 10289,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -412659,7 +413547,7 @@
}
},
{
- "id": 27638,
+ "id": 10349,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -412705,7 +413593,7 @@
}
},
{
- "id": 27639,
+ "id": 10350,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -412751,7 +413639,7 @@
}
},
{
- "id": 27640,
+ "id": 10351,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -412808,7 +413696,7 @@
}
},
{
- "id": 27641,
+ "id": 10352,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -412864,7 +413752,7 @@
}
},
{
- "id": 27606,
+ "id": 10317,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -412921,7 +413809,7 @@
}
},
{
- "id": 27607,
+ "id": 10318,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -412978,7 +413866,7 @@
}
},
{
- "id": 27608,
+ "id": 10319,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -413035,7 +413923,7 @@
}
},
{
- "id": 27583,
+ "id": 10294,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -413092,7 +413980,7 @@
}
},
{
- "id": 27609,
+ "id": 10320,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -413138,7 +414026,7 @@
}
},
{
- "id": 27610,
+ "id": 10321,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -413208,7 +414096,7 @@
}
},
{
- "id": 27611,
+ "id": 10322,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -413278,7 +414166,7 @@
}
},
{
- "id": 27642,
+ "id": 10353,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -413354,7 +414242,7 @@
}
},
{
- "id": 27612,
+ "id": 10323,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -413430,7 +414318,7 @@
}
},
{
- "id": 27643,
+ "id": 10354,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -413500,7 +414388,7 @@
}
},
{
- "id": 27644,
+ "id": 10355,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -413557,7 +414445,7 @@
}
},
{
- "id": 27582,
+ "id": 10293,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -413652,7 +414540,7 @@
}
},
{
- "id": 27637,
+ "id": 10348,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -413727,7 +414615,7 @@
}
},
{
- "id": 27579,
+ "id": 10290,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -413796,7 +414684,7 @@
}
},
{
- "id": 27580,
+ "id": 10291,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -413865,7 +414753,7 @@
}
},
{
- "id": 27581,
+ "id": 10292,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -413940,7 +414828,7 @@
}
},
{
- "id": 27613,
+ "id": 10324,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -413996,7 +414884,7 @@
}
},
{
- "id": 27614,
+ "id": 10325,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -414052,7 +414940,7 @@
}
},
{
- "id": 27615,
+ "id": 10326,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -414108,7 +414996,7 @@
}
},
{
- "id": 27587,
+ "id": 10298,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -414164,7 +415052,7 @@
}
},
{
- "id": 27588,
+ "id": 10299,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -414220,7 +415108,7 @@
}
},
{
- "id": 27589,
+ "id": 10300,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -414276,7 +415164,7 @@
}
},
{
- "id": 27645,
+ "id": 10356,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -414332,7 +415220,7 @@
}
},
{
- "id": 27584,
+ "id": 10295,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -414388,7 +415276,7 @@
}
},
{
- "id": 27585,
+ "id": 10296,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -414444,7 +415332,7 @@
}
},
{
- "id": 27586,
+ "id": 10297,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -414500,7 +415388,7 @@
}
},
{
- "id": 27590,
+ "id": 10301,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -414556,7 +415444,7 @@
}
},
{
- "id": 27591,
+ "id": 10302,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -414612,7 +415500,7 @@
}
},
{
- "id": 27592,
+ "id": 10303,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -414668,7 +415556,7 @@
}
},
{
- "id": 27646,
+ "id": 10357,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -414724,7 +415612,7 @@
}
},
{
- "id": 27593,
+ "id": 10304,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -414780,7 +415668,7 @@
}
},
{
- "id": 27594,
+ "id": 10305,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -414836,7 +415724,7 @@
}
},
{
- "id": 27636,
+ "id": 10347,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -414892,7 +415780,7 @@
}
},
{
- "id": 27616,
+ "id": 10327,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -414948,7 +415836,7 @@
}
},
{
- "id": 27617,
+ "id": 10328,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -415004,7 +415892,7 @@
}
},
{
- "id": 27618,
+ "id": 10329,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -415060,7 +415948,7 @@
}
},
{
- "id": 27619,
+ "id": 10330,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -415116,7 +416004,7 @@
}
},
{
- "id": 27620,
+ "id": 10331,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -415172,7 +416060,7 @@
}
},
{
- "id": 27647,
+ "id": 10358,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -415228,7 +416116,7 @@
}
},
{
- "id": 27621,
+ "id": 10332,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -415284,7 +416172,7 @@
}
},
{
- "id": 27622,
+ "id": 10333,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -415340,7 +416228,7 @@
}
},
{
- "id": 27623,
+ "id": 10334,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -415396,7 +416284,7 @@
}
},
{
- "id": 27566,
+ "id": 10277,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -415452,7 +416340,7 @@
}
},
{
- "id": 27567,
+ "id": 10278,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -415492,14 +416380,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27568,
+ "id": 10279,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27569,
+ "id": 10280,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -415531,7 +416419,7 @@
{
"title": "Properties",
"children": [
- 27569
+ 10280
]
}
],
@@ -415571,14 +416459,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27570,
+ "id": 10281,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27571,
+ "id": 10282,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -415610,7 +416498,7 @@
{
"title": "Properties",
"children": [
- 27571
+ 10282
]
}
],
@@ -415634,7 +416522,7 @@
}
},
{
- "id": 27572,
+ "id": 10283,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -415674,14 +416562,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27573,
+ "id": 10284,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27574,
+ "id": 10285,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -415713,7 +416601,7 @@
{
"title": "Properties",
"children": [
- 27574
+ 10285
]
}
],
@@ -415753,14 +416641,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27575,
+ "id": 10286,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27576,
+ "id": 10287,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -415792,7 +416680,7 @@
{
"title": "Properties",
"children": [
- 27576
+ 10287
]
}
],
@@ -415816,7 +416704,7 @@
}
},
{
- "id": 27577,
+ "id": 10288,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -415866,57 +416754,57 @@
{
"title": "Properties",
"children": [
- 27578,
- 27638,
- 27639,
- 27640,
- 27641,
- 27606,
- 27607,
- 27608,
- 27583,
- 27609,
- 27610,
- 27611,
- 27642,
- 27612,
- 27643,
- 27644,
- 27582,
- 27637,
- 27579,
- 27580,
- 27581,
- 27613,
- 27614,
- 27615,
- 27587,
- 27588,
- 27589,
- 27645,
- 27584,
- 27585,
- 27586,
- 27590,
- 27591,
- 27592,
- 27646,
- 27593,
- 27594,
- 27636,
- 27616,
- 27617,
- 27618,
- 27619,
- 27620,
- 27647,
- 27621,
- 27622,
- 27623,
- 27566,
- 27567,
- 27572,
- 27577
+ 10289,
+ 10349,
+ 10350,
+ 10351,
+ 10352,
+ 10317,
+ 10318,
+ 10319,
+ 10294,
+ 10320,
+ 10321,
+ 10322,
+ 10353,
+ 10323,
+ 10354,
+ 10355,
+ 10293,
+ 10348,
+ 10290,
+ 10291,
+ 10292,
+ 10324,
+ 10325,
+ 10326,
+ 10298,
+ 10299,
+ 10300,
+ 10356,
+ 10295,
+ 10296,
+ 10297,
+ 10301,
+ 10302,
+ 10303,
+ 10357,
+ 10304,
+ 10305,
+ 10347,
+ 10327,
+ 10328,
+ 10329,
+ 10330,
+ 10331,
+ 10358,
+ 10332,
+ 10333,
+ 10334,
+ 10277,
+ 10278,
+ 10283,
+ 10288
]
}
],
@@ -415961,14 +416849,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27648,
+ "id": 10359,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27649,
+ "id": 10360,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -415982,7 +416870,7 @@
],
"signatures": [
{
- "id": 27650,
+ "id": 10361,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -415996,7 +416884,7 @@
],
"parameters": [
{
- "id": 27651,
+ "id": 10362,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -416007,14 +416895,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27652,
+ "id": 10363,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27653,
+ "id": 10364,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -416038,7 +416926,7 @@
{
"title": "Properties",
"children": [
- 27653
+ 10364
]
}
],
@@ -416120,7 +417008,7 @@
{
"title": "Methods",
"children": [
- 27649
+ 10360
]
}
],
@@ -416161,7 +417049,7 @@
}
},
{
- "id": 27654,
+ "id": 10365,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -416184,7 +417072,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27655,
+ "id": 10366,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -416198,7 +417086,7 @@
],
"signatures": [
{
- "id": 27656,
+ "id": 10367,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -416226,7 +417114,7 @@
],
"typeParameters": [
{
- "id": 27657,
+ "id": 10368,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -416237,7 +417125,7 @@
}
},
{
- "id": 27658,
+ "id": 10369,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -416250,7 +417138,7 @@
],
"parameters": [
{
- "id": 27659,
+ "id": 10370,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -416283,7 +417171,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -416317,7 +417205,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -416350,7 +417238,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -416370,7 +417258,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -416390,7 +417278,7 @@
}
},
{
- "id": 27660,
+ "id": 10371,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -416413,7 +417301,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27661,
+ "id": 10372,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -416427,7 +417315,7 @@
],
"signatures": [
{
- "id": 27662,
+ "id": 10373,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -416449,7 +417337,7 @@
}
},
{
- "id": 27663,
+ "id": 10374,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -416472,7 +417360,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27664,
+ "id": 10375,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -416486,7 +417374,7 @@
],
"signatures": [
{
- "id": 27665,
+ "id": 10376,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -416500,7 +417388,7 @@
],
"parameters": [
{
- "id": 27666,
+ "id": 10377,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -416526,7 +417414,7 @@
}
},
{
- "id": 27667,
+ "id": 10378,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -416549,14 +417437,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27668,
+ "id": 10379,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27669,
+ "id": 10380,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -416564,7 +417452,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27670,
+ "id": 10381,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -416578,7 +417466,7 @@
],
"signatures": [
{
- "id": 27671,
+ "id": 10382,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -416592,7 +417480,7 @@
],
"typeParameters": [
{
- "id": 27672,
+ "id": 10383,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -416601,7 +417489,7 @@
],
"parameters": [
{
- "id": 27673,
+ "id": 10384,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -416616,14 +417504,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27674,
+ "id": 10385,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27675,
+ "id": 10386,
"name": "order_claim",
"variant": "declaration",
"kind": 1024,
@@ -416633,7 +417521,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L206"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L206"
}
],
"type": {
@@ -416648,7 +417536,7 @@
"defaultValue": "orderClaim"
},
{
- "id": 27676,
+ "id": 10387,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -416658,7 +417546,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 207,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L207"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L207"
}
],
"type": {
@@ -416673,7 +417561,7 @@
"defaultValue": "orderChange"
},
{
- "id": 27677,
+ "id": 10388,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -416691,7 +417579,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 208,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L208"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L208"
}
],
"type": {
@@ -416714,9 +417602,9 @@
{
"title": "Properties",
"children": [
- 27675,
- 27676,
- 27677
+ 10386,
+ 10387,
+ 10388
]
}
],
@@ -416725,7 +417613,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 205,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L205"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L205"
}
]
}
@@ -416760,7 +417648,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -416771,7 +417659,7 @@
}
},
{
- "id": 27678,
+ "id": 10389,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -416787,7 +417675,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -416808,7 +417696,7 @@
}
},
{
- "id": 42596,
+ "id": 25537,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -416875,14 +417763,14 @@
},
"signatures": [
{
- "id": 42597,
+ "id": 25538,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42598,
+ "id": 25539,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -416897,7 +417785,7 @@
},
"type": {
"type": "reference",
- "target": 27674,
+ "target": 10385,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -416911,13 +417799,13 @@
{
"title": "Properties",
"children": [
- 27669
+ 10380
]
},
{
"title": "Functions",
"children": [
- 42596
+ 25537
]
}
],
@@ -416934,7 +417822,7 @@
],
"documents": [
{
- "id": 42594,
+ "id": 25535,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -416960,7 +417848,7 @@
"frontmatter": {}
},
{
- "id": 42595,
+ "id": 25536,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -416986,7 +417874,7 @@
"frontmatter": {}
},
{
- "id": 42599,
+ "id": 25540,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -417012,7 +417900,7 @@
"frontmatter": {}
},
{
- "id": 42600,
+ "id": 25541,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -417047,7 +417935,7 @@
"frontmatter": {},
"children": [
{
- "id": 42601,
+ "id": 25542,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -417073,7 +417961,7 @@
"frontmatter": {}
},
{
- "id": 42602,
+ "id": 25543,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -417101,7 +417989,7 @@
]
},
{
- "id": 42603,
+ "id": 25544,
"name": "updateClaimShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -417127,7 +418015,7 @@
"frontmatter": {}
},
{
- "id": 42604,
+ "id": 25545,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -417153,7 +418041,7 @@
"frontmatter": {}
},
{
- "id": 42605,
+ "id": 25546,
"name": "updateOrderShippingMethodsStep",
"variant": "document",
"kind": 8388608,
@@ -417180,21 +418068,21 @@
}
],
"childrenIncludingDocuments": [
- 27559,
- 27654,
- 27660,
- 27663,
- 27667
+ 10270,
+ 10365,
+ 10371,
+ 10374,
+ 10378
],
"groups": [
{
"title": "Properties",
"children": [
- 27559,
- 27654,
- 27660,
- 27663,
- 27667
+ 10270,
+ 10365,
+ 10371,
+ 10374,
+ 10378
]
}
],
@@ -417203,12 +418091,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L169"
}
],
"signatures": [
{
- "id": 27552,
+ "id": 10263,
"name": "updateClaimShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -417255,12 +418143,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L169"
}
],
"typeParameters": [
{
- "id": 27553,
+ "id": 10264,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -417271,7 +418159,7 @@
}
},
{
- "id": 27554,
+ "id": 10265,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -417284,7 +418172,7 @@
],
"parameters": [
{
- "id": 27555,
+ "id": 10266,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -417308,14 +418196,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27556,
+ "id": 10267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27557,
+ "id": 10268,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -417338,7 +418226,7 @@
}
},
{
- "id": 27558,
+ "id": 10269,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -417365,8 +418253,8 @@
{
"title": "Properties",
"children": [
- 27557,
- 27558
+ 10268,
+ 10269
]
}
],
@@ -417473,14 +418361,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -417495,14 +418383,14 @@
]
},
{
- "id": 27674,
+ "id": 10385,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27675,
+ "id": 10386,
"name": "order_claim",
"variant": "declaration",
"kind": 1024,
@@ -417512,7 +418400,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L206"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L206"
}
],
"type": {
@@ -417527,7 +418415,7 @@
"defaultValue": "orderClaim"
},
{
- "id": 27676,
+ "id": 10387,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -417537,7 +418425,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 207,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L207"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L207"
}
],
"type": {
@@ -417552,7 +418440,7 @@
"defaultValue": "orderChange"
},
{
- "id": 27677,
+ "id": 10388,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -417570,7 +418458,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 208,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L208"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L208"
}
],
"type": {
@@ -417593,9 +418481,9 @@
{
"title": "Properties",
"children": [
- 27675,
- 27676,
- 27677
+ 10386,
+ 10387,
+ 10388
]
}
],
@@ -417604,12 +418492,12 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 205,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L205"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L205"
}
]
},
{
- "id": 27675,
+ "id": 10386,
"name": "order_claim",
"variant": "declaration",
"kind": 1024,
@@ -417619,7 +418507,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L206"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L206"
}
],
"type": {
@@ -417634,7 +418522,7 @@
"defaultValue": "orderClaim"
},
{
- "id": 27676,
+ "id": 10387,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -417644,7 +418532,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 207,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L207"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L207"
}
],
"type": {
@@ -417659,7 +418547,7 @@
"defaultValue": "orderChange"
},
{
- "id": 27677,
+ "id": 10388,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -417677,7 +418565,7 @@
"fileName": "core-flows/src/order/workflows/claim/update-claim-shipping-method.ts",
"line": 208,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L208"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/claim/update-claim-shipping-method.ts#L208"
}
],
"type": {
@@ -417696,7 +418584,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 27681,
+ "id": 10392,
"name": "orderIds",
"variant": "declaration",
"kind": 1024,
@@ -417714,7 +418602,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L20"
}
],
"type": {
@@ -417726,7 +418614,7 @@
}
},
{
- "id": 27682,
+ "id": 10393,
"name": "completeOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -417738,7 +418626,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L23"
}
],
"type": {
@@ -417748,7 +418636,7 @@
"defaultValue": "\"complete-order-workflow\""
},
{
- "id": 27683,
+ "id": 10394,
"name": "completeOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -417809,7 +418697,7 @@
},
"children": [
{
- "id": 27691,
+ "id": 10402,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -417832,7 +418720,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27692,
+ "id": 10403,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -417846,7 +418734,7 @@
],
"signatures": [
{
- "id": 27693,
+ "id": 10404,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -417874,7 +418762,7 @@
],
"parameters": [
{
- "id": 27694,
+ "id": 10405,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -417890,14 +418778,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27695,
+ "id": 10406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27696,
+ "id": 10407,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -417922,7 +418810,7 @@
"types": [
{
"type": "reference",
- "target": 27679,
+ "target": 10390,
"name": "CompleteOrdersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -417935,7 +418823,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27679,
+ "target": 10390,
"name": "CompleteOrdersWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -417951,7 +418839,7 @@
{
"title": "Properties",
"children": [
- 27696
+ 10407
]
}
],
@@ -418044,14 +418932,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27697,
+ "id": 10408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27698,
+ "id": 10409,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -418065,7 +418953,7 @@
],
"signatures": [
{
- "id": 27699,
+ "id": 10410,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -418079,7 +418967,7 @@
],
"parameters": [
{
- "id": 27700,
+ "id": 10411,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -418090,14 +418978,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27701,
+ "id": 10412,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27702,
+ "id": 10413,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -418121,7 +419009,7 @@
{
"title": "Properties",
"children": [
- 27702
+ 10413
]
}
],
@@ -418206,7 +419094,7 @@
{
"title": "Methods",
"children": [
- 27698
+ 10409
]
}
],
@@ -418250,7 +419138,7 @@
}
},
{
- "id": 27703,
+ "id": 10414,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -418273,7 +419161,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27704,
+ "id": 10415,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -418287,7 +419175,7 @@
],
"signatures": [
{
- "id": 27705,
+ "id": 10416,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -418315,7 +419203,7 @@
],
"typeParameters": [
{
- "id": 27706,
+ "id": 10417,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -418326,7 +419214,7 @@
}
},
{
- "id": 27707,
+ "id": 10418,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -418339,7 +419227,7 @@
],
"parameters": [
{
- "id": 27708,
+ "id": 10419,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -418372,7 +419260,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -418383,13 +419271,13 @@
},
"trueType": {
"type": "reference",
- "target": 27679,
+ "target": 10390,
"name": "CompleteOrdersWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -418422,7 +419310,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -418445,7 +419333,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -418465,7 +419353,7 @@
}
},
{
- "id": 27709,
+ "id": 10420,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -418488,7 +419376,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27710,
+ "id": 10421,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -418502,7 +419390,7 @@
],
"signatures": [
{
- "id": 27711,
+ "id": 10422,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -418524,7 +419412,7 @@
}
},
{
- "id": 27712,
+ "id": 10423,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -418547,7 +419435,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27713,
+ "id": 10424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -418561,7 +419449,7 @@
],
"signatures": [
{
- "id": 27714,
+ "id": 10425,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -418575,7 +419463,7 @@
],
"parameters": [
{
- "id": 27715,
+ "id": 10426,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -418601,7 +419489,7 @@
}
},
{
- "id": 27716,
+ "id": 10427,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -418624,14 +419512,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27717,
+ "id": 10428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27718,
+ "id": 10429,
"name": "ordersCompleted",
"variant": "declaration",
"kind": 1024,
@@ -418639,7 +419527,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27719,
+ "id": 10430,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -418653,7 +419541,7 @@
],
"signatures": [
{
- "id": 27720,
+ "id": 10431,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -418667,7 +419555,7 @@
],
"typeParameters": [
{
- "id": 27721,
+ "id": 10432,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -418676,7 +419564,7 @@
],
"parameters": [
{
- "id": 27722,
+ "id": 10433,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -418691,14 +419579,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27723,
+ "id": 10434,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27724,
+ "id": 10435,
"name": "orders",
"variant": "declaration",
"kind": 1024,
@@ -418708,7 +419596,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L64"
}
],
"type": {
@@ -418789,14 +419677,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27725,
+ "id": 10436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27726,
+ "id": 10437,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -418810,7 +419698,7 @@
],
"signatures": [
{
- "id": 27727,
+ "id": 10438,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -418824,7 +419712,7 @@
],
"parameters": [
{
- "id": 27728,
+ "id": 10439,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -418835,14 +419723,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27729,
+ "id": 10440,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27730,
+ "id": 10441,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -418866,7 +419754,7 @@
{
"title": "Properties",
"children": [
- 27730
+ 10441
]
}
],
@@ -418951,7 +419839,7 @@
{
"title": "Methods",
"children": [
- 27726
+ 10437
]
}
],
@@ -418992,7 +419880,7 @@
"defaultValue": "completedOrders"
},
{
- "id": 27731,
+ "id": 10442,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -419010,7 +419898,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L65"
}
],
"type": {
@@ -419033,8 +419921,8 @@
{
"title": "Properties",
"children": [
- 27724,
- 27731
+ 10435,
+ 10442
]
}
],
@@ -419043,7 +419931,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 63,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L63"
}
]
}
@@ -419054,7 +419942,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -419065,7 +419953,7 @@
}
},
{
- "id": 27732,
+ "id": 10443,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -419081,7 +419969,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -419102,7 +419990,7 @@
}
},
{
- "id": 42608,
+ "id": 25549,
"name": "ordersCompleted",
"variant": "declaration",
"kind": 64,
@@ -419137,14 +420025,14 @@
},
"signatures": [
{
- "id": 42609,
+ "id": 25550,
"name": "ordersCompleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42610,
+ "id": 25551,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -419159,7 +420047,7 @@
},
"type": {
"type": "reference",
- "target": 27723,
+ "target": 10434,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -419173,13 +420061,13 @@
{
"title": "Properties",
"children": [
- 27718
+ 10429
]
},
{
"title": "Functions",
"children": [
- 42608
+ 25549
]
}
],
@@ -419196,7 +420084,7 @@
],
"documents": [
{
- "id": 42606,
+ "id": 25547,
"name": "completeOrdersStep",
"variant": "document",
"kind": 8388608,
@@ -419222,7 +420110,7 @@
"frontmatter": {}
},
{
- "id": 42607,
+ "id": 25548,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -419248,7 +420136,7 @@
"frontmatter": {}
},
{
- "id": 42611,
+ "id": 25552,
"name": "ordersCompleted",
"variant": "document",
"kind": 8388608,
@@ -419275,21 +420163,21 @@
}
],
"childrenIncludingDocuments": [
- 27691,
- 27703,
- 27709,
- 27712,
- 27716
+ 10402,
+ 10414,
+ 10420,
+ 10423,
+ 10427
],
"groups": [
{
"title": "Properties",
"children": [
- 27691,
- 27703,
- 27709,
- 27712,
- 27716
+ 10402,
+ 10414,
+ 10420,
+ 10423,
+ 10427
]
}
],
@@ -419298,12 +420186,12 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L49"
}
],
"signatures": [
{
- "id": 27684,
+ "id": 10395,
"name": "completeOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -419367,12 +420255,12 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L49"
}
],
"typeParameters": [
{
- "id": 27685,
+ "id": 10396,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -419383,7 +420271,7 @@
}
},
{
- "id": 27686,
+ "id": 10397,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -419396,7 +420284,7 @@
],
"parameters": [
{
- "id": 27687,
+ "id": 10398,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -419420,14 +420308,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27688,
+ "id": 10399,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27689,
+ "id": 10400,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -419450,7 +420338,7 @@
}
},
{
- "id": 27690,
+ "id": 10401,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -419477,8 +420365,8 @@
{
"title": "Properties",
"children": [
- 27689,
- 27690
+ 10400,
+ 10401
]
}
],
@@ -419553,7 +420441,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27679,
+ "target": 10390,
"name": "CompleteOrdersWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -419571,14 +420459,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -419593,14 +420481,14 @@
]
},
{
- "id": 27723,
+ "id": 10434,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27724,
+ "id": 10435,
"name": "orders",
"variant": "declaration",
"kind": 1024,
@@ -419610,7 +420498,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L64"
}
],
"type": {
@@ -419691,14 +420579,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27725,
+ "id": 10436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27726,
+ "id": 10437,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -419712,7 +420600,7 @@
],
"signatures": [
{
- "id": 27727,
+ "id": 10438,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -419726,7 +420614,7 @@
],
"parameters": [
{
- "id": 27728,
+ "id": 10439,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -419737,14 +420625,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27729,
+ "id": 10440,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27730,
+ "id": 10441,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -419768,7 +420656,7 @@
{
"title": "Properties",
"children": [
- 27730
+ 10441
]
}
],
@@ -419853,7 +420741,7 @@
{
"title": "Methods",
"children": [
- 27726
+ 10437
]
}
],
@@ -419894,7 +420782,7 @@
"defaultValue": "completedOrders"
},
{
- "id": 27731,
+ "id": 10442,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -419912,7 +420800,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L65"
}
],
"type": {
@@ -419935,8 +420823,8 @@
{
"title": "Properties",
"children": [
- 27724,
- 27731
+ 10435,
+ 10442
]
}
],
@@ -419945,12 +420833,12 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 63,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L63"
}
]
},
{
- "id": 27724,
+ "id": 10435,
"name": "orders",
"variant": "declaration",
"kind": 1024,
@@ -419960,7 +420848,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L64"
}
],
"type": {
@@ -420041,14 +420929,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27725,
+ "id": 10436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27726,
+ "id": 10437,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -420062,7 +420950,7 @@
],
"signatures": [
{
- "id": 27727,
+ "id": 10438,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -420076,7 +420964,7 @@
],
"parameters": [
{
- "id": 27728,
+ "id": 10439,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -420087,14 +420975,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27729,
+ "id": 10440,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27730,
+ "id": 10441,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -420118,7 +421006,7 @@
{
"title": "Properties",
"children": [
- 27730
+ 10441
]
}
],
@@ -420203,7 +421091,7 @@
{
"title": "Methods",
"children": [
- 27726
+ 10437
]
}
],
@@ -420244,7 +421132,7 @@
"defaultValue": "completedOrders"
},
{
- "id": 27731,
+ "id": 10442,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -420262,7 +421150,7 @@
"fileName": "core-flows/src/order/workflows/complete-orders.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/complete-orders.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/complete-orders.ts#L65"
}
],
"type": {
@@ -420281,7 +421169,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 27735,
+ "id": 10446,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -420299,7 +421187,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L70"
}
],
"type": {
@@ -420313,7 +421201,7 @@
}
},
{
- "id": 27736,
+ "id": 10447,
"name": "inputItems",
"variant": "declaration",
"kind": 1024,
@@ -420331,7 +421219,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L74"
}
],
"type": {
@@ -420353,7 +421241,7 @@
}
},
{
- "id": 27737,
+ "id": 10448,
"name": "createFulfillmentValidateOrder",
"variant": "declaration",
"kind": 64,
@@ -420388,7 +421276,7 @@
},
"children": [
{
- "id": 27746,
+ "id": 10457,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -420406,7 +421294,7 @@
}
},
{
- "id": 27747,
+ "id": 10458,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -420428,8 +421316,8 @@
{
"title": "Properties",
"children": [
- 27746,
- 27747
+ 10457,
+ 10458
]
}
],
@@ -420438,12 +421326,12 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L103"
}
],
"signatures": [
{
- "id": 27738,
+ "id": 10449,
"name": "createFulfillmentValidateOrder",
"variant": "signature",
"kind": 4096,
@@ -420481,12 +421369,12 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L103"
}
],
"parameters": [
{
- "id": 27739,
+ "id": 10450,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -420496,7 +421384,7 @@
"types": [
{
"type": "reference",
- "target": 27733,
+ "target": 10444,
"name": "CreateFulfillmentValidateOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -420509,7 +421397,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27733,
+ "target": 10444,
"name": "CreateFulfillmentValidateOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -420542,14 +421430,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27740,
+ "id": 10451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27741,
+ "id": 10452,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -420563,7 +421451,7 @@
],
"signatures": [
{
- "id": 27742,
+ "id": 10453,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -420577,7 +421465,7 @@
],
"parameters": [
{
- "id": 27743,
+ "id": 10454,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -420588,14 +421476,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27744,
+ "id": 10455,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27745,
+ "id": 10456,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -420619,7 +421507,7 @@
{
"title": "Properties",
"children": [
- 27745
+ 10456
]
}
],
@@ -420696,7 +421584,7 @@
{
"title": "Methods",
"children": [
- 27741
+ 10452
]
}
],
@@ -420730,7 +421618,7 @@
]
},
{
- "id": 27749,
+ "id": 10460,
"name": "createOrderFulfillmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -420742,7 +421630,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 362,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L362"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L362"
}
],
"type": {
@@ -420752,7 +421640,7 @@
"defaultValue": "\"create-order-fulfillment\""
},
{
- "id": 27750,
+ "id": 10461,
"name": "createOrderFulfillmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -420822,7 +421710,7 @@
},
"children": [
{
- "id": 27758,
+ "id": 10469,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -420845,7 +421733,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27759,
+ "id": 10470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -420859,7 +421747,7 @@
],
"signatures": [
{
- "id": 27760,
+ "id": 10471,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -420887,7 +421775,7 @@
],
"parameters": [
{
- "id": 27761,
+ "id": 10472,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -420903,14 +421791,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27762,
+ "id": 10473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27763,
+ "id": 10474,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -420935,7 +421823,7 @@
"types": [
{
"type": "reference",
- "target": 27748,
+ "target": 10459,
"name": "CreateOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -420948,7 +421836,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27748,
+ "target": 10459,
"name": "CreateOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -420964,7 +421852,7 @@
{
"title": "Properties",
"children": [
- 27763
+ 10474
]
}
],
@@ -420985,14 +421873,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27764,
+ "id": 10475,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27765,
+ "id": 10476,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -421038,7 +421926,7 @@
}
},
{
- "id": 27766,
+ "id": 10477,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -421084,7 +421972,7 @@
}
},
{
- "id": 27767,
+ "id": 10478,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -421153,7 +422041,7 @@
}
},
{
- "id": 27768,
+ "id": 10479,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -421222,7 +422110,7 @@
}
},
{
- "id": 27769,
+ "id": 10480,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -421291,7 +422179,7 @@
}
},
{
- "id": 27770,
+ "id": 10481,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -421360,7 +422248,7 @@
}
},
{
- "id": 27771,
+ "id": 10482,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -421425,7 +422313,7 @@
}
},
{
- "id": 27772,
+ "id": 10483,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -421490,7 +422378,7 @@
}
},
{
- "id": 27773,
+ "id": 10484,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -421579,7 +422467,7 @@
}
},
{
- "id": 27774,
+ "id": 10485,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -421625,7 +422513,7 @@
}
},
{
- "id": 27775,
+ "id": 10486,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -421684,7 +422572,7 @@
}
},
{
- "id": 27776,
+ "id": 10487,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -421773,7 +422661,7 @@
}
},
{
- "id": 27777,
+ "id": 10488,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -421842,7 +422730,7 @@
}
},
{
- "id": 27778,
+ "id": 10489,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -421888,7 +422776,7 @@
}
},
{
- "id": 27779,
+ "id": 10490,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -421944,7 +422832,7 @@
}
},
{
- "id": 27780,
+ "id": 10491,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -422000,7 +422888,7 @@
}
},
{
- "id": 27781,
+ "id": 10492,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -422062,7 +422950,7 @@
}
},
{
- "id": 27782,
+ "id": 10493,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -422124,7 +423012,7 @@
}
},
{
- "id": 27783,
+ "id": 10494,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -422180,7 +423068,7 @@
}
},
{
- "id": 27784,
+ "id": 10495,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -422236,7 +423124,7 @@
}
},
{
- "id": 27785,
+ "id": 10496,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -422309,27 +423197,27 @@
{
"title": "Properties",
"children": [
- 27765,
- 27766,
- 27767,
- 27768,
- 27769,
- 27770,
- 27771,
- 27772,
- 27773,
- 27774,
- 27775,
- 27776,
- 27777,
- 27778,
- 27779,
- 27780,
- 27781,
- 27782,
- 27783,
- 27784,
- 27785
+ 10476,
+ 10477,
+ 10478,
+ 10479,
+ 10480,
+ 10481,
+ 10482,
+ 10483,
+ 10484,
+ 10485,
+ 10486,
+ 10487,
+ 10488,
+ 10489,
+ 10490,
+ 10491,
+ 10492,
+ 10493,
+ 10494,
+ 10495,
+ 10496
]
}
],
@@ -422374,14 +423262,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27786,
+ "id": 10497,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27787,
+ "id": 10498,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -422395,7 +423283,7 @@
],
"signatures": [
{
- "id": 27788,
+ "id": 10499,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -422409,7 +423297,7 @@
],
"parameters": [
{
- "id": 27789,
+ "id": 10500,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -422420,14 +423308,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27790,
+ "id": 10501,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27791,
+ "id": 10502,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -422451,7 +423339,7 @@
{
"title": "Properties",
"children": [
- 27791
+ 10502
]
}
],
@@ -422533,7 +423421,7 @@
{
"title": "Methods",
"children": [
- 27787
+ 10498
]
}
],
@@ -422574,7 +423462,7 @@
}
},
{
- "id": 27792,
+ "id": 10503,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -422597,7 +423485,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27793,
+ "id": 10504,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -422611,7 +423499,7 @@
],
"signatures": [
{
- "id": 27794,
+ "id": 10505,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -422639,7 +423527,7 @@
],
"typeParameters": [
{
- "id": 27795,
+ "id": 10506,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -422650,7 +423538,7 @@
}
},
{
- "id": 27796,
+ "id": 10507,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -422663,7 +423551,7 @@
],
"parameters": [
{
- "id": 27797,
+ "id": 10508,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -422696,7 +423584,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -422707,13 +423595,13 @@
},
"trueType": {
"type": "reference",
- "target": 27748,
+ "target": 10459,
"name": "CreateOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -422746,7 +423634,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -422766,7 +423654,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -422786,7 +423674,7 @@
}
},
{
- "id": 27798,
+ "id": 10509,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -422809,7 +423697,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27799,
+ "id": 10510,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -422823,7 +423711,7 @@
],
"signatures": [
{
- "id": 27800,
+ "id": 10511,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -422845,7 +423733,7 @@
}
},
{
- "id": 27801,
+ "id": 10512,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -422868,7 +423756,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27802,
+ "id": 10513,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -422882,7 +423770,7 @@
],
"signatures": [
{
- "id": 27803,
+ "id": 10514,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -422896,7 +423784,7 @@
],
"parameters": [
{
- "id": 27804,
+ "id": 10515,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -422922,7 +423810,7 @@
}
},
{
- "id": 27805,
+ "id": 10516,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -422945,14 +423833,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27806,
+ "id": 10517,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27807,
+ "id": 10518,
"name": "fulfillmentCreated",
"variant": "declaration",
"kind": 1024,
@@ -422960,7 +423848,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27808,
+ "id": 10519,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -422974,7 +423862,7 @@
],
"signatures": [
{
- "id": 27809,
+ "id": 10520,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -422988,7 +423876,7 @@
],
"typeParameters": [
{
- "id": 27810,
+ "id": 10521,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -422997,7 +423885,7 @@
],
"parameters": [
{
- "id": 27811,
+ "id": 10522,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -423012,14 +423900,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27812,
+ "id": 10523,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27813,
+ "id": 10524,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -423029,7 +423917,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 582,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L582"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L582"
}
],
"type": {
@@ -423038,14 +423926,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27814,
+ "id": 10525,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27815,
+ "id": 10526,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -423091,7 +423979,7 @@
}
},
{
- "id": 27816,
+ "id": 10527,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -423137,7 +424025,7 @@
}
},
{
- "id": 27817,
+ "id": 10528,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -423206,7 +424094,7 @@
}
},
{
- "id": 27818,
+ "id": 10529,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -423275,7 +424163,7 @@
}
},
{
- "id": 27819,
+ "id": 10530,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -423344,7 +424232,7 @@
}
},
{
- "id": 27820,
+ "id": 10531,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -423413,7 +424301,7 @@
}
},
{
- "id": 27821,
+ "id": 10532,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -423478,7 +424366,7 @@
}
},
{
- "id": 27822,
+ "id": 10533,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -423543,7 +424431,7 @@
}
},
{
- "id": 27823,
+ "id": 10534,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -423632,7 +424520,7 @@
}
},
{
- "id": 27824,
+ "id": 10535,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -423678,7 +424566,7 @@
}
},
{
- "id": 27825,
+ "id": 10536,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -423737,7 +424625,7 @@
}
},
{
- "id": 27826,
+ "id": 10537,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -423826,7 +424714,7 @@
}
},
{
- "id": 27827,
+ "id": 10538,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -423895,7 +424783,7 @@
}
},
{
- "id": 27828,
+ "id": 10539,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -423941,7 +424829,7 @@
}
},
{
- "id": 27829,
+ "id": 10540,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -423997,7 +424885,7 @@
}
},
{
- "id": 27830,
+ "id": 10541,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -424053,7 +424941,7 @@
}
},
{
- "id": 27831,
+ "id": 10542,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -424115,7 +425003,7 @@
}
},
{
- "id": 27832,
+ "id": 10543,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -424177,7 +425065,7 @@
}
},
{
- "id": 27833,
+ "id": 10544,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -424233,7 +425121,7 @@
}
},
{
- "id": 27834,
+ "id": 10545,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -424289,7 +425177,7 @@
}
},
{
- "id": 27835,
+ "id": 10546,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -424362,27 +425250,27 @@
{
"title": "Properties",
"children": [
- 27815,
- 27816,
- 27817,
- 27818,
- 27819,
- 27820,
- 27821,
- 27822,
- 27823,
- 27824,
- 27825,
- 27826,
- 27827,
- 27828,
- 27829,
- 27830,
- 27831,
- 27832,
- 27833,
- 27834,
- 27835
+ 10526,
+ 10527,
+ 10528,
+ 10529,
+ 10530,
+ 10531,
+ 10532,
+ 10533,
+ 10534,
+ 10535,
+ 10536,
+ 10537,
+ 10538,
+ 10539,
+ 10540,
+ 10541,
+ 10542,
+ 10543,
+ 10544,
+ 10545,
+ 10546
]
}
],
@@ -424427,14 +425315,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27836,
+ "id": 10547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27837,
+ "id": 10548,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -424448,7 +425336,7 @@
],
"signatures": [
{
- "id": 27838,
+ "id": 10549,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -424462,7 +425350,7 @@
],
"parameters": [
{
- "id": 27839,
+ "id": 10550,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -424473,14 +425361,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27840,
+ "id": 10551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27841,
+ "id": 10552,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -424504,7 +425392,7 @@
{
"title": "Properties",
"children": [
- 27841
+ 10552
]
}
],
@@ -424586,7 +425474,7 @@
{
"title": "Methods",
"children": [
- 27837
+ 10548
]
}
],
@@ -424623,7 +425511,7 @@
}
},
{
- "id": 27842,
+ "id": 10553,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -424641,7 +425529,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 583,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L583"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L583"
}
],
"type": {
@@ -424664,8 +425552,8 @@
{
"title": "Properties",
"children": [
- 27813,
- 27842
+ 10524,
+ 10553
]
}
],
@@ -424674,7 +425562,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 581,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L581"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L581"
}
]
}
@@ -424685,7 +425573,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -424696,7 +425584,7 @@
}
},
{
- "id": 27843,
+ "id": 10554,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -424712,7 +425600,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -424733,7 +425621,7 @@
}
},
{
- "id": 42620,
+ "id": 25561,
"name": "fulfillmentCreated",
"variant": "declaration",
"kind": 64,
@@ -424768,14 +425656,14 @@
},
"signatures": [
{
- "id": 42621,
+ "id": 25562,
"name": "fulfillmentCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42622,
+ "id": 25563,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -424790,7 +425678,7 @@
},
"type": {
"type": "reference",
- "target": 27812,
+ "target": 10523,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -424804,13 +425692,13 @@
{
"title": "Properties",
"children": [
- 27807
+ 10518
]
},
{
"title": "Functions",
"children": [
- 42620
+ 25561
]
}
],
@@ -424827,7 +425715,7 @@
],
"documents": [
{
- "id": 42612,
+ "id": 25553,
"name": "createFulfillmentValidateOrder",
"variant": "document",
"kind": 8388608,
@@ -424853,7 +425741,7 @@
"frontmatter": {}
},
{
- "id": 42613,
+ "id": 25554,
"name": "createFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -424879,7 +425767,7 @@
"frontmatter": {}
},
{
- "id": 42614,
+ "id": 25555,
"name": "adjustInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -424905,7 +425793,7 @@
"frontmatter": {}
},
{
- "id": 42615,
+ "id": 25556,
"name": "registerOrderFulfillmentStep",
"variant": "document",
"kind": 8388608,
@@ -424931,7 +425819,7 @@
"frontmatter": {}
},
{
- "id": 42616,
+ "id": 25557,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -424957,7 +425845,7 @@
"frontmatter": {}
},
{
- "id": 42617,
+ "id": 25558,
"name": "updateReservationsStep",
"variant": "document",
"kind": 8388608,
@@ -424983,7 +425871,7 @@
"frontmatter": {}
},
{
- "id": 42618,
+ "id": 25559,
"name": "deleteReservationsStep",
"variant": "document",
"kind": 8388608,
@@ -425009,7 +425897,7 @@
"frontmatter": {}
},
{
- "id": 42619,
+ "id": 25560,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -425035,7 +425923,7 @@
"frontmatter": {}
},
{
- "id": 42623,
+ "id": 25564,
"name": "fulfillmentCreated",
"variant": "document",
"kind": 8388608,
@@ -425062,21 +425950,21 @@
}
],
"childrenIncludingDocuments": [
- 27758,
- 27792,
- 27798,
- 27801,
- 27805
+ 10469,
+ 10503,
+ 10509,
+ 10512,
+ 10516
],
"groups": [
{
"title": "Properties",
"children": [
- 27758,
- 27792,
- 27798,
- 27801,
- 27805
+ 10469,
+ 10503,
+ 10509,
+ 10512,
+ 10516
]
}
],
@@ -425085,12 +425973,12 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 394,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L394"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L394"
}
],
"signatures": [
{
- "id": 27751,
+ "id": 10462,
"name": "createOrderFulfillmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -425163,12 +426051,12 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 394,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L394"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L394"
}
],
"typeParameters": [
{
- "id": 27752,
+ "id": 10463,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -425179,7 +426067,7 @@
}
},
{
- "id": 27753,
+ "id": 10464,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -425192,7 +426080,7 @@
],
"parameters": [
{
- "id": 27754,
+ "id": 10465,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -425216,14 +426104,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27755,
+ "id": 10466,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27756,
+ "id": 10467,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -425246,7 +426134,7 @@
}
},
{
- "id": 27757,
+ "id": 10468,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -425273,8 +426161,8 @@
{
"title": "Properties",
"children": [
- 27756,
- 27757
+ 10467,
+ 10468
]
}
],
@@ -425349,7 +426237,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27748,
+ "target": 10459,
"name": "CreateOrderFulfillmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -425364,14 +426252,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -425386,14 +426274,14 @@
]
},
{
- "id": 27812,
+ "id": 10523,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27813,
+ "id": 10524,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -425403,7 +426291,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 582,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L582"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L582"
}
],
"type": {
@@ -425412,14 +426300,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27814,
+ "id": 10525,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27815,
+ "id": 10526,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -425465,7 +426353,7 @@
}
},
{
- "id": 27816,
+ "id": 10527,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -425511,7 +426399,7 @@
}
},
{
- "id": 27817,
+ "id": 10528,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -425580,7 +426468,7 @@
}
},
{
- "id": 27818,
+ "id": 10529,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -425649,7 +426537,7 @@
}
},
{
- "id": 27819,
+ "id": 10530,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -425718,7 +426606,7 @@
}
},
{
- "id": 27820,
+ "id": 10531,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -425787,7 +426675,7 @@
}
},
{
- "id": 27821,
+ "id": 10532,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -425852,7 +426740,7 @@
}
},
{
- "id": 27822,
+ "id": 10533,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -425917,7 +426805,7 @@
}
},
{
- "id": 27823,
+ "id": 10534,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -426006,7 +426894,7 @@
}
},
{
- "id": 27824,
+ "id": 10535,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -426052,7 +426940,7 @@
}
},
{
- "id": 27825,
+ "id": 10536,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -426111,7 +426999,7 @@
}
},
{
- "id": 27826,
+ "id": 10537,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -426200,7 +427088,7 @@
}
},
{
- "id": 27827,
+ "id": 10538,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -426269,7 +427157,7 @@
}
},
{
- "id": 27828,
+ "id": 10539,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -426315,7 +427203,7 @@
}
},
{
- "id": 27829,
+ "id": 10540,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -426371,7 +427259,7 @@
}
},
{
- "id": 27830,
+ "id": 10541,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -426427,7 +427315,7 @@
}
},
{
- "id": 27831,
+ "id": 10542,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -426489,7 +427377,7 @@
}
},
{
- "id": 27832,
+ "id": 10543,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -426551,7 +427439,7 @@
}
},
{
- "id": 27833,
+ "id": 10544,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -426607,7 +427495,7 @@
}
},
{
- "id": 27834,
+ "id": 10545,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -426663,7 +427551,7 @@
}
},
{
- "id": 27835,
+ "id": 10546,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -426736,27 +427624,27 @@
{
"title": "Properties",
"children": [
- 27815,
- 27816,
- 27817,
- 27818,
- 27819,
- 27820,
- 27821,
- 27822,
- 27823,
- 27824,
- 27825,
- 27826,
- 27827,
- 27828,
- 27829,
- 27830,
- 27831,
- 27832,
- 27833,
- 27834,
- 27835
+ 10526,
+ 10527,
+ 10528,
+ 10529,
+ 10530,
+ 10531,
+ 10532,
+ 10533,
+ 10534,
+ 10535,
+ 10536,
+ 10537,
+ 10538,
+ 10539,
+ 10540,
+ 10541,
+ 10542,
+ 10543,
+ 10544,
+ 10545,
+ 10546
]
}
],
@@ -426801,14 +427689,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27836,
+ "id": 10547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27837,
+ "id": 10548,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -426822,7 +427710,7 @@
],
"signatures": [
{
- "id": 27838,
+ "id": 10549,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -426836,7 +427724,7 @@
],
"parameters": [
{
- "id": 27839,
+ "id": 10550,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -426847,14 +427735,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27840,
+ "id": 10551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27841,
+ "id": 10552,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -426878,7 +427766,7 @@
{
"title": "Properties",
"children": [
- 27841
+ 10552
]
}
],
@@ -426960,7 +427848,7 @@
{
"title": "Methods",
"children": [
- 27837
+ 10548
]
}
],
@@ -426997,7 +427885,7 @@
}
},
{
- "id": 27842,
+ "id": 10553,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -427015,7 +427903,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 583,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L583"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L583"
}
],
"type": {
@@ -427038,8 +427926,8 @@
{
"title": "Properties",
"children": [
- 27813,
- 27842
+ 10524,
+ 10553
]
}
],
@@ -427048,12 +427936,12 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 581,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L581"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L581"
}
]
},
{
- "id": 27813,
+ "id": 10524,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -427063,7 +427951,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 582,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L582"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L582"
}
],
"type": {
@@ -427072,14 +427960,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27814,
+ "id": 10525,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27815,
+ "id": 10526,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -427125,7 +428013,7 @@
}
},
{
- "id": 27816,
+ "id": 10527,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -427171,7 +428059,7 @@
}
},
{
- "id": 27817,
+ "id": 10528,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -427240,7 +428128,7 @@
}
},
{
- "id": 27818,
+ "id": 10529,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -427309,7 +428197,7 @@
}
},
{
- "id": 27819,
+ "id": 10530,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -427378,7 +428266,7 @@
}
},
{
- "id": 27820,
+ "id": 10531,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -427447,7 +428335,7 @@
}
},
{
- "id": 27821,
+ "id": 10532,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -427512,7 +428400,7 @@
}
},
{
- "id": 27822,
+ "id": 10533,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -427577,7 +428465,7 @@
}
},
{
- "id": 27823,
+ "id": 10534,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -427666,7 +428554,7 @@
}
},
{
- "id": 27824,
+ "id": 10535,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -427712,7 +428600,7 @@
}
},
{
- "id": 27825,
+ "id": 10536,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -427771,7 +428659,7 @@
}
},
{
- "id": 27826,
+ "id": 10537,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -427860,7 +428748,7 @@
}
},
{
- "id": 27827,
+ "id": 10538,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -427929,7 +428817,7 @@
}
},
{
- "id": 27828,
+ "id": 10539,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -427975,7 +428863,7 @@
}
},
{
- "id": 27829,
+ "id": 10540,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -428031,7 +428919,7 @@
}
},
{
- "id": 27830,
+ "id": 10541,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -428087,7 +428975,7 @@
}
},
{
- "id": 27831,
+ "id": 10542,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -428149,7 +429037,7 @@
}
},
{
- "id": 27832,
+ "id": 10543,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -428211,7 +429099,7 @@
}
},
{
- "id": 27833,
+ "id": 10544,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -428267,7 +429155,7 @@
}
},
{
- "id": 27834,
+ "id": 10545,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -428323,7 +429211,7 @@
}
},
{
- "id": 27835,
+ "id": 10546,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -428396,27 +429284,27 @@
{
"title": "Properties",
"children": [
- 27815,
- 27816,
- 27817,
- 27818,
- 27819,
- 27820,
- 27821,
- 27822,
- 27823,
- 27824,
- 27825,
- 27826,
- 27827,
- 27828,
- 27829,
- 27830,
- 27831,
- 27832,
- 27833,
- 27834,
- 27835
+ 10526,
+ 10527,
+ 10528,
+ 10529,
+ 10530,
+ 10531,
+ 10532,
+ 10533,
+ 10534,
+ 10535,
+ 10536,
+ 10537,
+ 10538,
+ 10539,
+ 10540,
+ 10541,
+ 10542,
+ 10543,
+ 10544,
+ 10545,
+ 10546
]
}
],
@@ -428461,14 +429349,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27836,
+ "id": 10547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27837,
+ "id": 10548,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -428482,7 +429370,7 @@
],
"signatures": [
{
- "id": 27838,
+ "id": 10549,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -428496,7 +429384,7 @@
],
"parameters": [
{
- "id": 27839,
+ "id": 10550,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -428507,14 +429395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27840,
+ "id": 10551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27841,
+ "id": 10552,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -428538,7 +429426,7 @@
{
"title": "Properties",
"children": [
- 27841
+ 10552
]
}
],
@@ -428620,7 +429508,7 @@
{
"title": "Methods",
"children": [
- 27837
+ 10548
]
}
],
@@ -428657,7 +429545,7 @@
}
},
{
- "id": 27842,
+ "id": 10553,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -428675,7 +429563,7 @@
"fileName": "core-flows/src/order/workflows/create-fulfillment.ts",
"line": 583,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L583"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-fulfillment.ts#L583"
}
],
"type": {
@@ -428694,7 +429582,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 27846,
+ "id": 10557,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -428712,7 +429600,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L26"
}
],
"type": {
@@ -428721,7 +429609,7 @@
}
},
{
- "id": 27847,
+ "id": 10558,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -428749,7 +429637,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L33"
}
],
"type": {
@@ -428758,7 +429646,7 @@
}
},
{
- "id": 27848,
+ "id": 10559,
"name": "createOrUpdateOrderPaymentCollectionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -428770,7 +429658,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L36"
}
],
"type": {
@@ -428780,7 +429668,7 @@
"defaultValue": "\"create-or-update-order-payment-collection\""
},
{
- "id": 27849,
+ "id": 10560,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -428795,7 +429683,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "createOrderPaymentCollectionWorkflow",
- "target": 28345
+ "target": 11056
},
{
"kind": "text",
@@ -428843,7 +429731,7 @@
},
"children": [
{
- "id": 27860,
+ "id": 10571,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -428866,7 +429754,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27861,
+ "id": 10572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -428880,7 +429768,7 @@
],
"signatures": [
{
- "id": 27862,
+ "id": 10573,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -428908,7 +429796,7 @@
],
"parameters": [
{
- "id": 27863,
+ "id": 10574,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -428924,14 +429812,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27864,
+ "id": 10575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27865,
+ "id": 10576,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -428957,14 +429845,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27866,
+ "id": 10577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27867,
+ "id": 10578,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -428974,7 +429862,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -428983,7 +429871,7 @@
}
},
{
- "id": 27868,
+ "id": 10579,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -428995,7 +429883,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -429008,8 +429896,8 @@
{
"title": "Properties",
"children": [
- 27867,
- 27868
+ 10578,
+ 10579
]
}
],
@@ -429018,7 +429906,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 61,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
}
]
}
@@ -429033,14 +429921,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27869,
+ "id": 10580,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27870,
+ "id": 10581,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -429050,7 +429938,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -429059,7 +429947,7 @@
}
},
{
- "id": 27871,
+ "id": 10582,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -429071,7 +429959,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -429084,8 +429972,8 @@
{
"title": "Properties",
"children": [
- 27870,
- 27871
+ 10581,
+ 10582
]
}
],
@@ -429094,7 +429982,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 61,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
}
]
}
@@ -429111,7 +429999,7 @@
{
"title": "Properties",
"children": [
- 27865
+ 10576
]
}
],
@@ -429204,14 +430092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27872,
+ "id": 10583,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27873,
+ "id": 10584,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -429225,7 +430113,7 @@
],
"signatures": [
{
- "id": 27874,
+ "id": 10585,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -429239,7 +430127,7 @@
],
"parameters": [
{
- "id": 27875,
+ "id": 10586,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -429250,14 +430138,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27876,
+ "id": 10587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27877,
+ "id": 10588,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -429281,7 +430169,7 @@
{
"title": "Properties",
"children": [
- 27877
+ 10588
]
}
],
@@ -429366,7 +430254,7 @@
{
"title": "Methods",
"children": [
- 27873
+ 10584
]
}
],
@@ -429410,7 +430298,7 @@
}
},
{
- "id": 27878,
+ "id": 10589,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -429433,7 +430321,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27879,
+ "id": 10590,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -429447,7 +430335,7 @@
],
"signatures": [
{
- "id": 27880,
+ "id": 10591,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -429475,7 +430363,7 @@
],
"typeParameters": [
{
- "id": 27881,
+ "id": 10592,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -429486,7 +430374,7 @@
}
},
{
- "id": 27882,
+ "id": 10593,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -429499,7 +430387,7 @@
],
"parameters": [
{
- "id": 27883,
+ "id": 10594,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -429532,7 +430420,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -429544,14 +430432,14 @@
"trueType": {
"type": "reflection",
"declaration": {
- "id": 27884,
+ "id": 10595,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27885,
+ "id": 10596,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -429561,7 +430449,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -429570,7 +430458,7 @@
}
},
{
- "id": 27886,
+ "id": 10597,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -429582,7 +430470,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -429595,8 +430483,8 @@
{
"title": "Properties",
"children": [
- 27885,
- 27886
+ 10596,
+ 10597
]
}
],
@@ -429605,14 +430493,14 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 61,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
}
]
}
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -429645,7 +430533,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -429668,7 +430556,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -429688,7 +430576,7 @@
}
},
{
- "id": 27887,
+ "id": 10598,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -429711,7 +430599,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27888,
+ "id": 10599,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -429725,7 +430613,7 @@
],
"signatures": [
{
- "id": 27889,
+ "id": 10600,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -429747,7 +430635,7 @@
}
},
{
- "id": 27890,
+ "id": 10601,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -429770,7 +430658,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27891,
+ "id": 10602,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -429784,7 +430672,7 @@
],
"signatures": [
{
- "id": 27892,
+ "id": 10603,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -429798,7 +430686,7 @@
],
"parameters": [
{
- "id": 27893,
+ "id": 10604,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -429824,7 +430712,7 @@
}
},
{
- "id": 27894,
+ "id": 10605,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -429847,7 +430735,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27895,
+ "id": 10606,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -429858,7 +430746,7 @@
],
"documents": [
{
- "id": 42624,
+ "id": 25565,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -429884,7 +430772,7 @@
"frontmatter": {}
},
{
- "id": 42625,
+ "id": 25566,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -429910,7 +430798,7 @@
"frontmatter": {}
},
{
- "id": 42626,
+ "id": 25567,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -429936,7 +430824,7 @@
"frontmatter": {}
},
{
- "id": 42627,
+ "id": 25568,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -429971,7 +430859,7 @@
"frontmatter": {},
"children": [
{
- "id": 42628,
+ "id": 25569,
"name": "updatePaymentCollectionStep",
"variant": "document",
"kind": 8388608,
@@ -429999,7 +430887,7 @@
]
},
{
- "id": 42629,
+ "id": 25570,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -430034,7 +430922,7 @@
"frontmatter": {},
"children": [
{
- "id": 42630,
+ "id": 25571,
"name": "createOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -430063,21 +430951,21 @@
}
],
"childrenIncludingDocuments": [
- 27860,
- 27878,
- 27887,
- 27890,
- 27894
+ 10571,
+ 10589,
+ 10598,
+ 10601,
+ 10605
],
"groups": [
{
"title": "Properties",
"children": [
- 27860,
- 27878,
- 27887,
- 27890,
- 27894
+ 10571,
+ 10589,
+ 10598,
+ 10601,
+ 10605
]
}
],
@@ -430086,12 +430974,12 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L58"
}
],
"signatures": [
{
- "id": 27850,
+ "id": 10561,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -430106,7 +430994,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "createOrderPaymentCollectionWorkflow",
- "target": 28345
+ "target": 11056
},
{
"kind": "text",
@@ -430157,12 +431045,12 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L58"
}
],
"typeParameters": [
{
- "id": 27851,
+ "id": 10562,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -430173,7 +431061,7 @@
}
},
{
- "id": 27852,
+ "id": 10563,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -430186,7 +431074,7 @@
],
"parameters": [
{
- "id": 27853,
+ "id": 10564,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -430210,14 +431098,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27854,
+ "id": 10565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27855,
+ "id": 10566,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -430240,7 +431128,7 @@
}
},
{
- "id": 27856,
+ "id": 10567,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -430267,8 +431155,8 @@
{
"title": "Properties",
"children": [
- 27855,
- 27856
+ 10566,
+ 10567
]
}
],
@@ -430344,14 +431232,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27857,
+ "id": 10568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27858,
+ "id": 10569,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -430361,7 +431249,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -430370,7 +431258,7 @@
}
},
{
- "id": 27859,
+ "id": 10570,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -430382,7 +431270,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -430395,8 +431283,8 @@
{
"title": "Properties",
"children": [
- 27858,
- 27859
+ 10569,
+ 10570
]
}
],
@@ -430405,7 +431293,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 61,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L61"
}
]
}
@@ -430424,14 +431312,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -430446,7 +431334,7 @@
]
},
{
- "id": 27858,
+ "id": 10569,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -430456,7 +431344,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -430465,7 +431353,7 @@
}
},
{
- "id": 27859,
+ "id": 10570,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -430477,7 +431365,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -430486,7 +431374,7 @@
}
},
{
- "id": 27867,
+ "id": 10578,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -430496,7 +431384,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -430505,7 +431393,7 @@
}
},
{
- "id": 27868,
+ "id": 10579,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -430517,7 +431405,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -430526,7 +431414,7 @@
}
},
{
- "id": 27870,
+ "id": 10581,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -430536,7 +431424,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -430545,7 +431433,7 @@
}
},
{
- "id": 27871,
+ "id": 10582,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -430557,7 +431445,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -430566,7 +431454,7 @@
}
},
{
- "id": 27885,
+ "id": 10596,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -430576,7 +431464,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L62"
}
],
"type": {
@@ -430585,7 +431473,7 @@
}
},
{
- "id": 27886,
+ "id": 10597,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -430597,7 +431485,7 @@
"fileName": "core-flows/src/order/workflows/create-or-update-order-payment-collection.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-or-update-order-payment-collection.ts#L63"
}
],
"type": {
@@ -430606,7 +431494,7 @@
}
},
{
- "id": 27897,
+ "id": 10608,
"name": "createOrdersWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -430618,7 +431506,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 93,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L93"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L93"
}
],
"type": {
@@ -430628,7 +431516,7 @@
"defaultValue": "\"create-orders\""
},
{
- "id": 27898,
+ "id": 10609,
"name": "createOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -430689,7 +431577,7 @@
},
"children": [
{
- "id": 27906,
+ "id": 10617,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -430712,7 +431600,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27907,
+ "id": 10618,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -430726,7 +431614,7 @@
],
"signatures": [
{
- "id": 27908,
+ "id": 10619,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -430754,7 +431642,7 @@
],
"parameters": [
{
- "id": 27909,
+ "id": 10620,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -430770,14 +431658,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27910,
+ "id": 10621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27911,
+ "id": 10622,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -430802,7 +431690,7 @@
"types": [
{
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -430815,7 +431703,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -430831,7 +431719,7 @@
{
"title": "Properties",
"children": [
- 27911
+ 10622
]
}
],
@@ -430852,14 +431740,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27912,
+ "id": 10623,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27913,
+ "id": 10624,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -430905,7 +431793,7 @@
}
},
{
- "id": 27914,
+ "id": 10625,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -430951,7 +431839,7 @@
}
},
{
- "id": 27915,
+ "id": 10626,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -430997,7 +431885,7 @@
}
},
{
- "id": 27916,
+ "id": 10627,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -431054,7 +431942,7 @@
}
},
{
- "id": 27917,
+ "id": 10628,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -431124,7 +432012,7 @@
}
},
{
- "id": 27918,
+ "id": 10629,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -431180,7 +432068,7 @@
}
},
{
- "id": 27919,
+ "id": 10630,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -431237,7 +432125,7 @@
}
},
{
- "id": 27920,
+ "id": 10631,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -431294,7 +432182,7 @@
}
},
{
- "id": 27921,
+ "id": 10632,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -431351,7 +432239,7 @@
}
},
{
- "id": 27922,
+ "id": 10633,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -431408,7 +432296,7 @@
}
},
{
- "id": 27923,
+ "id": 10634,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -431454,7 +432342,7 @@
}
},
{
- "id": 27924,
+ "id": 10635,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -431524,7 +432412,7 @@
}
},
{
- "id": 27925,
+ "id": 10636,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -431594,7 +432482,7 @@
}
},
{
- "id": 27926,
+ "id": 10637,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -431670,7 +432558,7 @@
}
},
{
- "id": 27927,
+ "id": 10638,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -431746,7 +432634,7 @@
}
},
{
- "id": 27928,
+ "id": 10639,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -431822,7 +432710,7 @@
}
},
{
- "id": 27929,
+ "id": 10640,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -431898,7 +432786,7 @@
}
},
{
- "id": 27930,
+ "id": 10641,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -431968,7 +432856,7 @@
}
},
{
- "id": 27931,
+ "id": 10642,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -432025,7 +432913,7 @@
}
},
{
- "id": 27932,
+ "id": 10643,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -432120,7 +433008,7 @@
}
},
{
- "id": 27933,
+ "id": 10644,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -432195,7 +433083,7 @@
}
},
{
- "id": 27934,
+ "id": 10645,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -432264,7 +433152,7 @@
}
},
{
- "id": 27935,
+ "id": 10646,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -432333,7 +433221,7 @@
}
},
{
- "id": 27936,
+ "id": 10647,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -432408,7 +433296,7 @@
}
},
{
- "id": 27937,
+ "id": 10648,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -432464,7 +433352,7 @@
}
},
{
- "id": 27938,
+ "id": 10649,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -432520,7 +433408,7 @@
}
},
{
- "id": 27939,
+ "id": 10650,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -432576,7 +433464,7 @@
}
},
{
- "id": 27940,
+ "id": 10651,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -432632,7 +433520,7 @@
}
},
{
- "id": 27941,
+ "id": 10652,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -432688,7 +433576,7 @@
}
},
{
- "id": 27942,
+ "id": 10653,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -432744,7 +433632,7 @@
}
},
{
- "id": 27943,
+ "id": 10654,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -432800,7 +433688,7 @@
}
},
{
- "id": 27944,
+ "id": 10655,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -432856,7 +433744,7 @@
}
},
{
- "id": 27945,
+ "id": 10656,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -432912,7 +433800,7 @@
}
},
{
- "id": 27946,
+ "id": 10657,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -432968,7 +433856,7 @@
}
},
{
- "id": 27947,
+ "id": 10658,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -433024,7 +433912,7 @@
}
},
{
- "id": 27948,
+ "id": 10659,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -433080,7 +433968,7 @@
}
},
{
- "id": 27949,
+ "id": 10660,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -433136,7 +434024,7 @@
}
},
{
- "id": 27950,
+ "id": 10661,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -433192,7 +434080,7 @@
}
},
{
- "id": 27951,
+ "id": 10662,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -433248,7 +434136,7 @@
}
},
{
- "id": 27952,
+ "id": 10663,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -433304,7 +434192,7 @@
}
},
{
- "id": 27953,
+ "id": 10664,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -433360,7 +434248,7 @@
}
},
{
- "id": 27954,
+ "id": 10665,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -433416,7 +434304,7 @@
}
},
{
- "id": 27955,
+ "id": 10666,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -433472,7 +434360,7 @@
}
},
{
- "id": 27956,
+ "id": 10667,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -433528,7 +434416,7 @@
}
},
{
- "id": 27957,
+ "id": 10668,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -433584,7 +434472,7 @@
}
},
{
- "id": 27958,
+ "id": 10669,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -433640,7 +434528,7 @@
}
},
{
- "id": 27959,
+ "id": 10670,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -433696,7 +434584,7 @@
}
},
{
- "id": 27960,
+ "id": 10671,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -433752,7 +434640,7 @@
}
},
{
- "id": 27961,
+ "id": 10672,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -433808,7 +434696,7 @@
}
},
{
- "id": 27962,
+ "id": 10673,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -433868,56 +434756,56 @@
{
"title": "Properties",
"children": [
- 27913,
- 27914,
- 27915,
- 27916,
- 27917,
- 27918,
- 27919,
- 27920,
- 27921,
- 27922,
- 27923,
- 27924,
- 27925,
- 27926,
- 27927,
- 27928,
- 27929,
- 27930,
- 27931,
- 27932,
- 27933,
- 27934,
- 27935,
- 27936,
- 27937,
- 27938,
- 27939,
- 27940,
- 27941,
- 27942,
- 27943,
- 27944,
- 27945,
- 27946,
- 27947,
- 27948,
- 27949,
- 27950,
- 27951,
- 27952,
- 27953,
- 27954,
- 27955,
- 27956,
- 27957,
- 27958,
- 27959,
- 27960,
- 27961,
- 27962
+ 10624,
+ 10625,
+ 10626,
+ 10627,
+ 10628,
+ 10629,
+ 10630,
+ 10631,
+ 10632,
+ 10633,
+ 10634,
+ 10635,
+ 10636,
+ 10637,
+ 10638,
+ 10639,
+ 10640,
+ 10641,
+ 10642,
+ 10643,
+ 10644,
+ 10645,
+ 10646,
+ 10647,
+ 10648,
+ 10649,
+ 10650,
+ 10651,
+ 10652,
+ 10653,
+ 10654,
+ 10655,
+ 10656,
+ 10657,
+ 10658,
+ 10659,
+ 10660,
+ 10661,
+ 10662,
+ 10663,
+ 10664,
+ 10665,
+ 10666,
+ 10667,
+ 10668,
+ 10669,
+ 10670,
+ 10671,
+ 10672,
+ 10673
]
}
],
@@ -433962,14 +434850,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27986,
+ "id": 10697,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27987,
+ "id": 10698,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -433983,7 +434871,7 @@
],
"signatures": [
{
- "id": 27988,
+ "id": 10699,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -433997,7 +434885,7 @@
],
"parameters": [
{
- "id": 27989,
+ "id": 10700,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -434008,14 +434896,14 @@
{
"type": "reflection",
"declaration": {
- "id": 27990,
+ "id": 10701,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27991,
+ "id": 10702,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -434039,7 +434927,7 @@
{
"title": "Properties",
"children": [
- 27991
+ 10702
]
}
],
@@ -434121,7 +435009,7 @@
{
"title": "Methods",
"children": [
- 27987
+ 10698
]
}
],
@@ -434162,7 +435050,7 @@
}
},
{
- "id": 27992,
+ "id": 10703,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -434185,7 +435073,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27993,
+ "id": 10704,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -434199,7 +435087,7 @@
],
"signatures": [
{
- "id": 27994,
+ "id": 10705,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -434227,7 +435115,7 @@
],
"typeParameters": [
{
- "id": 27995,
+ "id": 10706,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -434238,7 +435126,7 @@
}
},
{
- "id": 27996,
+ "id": 10707,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -434251,7 +435139,7 @@
],
"parameters": [
{
- "id": 27997,
+ "id": 10708,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -434284,7 +435172,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -434295,13 +435183,13 @@
},
"trueType": {
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -434334,7 +435222,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -434354,7 +435242,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -434374,7 +435262,7 @@
}
},
{
- "id": 27998,
+ "id": 10709,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -434397,7 +435285,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 27999,
+ "id": 10710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -434411,7 +435299,7 @@
],
"signatures": [
{
- "id": 28000,
+ "id": 10711,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -434433,7 +435321,7 @@
}
},
{
- "id": 28001,
+ "id": 10712,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -434456,7 +435344,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28002,
+ "id": 10713,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -434470,7 +435358,7 @@
],
"signatures": [
{
- "id": 28003,
+ "id": 10714,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -434484,7 +435372,7 @@
],
"parameters": [
{
- "id": 28004,
+ "id": 10715,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -434510,7 +435398,7 @@
}
},
{
- "id": 28005,
+ "id": 10716,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -434536,14 +435424,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28006,
+ "id": 10717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28007,
+ "id": 10718,
"name": "orderCreated",
"variant": "declaration",
"kind": 1024,
@@ -434579,7 +435467,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28008,
+ "id": 10719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -434593,7 +435481,7 @@
],
"signatures": [
{
- "id": 28009,
+ "id": 10720,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -434607,7 +435495,7 @@
],
"typeParameters": [
{
- "id": 28010,
+ "id": 10721,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -434616,7 +435504,7 @@
],
"parameters": [
{
- "id": 28011,
+ "id": 10722,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -434631,14 +435519,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28012,
+ "id": 10723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28013,
+ "id": 10724,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -434648,7 +435536,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 429,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
}
],
"type": {
@@ -434658,7 +435546,7 @@
"defaultValue": "freshOrder"
},
{
- "id": 28014,
+ "id": 10725,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -434676,7 +435564,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 430,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
}
],
"type": {
@@ -434699,8 +435587,8 @@
{
"title": "Properties",
"children": [
- 28013,
- 28014
+ 10724,
+ 10725
]
}
],
@@ -434709,7 +435597,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 428,
"character": 52,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
}
]
}
@@ -434720,7 +435608,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -434731,7 +435619,7 @@
}
},
{
- "id": 28015,
+ "id": 10726,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -434747,7 +435635,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -434768,14 +435656,14 @@
},
"signatures": [
{
- "id": 42643,
+ "id": 25584,
"name": "orderCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42644,
+ "id": 25585,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -434790,7 +435678,7 @@
},
"type": {
"type": "reference",
- "target": 28012,
+ "target": 10723,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -434804,7 +435692,7 @@
{
"title": "Properties",
"children": [
- 28007
+ 10718
]
}
],
@@ -434820,14 +435708,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28016,
+ "id": 10727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28017,
+ "id": 10728,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -434895,7 +435783,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28018,
+ "id": 10729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -434909,7 +435797,7 @@
],
"signatures": [
{
- "id": 28019,
+ "id": 10730,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -434923,7 +435811,7 @@
],
"typeParameters": [
{
- "id": 28020,
+ "id": 10731,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -434932,7 +435820,7 @@
],
"parameters": [
{
- "id": 28021,
+ "id": 10732,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -434947,14 +435835,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28022,
+ "id": 10733,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28023,
+ "id": 10734,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -434964,7 +435852,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
}
],
"type": {
@@ -434987,7 +435875,7 @@
}
},
{
- "id": 28024,
+ "id": 10735,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -434997,7 +435885,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
}
],
"type": {
@@ -435006,7 +435894,7 @@
}
},
{
- "id": 28025,
+ "id": 10736,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -435016,7 +435904,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 200,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
}
],
"type": {
@@ -435025,14 +435913,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28026,
+ "id": 10737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28027,
+ "id": 10738,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -435052,7 +435940,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -435108,7 +435996,7 @@
}
},
{
- "id": 28028,
+ "id": 10739,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -435128,7 +436016,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -435178,8 +436066,8 @@
{
"title": "Properties",
"children": [
- 28027,
- 28028
+ 10738,
+ 10739
]
}
],
@@ -435194,7 +436082,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -435207,7 +436095,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -435218,14 +436106,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28029,
+ "id": 10740,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28030,
+ "id": 10741,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -435239,7 +436127,7 @@
],
"signatures": [
{
- "id": 28031,
+ "id": 10742,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -435253,7 +436141,7 @@
],
"parameters": [
{
- "id": 28032,
+ "id": 10743,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -435264,14 +436152,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28033,
+ "id": 10744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28034,
+ "id": 10745,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -435295,7 +436183,7 @@
{
"title": "Properties",
"children": [
- 28034
+ 10745
]
}
],
@@ -435358,7 +436246,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -435374,7 +436262,7 @@
{
"title": "Methods",
"children": [
- 28030
+ 10741
]
}
],
@@ -435396,7 +436284,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -435408,7 +436296,7 @@
}
},
{
- "id": 28035,
+ "id": 10746,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -435426,7 +436314,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
}
],
"type": {
@@ -435449,10 +436337,10 @@
{
"title": "Properties",
"children": [
- 28023,
- 28024,
- 28025,
- 28035
+ 10734,
+ 10735,
+ 10736,
+ 10746
]
}
],
@@ -435461,7 +436349,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
}
]
}
@@ -435496,7 +436384,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -435507,7 +436395,7 @@
}
},
{
- "id": 28036,
+ "id": 10747,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -435523,7 +436411,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -435544,14 +436432,14 @@
},
"signatures": [
{
- "id": 42635,
+ "id": 25576,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42636,
+ "id": 25577,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -435566,7 +436454,7 @@
},
"type": {
"type": "reference",
- "target": 28022,
+ "target": 10733,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -435580,7 +436468,7 @@
{
"title": "Properties",
"children": [
- 28017
+ 10728
]
}
],
@@ -435599,7 +436487,7 @@
],
"documents": [
{
- "id": 42632,
+ "id": 25573,
"name": "findSalesChannelStep",
"variant": "document",
"kind": 8388608,
@@ -435625,7 +436513,7 @@
"frontmatter": {}
},
{
- "id": 42633,
+ "id": 25574,
"name": "findOneOrAnyRegionStep",
"variant": "document",
"kind": 8388608,
@@ -435651,7 +436539,7 @@
"frontmatter": {}
},
{
- "id": 42634,
+ "id": 25575,
"name": "findOrCreateCustomerStep",
"variant": "document",
"kind": 8388608,
@@ -435677,7 +436565,7 @@
"frontmatter": {}
},
{
- "id": 42637,
+ "id": 25578,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -435703,7 +436591,7 @@
"frontmatter": {}
},
{
- "id": 42639,
+ "id": 25580,
"name": "confirmVariantInventoryWorkflow",
"variant": "document",
"kind": 8388608,
@@ -435729,7 +436617,7 @@
"frontmatter": {}
},
{
- "id": 42640,
+ "id": 25581,
"name": "validateLineItemPricesStep",
"variant": "document",
"kind": 8388608,
@@ -435755,7 +436643,7 @@
"frontmatter": {}
},
{
- "id": 42641,
+ "id": 25582,
"name": "createOrdersStep",
"variant": "document",
"kind": 8388608,
@@ -435781,7 +436669,7 @@
"frontmatter": {}
},
{
- "id": 42642,
+ "id": 25583,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -435807,7 +436695,7 @@
"frontmatter": {}
},
{
- "id": 42645,
+ "id": 25586,
"name": "orderCreated",
"variant": "document",
"kind": 8388608,
@@ -435834,21 +436722,21 @@
}
],
"childrenIncludingDocuments": [
- 27906,
- 27992,
- 27998,
- 28001,
- 28005
+ 10617,
+ 10703,
+ 10709,
+ 10712,
+ 10716
],
"groups": [
{
"title": "Properties",
"children": [
- 27906,
- 27992,
- 27998,
- 28001,
- 28005
+ 10617,
+ 10703,
+ 10709,
+ 10712,
+ 10716
]
}
],
@@ -435857,12 +436745,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 173,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L173"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L173"
}
],
"signatures": [
{
- "id": 27899,
+ "id": 10610,
"name": "createOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -435926,12 +436814,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 173,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L173"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L173"
}
],
"typeParameters": [
{
- "id": 27900,
+ "id": 10611,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -435942,7 +436830,7 @@
}
},
{
- "id": 27901,
+ "id": 10612,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -435955,7 +436843,7 @@
],
"parameters": [
{
- "id": 27902,
+ "id": 10613,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -435979,14 +436867,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 27903,
+ "id": 10614,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 27904,
+ "id": 10615,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -436009,7 +436897,7 @@
}
},
{
- "id": 27905,
+ "id": 10616,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -436036,8 +436924,8 @@
{
"title": "Properties",
"children": [
- 27904,
- 27905
+ 10615,
+ 10616
]
}
],
@@ -436112,7 +437000,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -436127,14 +437015,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -436149,14 +437037,14 @@
]
},
{
- "id": 28012,
+ "id": 10723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28013,
+ "id": 10724,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -436166,7 +437054,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 429,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
}
],
"type": {
@@ -436176,7 +437064,7 @@
"defaultValue": "freshOrder"
},
{
- "id": 28014,
+ "id": 10725,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -436194,7 +437082,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 430,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
}
],
"type": {
@@ -436217,8 +437105,8 @@
{
"title": "Properties",
"children": [
- 28013,
- 28014
+ 10724,
+ 10725
]
}
],
@@ -436227,12 +437115,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 428,
"character": 52,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
}
]
},
{
- "id": 28013,
+ "id": 10724,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -436242,7 +437130,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 429,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
}
],
"type": {
@@ -436252,7 +437140,7 @@
"defaultValue": "freshOrder"
},
{
- "id": 28014,
+ "id": 10725,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -436270,7 +437158,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 430,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
}
],
"type": {
@@ -436289,14 +437177,14 @@
"defaultValue": "input.additional_data"
},
{
- "id": 28022,
+ "id": 10733,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28023,
+ "id": 10734,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -436306,7 +437194,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
}
],
"type": {
@@ -436329,7 +437217,7 @@
}
},
{
- "id": 28024,
+ "id": 10735,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -436339,7 +437227,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
}
],
"type": {
@@ -436348,7 +437236,7 @@
}
},
{
- "id": 28025,
+ "id": 10736,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -436358,7 +437246,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 200,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
}
],
"type": {
@@ -436367,14 +437255,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28026,
+ "id": 10737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28027,
+ "id": 10738,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -436394,7 +437282,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -436450,7 +437338,7 @@
}
},
{
- "id": 28028,
+ "id": 10739,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -436470,7 +437358,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -436520,8 +437408,8 @@
{
"title": "Properties",
"children": [
- 28027,
- 28028
+ 10738,
+ 10739
]
}
],
@@ -436536,7 +437424,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -436549,7 +437437,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -436560,14 +437448,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28029,
+ "id": 10740,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28030,
+ "id": 10741,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -436581,7 +437469,7 @@
],
"signatures": [
{
- "id": 28031,
+ "id": 10742,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -436595,7 +437483,7 @@
],
"parameters": [
{
- "id": 28032,
+ "id": 10743,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -436606,14 +437494,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28033,
+ "id": 10744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28034,
+ "id": 10745,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -436637,7 +437525,7 @@
{
"title": "Properties",
"children": [
- 28034
+ 10745
]
}
],
@@ -436700,7 +437588,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -436716,7 +437604,7 @@
{
"title": "Methods",
"children": [
- 28030
+ 10741
]
}
],
@@ -436738,7 +437626,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -436750,7 +437638,7 @@
}
},
{
- "id": 28035,
+ "id": 10746,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -436768,7 +437656,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
}
],
"type": {
@@ -436791,10 +437679,10 @@
{
"title": "Properties",
"children": [
- 28023,
- 28024,
- 28025,
- 28035
+ 10734,
+ 10735,
+ 10736,
+ 10746
]
}
],
@@ -436803,12 +437691,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
}
]
},
{
- "id": 28023,
+ "id": 10734,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -436818,7 +437706,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
}
],
"type": {
@@ -436841,7 +437729,7 @@
}
},
{
- "id": 28024,
+ "id": 10735,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -436851,7 +437739,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
}
],
"type": {
@@ -436860,7 +437748,7 @@
}
},
{
- "id": 28025,
+ "id": 10736,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -436870,7 +437758,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 200,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
}
],
"type": {
@@ -436879,14 +437767,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28026,
+ "id": 10737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28027,
+ "id": 10738,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -436906,7 +437794,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -436962,7 +437850,7 @@
}
},
{
- "id": 28028,
+ "id": 10739,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -436982,7 +437870,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -437032,8 +437920,8 @@
{
"title": "Properties",
"children": [
- 28027,
- 28028
+ 10738,
+ 10739
]
}
],
@@ -437048,7 +437936,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -437061,7 +437949,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -437072,14 +437960,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28029,
+ "id": 10740,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28030,
+ "id": 10741,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -437093,7 +437981,7 @@
],
"signatures": [
{
- "id": 28031,
+ "id": 10742,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -437107,7 +437995,7 @@
],
"parameters": [
{
- "id": 28032,
+ "id": 10743,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -437118,14 +438006,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28033,
+ "id": 10744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28034,
+ "id": 10745,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -437149,7 +438037,7 @@
{
"title": "Properties",
"children": [
- 28034
+ 10745
]
}
],
@@ -437212,7 +438100,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -437228,7 +438116,7 @@
{
"title": "Methods",
"children": [
- 28030
+ 10741
]
}
],
@@ -437250,7 +438138,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -437262,7 +438150,7 @@
}
},
{
- "id": 28035,
+ "id": 10746,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -437280,7 +438168,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
}
],
"type": {
@@ -437299,7 +438187,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 28037,
+ "id": 10748,
"name": "createOrdersWorkflow",
"variant": "declaration",
"kind": 64,
@@ -437328,7 +438216,7 @@
},
"children": [
{
- "id": 28045,
+ "id": 10756,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -437351,7 +438239,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28046,
+ "id": 10757,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -437365,7 +438253,7 @@
],
"signatures": [
{
- "id": 28047,
+ "id": 10758,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -437393,7 +438281,7 @@
],
"parameters": [
{
- "id": 28048,
+ "id": 10759,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -437409,14 +438297,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28049,
+ "id": 10760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28050,
+ "id": 10761,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -437441,7 +438329,7 @@
"types": [
{
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -437454,7 +438342,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -437470,7 +438358,7 @@
{
"title": "Properties",
"children": [
- 28050
+ 10761
]
}
],
@@ -437491,14 +438379,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28051,
+ "id": 10762,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28052,
+ "id": 10763,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -437544,7 +438432,7 @@
}
},
{
- "id": 28053,
+ "id": 10764,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -437590,7 +438478,7 @@
}
},
{
- "id": 28054,
+ "id": 10765,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -437636,7 +438524,7 @@
}
},
{
- "id": 28055,
+ "id": 10766,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -437693,7 +438581,7 @@
}
},
{
- "id": 28056,
+ "id": 10767,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -437763,7 +438651,7 @@
}
},
{
- "id": 28057,
+ "id": 10768,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -437819,7 +438707,7 @@
}
},
{
- "id": 28058,
+ "id": 10769,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -437876,7 +438764,7 @@
}
},
{
- "id": 28059,
+ "id": 10770,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -437933,7 +438821,7 @@
}
},
{
- "id": 28060,
+ "id": 10771,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -437990,7 +438878,7 @@
}
},
{
- "id": 28061,
+ "id": 10772,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -438047,7 +438935,7 @@
}
},
{
- "id": 28062,
+ "id": 10773,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -438093,7 +438981,7 @@
}
},
{
- "id": 28063,
+ "id": 10774,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -438163,7 +439051,7 @@
}
},
{
- "id": 28064,
+ "id": 10775,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -438233,7 +439121,7 @@
}
},
{
- "id": 28065,
+ "id": 10776,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -438309,7 +439197,7 @@
}
},
{
- "id": 28066,
+ "id": 10777,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -438385,7 +439273,7 @@
}
},
{
- "id": 28067,
+ "id": 10778,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -438461,7 +439349,7 @@
}
},
{
- "id": 28068,
+ "id": 10779,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -438537,7 +439425,7 @@
}
},
{
- "id": 28069,
+ "id": 10780,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -438607,7 +439495,7 @@
}
},
{
- "id": 28070,
+ "id": 10781,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -438664,7 +439552,7 @@
}
},
{
- "id": 28071,
+ "id": 10782,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -438759,7 +439647,7 @@
}
},
{
- "id": 28072,
+ "id": 10783,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -438834,7 +439722,7 @@
}
},
{
- "id": 28073,
+ "id": 10784,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -438903,7 +439791,7 @@
}
},
{
- "id": 28074,
+ "id": 10785,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -438972,7 +439860,7 @@
}
},
{
- "id": 28075,
+ "id": 10786,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -439047,7 +439935,7 @@
}
},
{
- "id": 28076,
+ "id": 10787,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -439103,7 +439991,7 @@
}
},
{
- "id": 28077,
+ "id": 10788,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -439159,7 +440047,7 @@
}
},
{
- "id": 28078,
+ "id": 10789,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -439215,7 +440103,7 @@
}
},
{
- "id": 28079,
+ "id": 10790,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -439271,7 +440159,7 @@
}
},
{
- "id": 28080,
+ "id": 10791,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -439327,7 +440215,7 @@
}
},
{
- "id": 28081,
+ "id": 10792,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -439383,7 +440271,7 @@
}
},
{
- "id": 28082,
+ "id": 10793,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -439439,7 +440327,7 @@
}
},
{
- "id": 28083,
+ "id": 10794,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -439495,7 +440383,7 @@
}
},
{
- "id": 28084,
+ "id": 10795,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -439551,7 +440439,7 @@
}
},
{
- "id": 28085,
+ "id": 10796,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -439607,7 +440495,7 @@
}
},
{
- "id": 28086,
+ "id": 10797,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -439663,7 +440551,7 @@
}
},
{
- "id": 28087,
+ "id": 10798,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -439719,7 +440607,7 @@
}
},
{
- "id": 28088,
+ "id": 10799,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -439775,7 +440663,7 @@
}
},
{
- "id": 28089,
+ "id": 10800,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -439831,7 +440719,7 @@
}
},
{
- "id": 28090,
+ "id": 10801,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -439887,7 +440775,7 @@
}
},
{
- "id": 28091,
+ "id": 10802,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -439943,7 +440831,7 @@
}
},
{
- "id": 28092,
+ "id": 10803,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -439999,7 +440887,7 @@
}
},
{
- "id": 28093,
+ "id": 10804,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -440055,7 +440943,7 @@
}
},
{
- "id": 28094,
+ "id": 10805,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -440111,7 +440999,7 @@
}
},
{
- "id": 28095,
+ "id": 10806,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -440167,7 +441055,7 @@
}
},
{
- "id": 28096,
+ "id": 10807,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -440223,7 +441111,7 @@
}
},
{
- "id": 28097,
+ "id": 10808,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -440279,7 +441167,7 @@
}
},
{
- "id": 28098,
+ "id": 10809,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -440335,7 +441223,7 @@
}
},
{
- "id": 28099,
+ "id": 10810,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -440391,7 +441279,7 @@
}
},
{
- "id": 28100,
+ "id": 10811,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -440447,7 +441335,7 @@
}
},
{
- "id": 28101,
+ "id": 10812,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -440507,56 +441395,56 @@
{
"title": "Properties",
"children": [
- 28052,
- 28053,
- 28054,
- 28055,
- 28056,
- 28057,
- 28058,
- 28059,
- 28060,
- 28061,
- 28062,
- 28063,
- 28064,
- 28065,
- 28066,
- 28067,
- 28068,
- 28069,
- 28070,
- 28071,
- 28072,
- 28073,
- 28074,
- 28075,
- 28076,
- 28077,
- 28078,
- 28079,
- 28080,
- 28081,
- 28082,
- 28083,
- 28084,
- 28085,
- 28086,
- 28087,
- 28088,
- 28089,
- 28090,
- 28091,
- 28092,
- 28093,
- 28094,
- 28095,
- 28096,
- 28097,
- 28098,
- 28099,
- 28100,
- 28101
+ 10763,
+ 10764,
+ 10765,
+ 10766,
+ 10767,
+ 10768,
+ 10769,
+ 10770,
+ 10771,
+ 10772,
+ 10773,
+ 10774,
+ 10775,
+ 10776,
+ 10777,
+ 10778,
+ 10779,
+ 10780,
+ 10781,
+ 10782,
+ 10783,
+ 10784,
+ 10785,
+ 10786,
+ 10787,
+ 10788,
+ 10789,
+ 10790,
+ 10791,
+ 10792,
+ 10793,
+ 10794,
+ 10795,
+ 10796,
+ 10797,
+ 10798,
+ 10799,
+ 10800,
+ 10801,
+ 10802,
+ 10803,
+ 10804,
+ 10805,
+ 10806,
+ 10807,
+ 10808,
+ 10809,
+ 10810,
+ 10811,
+ 10812
]
}
],
@@ -440601,14 +441489,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28125,
+ "id": 10836,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28126,
+ "id": 10837,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -440622,7 +441510,7 @@
],
"signatures": [
{
- "id": 28127,
+ "id": 10838,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -440636,7 +441524,7 @@
],
"parameters": [
{
- "id": 28128,
+ "id": 10839,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -440647,14 +441535,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28129,
+ "id": 10840,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28130,
+ "id": 10841,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -440678,7 +441566,7 @@
{
"title": "Properties",
"children": [
- 28130
+ 10841
]
}
],
@@ -440760,7 +441648,7 @@
{
"title": "Methods",
"children": [
- 28126
+ 10837
]
}
],
@@ -440801,7 +441689,7 @@
}
},
{
- "id": 28131,
+ "id": 10842,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -440824,7 +441712,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28132,
+ "id": 10843,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -440838,7 +441726,7 @@
],
"signatures": [
{
- "id": 28133,
+ "id": 10844,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -440866,7 +441754,7 @@
],
"typeParameters": [
{
- "id": 28134,
+ "id": 10845,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -440877,7 +441765,7 @@
}
},
{
- "id": 28135,
+ "id": 10846,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -440890,7 +441778,7 @@
],
"parameters": [
{
- "id": 28136,
+ "id": 10847,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -440923,7 +441811,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -440934,13 +441822,13 @@
},
"trueType": {
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -440973,7 +441861,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -440993,7 +441881,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -441013,7 +441901,7 @@
}
},
{
- "id": 28137,
+ "id": 10848,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -441036,7 +441924,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28138,
+ "id": 10849,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -441050,7 +441938,7 @@
],
"signatures": [
{
- "id": 28139,
+ "id": 10850,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -441072,7 +441960,7 @@
}
},
{
- "id": 28140,
+ "id": 10851,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -441095,7 +441983,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28141,
+ "id": 10852,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -441109,7 +441997,7 @@
],
"signatures": [
{
- "id": 28142,
+ "id": 10853,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -441123,7 +442011,7 @@
],
"parameters": [
{
- "id": 28143,
+ "id": 10854,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -441149,7 +442037,7 @@
}
},
{
- "id": 28144,
+ "id": 10855,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -441175,14 +442063,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28145,
+ "id": 10856,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28146,
+ "id": 10857,
"name": "orderCreated",
"variant": "declaration",
"kind": 1024,
@@ -441190,7 +442078,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28147,
+ "id": 10858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -441204,7 +442092,7 @@
],
"signatures": [
{
- "id": 28148,
+ "id": 10859,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -441218,7 +442106,7 @@
],
"typeParameters": [
{
- "id": 28149,
+ "id": 10860,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -441227,7 +442115,7 @@
],
"parameters": [
{
- "id": 28150,
+ "id": 10861,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -441242,14 +442130,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28151,
+ "id": 10862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28152,
+ "id": 10863,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -441259,7 +442147,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 429,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
}
],
"type": {
@@ -441269,7 +442157,7 @@
"defaultValue": "freshOrder"
},
{
- "id": 28153,
+ "id": 10864,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -441279,7 +442167,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 430,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
}
],
"type": {
@@ -441302,8 +442190,8 @@
{
"title": "Properties",
"children": [
- 28152,
- 28153
+ 10863,
+ 10864
]
}
],
@@ -441312,7 +442200,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 428,
"character": 52,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
}
]
}
@@ -441323,7 +442211,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -441334,7 +442222,7 @@
}
},
{
- "id": 28154,
+ "id": 10865,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -441350,7 +442238,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -441375,7 +442263,7 @@
{
"title": "Properties",
"children": [
- 28146
+ 10857
]
}
],
@@ -441391,14 +442279,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28155,
+ "id": 10866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28156,
+ "id": 10867,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -441406,7 +442294,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28157,
+ "id": 10868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -441420,7 +442308,7 @@
],
"signatures": [
{
- "id": 28158,
+ "id": 10869,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -441434,7 +442322,7 @@
],
"typeParameters": [
{
- "id": 28159,
+ "id": 10870,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -441443,7 +442331,7 @@
],
"parameters": [
{
- "id": 28160,
+ "id": 10871,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -441458,14 +442346,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28161,
+ "id": 10872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28162,
+ "id": 10873,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -441475,7 +442363,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
}
],
"type": {
@@ -441498,7 +442386,7 @@
}
},
{
- "id": 28163,
+ "id": 10874,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -441508,7 +442396,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
}
],
"type": {
@@ -441517,7 +442405,7 @@
}
},
{
- "id": 28164,
+ "id": 10875,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -441527,7 +442415,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 200,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
}
],
"type": {
@@ -441536,14 +442424,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28165,
+ "id": 10876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28166,
+ "id": 10877,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -441563,7 +442451,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -441619,7 +442507,7 @@
}
},
{
- "id": 28167,
+ "id": 10878,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -441639,7 +442527,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -441689,8 +442577,8 @@
{
"title": "Properties",
"children": [
- 28166,
- 28167
+ 10877,
+ 10878
]
}
],
@@ -441705,7 +442593,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -441718,7 +442606,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -441729,14 +442617,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28168,
+ "id": 10879,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28169,
+ "id": 10880,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -441750,7 +442638,7 @@
],
"signatures": [
{
- "id": 28170,
+ "id": 10881,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -441764,7 +442652,7 @@
],
"parameters": [
{
- "id": 28171,
+ "id": 10882,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -441775,14 +442663,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28172,
+ "id": 10883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28173,
+ "id": 10884,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -441806,7 +442694,7 @@
{
"title": "Properties",
"children": [
- 28173
+ 10884
]
}
],
@@ -441869,7 +442757,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -441885,7 +442773,7 @@
{
"title": "Methods",
"children": [
- 28169
+ 10880
]
}
],
@@ -441907,7 +442795,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -441919,7 +442807,7 @@
}
},
{
- "id": 28174,
+ "id": 10885,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -441929,7 +442817,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
}
],
"type": {
@@ -441952,10 +442840,10 @@
{
"title": "Properties",
"children": [
- 28162,
- 28163,
- 28164,
- 28174
+ 10873,
+ 10874,
+ 10875,
+ 10885
]
}
],
@@ -441964,7 +442852,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
}
]
}
@@ -441999,7 +442887,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -442010,7 +442898,7 @@
}
},
{
- "id": 28175,
+ "id": 10886,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -442026,7 +442914,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -442051,7 +442939,7 @@
{
"title": "Properties",
"children": [
- 28156
+ 10867
]
}
],
@@ -442072,11 +442960,11 @@
{
"title": "Properties",
"children": [
- 28045,
- 28131,
- 28137,
- 28140,
- 28144
+ 10756,
+ 10842,
+ 10848,
+ 10851,
+ 10855
]
}
],
@@ -442085,12 +442973,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 442,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L442"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L442"
}
],
"signatures": [
{
- "id": 28038,
+ "id": 10749,
"name": "createOrdersWorkflow",
"variant": "signature",
"kind": 4096,
@@ -442100,12 +442988,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 442,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L442"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L442"
}
],
"typeParameters": [
{
- "id": 28039,
+ "id": 10750,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -442116,7 +443004,7 @@
}
},
{
- "id": 28040,
+ "id": 10751,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -442129,7 +443017,7 @@
],
"parameters": [
{
- "id": 28041,
+ "id": 10752,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -442153,14 +443041,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28042,
+ "id": 10753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28043,
+ "id": 10754,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -442183,7 +443071,7 @@
}
},
{
- "id": 28044,
+ "id": 10755,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -442210,8 +443098,8 @@
{
"title": "Properties",
"children": [
- 28043,
- 28044
+ 10754,
+ 10755
]
}
],
@@ -442286,7 +443174,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 27896,
+ "target": 10607,
"name": "CreateOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -442301,14 +443189,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -442323,14 +443211,14 @@
]
},
{
- "id": 28151,
+ "id": 10862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28152,
+ "id": 10863,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -442340,7 +443228,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 429,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
}
],
"type": {
@@ -442350,7 +443238,7 @@
"defaultValue": "freshOrder"
},
{
- "id": 28153,
+ "id": 10864,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -442360,7 +443248,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 430,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
}
],
"type": {
@@ -442383,8 +443271,8 @@
{
"title": "Properties",
"children": [
- 28152,
- 28153
+ 10863,
+ 10864
]
}
],
@@ -442393,12 +443281,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 428,
"character": 52,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L428"
}
]
},
{
- "id": 28152,
+ "id": 10863,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -442408,7 +443296,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 429,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L429"
}
],
"type": {
@@ -442418,7 +443306,7 @@
"defaultValue": "freshOrder"
},
{
- "id": 28153,
+ "id": 10864,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -442428,7 +443316,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 430,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L430"
}
],
"type": {
@@ -442447,14 +443335,14 @@
"defaultValue": "input.additional_data"
},
{
- "id": 28161,
+ "id": 10872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28162,
+ "id": 10873,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -442464,7 +443352,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
}
],
"type": {
@@ -442487,7 +443375,7 @@
}
},
{
- "id": 28163,
+ "id": 10874,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -442497,7 +443385,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
}
],
"type": {
@@ -442506,7 +443394,7 @@
}
},
{
- "id": 28164,
+ "id": 10875,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -442516,7 +443404,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 200,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
}
],
"type": {
@@ -442525,14 +443413,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28165,
+ "id": 10876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28166,
+ "id": 10877,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -442552,7 +443440,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -442608,7 +443496,7 @@
}
},
{
- "id": 28167,
+ "id": 10878,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -442628,7 +443516,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -442678,8 +443566,8 @@
{
"title": "Properties",
"children": [
- 28166,
- 28167
+ 10877,
+ 10878
]
}
],
@@ -442694,7 +443582,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -442707,7 +443595,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -442718,14 +443606,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28168,
+ "id": 10879,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28169,
+ "id": 10880,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -442739,7 +443627,7 @@
],
"signatures": [
{
- "id": 28170,
+ "id": 10881,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -442753,7 +443641,7 @@
],
"parameters": [
{
- "id": 28171,
+ "id": 10882,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -442764,14 +443652,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28172,
+ "id": 10883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28173,
+ "id": 10884,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -442795,7 +443683,7 @@
{
"title": "Properties",
"children": [
- 28173
+ 10884
]
}
],
@@ -442858,7 +443746,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -442874,7 +443762,7 @@
{
"title": "Methods",
"children": [
- 28169
+ 10880
]
}
],
@@ -442896,7 +443784,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -442908,7 +443796,7 @@
}
},
{
- "id": 28174,
+ "id": 10885,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -442918,7 +443806,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
}
],
"type": {
@@ -442941,10 +443829,10 @@
{
"title": "Properties",
"children": [
- 28162,
- 28163,
- 28164,
- 28174
+ 10873,
+ 10874,
+ 10875,
+ 10885
]
}
],
@@ -442953,12 +443841,12 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L197"
}
]
},
{
- "id": 28162,
+ "id": 10873,
"name": "variantIds",
"variant": "declaration",
"kind": 1024,
@@ -442968,7 +443856,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L198"
}
],
"type": {
@@ -442991,7 +443879,7 @@
}
},
{
- "id": 28163,
+ "id": 10874,
"name": "region",
"variant": "declaration",
"kind": 1024,
@@ -443001,7 +443889,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L199"
}
],
"type": {
@@ -443010,7 +443898,7 @@
}
},
{
- "id": 28164,
+ "id": 10875,
"name": "customerData",
"variant": "declaration",
"kind": 1024,
@@ -443020,7 +443908,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 200,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L200"
}
],
"type": {
@@ -443029,14 +443917,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28165,
+ "id": 10876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28166,
+ "id": 10877,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -443056,7 +443944,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L36"
}
],
"type": {
@@ -443112,7 +444000,7 @@
}
},
{
- "id": 28167,
+ "id": 10878,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -443132,7 +444020,7 @@
"fileName": "core-flows/src/cart/steps/find-or-create-customer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/cart/steps/find-or-create-customer.ts#L40"
}
],
"type": {
@@ -443182,8 +444070,8 @@
{
"title": "Properties",
"children": [
- 28166,
- 28167
+ 10877,
+ 10878
]
}
],
@@ -443198,7 +444086,7 @@
},
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
},
@@ -443211,7 +444099,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -443222,14 +444110,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28168,
+ "id": 10879,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28169,
+ "id": 10880,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -443243,7 +444131,7 @@
],
"signatures": [
{
- "id": 28170,
+ "id": 10881,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -443257,7 +444145,7 @@
],
"parameters": [
{
- "id": 28171,
+ "id": 10882,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -443268,14 +444156,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28172,
+ "id": 10883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28173,
+ "id": 10884,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -443299,7 +444187,7 @@
{
"title": "Properties",
"children": [
- 28173
+ 10884
]
}
],
@@ -443362,7 +444250,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -443378,7 +444266,7 @@
{
"title": "Methods",
"children": [
- 28169
+ 10880
]
}
],
@@ -443400,7 +444288,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17876,
+ "target": 584,
"name": "FindOrCreateCustomerOutputStepOutput",
"package": "@medusajs/core-flows"
}
@@ -443412,7 +444300,7 @@
}
},
{
- "id": 28174,
+ "id": 10885,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -443422,7 +444310,7 @@
"fileName": "core-flows/src/order/workflows/create-order.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order.ts#L201"
}
],
"type": {
@@ -443441,7 +444329,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 28176,
+ "id": 10887,
"name": "createOrderChangeWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -443453,7 +444341,7 @@
"fileName": "core-flows/src/order/workflows/create-order-change.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-change.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-change.ts#L12"
}
],
"type": {
@@ -443463,7 +444351,7 @@
"defaultValue": "\"create-order-change\""
},
{
- "id": 28177,
+ "id": 10888,
"name": "createOrderChangeWorkflow",
"variant": "declaration",
"kind": 64,
@@ -443498,7 +444386,7 @@
},
"children": [
{
- "id": 28185,
+ "id": 10896,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -443521,7 +444409,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28186,
+ "id": 10897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -443535,7 +444423,7 @@
],
"signatures": [
{
- "id": 28187,
+ "id": 10898,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -443563,7 +444451,7 @@
],
"parameters": [
{
- "id": 28188,
+ "id": 10899,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -443579,14 +444467,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28189,
+ "id": 10900,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28190,
+ "id": 10901,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -443646,7 +444534,7 @@
{
"title": "Properties",
"children": [
- 28190
+ 10901
]
}
],
@@ -443667,14 +444555,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28191,
+ "id": 10902,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28192,
+ "id": 10903,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -443720,7 +444608,7 @@
}
},
{
- "id": 28193,
+ "id": 10904,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -443766,7 +444654,7 @@
}
},
{
- "id": 28194,
+ "id": 10905,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -443855,7 +444743,7 @@
}
},
{
- "id": 28195,
+ "id": 10906,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -443920,7 +444808,7 @@
}
},
{
- "id": 28196,
+ "id": 10907,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -443966,7 +444854,7 @@
}
},
{
- "id": 28197,
+ "id": 10908,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -444012,7 +444900,7 @@
}
},
{
- "id": 28198,
+ "id": 10909,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -444058,7 +444946,7 @@
}
},
{
- "id": 28199,
+ "id": 10910,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -444104,7 +444992,7 @@
}
},
{
- "id": 28200,
+ "id": 10911,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -444163,7 +445051,7 @@
}
},
{
- "id": 28201,
+ "id": 10912,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -444222,7 +445110,7 @@
}
},
{
- "id": 28202,
+ "id": 10913,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -444281,7 +445169,7 @@
}
},
{
- "id": 28203,
+ "id": 10914,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -444340,7 +445228,7 @@
}
},
{
- "id": 28204,
+ "id": 10915,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -444405,7 +445293,7 @@
}
},
{
- "id": 28205,
+ "id": 10916,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -444461,7 +445349,7 @@
}
},
{
- "id": 28206,
+ "id": 10917,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -444520,7 +445408,7 @@
}
},
{
- "id": 28207,
+ "id": 10918,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -444597,7 +445485,7 @@
}
},
{
- "id": 28208,
+ "id": 10919,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -444656,7 +445544,7 @@
}
},
{
- "id": 28209,
+ "id": 10920,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -444733,7 +445621,7 @@
}
},
{
- "id": 28210,
+ "id": 10921,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -444792,7 +445680,7 @@
}
},
{
- "id": 28211,
+ "id": 10922,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -444851,7 +445739,7 @@
}
},
{
- "id": 28212,
+ "id": 10923,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -444940,7 +445828,7 @@
}
},
{
- "id": 28213,
+ "id": 10924,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -445017,7 +445905,7 @@
}
},
{
- "id": 28214,
+ "id": 10925,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -445076,7 +445964,7 @@
}
},
{
- "id": 28215,
+ "id": 10926,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -445153,7 +446041,7 @@
}
},
{
- "id": 28216,
+ "id": 10927,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -445222,7 +446110,7 @@
}
},
{
- "id": 28217,
+ "id": 10928,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -445295,32 +446183,32 @@
{
"title": "Properties",
"children": [
- 28192,
- 28193,
- 28194,
- 28195,
- 28196,
- 28197,
- 28198,
- 28199,
- 28200,
- 28201,
- 28202,
- 28203,
- 28204,
- 28205,
- 28206,
- 28207,
- 28208,
- 28209,
- 28210,
- 28211,
- 28212,
- 28213,
- 28214,
- 28215,
- 28216,
- 28217
+ 10903,
+ 10904,
+ 10905,
+ 10906,
+ 10907,
+ 10908,
+ 10909,
+ 10910,
+ 10911,
+ 10912,
+ 10913,
+ 10914,
+ 10915,
+ 10916,
+ 10917,
+ 10918,
+ 10919,
+ 10920,
+ 10921,
+ 10922,
+ 10923,
+ 10924,
+ 10925,
+ 10926,
+ 10927,
+ 10928
]
}
],
@@ -445365,14 +446253,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28218,
+ "id": 10929,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28219,
+ "id": 10930,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -445386,7 +446274,7 @@
],
"signatures": [
{
- "id": 28220,
+ "id": 10931,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -445400,7 +446288,7 @@
],
"parameters": [
{
- "id": 28221,
+ "id": 10932,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -445411,14 +446299,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28222,
+ "id": 10933,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28223,
+ "id": 10934,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -445442,7 +446330,7 @@
{
"title": "Properties",
"children": [
- 28223
+ 10934
]
}
],
@@ -445524,7 +446412,7 @@
{
"title": "Methods",
"children": [
- 28219
+ 10930
]
}
],
@@ -445565,7 +446453,7 @@
}
},
{
- "id": 28224,
+ "id": 10935,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -445588,7 +446476,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28225,
+ "id": 10936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -445602,7 +446490,7 @@
],
"signatures": [
{
- "id": 28226,
+ "id": 10937,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -445630,7 +446518,7 @@
],
"typeParameters": [
{
- "id": 28227,
+ "id": 10938,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -445641,7 +446529,7 @@
}
},
{
- "id": 28228,
+ "id": 10939,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -445654,7 +446542,7 @@
],
"parameters": [
{
- "id": 28229,
+ "id": 10940,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -445687,7 +446575,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -445707,7 +446595,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -445740,7 +446628,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -445760,7 +446648,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -445780,7 +446668,7 @@
}
},
{
- "id": 28230,
+ "id": 10941,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -445803,7 +446691,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28231,
+ "id": 10942,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -445817,7 +446705,7 @@
],
"signatures": [
{
- "id": 28232,
+ "id": 10943,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -445839,7 +446727,7 @@
}
},
{
- "id": 28233,
+ "id": 10944,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -445862,7 +446750,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28234,
+ "id": 10945,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -445876,7 +446764,7 @@
],
"signatures": [
{
- "id": 28235,
+ "id": 10946,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -445890,7 +446778,7 @@
],
"parameters": [
{
- "id": 28236,
+ "id": 10947,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -445916,7 +446804,7 @@
}
},
{
- "id": 28237,
+ "id": 10948,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -445939,7 +446827,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28238,
+ "id": 10949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -445950,7 +446838,7 @@
],
"documents": [
{
- "id": 42646,
+ "id": 25587,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -445977,21 +446865,21 @@
}
],
"childrenIncludingDocuments": [
- 28185,
- 28224,
- 28230,
- 28233,
- 28237
+ 10896,
+ 10935,
+ 10941,
+ 10944,
+ 10948
],
"groups": [
{
"title": "Properties",
"children": [
- 28185,
- 28224,
- 28230,
- 28233,
- 28237
+ 10896,
+ 10935,
+ 10941,
+ 10944,
+ 10948
]
}
],
@@ -446000,12 +446888,12 @@
"fileName": "core-flows/src/order/workflows/create-order-change.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-change.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-change.ts#L23"
}
],
"signatures": [
{
- "id": 28178,
+ "id": 10889,
"name": "createOrderChangeWorkflow",
"variant": "signature",
"kind": 4096,
@@ -446043,12 +446931,12 @@
"fileName": "core-flows/src/order/workflows/create-order-change.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-change.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-change.ts#L23"
}
],
"typeParameters": [
{
- "id": 28179,
+ "id": 10890,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -446059,7 +446947,7 @@
}
},
{
- "id": 28180,
+ "id": 10891,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -446072,7 +446960,7 @@
],
"parameters": [
{
- "id": 28181,
+ "id": 10892,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -446096,14 +446984,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28182,
+ "id": 10893,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28183,
+ "id": 10894,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -446126,7 +447014,7 @@
}
},
{
- "id": 28184,
+ "id": 10895,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -446153,8 +447041,8 @@
{
"title": "Properties",
"children": [
- 28183,
- 28184
+ 10894,
+ 10895
]
}
],
@@ -446247,14 +447135,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -446269,7 +447157,7 @@
]
},
{
- "id": 28239,
+ "id": 10950,
"name": "createOrderChangeActionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -446281,7 +447169,7 @@
"fileName": "core-flows/src/order/workflows/create-order-change-actions.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-change-actions.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-change-actions.ts#L13"
}
],
"type": {
@@ -446291,7 +447179,7 @@
"defaultValue": "\"create-order-change-actions\""
},
{
- "id": 28240,
+ "id": 10951,
"name": "createOrderChangeActionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -446335,7 +447223,7 @@
},
"children": [
{
- "id": 28248,
+ "id": 10959,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -446358,7 +447246,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28249,
+ "id": 10960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -446372,7 +447260,7 @@
],
"signatures": [
{
- "id": 28250,
+ "id": 10961,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -446400,7 +447288,7 @@
],
"parameters": [
{
- "id": 28251,
+ "id": 10962,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -446416,14 +447304,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28252,
+ "id": 10963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28253,
+ "id": 10964,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -446489,7 +447377,7 @@
{
"title": "Properties",
"children": [
- 28253
+ 10964
]
}
],
@@ -446582,14 +447470,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28254,
+ "id": 10965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28255,
+ "id": 10966,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -446603,7 +447491,7 @@
],
"signatures": [
{
- "id": 28256,
+ "id": 10967,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -446617,7 +447505,7 @@
],
"parameters": [
{
- "id": 28257,
+ "id": 10968,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -446628,14 +447516,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28258,
+ "id": 10969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28259,
+ "id": 10970,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -446659,7 +447547,7 @@
{
"title": "Properties",
"children": [
- 28259
+ 10970
]
}
],
@@ -446744,7 +447632,7 @@
{
"title": "Methods",
"children": [
- 28255
+ 10966
]
}
],
@@ -446788,7 +447676,7 @@
}
},
{
- "id": 28260,
+ "id": 10971,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -446811,7 +447699,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28261,
+ "id": 10972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -446825,7 +447713,7 @@
],
"signatures": [
{
- "id": 28262,
+ "id": 10973,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -446853,7 +447741,7 @@
],
"typeParameters": [
{
- "id": 28263,
+ "id": 10974,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -446864,7 +447752,7 @@
}
},
{
- "id": 28264,
+ "id": 10975,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -446877,7 +447765,7 @@
],
"parameters": [
{
- "id": 28265,
+ "id": 10976,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -446910,7 +447798,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -446933,7 +447821,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -446966,7 +447854,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -446989,7 +447877,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -447009,7 +447897,7 @@
}
},
{
- "id": 28266,
+ "id": 10977,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -447032,7 +447920,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28267,
+ "id": 10978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -447046,7 +447934,7 @@
],
"signatures": [
{
- "id": 28268,
+ "id": 10979,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -447068,7 +447956,7 @@
}
},
{
- "id": 28269,
+ "id": 10980,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -447091,7 +447979,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28270,
+ "id": 10981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -447105,7 +447993,7 @@
],
"signatures": [
{
- "id": 28271,
+ "id": 10982,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -447119,7 +448007,7 @@
],
"parameters": [
{
- "id": 28272,
+ "id": 10983,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -447145,7 +448033,7 @@
}
},
{
- "id": 28273,
+ "id": 10984,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -447168,7 +448056,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28274,
+ "id": 10985,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -447179,7 +448067,7 @@
],
"documents": [
{
- "id": 42647,
+ "id": 25588,
"name": "createEntitiesStep",
"variant": "document",
"kind": 8388608,
@@ -447206,21 +448094,21 @@
}
],
"childrenIncludingDocuments": [
- 28248,
- 28260,
- 28266,
- 28269,
- 28273
+ 10959,
+ 10971,
+ 10977,
+ 10980,
+ 10984
],
"groups": [
{
"title": "Properties",
"children": [
- 28248,
- 28260,
- 28266,
- 28269,
- 28273
+ 10959,
+ 10971,
+ 10977,
+ 10980,
+ 10984
]
}
],
@@ -447229,12 +448117,12 @@
"fileName": "core-flows/src/order/workflows/create-order-change-actions.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-change-actions.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-change-actions.ts#L25"
}
],
"signatures": [
{
- "id": 28241,
+ "id": 10952,
"name": "createOrderChangeActionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -447281,12 +448169,12 @@
"fileName": "core-flows/src/order/workflows/create-order-change-actions.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-change-actions.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-change-actions.ts#L25"
}
],
"typeParameters": [
{
- "id": 28242,
+ "id": 10953,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -447297,7 +448185,7 @@
}
},
{
- "id": 28243,
+ "id": 10954,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -447310,7 +448198,7 @@
],
"parameters": [
{
- "id": 28244,
+ "id": 10955,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -447334,14 +448222,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28245,
+ "id": 10956,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28246,
+ "id": 10957,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -447364,7 +448252,7 @@
}
},
{
- "id": 28247,
+ "id": 10958,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -447391,8 +448279,8 @@
{
"title": "Properties",
"children": [
- 28246,
- 28247
+ 10957,
+ 10958
]
}
],
@@ -447491,14 +448379,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -447513,7 +448401,7 @@
]
},
{
- "id": 28275,
+ "id": 10986,
"name": "validateOrderCreditLinesStep",
"variant": "declaration",
"kind": 64,
@@ -447534,7 +448422,7 @@
},
"children": [
{
- "id": 28290,
+ "id": 11001,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -447552,7 +448440,7 @@
}
},
{
- "id": 28291,
+ "id": 11002,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -447574,8 +448462,8 @@
{
"title": "Properties",
"children": [
- 28290,
- 28291
+ 11001,
+ 11002
]
}
],
@@ -447584,12 +448472,12 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L25"
}
],
"signatures": [
{
- "id": 28276,
+ "id": 10987,
"name": "validateOrderCreditLinesStep",
"variant": "signature",
"kind": 4096,
@@ -447599,12 +448487,12 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L25"
}
],
"parameters": [
{
- "id": 28277,
+ "id": 10988,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -447615,14 +448503,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28278,
+ "id": 10989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28279,
+ "id": 10990,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -447632,7 +448520,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 31,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
}
],
"type": {
@@ -447646,7 +448534,7 @@
}
},
{
- "id": 28280,
+ "id": 10991,
"name": "creditLines",
"variant": "declaration",
"kind": 1024,
@@ -447656,7 +448544,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
}
],
"type": {
@@ -447692,8 +448580,8 @@
{
"title": "Properties",
"children": [
- 28279,
- 28280
+ 10990,
+ 10991
]
}
],
@@ -447702,7 +448590,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 30,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L30"
}
]
}
@@ -447717,14 +448605,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28281,
+ "id": 10992,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28282,
+ "id": 10993,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -447734,7 +448622,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 31,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
}
],
"type": {
@@ -447748,7 +448636,7 @@
}
},
{
- "id": 28283,
+ "id": 10994,
"name": "creditLines",
"variant": "declaration",
"kind": 1024,
@@ -447758,7 +448646,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
}
],
"type": {
@@ -447794,8 +448682,8 @@
{
"title": "Properties",
"children": [
- 28282,
- 28283
+ 10993,
+ 10994
]
}
],
@@ -447804,7 +448692,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 30,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L30"
}
]
}
@@ -447838,14 +448726,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28284,
+ "id": 10995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28285,
+ "id": 10996,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -447859,7 +448747,7 @@
],
"signatures": [
{
- "id": 28286,
+ "id": 10997,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -447873,7 +448761,7 @@
],
"parameters": [
{
- "id": 28287,
+ "id": 10998,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -447884,14 +448772,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28288,
+ "id": 10999,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28289,
+ "id": 11000,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -447915,7 +448803,7 @@
{
"title": "Properties",
"children": [
- 28289
+ 11000
]
}
],
@@ -447992,7 +448880,7 @@
{
"title": "Methods",
"children": [
- 28285
+ 10996
]
}
],
@@ -448026,7 +448914,7 @@
]
},
{
- "id": 28279,
+ "id": 10990,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -448036,7 +448924,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 31,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
}
],
"type": {
@@ -448050,7 +448938,7 @@
}
},
{
- "id": 28280,
+ "id": 10991,
"name": "creditLines",
"variant": "declaration",
"kind": 1024,
@@ -448060,7 +448948,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
}
],
"type": {
@@ -448092,7 +448980,7 @@
}
},
{
- "id": 28282,
+ "id": 10993,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -448102,7 +448990,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 31,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L31"
}
],
"type": {
@@ -448116,7 +449004,7 @@
}
},
{
- "id": 28283,
+ "id": 10994,
"name": "creditLines",
"variant": "declaration",
"kind": 1024,
@@ -448126,7 +449014,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 32,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L32"
}
],
"type": {
@@ -448158,7 +449046,7 @@
}
},
{
- "id": 28292,
+ "id": 11003,
"name": "createOrderCreditLinesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -448170,7 +449058,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L85"
}
],
"type": {
@@ -448180,7 +449068,7 @@
"defaultValue": "\"create-order-credit-lines\""
},
{
- "id": 28293,
+ "id": 11004,
"name": "createOrderCreditLinesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -448210,7 +449098,7 @@
},
"children": [
{
- "id": 28304,
+ "id": 11015,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -448233,7 +449121,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28305,
+ "id": 11016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -448247,7 +449135,7 @@
],
"signatures": [
{
- "id": 28306,
+ "id": 11017,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -448275,7 +449163,7 @@
],
"parameters": [
{
- "id": 28307,
+ "id": 11018,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -448291,14 +449179,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28308,
+ "id": 11019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28309,
+ "id": 11020,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -448324,14 +449212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28310,
+ "id": 11021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28311,
+ "id": 11022,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -448341,7 +449229,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -448350,7 +449238,7 @@
}
},
{
- "id": 28312,
+ "id": 11023,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -448360,7 +449248,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -448396,8 +449284,8 @@
{
"title": "Properties",
"children": [
- 28311,
- 28312
+ 11022,
+ 11023
]
}
],
@@ -448406,7 +449294,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 89,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
}
]
}
@@ -448421,14 +449309,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28313,
+ "id": 11024,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28314,
+ "id": 11025,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -448438,7 +449326,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -448447,7 +449335,7 @@
}
},
{
- "id": 28315,
+ "id": 11026,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -448457,7 +449345,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -448493,8 +449381,8 @@
{
"title": "Properties",
"children": [
- 28314,
- 28315
+ 11025,
+ 11026
]
}
],
@@ -448503,7 +449391,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 89,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
}
]
}
@@ -448520,7 +449408,7 @@
{
"title": "Properties",
"children": [
- 28309
+ 11020
]
}
],
@@ -448613,14 +449501,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28316,
+ "id": 11027,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28317,
+ "id": 11028,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -448634,7 +449522,7 @@
],
"signatures": [
{
- "id": 28318,
+ "id": 11029,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -448648,7 +449536,7 @@
],
"parameters": [
{
- "id": 28319,
+ "id": 11030,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -448659,14 +449547,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28320,
+ "id": 11031,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28321,
+ "id": 11032,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -448690,7 +449578,7 @@
{
"title": "Properties",
"children": [
- 28321
+ 11032
]
}
],
@@ -448775,7 +449663,7 @@
{
"title": "Methods",
"children": [
- 28317
+ 11028
]
}
],
@@ -448819,7 +449707,7 @@
}
},
{
- "id": 28322,
+ "id": 11033,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -448842,7 +449730,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28323,
+ "id": 11034,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -448856,7 +449744,7 @@
],
"signatures": [
{
- "id": 28324,
+ "id": 11035,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -448884,7 +449772,7 @@
],
"typeParameters": [
{
- "id": 28325,
+ "id": 11036,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -448895,7 +449783,7 @@
}
},
{
- "id": 28326,
+ "id": 11037,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -448908,7 +449796,7 @@
],
"parameters": [
{
- "id": 28327,
+ "id": 11038,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -448941,7 +449829,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -448953,14 +449841,14 @@
"trueType": {
"type": "reflection",
"declaration": {
- "id": 28328,
+ "id": 11039,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28329,
+ "id": 11040,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -448970,7 +449858,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -448979,7 +449867,7 @@
}
},
{
- "id": 28330,
+ "id": 11041,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -448989,7 +449877,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -449025,8 +449913,8 @@
{
"title": "Properties",
"children": [
- 28329,
- 28330
+ 11040,
+ 11041
]
}
],
@@ -449035,14 +449923,14 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 89,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
}
]
}
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -449075,7 +449963,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -449098,7 +449986,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -449118,7 +450006,7 @@
}
},
{
- "id": 28331,
+ "id": 11042,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -449141,7 +450029,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28332,
+ "id": 11043,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -449155,7 +450043,7 @@
],
"signatures": [
{
- "id": 28333,
+ "id": 11044,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -449177,7 +450065,7 @@
}
},
{
- "id": 28334,
+ "id": 11045,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -449200,7 +450088,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28335,
+ "id": 11046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -449214,7 +450102,7 @@
],
"signatures": [
{
- "id": 28336,
+ "id": 11047,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -449228,7 +450116,7 @@
],
"parameters": [
{
- "id": 28337,
+ "id": 11048,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -449254,7 +450142,7 @@
}
},
{
- "id": 28338,
+ "id": 11049,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -449277,14 +450165,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28339,
+ "id": 11050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 42651,
+ "id": 25592,
"name": "creditLinesCreated",
"variant": "declaration",
"kind": 64,
@@ -449319,14 +450207,14 @@
},
"signatures": [
{
- "id": 42652,
+ "id": 25593,
"name": "creditLinesCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42653,
+ "id": 25594,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -449358,7 +450246,7 @@
{
"title": "Functions",
"children": [
- 42651
+ 25592
]
}
]
@@ -449368,7 +450256,7 @@
],
"documents": [
{
- "id": 42648,
+ "id": 25589,
"name": "validateOrderCreditLinesStep",
"variant": "document",
"kind": 8388608,
@@ -449394,7 +450282,7 @@
"frontmatter": {}
},
{
- "id": 42649,
+ "id": 25590,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -449420,7 +450308,7 @@
"frontmatter": {}
},
{
- "id": 42650,
+ "id": 25591,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -449446,7 +450334,7 @@
"frontmatter": {}
},
{
- "id": 42654,
+ "id": 25595,
"name": "creditLinesCreated",
"variant": "document",
"kind": 8388608,
@@ -449473,21 +450361,21 @@
}
],
"childrenIncludingDocuments": [
- 28304,
- 28322,
- 28331,
- 28334,
- 28338
+ 11015,
+ 11033,
+ 11042,
+ 11045,
+ 11049
],
"groups": [
{
"title": "Properties",
"children": [
- 28304,
- 28322,
- 28331,
- 28334,
- 28338
+ 11015,
+ 11033,
+ 11042,
+ 11045,
+ 11049
]
}
],
@@ -449496,12 +450384,12 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L86"
}
],
"signatures": [
{
- "id": 28294,
+ "id": 11005,
"name": "createOrderCreditLinesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -449534,12 +450422,12 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L86"
}
],
"typeParameters": [
{
- "id": 28295,
+ "id": 11006,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -449550,7 +450438,7 @@
}
},
{
- "id": 28296,
+ "id": 11007,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -449563,7 +450451,7 @@
],
"parameters": [
{
- "id": 28297,
+ "id": 11008,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -449587,14 +450475,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28298,
+ "id": 11009,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28299,
+ "id": 11010,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -449617,7 +450505,7 @@
}
},
{
- "id": 28300,
+ "id": 11011,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -449644,8 +450532,8 @@
{
"title": "Properties",
"children": [
- 28299,
- 28300
+ 11010,
+ 11011
]
}
],
@@ -449721,14 +450609,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28301,
+ "id": 11012,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28302,
+ "id": 11013,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -449738,7 +450626,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -449747,7 +450635,7 @@
}
},
{
- "id": 28303,
+ "id": 11014,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -449757,7 +450645,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -449793,8 +450681,8 @@
{
"title": "Properties",
"children": [
- 28302,
- 28303
+ 11013,
+ 11014
]
}
],
@@ -449803,7 +450691,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 89,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L89"
}
]
}
@@ -449822,14 +450710,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -449844,7 +450732,7 @@
]
},
{
- "id": 28302,
+ "id": 11013,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -449854,7 +450742,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -449863,7 +450751,7 @@
}
},
{
- "id": 28303,
+ "id": 11014,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -449873,7 +450761,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -449905,7 +450793,7 @@
}
},
{
- "id": 28311,
+ "id": 11022,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -449915,7 +450803,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -449924,7 +450812,7 @@
}
},
{
- "id": 28312,
+ "id": 11023,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -449934,7 +450822,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -449966,7 +450854,7 @@
}
},
{
- "id": 28314,
+ "id": 11025,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -449976,7 +450864,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -449985,7 +450873,7 @@
}
},
{
- "id": 28315,
+ "id": 11026,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -449995,7 +450883,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -450027,7 +450915,7 @@
}
},
{
- "id": 28329,
+ "id": 11040,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -450037,7 +450925,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L90"
}
],
"type": {
@@ -450046,7 +450934,7 @@
}
},
{
- "id": 28330,
+ "id": 11041,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -450056,7 +450944,7 @@
"fileName": "core-flows/src/order/workflows/create-order-credit-lines.ts",
"line": 91,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-credit-lines.ts#L91"
}
],
"type": {
@@ -450088,7 +450976,7 @@
}
},
{
- "id": 28342,
+ "id": 11053,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -450106,7 +450994,7 @@
"fileName": "core-flows/src/order/workflows/create-order-payment-collection.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L18"
}
],
"type": {
@@ -450115,7 +451003,7 @@
}
},
{
- "id": 28343,
+ "id": 11054,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -450133,7 +451021,7 @@
"fileName": "core-flows/src/order/workflows/create-order-payment-collection.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L22"
}
],
"type": {
@@ -450142,7 +451030,7 @@
}
},
{
- "id": 28344,
+ "id": 11055,
"name": "createOrderPaymentCollectionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -450154,7 +451042,7 @@
"fileName": "core-flows/src/order/workflows/create-order-payment-collection.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L25"
}
],
"type": {
@@ -450164,7 +451052,7 @@
"defaultValue": "\"create-order-payment-collection\""
},
{
- "id": 28345,
+ "id": 11056,
"name": "createOrderPaymentCollectionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -450208,7 +451096,7 @@
},
"children": [
{
- "id": 28353,
+ "id": 11064,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -450231,7 +451119,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28354,
+ "id": 11065,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -450245,7 +451133,7 @@
],
"signatures": [
{
- "id": 28355,
+ "id": 11066,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -450273,7 +451161,7 @@
],
"parameters": [
{
- "id": 28356,
+ "id": 11067,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -450289,14 +451177,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28357,
+ "id": 11068,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28358,
+ "id": 11069,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -450321,7 +451209,7 @@
"types": [
{
"type": "reference",
- "target": 28340,
+ "target": 11051,
"name": "CreateOrderPaymentCollectionWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -450334,7 +451222,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28340,
+ "target": 11051,
"name": "CreateOrderPaymentCollectionWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -450350,7 +451238,7 @@
{
"title": "Properties",
"children": [
- 28358
+ 11069
]
}
],
@@ -450443,14 +451331,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28359,
+ "id": 11070,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28360,
+ "id": 11071,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -450464,7 +451352,7 @@
],
"signatures": [
{
- "id": 28361,
+ "id": 11072,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -450478,7 +451366,7 @@
],
"parameters": [
{
- "id": 28362,
+ "id": 11073,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -450489,14 +451377,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28363,
+ "id": 11074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28364,
+ "id": 11075,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -450520,7 +451408,7 @@
{
"title": "Properties",
"children": [
- 28364
+ 11075
]
}
],
@@ -450605,7 +451493,7 @@
{
"title": "Methods",
"children": [
- 28360
+ 11071
]
}
],
@@ -450649,7 +451537,7 @@
}
},
{
- "id": 28365,
+ "id": 11076,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -450672,7 +451560,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28366,
+ "id": 11077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -450686,7 +451574,7 @@
],
"signatures": [
{
- "id": 28367,
+ "id": 11078,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -450714,7 +451602,7 @@
],
"typeParameters": [
{
- "id": 28368,
+ "id": 11079,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -450725,7 +451613,7 @@
}
},
{
- "id": 28369,
+ "id": 11080,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -450738,7 +451626,7 @@
],
"parameters": [
{
- "id": 28370,
+ "id": 11081,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -450771,7 +451659,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -450782,13 +451670,13 @@
},
"trueType": {
"type": "reference",
- "target": 28340,
+ "target": 11051,
"name": "CreateOrderPaymentCollectionWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -450821,7 +451709,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -450844,7 +451732,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -450864,7 +451752,7 @@
}
},
{
- "id": 28371,
+ "id": 11082,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -450887,7 +451775,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28372,
+ "id": 11083,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -450901,7 +451789,7 @@
],
"signatures": [
{
- "id": 28373,
+ "id": 11084,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -450923,7 +451811,7 @@
}
},
{
- "id": 28374,
+ "id": 11085,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -450946,7 +451834,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28375,
+ "id": 11086,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -450960,7 +451848,7 @@
],
"signatures": [
{
- "id": 28376,
+ "id": 11087,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -450974,7 +451862,7 @@
],
"parameters": [
{
- "id": 28377,
+ "id": 11088,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -451000,7 +451888,7 @@
}
},
{
- "id": 28378,
+ "id": 11089,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -451023,7 +451911,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28379,
+ "id": 11090,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -451034,7 +451922,7 @@
],
"documents": [
{
- "id": 42655,
+ "id": 25596,
"name": "createPaymentCollectionsStep",
"variant": "document",
"kind": 8388608,
@@ -451061,21 +451949,21 @@
}
],
"childrenIncludingDocuments": [
- 28353,
- 28365,
- 28371,
- 28374,
- 28378
+ 11064,
+ 11076,
+ 11082,
+ 11085,
+ 11089
],
"groups": [
{
"title": "Properties",
"children": [
- 28353,
- 28365,
- 28371,
- 28374,
- 28378
+ 11064,
+ 11076,
+ 11082,
+ 11085,
+ 11089
]
}
],
@@ -451084,12 +451972,12 @@
"fileName": "core-flows/src/order/workflows/create-order-payment-collection.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L47"
}
],
"signatures": [
{
- "id": 28346,
+ "id": 11057,
"name": "createOrderPaymentCollectionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -451136,12 +452024,12 @@
"fileName": "core-flows/src/order/workflows/create-order-payment-collection.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-order-payment-collection.ts#L47"
}
],
"typeParameters": [
{
- "id": 28347,
+ "id": 11058,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -451152,7 +452040,7 @@
}
},
{
- "id": 28348,
+ "id": 11059,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -451165,7 +452053,7 @@
],
"parameters": [
{
- "id": 28349,
+ "id": 11060,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -451189,14 +452077,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28350,
+ "id": 11061,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28351,
+ "id": 11062,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -451219,7 +452107,7 @@
}
},
{
- "id": 28352,
+ "id": 11063,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -451246,8 +452134,8 @@
{
"title": "Properties",
"children": [
- 28351,
- 28352
+ 11062,
+ 11063
]
}
],
@@ -451322,7 +452210,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28340,
+ "target": 11051,
"name": "CreateOrderPaymentCollectionWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -451340,14 +452228,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -451362,7 +452250,7 @@
]
},
{
- "id": 28382,
+ "id": 11093,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -451380,7 +452268,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L48"
}
],
"type": {
@@ -451394,7 +452282,7 @@
}
},
{
- "id": 28383,
+ "id": 11094,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -451412,7 +452300,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L52"
}
],
"type": {
@@ -451427,7 +452315,7 @@
}
},
{
- "id": 28384,
+ "id": 11095,
"name": "createShipmentValidateOrder",
"variant": "declaration",
"kind": 64,
@@ -451462,7 +452350,7 @@
},
"children": [
{
- "id": 28393,
+ "id": 11104,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -451480,7 +452368,7 @@
}
},
{
- "id": 28394,
+ "id": 11105,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -451502,8 +452390,8 @@
{
"title": "Properties",
"children": [
- 28393,
- 28394
+ 11104,
+ 11105
]
}
],
@@ -451512,12 +452400,12 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L85"
}
],
"signatures": [
{
- "id": 28385,
+ "id": 11096,
"name": "createShipmentValidateOrder",
"variant": "signature",
"kind": 4096,
@@ -451555,12 +452443,12 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L85"
}
],
"parameters": [
{
- "id": 28386,
+ "id": 11097,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -451570,7 +452458,7 @@
"types": [
{
"type": "reference",
- "target": 28380,
+ "target": 11091,
"name": "CreateShipmentValidateOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -451583,7 +452471,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28380,
+ "target": 11091,
"name": "CreateShipmentValidateOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -451616,14 +452504,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28387,
+ "id": 11098,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28388,
+ "id": 11099,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -451637,7 +452525,7 @@
],
"signatures": [
{
- "id": 28389,
+ "id": 11100,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -451651,7 +452539,7 @@
],
"parameters": [
{
- "id": 28390,
+ "id": 11101,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -451662,14 +452550,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28391,
+ "id": 11102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28392,
+ "id": 11103,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -451693,7 +452581,7 @@
{
"title": "Properties",
"children": [
- 28392
+ 11103
]
}
],
@@ -451770,7 +452658,7 @@
{
"title": "Methods",
"children": [
- 28388
+ 11099
]
}
],
@@ -451804,7 +452692,7 @@
]
},
{
- "id": 28396,
+ "id": 11107,
"name": "createOrderShipmentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -451816,7 +452704,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L169"
}
],
"type": {
@@ -451826,7 +452714,7 @@
"defaultValue": "\"create-order-shipment\""
},
{
- "id": 28397,
+ "id": 11108,
"name": "createOrderShipmentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -451896,7 +452784,7 @@
},
"children": [
{
- "id": 28405,
+ "id": 11116,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -451919,7 +452807,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28406,
+ "id": 11117,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -451933,7 +452821,7 @@
],
"signatures": [
{
- "id": 28407,
+ "id": 11118,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -451961,7 +452849,7 @@
],
"parameters": [
{
- "id": 28408,
+ "id": 11119,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -451977,14 +452865,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28409,
+ "id": 11120,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28410,
+ "id": 11121,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -452009,7 +452897,7 @@
"types": [
{
"type": "reference",
- "target": 28395,
+ "target": 11106,
"name": "CreateOrderShipmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -452022,7 +452910,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28395,
+ "target": 11106,
"name": "CreateOrderShipmentWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -452038,7 +452926,7 @@
{
"title": "Properties",
"children": [
- 28410
+ 11121
]
}
],
@@ -452063,7 +452951,7 @@
}
},
{
- "id": 28411,
+ "id": 11122,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -452086,7 +452974,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28412,
+ "id": 11123,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -452100,7 +452988,7 @@
],
"signatures": [
{
- "id": 28413,
+ "id": 11124,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -452128,7 +453016,7 @@
],
"typeParameters": [
{
- "id": 28414,
+ "id": 11125,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -452139,7 +453027,7 @@
}
},
{
- "id": 28415,
+ "id": 11126,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -452152,7 +453040,7 @@
],
"parameters": [
{
- "id": 28416,
+ "id": 11127,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -452185,7 +453073,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -452196,13 +453084,13 @@
},
"trueType": {
"type": "reference",
- "target": 28395,
+ "target": 11106,
"name": "CreateOrderShipmentWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -452235,7 +453123,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -452250,7 +453138,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -452270,7 +453158,7 @@
}
},
{
- "id": 28417,
+ "id": 11128,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -452293,7 +453181,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28418,
+ "id": 11129,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -452307,7 +453195,7 @@
],
"signatures": [
{
- "id": 28419,
+ "id": 11130,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -452329,7 +453217,7 @@
}
},
{
- "id": 28420,
+ "id": 11131,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -452352,7 +453240,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28421,
+ "id": 11132,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -452366,7 +453254,7 @@
],
"signatures": [
{
- "id": 28422,
+ "id": 11133,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -452380,7 +453268,7 @@
],
"parameters": [
{
- "id": 28423,
+ "id": 11134,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -452406,7 +453294,7 @@
}
},
{
- "id": 28424,
+ "id": 11135,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -452429,14 +453317,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28425,
+ "id": 11136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28426,
+ "id": 11137,
"name": "shipmentCreated",
"variant": "declaration",
"kind": 1024,
@@ -452444,7 +453332,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28427,
+ "id": 11138,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -452458,7 +453346,7 @@
],
"signatures": [
{
- "id": 28428,
+ "id": 11139,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -452472,7 +453360,7 @@
],
"typeParameters": [
{
- "id": 28429,
+ "id": 11140,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -452481,7 +453369,7 @@
],
"parameters": [
{
- "id": 28430,
+ "id": 11141,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -452496,14 +453384,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28431,
+ "id": 11142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28432,
+ "id": 11143,
"name": "shipment",
"variant": "declaration",
"kind": 1024,
@@ -452513,7 +453401,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L254"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L254"
}
],
"type": {
@@ -452522,14 +453410,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28433,
+ "id": 11144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28434,
+ "id": 11145,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -452575,7 +453463,7 @@
}
},
{
- "id": 28435,
+ "id": 11146,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -452621,7 +453509,7 @@
}
},
{
- "id": 28436,
+ "id": 11147,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -452690,7 +453578,7 @@
}
},
{
- "id": 28437,
+ "id": 11148,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -452759,7 +453647,7 @@
}
},
{
- "id": 28438,
+ "id": 11149,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -452828,7 +453716,7 @@
}
},
{
- "id": 28439,
+ "id": 11150,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -452897,7 +453785,7 @@
}
},
{
- "id": 28440,
+ "id": 11151,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -452962,7 +453850,7 @@
}
},
{
- "id": 28441,
+ "id": 11152,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -453027,7 +453915,7 @@
}
},
{
- "id": 28442,
+ "id": 11153,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -453116,7 +454004,7 @@
}
},
{
- "id": 28443,
+ "id": 11154,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -453162,7 +454050,7 @@
}
},
{
- "id": 28444,
+ "id": 11155,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -453221,7 +454109,7 @@
}
},
{
- "id": 28445,
+ "id": 11156,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -453310,7 +454198,7 @@
}
},
{
- "id": 28446,
+ "id": 11157,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -453379,7 +454267,7 @@
}
},
{
- "id": 28447,
+ "id": 11158,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -453425,7 +454313,7 @@
}
},
{
- "id": 28448,
+ "id": 11159,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -453481,7 +454369,7 @@
}
},
{
- "id": 28449,
+ "id": 11160,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -453537,7 +454425,7 @@
}
},
{
- "id": 28450,
+ "id": 11161,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -453599,7 +454487,7 @@
}
},
{
- "id": 28451,
+ "id": 11162,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -453661,7 +454549,7 @@
}
},
{
- "id": 28452,
+ "id": 11163,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -453717,7 +454605,7 @@
}
},
{
- "id": 28453,
+ "id": 11164,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -453773,7 +454661,7 @@
}
},
{
- "id": 28454,
+ "id": 11165,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -453846,27 +454734,27 @@
{
"title": "Properties",
"children": [
- 28434,
- 28435,
- 28436,
- 28437,
- 28438,
- 28439,
- 28440,
- 28441,
- 28442,
- 28443,
- 28444,
- 28445,
- 28446,
- 28447,
- 28448,
- 28449,
- 28450,
- 28451,
- 28452,
- 28453,
- 28454
+ 11145,
+ 11146,
+ 11147,
+ 11148,
+ 11149,
+ 11150,
+ 11151,
+ 11152,
+ 11153,
+ 11154,
+ 11155,
+ 11156,
+ 11157,
+ 11158,
+ 11159,
+ 11160,
+ 11161,
+ 11162,
+ 11163,
+ 11164,
+ 11165
]
}
],
@@ -453911,14 +454799,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28455,
+ "id": 11166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28456,
+ "id": 11167,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -453932,7 +454820,7 @@
],
"signatures": [
{
- "id": 28457,
+ "id": 11168,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -453946,7 +454834,7 @@
],
"parameters": [
{
- "id": 28458,
+ "id": 11169,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -453957,14 +454845,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28459,
+ "id": 11170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28460,
+ "id": 11171,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -453988,7 +454876,7 @@
{
"title": "Properties",
"children": [
- 28460
+ 11171
]
}
],
@@ -454070,7 +454958,7 @@
{
"title": "Methods",
"children": [
- 28456
+ 11167
]
}
],
@@ -454107,7 +454995,7 @@
}
},
{
- "id": 28461,
+ "id": 11172,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -454125,7 +455013,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 255,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L255"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L255"
}
],
"type": {
@@ -454148,8 +455036,8 @@
{
"title": "Properties",
"children": [
- 28432,
- 28461
+ 11143,
+ 11172
]
}
],
@@ -454158,7 +455046,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 253,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L253"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L253"
}
]
}
@@ -454169,7 +455057,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -454180,7 +455068,7 @@
}
},
{
- "id": 28462,
+ "id": 11173,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -454196,7 +455084,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -454217,7 +455105,7 @@
}
},
{
- "id": 42660,
+ "id": 25601,
"name": "shipmentCreated",
"variant": "declaration",
"kind": 64,
@@ -454252,14 +455140,14 @@
},
"signatures": [
{
- "id": 42661,
+ "id": 25602,
"name": "shipmentCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42662,
+ "id": 25603,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -454274,7 +455162,7 @@
},
"type": {
"type": "reference",
- "target": 28431,
+ "target": 11142,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -454288,13 +455176,13 @@
{
"title": "Properties",
"children": [
- 28426
+ 11137
]
},
{
"title": "Functions",
"children": [
- 42660
+ 25601
]
}
],
@@ -454311,7 +455199,7 @@
],
"documents": [
{
- "id": 42656,
+ "id": 25597,
"name": "createShipmentValidateOrder",
"variant": "document",
"kind": 8388608,
@@ -454337,7 +455225,7 @@
"frontmatter": {}
},
{
- "id": 42657,
+ "id": 25598,
"name": "createShipmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -454363,7 +455251,7 @@
"frontmatter": {}
},
{
- "id": 42658,
+ "id": 25599,
"name": "registerOrderShipmentStep",
"variant": "document",
"kind": 8388608,
@@ -454389,7 +455277,7 @@
"frontmatter": {}
},
{
- "id": 42659,
+ "id": 25600,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -454415,7 +455303,7 @@
"frontmatter": {}
},
{
- "id": 42663,
+ "id": 25604,
"name": "shipmentCreated",
"variant": "document",
"kind": 8388608,
@@ -454442,21 +455330,21 @@
}
],
"childrenIncludingDocuments": [
- 28405,
- 28411,
- 28417,
- 28420,
- 28424
+ 11116,
+ 11122,
+ 11128,
+ 11131,
+ 11135
],
"groups": [
{
"title": "Properties",
"children": [
- 28405,
- 28411,
- 28417,
- 28420,
- 28424
+ 11116,
+ 11122,
+ 11128,
+ 11131,
+ 11135
]
}
],
@@ -454465,12 +455353,12 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 202,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L202"
}
],
"signatures": [
{
- "id": 28398,
+ "id": 11109,
"name": "createOrderShipmentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -454543,12 +455431,12 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 202,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L202"
}
],
"typeParameters": [
{
- "id": 28399,
+ "id": 11110,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -454559,7 +455447,7 @@
}
},
{
- "id": 28400,
+ "id": 11111,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -454572,7 +455460,7 @@
],
"parameters": [
{
- "id": 28401,
+ "id": 11112,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -454596,14 +455484,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28402,
+ "id": 11113,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28403,
+ "id": 11114,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -454626,7 +455514,7 @@
}
},
{
- "id": 28404,
+ "id": 11115,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -454653,8 +455541,8 @@
{
"title": "Properties",
"children": [
- 28403,
- 28404
+ 11114,
+ 11115
]
}
],
@@ -454729,7 +455617,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28395,
+ "target": 11106,
"name": "CreateOrderShipmentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -454739,14 +455627,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -454761,14 +455649,14 @@
]
},
{
- "id": 28431,
+ "id": 11142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28432,
+ "id": 11143,
"name": "shipment",
"variant": "declaration",
"kind": 1024,
@@ -454778,7 +455666,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L254"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L254"
}
],
"type": {
@@ -454787,14 +455675,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28433,
+ "id": 11144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28434,
+ "id": 11145,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -454840,7 +455728,7 @@
}
},
{
- "id": 28435,
+ "id": 11146,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -454886,7 +455774,7 @@
}
},
{
- "id": 28436,
+ "id": 11147,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -454955,7 +455843,7 @@
}
},
{
- "id": 28437,
+ "id": 11148,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -455024,7 +455912,7 @@
}
},
{
- "id": 28438,
+ "id": 11149,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -455093,7 +455981,7 @@
}
},
{
- "id": 28439,
+ "id": 11150,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -455162,7 +456050,7 @@
}
},
{
- "id": 28440,
+ "id": 11151,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -455227,7 +456115,7 @@
}
},
{
- "id": 28441,
+ "id": 11152,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -455292,7 +456180,7 @@
}
},
{
- "id": 28442,
+ "id": 11153,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -455381,7 +456269,7 @@
}
},
{
- "id": 28443,
+ "id": 11154,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -455427,7 +456315,7 @@
}
},
{
- "id": 28444,
+ "id": 11155,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -455486,7 +456374,7 @@
}
},
{
- "id": 28445,
+ "id": 11156,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -455575,7 +456463,7 @@
}
},
{
- "id": 28446,
+ "id": 11157,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -455644,7 +456532,7 @@
}
},
{
- "id": 28447,
+ "id": 11158,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -455690,7 +456578,7 @@
}
},
{
- "id": 28448,
+ "id": 11159,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -455746,7 +456634,7 @@
}
},
{
- "id": 28449,
+ "id": 11160,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -455802,7 +456690,7 @@
}
},
{
- "id": 28450,
+ "id": 11161,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -455864,7 +456752,7 @@
}
},
{
- "id": 28451,
+ "id": 11162,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -455926,7 +456814,7 @@
}
},
{
- "id": 28452,
+ "id": 11163,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -455982,7 +456870,7 @@
}
},
{
- "id": 28453,
+ "id": 11164,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -456038,7 +456926,7 @@
}
},
{
- "id": 28454,
+ "id": 11165,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -456111,27 +456999,27 @@
{
"title": "Properties",
"children": [
- 28434,
- 28435,
- 28436,
- 28437,
- 28438,
- 28439,
- 28440,
- 28441,
- 28442,
- 28443,
- 28444,
- 28445,
- 28446,
- 28447,
- 28448,
- 28449,
- 28450,
- 28451,
- 28452,
- 28453,
- 28454
+ 11145,
+ 11146,
+ 11147,
+ 11148,
+ 11149,
+ 11150,
+ 11151,
+ 11152,
+ 11153,
+ 11154,
+ 11155,
+ 11156,
+ 11157,
+ 11158,
+ 11159,
+ 11160,
+ 11161,
+ 11162,
+ 11163,
+ 11164,
+ 11165
]
}
],
@@ -456176,14 +457064,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28455,
+ "id": 11166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28456,
+ "id": 11167,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -456197,7 +457085,7 @@
],
"signatures": [
{
- "id": 28457,
+ "id": 11168,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -456211,7 +457099,7 @@
],
"parameters": [
{
- "id": 28458,
+ "id": 11169,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -456222,14 +457110,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28459,
+ "id": 11170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28460,
+ "id": 11171,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -456253,7 +457141,7 @@
{
"title": "Properties",
"children": [
- 28460
+ 11171
]
}
],
@@ -456335,7 +457223,7 @@
{
"title": "Methods",
"children": [
- 28456
+ 11167
]
}
],
@@ -456372,7 +457260,7 @@
}
},
{
- "id": 28461,
+ "id": 11172,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -456390,7 +457278,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 255,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L255"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L255"
}
],
"type": {
@@ -456413,8 +457301,8 @@
{
"title": "Properties",
"children": [
- 28432,
- 28461
+ 11143,
+ 11172
]
}
],
@@ -456423,12 +457311,12 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 253,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L253"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L253"
}
]
},
{
- "id": 28432,
+ "id": 11143,
"name": "shipment",
"variant": "declaration",
"kind": 1024,
@@ -456438,7 +457326,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L254"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L254"
}
],
"type": {
@@ -456447,14 +457335,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28433,
+ "id": 11144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28434,
+ "id": 11145,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -456500,7 +457388,7 @@
}
},
{
- "id": 28435,
+ "id": 11146,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -456546,7 +457434,7 @@
}
},
{
- "id": 28436,
+ "id": 11147,
"name": "packed_at",
"variant": "declaration",
"kind": 1024,
@@ -456615,7 +457503,7 @@
}
},
{
- "id": 28437,
+ "id": 11148,
"name": "shipped_at",
"variant": "declaration",
"kind": 1024,
@@ -456684,7 +457572,7 @@
}
},
{
- "id": 28438,
+ "id": 11149,
"name": "delivered_at",
"variant": "declaration",
"kind": 1024,
@@ -456753,7 +457641,7 @@
}
},
{
- "id": 28439,
+ "id": 11150,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -456822,7 +457710,7 @@
}
},
{
- "id": 28440,
+ "id": 11151,
"name": "marked_shipped_by",
"variant": "declaration",
"kind": 1024,
@@ -456887,7 +457775,7 @@
}
},
{
- "id": 28441,
+ "id": 11152,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -456952,7 +457840,7 @@
}
},
{
- "id": 28442,
+ "id": 11153,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -457041,7 +457929,7 @@
}
},
{
- "id": 28443,
+ "id": 11154,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -457087,7 +457975,7 @@
}
},
{
- "id": 28444,
+ "id": 11155,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -457146,7 +458034,7 @@
}
},
{
- "id": 28445,
+ "id": 11156,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -457235,7 +458123,7 @@
}
},
{
- "id": 28446,
+ "id": 11157,
"name": "shipping_option",
"variant": "declaration",
"kind": 1024,
@@ -457304,7 +458192,7 @@
}
},
{
- "id": 28447,
+ "id": 11158,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -457350,7 +458238,7 @@
}
},
{
- "id": 28448,
+ "id": 11159,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -457406,7 +458294,7 @@
}
},
{
- "id": 28449,
+ "id": 11160,
"name": "delivery_address",
"variant": "declaration",
"kind": 1024,
@@ -457462,7 +458350,7 @@
}
},
{
- "id": 28450,
+ "id": 11161,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -457524,7 +458412,7 @@
}
},
{
- "id": 28451,
+ "id": 11162,
"name": "labels",
"variant": "declaration",
"kind": 1024,
@@ -457586,7 +458474,7 @@
}
},
{
- "id": 28452,
+ "id": 11163,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -457642,7 +458530,7 @@
}
},
{
- "id": 28453,
+ "id": 11164,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -457698,7 +458586,7 @@
}
},
{
- "id": 28454,
+ "id": 11165,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -457771,27 +458659,27 @@
{
"title": "Properties",
"children": [
- 28434,
- 28435,
- 28436,
- 28437,
- 28438,
- 28439,
- 28440,
- 28441,
- 28442,
- 28443,
- 28444,
- 28445,
- 28446,
- 28447,
- 28448,
- 28449,
- 28450,
- 28451,
- 28452,
- 28453,
- 28454
+ 11145,
+ 11146,
+ 11147,
+ 11148,
+ 11149,
+ 11150,
+ 11151,
+ 11152,
+ 11153,
+ 11154,
+ 11155,
+ 11156,
+ 11157,
+ 11158,
+ 11159,
+ 11160,
+ 11161,
+ 11162,
+ 11163,
+ 11164,
+ 11165
]
}
],
@@ -457836,14 +458724,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28455,
+ "id": 11166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28456,
+ "id": 11167,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -457857,7 +458745,7 @@
],
"signatures": [
{
- "id": 28457,
+ "id": 11168,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -457871,7 +458759,7 @@
],
"parameters": [
{
- "id": 28458,
+ "id": 11169,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -457882,14 +458770,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28459,
+ "id": 11170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28460,
+ "id": 11171,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -457913,7 +458801,7 @@
{
"title": "Properties",
"children": [
- 28460
+ 11171
]
}
],
@@ -457995,7 +458883,7 @@
{
"title": "Methods",
"children": [
- 28456
+ 11167
]
}
],
@@ -458032,7 +458920,7 @@
}
},
{
- "id": 28461,
+ "id": 11172,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -458050,7 +458938,7 @@
"fileName": "core-flows/src/order/workflows/create-shipment.ts",
"line": 255,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/create-shipment.ts#L255"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/create-shipment.ts#L255"
}
],
"type": {
@@ -458069,7 +458957,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 28463,
+ "id": 11174,
"name": "declineOrderChangeWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -458081,7 +458969,7 @@
"fileName": "core-flows/src/order/workflows/decline-order-change.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/decline-order-change.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/decline-order-change.ts#L5"
}
],
"type": {
@@ -458091,7 +458979,7 @@
"defaultValue": "\"decline-order-change\""
},
{
- "id": 28464,
+ "id": 11175,
"name": "declineOrderChangeWorkflow",
"variant": "declaration",
"kind": 64,
@@ -458126,7 +459014,7 @@
},
"children": [
{
- "id": 28472,
+ "id": 11183,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -458149,7 +459037,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28473,
+ "id": 11184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -458163,7 +459051,7 @@
],
"signatures": [
{
- "id": 28474,
+ "id": 11185,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -458191,7 +459079,7 @@
],
"parameters": [
{
- "id": 28475,
+ "id": 11186,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -458207,14 +459095,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28476,
+ "id": 11187,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28477,
+ "id": 11188,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -458274,7 +459162,7 @@
{
"title": "Properties",
"children": [
- 28477
+ 11188
]
}
],
@@ -458310,14 +459198,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28478,
+ "id": 11189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28479,
+ "id": 11190,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -458331,7 +459219,7 @@
],
"signatures": [
{
- "id": 28480,
+ "id": 11191,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -458345,7 +459233,7 @@
],
"parameters": [
{
- "id": 28481,
+ "id": 11192,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -458356,14 +459244,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28482,
+ "id": 11193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28483,
+ "id": 11194,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -458387,7 +459275,7 @@
{
"title": "Properties",
"children": [
- 28483
+ 11194
]
}
],
@@ -458464,7 +459352,7 @@
{
"title": "Methods",
"children": [
- 28479
+ 11190
]
}
],
@@ -458500,7 +459388,7 @@
}
},
{
- "id": 28484,
+ "id": 11195,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -458523,7 +459411,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28485,
+ "id": 11196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -458537,7 +459425,7 @@
],
"signatures": [
{
- "id": 28486,
+ "id": 11197,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -458565,7 +459453,7 @@
],
"typeParameters": [
{
- "id": 28487,
+ "id": 11198,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -458576,7 +459464,7 @@
}
},
{
- "id": 28488,
+ "id": 11199,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -458589,7 +459477,7 @@
],
"parameters": [
{
- "id": 28489,
+ "id": 11200,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -458622,7 +459510,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -458642,7 +459530,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -458675,7 +459563,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -458690,7 +459578,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -458710,7 +459598,7 @@
}
},
{
- "id": 28490,
+ "id": 11201,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -458733,7 +459621,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28491,
+ "id": 11202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -458747,7 +459635,7 @@
],
"signatures": [
{
- "id": 28492,
+ "id": 11203,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -458769,7 +459657,7 @@
}
},
{
- "id": 28493,
+ "id": 11204,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -458792,7 +459680,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28494,
+ "id": 11205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -458806,7 +459694,7 @@
],
"signatures": [
{
- "id": 28495,
+ "id": 11206,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -458820,7 +459708,7 @@
],
"parameters": [
{
- "id": 28496,
+ "id": 11207,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -458846,7 +459734,7 @@
}
},
{
- "id": 28497,
+ "id": 11208,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -458869,7 +459757,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28498,
+ "id": 11209,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -458880,7 +459768,7 @@
],
"documents": [
{
- "id": 42664,
+ "id": 25605,
"name": "declineOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -458907,21 +459795,21 @@
}
],
"childrenIncludingDocuments": [
- 28472,
- 28484,
- 28490,
- 28493,
- 28497
+ 11183,
+ 11195,
+ 11201,
+ 11204,
+ 11208
],
"groups": [
{
"title": "Properties",
"children": [
- 28472,
- 28484,
- 28490,
- 28493,
- 28497
+ 11183,
+ 11195,
+ 11201,
+ 11204,
+ 11208
]
}
],
@@ -458930,12 +459818,12 @@
"fileName": "core-flows/src/order/workflows/decline-order-change.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/decline-order-change.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/decline-order-change.ts#L16"
}
],
"signatures": [
{
- "id": 28465,
+ "id": 11176,
"name": "declineOrderChangeWorkflow",
"variant": "signature",
"kind": 4096,
@@ -458973,12 +459861,12 @@
"fileName": "core-flows/src/order/workflows/decline-order-change.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/decline-order-change.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/decline-order-change.ts#L16"
}
],
"typeParameters": [
{
- "id": 28466,
+ "id": 11177,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -458989,7 +459877,7 @@
}
},
{
- "id": 28467,
+ "id": 11178,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -459002,7 +459890,7 @@
],
"parameters": [
{
- "id": 28468,
+ "id": 11179,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -459026,14 +459914,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28469,
+ "id": 11180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28470,
+ "id": 11181,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -459056,7 +459944,7 @@
}
},
{
- "id": 28471,
+ "id": 11182,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -459083,8 +459971,8 @@
{
"title": "Properties",
"children": [
- 28470,
- 28471
+ 11181,
+ 11182
]
}
],
@@ -459172,14 +460060,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -459194,7 +460082,7 @@
]
},
{
- "id": 28501,
+ "id": 11212,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -459212,7 +460100,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-change.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L11"
}
],
"type": {
@@ -459224,7 +460112,7 @@
}
},
{
- "id": 28502,
+ "id": 11213,
"name": "deleteOrderChangeWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -459236,7 +460124,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-change.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L14"
}
],
"type": {
@@ -459246,7 +460134,7 @@
"defaultValue": "\"delete-order-change\""
},
{
- "id": 28503,
+ "id": 11214,
"name": "deleteOrderChangeWorkflow",
"variant": "declaration",
"kind": 64,
@@ -459281,7 +460169,7 @@
},
"children": [
{
- "id": 28511,
+ "id": 11222,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -459304,7 +460192,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28512,
+ "id": 11223,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -459318,7 +460206,7 @@
],
"signatures": [
{
- "id": 28513,
+ "id": 11224,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -459346,7 +460234,7 @@
],
"parameters": [
{
- "id": 28514,
+ "id": 11225,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -459362,14 +460250,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28515,
+ "id": 11226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28516,
+ "id": 11227,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -459394,7 +460282,7 @@
"types": [
{
"type": "reference",
- "target": 28499,
+ "target": 11210,
"name": "DeleteOrderChangeWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -459407,7 +460295,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28499,
+ "target": 11210,
"name": "DeleteOrderChangeWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -459423,7 +460311,7 @@
{
"title": "Properties",
"children": [
- 28516
+ 11227
]
}
],
@@ -459459,14 +460347,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28517,
+ "id": 11228,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28518,
+ "id": 11229,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -459480,7 +460368,7 @@
],
"signatures": [
{
- "id": 28519,
+ "id": 11230,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -459494,7 +460382,7 @@
],
"parameters": [
{
- "id": 28520,
+ "id": 11231,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -459505,14 +460393,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28521,
+ "id": 11232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28522,
+ "id": 11233,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -459536,7 +460424,7 @@
{
"title": "Properties",
"children": [
- 28522
+ 11233
]
}
],
@@ -459613,7 +460501,7 @@
{
"title": "Methods",
"children": [
- 28518
+ 11229
]
}
],
@@ -459649,7 +460537,7 @@
}
},
{
- "id": 28523,
+ "id": 11234,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -459672,7 +460560,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28524,
+ "id": 11235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -459686,7 +460574,7 @@
],
"signatures": [
{
- "id": 28525,
+ "id": 11236,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -459714,7 +460602,7 @@
],
"typeParameters": [
{
- "id": 28526,
+ "id": 11237,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -459725,7 +460613,7 @@
}
},
{
- "id": 28527,
+ "id": 11238,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -459738,7 +460626,7 @@
],
"parameters": [
{
- "id": 28528,
+ "id": 11239,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -459771,7 +460659,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -459782,13 +460670,13 @@
},
"trueType": {
"type": "reference",
- "target": 28499,
+ "target": 11210,
"name": "DeleteOrderChangeWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -459821,7 +460709,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -459836,7 +460724,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -459856,7 +460744,7 @@
}
},
{
- "id": 28529,
+ "id": 11240,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -459879,7 +460767,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28530,
+ "id": 11241,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -459893,7 +460781,7 @@
],
"signatures": [
{
- "id": 28531,
+ "id": 11242,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -459915,7 +460803,7 @@
}
},
{
- "id": 28532,
+ "id": 11243,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -459938,7 +460826,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28533,
+ "id": 11244,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -459952,7 +460840,7 @@
],
"signatures": [
{
- "id": 28534,
+ "id": 11245,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -459966,7 +460854,7 @@
],
"parameters": [
{
- "id": 28535,
+ "id": 11246,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -459992,7 +460880,7 @@
}
},
{
- "id": 28536,
+ "id": 11247,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -460015,7 +460903,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28537,
+ "id": 11248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -460026,7 +460914,7 @@
],
"documents": [
{
- "id": 42665,
+ "id": 25606,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -460053,21 +460941,21 @@
}
],
"childrenIncludingDocuments": [
- 28511,
- 28523,
- 28529,
- 28532,
- 28536
+ 11222,
+ 11234,
+ 11240,
+ 11243,
+ 11247
],
"groups": [
{
"title": "Properties",
"children": [
- 28511,
- 28523,
- 28529,
- 28532,
- 28536
+ 11222,
+ 11234,
+ 11240,
+ 11243,
+ 11247
]
}
],
@@ -460076,12 +460964,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-change.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L25"
}
],
"signatures": [
{
- "id": 28504,
+ "id": 11215,
"name": "deleteOrderChangeWorkflow",
"variant": "signature",
"kind": 4096,
@@ -460119,12 +461007,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-change.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change.ts#L25"
}
],
"typeParameters": [
{
- "id": 28505,
+ "id": 11216,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -460135,7 +461023,7 @@
}
},
{
- "id": 28506,
+ "id": 11217,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -460148,7 +461036,7 @@
],
"parameters": [
{
- "id": 28507,
+ "id": 11218,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -460172,14 +461060,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28508,
+ "id": 11219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28509,
+ "id": 11220,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -460202,7 +461090,7 @@
}
},
{
- "id": 28510,
+ "id": 11221,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -460229,8 +461117,8 @@
{
"title": "Properties",
"children": [
- 28509,
- 28510
+ 11220,
+ 11221
]
}
],
@@ -460305,7 +461193,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28499,
+ "target": 11210,
"name": "DeleteOrderChangeWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -460315,14 +461203,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -460337,7 +461225,7 @@
]
},
{
- "id": 28540,
+ "id": 11251,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -460355,7 +461243,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-change-actions.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L11"
}
],
"type": {
@@ -460367,7 +461255,7 @@
}
},
{
- "id": 28541,
+ "id": 11252,
"name": "deleteOrderChangeActionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -460379,7 +461267,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-change-actions.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L14"
}
],
"type": {
@@ -460389,7 +461277,7 @@
"defaultValue": "\"delete-order-change-actions\""
},
{
- "id": 28542,
+ "id": 11253,
"name": "deleteOrderChangeActionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -460424,7 +461312,7 @@
},
"children": [
{
- "id": 28550,
+ "id": 11261,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -460447,7 +461335,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28551,
+ "id": 11262,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -460461,7 +461349,7 @@
],
"signatures": [
{
- "id": 28552,
+ "id": 11263,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -460489,7 +461377,7 @@
],
"parameters": [
{
- "id": 28553,
+ "id": 11264,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -460505,14 +461393,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28554,
+ "id": 11265,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28555,
+ "id": 11266,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -460537,7 +461425,7 @@
"types": [
{
"type": "reference",
- "target": 28538,
+ "target": 11249,
"name": "DeleteOrderChangeActionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -460550,7 +461438,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28538,
+ "target": 11249,
"name": "DeleteOrderChangeActionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -460566,7 +461454,7 @@
{
"title": "Properties",
"children": [
- 28555
+ 11266
]
}
],
@@ -460602,14 +461490,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28556,
+ "id": 11267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28557,
+ "id": 11268,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -460623,7 +461511,7 @@
],
"signatures": [
{
- "id": 28558,
+ "id": 11269,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -460637,7 +461525,7 @@
],
"parameters": [
{
- "id": 28559,
+ "id": 11270,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -460648,14 +461536,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28560,
+ "id": 11271,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28561,
+ "id": 11272,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -460679,7 +461567,7 @@
{
"title": "Properties",
"children": [
- 28561
+ 11272
]
}
],
@@ -460756,7 +461644,7 @@
{
"title": "Methods",
"children": [
- 28557
+ 11268
]
}
],
@@ -460792,7 +461680,7 @@
}
},
{
- "id": 28562,
+ "id": 11273,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -460815,7 +461703,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28563,
+ "id": 11274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -460829,7 +461717,7 @@
],
"signatures": [
{
- "id": 28564,
+ "id": 11275,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -460857,7 +461745,7 @@
],
"typeParameters": [
{
- "id": 28565,
+ "id": 11276,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -460868,7 +461756,7 @@
}
},
{
- "id": 28566,
+ "id": 11277,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -460881,7 +461769,7 @@
],
"parameters": [
{
- "id": 28567,
+ "id": 11278,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -460914,7 +461802,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -460925,13 +461813,13 @@
},
"trueType": {
"type": "reference",
- "target": 28538,
+ "target": 11249,
"name": "DeleteOrderChangeActionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -460964,7 +461852,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -460979,7 +461867,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -460999,7 +461887,7 @@
}
},
{
- "id": 28568,
+ "id": 11279,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -461022,7 +461910,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28569,
+ "id": 11280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -461036,7 +461924,7 @@
],
"signatures": [
{
- "id": 28570,
+ "id": 11281,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -461058,7 +461946,7 @@
}
},
{
- "id": 28571,
+ "id": 11282,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -461081,7 +461969,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28572,
+ "id": 11283,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -461095,7 +461983,7 @@
],
"signatures": [
{
- "id": 28573,
+ "id": 11284,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -461109,7 +461997,7 @@
],
"parameters": [
{
- "id": 28574,
+ "id": 11285,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -461135,7 +462023,7 @@
}
},
{
- "id": 28575,
+ "id": 11286,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -461158,7 +462046,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28576,
+ "id": 11287,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -461169,7 +462057,7 @@
],
"documents": [
{
- "id": 42666,
+ "id": 25607,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -461196,21 +462084,21 @@
}
],
"childrenIncludingDocuments": [
- 28550,
- 28562,
- 28568,
- 28571,
- 28575
+ 11261,
+ 11273,
+ 11279,
+ 11282,
+ 11286
],
"groups": [
{
"title": "Properties",
"children": [
- 28550,
- 28562,
- 28568,
- 28571,
- 28575
+ 11261,
+ 11273,
+ 11279,
+ 11282,
+ 11286
]
}
],
@@ -461219,12 +462107,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-change-actions.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L25"
}
],
"signatures": [
{
- "id": 28543,
+ "id": 11254,
"name": "deleteOrderChangeActionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -461262,12 +462150,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-change-actions.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-change-actions.ts#L25"
}
],
"typeParameters": [
{
- "id": 28544,
+ "id": 11255,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -461278,7 +462166,7 @@
}
},
{
- "id": 28545,
+ "id": 11256,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -461291,7 +462179,7 @@
],
"parameters": [
{
- "id": 28546,
+ "id": 11257,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -461315,14 +462203,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28547,
+ "id": 11258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28548,
+ "id": 11259,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -461345,7 +462233,7 @@
}
},
{
- "id": 28549,
+ "id": 11260,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -461372,8 +462260,8 @@
{
"title": "Properties",
"children": [
- 28548,
- 28549
+ 11259,
+ 11260
]
}
],
@@ -461448,7 +462336,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28538,
+ "target": 11249,
"name": "DeleteOrderChangeActionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -461458,14 +462346,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -461480,7 +462368,7 @@
]
},
{
- "id": 28577,
+ "id": 11288,
"name": "throwUnlessStatusIsNotPaid",
"variant": "declaration",
"kind": 64,
@@ -461506,7 +462394,7 @@
},
"children": [
{
- "id": 28590,
+ "id": 11301,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -461524,7 +462412,7 @@
}
},
{
- "id": 28591,
+ "id": 11302,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -461546,8 +462434,8 @@
{
"title": "Properties",
"children": [
- 28590,
- 28591
+ 11301,
+ 11302
]
}
],
@@ -461556,12 +462444,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L17"
}
],
"signatures": [
{
- "id": 28578,
+ "id": 11289,
"name": "throwUnlessStatusIsNotPaid",
"variant": "signature",
"kind": 4096,
@@ -461590,12 +462478,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L17"
}
],
"parameters": [
{
- "id": 28579,
+ "id": 11290,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -461606,14 +462494,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28580,
+ "id": 11291,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28581,
+ "id": 11292,
"name": "paymentCollection",
"variant": "declaration",
"kind": 1024,
@@ -461623,7 +462511,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
}
],
"type": {
@@ -461641,7 +462529,7 @@
{
"title": "Properties",
"children": [
- 28581
+ 11292
]
}
],
@@ -461650,7 +462538,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 19,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
}
]
}
@@ -461665,14 +462553,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28582,
+ "id": 11293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28583,
+ "id": 11294,
"name": "paymentCollection",
"variant": "declaration",
"kind": 1024,
@@ -461682,7 +462570,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
}
],
"type": {
@@ -461700,7 +462588,7 @@
{
"title": "Properties",
"children": [
- 28583
+ 11294
]
}
],
@@ -461709,7 +462597,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 19,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
}
]
}
@@ -461743,14 +462631,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28584,
+ "id": 11295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28585,
+ "id": 11296,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -461764,7 +462652,7 @@
],
"signatures": [
{
- "id": 28586,
+ "id": 11297,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -461778,7 +462666,7 @@
],
"parameters": [
{
- "id": 28587,
+ "id": 11298,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -461789,14 +462677,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28588,
+ "id": 11299,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28589,
+ "id": 11300,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -461820,7 +462708,7 @@
{
"title": "Properties",
"children": [
- 28589
+ 11300
]
}
],
@@ -461897,7 +462785,7 @@
{
"title": "Methods",
"children": [
- 28585
+ 11296
]
}
],
@@ -461931,7 +462819,7 @@
]
},
{
- "id": 28581,
+ "id": 11292,
"name": "paymentCollection",
"variant": "declaration",
"kind": 1024,
@@ -461941,7 +462829,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
}
],
"type": {
@@ -461955,7 +462843,7 @@
}
},
{
- "id": 28583,
+ "id": 11294,
"name": "paymentCollection",
"variant": "declaration",
"kind": 1024,
@@ -461965,7 +462853,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L19"
}
],
"type": {
@@ -461979,7 +462867,7 @@
}
},
{
- "id": 28594,
+ "id": 11305,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -461997,7 +462885,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L36"
}
],
"type": {
@@ -462006,7 +462894,7 @@
}
},
{
- "id": 28595,
+ "id": 11306,
"name": "deleteOrderPaymentCollectionsId",
"variant": "declaration",
"kind": 32,
@@ -462018,7 +462906,7 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L39"
}
],
"type": {
@@ -462028,7 +462916,7 @@
"defaultValue": "\"delete-order-payment-collectionworkflow\""
},
{
- "id": 28596,
+ "id": 11307,
"name": "deleteOrderPaymentCollections",
"variant": "declaration",
"kind": 64,
@@ -462072,7 +462960,7 @@
},
"children": [
{
- "id": 28604,
+ "id": 11315,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -462095,7 +462983,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28605,
+ "id": 11316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -462109,7 +462997,7 @@
],
"signatures": [
{
- "id": 28606,
+ "id": 11317,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -462137,7 +463025,7 @@
],
"parameters": [
{
- "id": 28607,
+ "id": 11318,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -462153,14 +463041,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28608,
+ "id": 11319,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28609,
+ "id": 11320,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -462185,7 +463073,7 @@
"types": [
{
"type": "reference",
- "target": 28592,
+ "target": 11303,
"name": "DeleteOrderPaymentCollectionsInput",
"package": "@medusajs/core-flows"
},
@@ -462198,7 +463086,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28592,
+ "target": 11303,
"name": "DeleteOrderPaymentCollectionsInput",
"package": "@medusajs/core-flows"
}
@@ -462214,7 +463102,7 @@
{
"title": "Properties",
"children": [
- 28609
+ 11320
]
}
],
@@ -462250,14 +463138,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28610,
+ "id": 11321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28611,
+ "id": 11322,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -462271,7 +463159,7 @@
],
"signatures": [
{
- "id": 28612,
+ "id": 11323,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -462285,7 +463173,7 @@
],
"parameters": [
{
- "id": 28613,
+ "id": 11324,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -462296,14 +463184,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28614,
+ "id": 11325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28615,
+ "id": 11326,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -462327,7 +463215,7 @@
{
"title": "Properties",
"children": [
- 28615
+ 11326
]
}
],
@@ -462404,7 +463292,7 @@
{
"title": "Methods",
"children": [
- 28611
+ 11322
]
}
],
@@ -462440,7 +463328,7 @@
}
},
{
- "id": 28616,
+ "id": 11327,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -462463,7 +463351,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28617,
+ "id": 11328,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -462477,7 +463365,7 @@
],
"signatures": [
{
- "id": 28618,
+ "id": 11329,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -462505,7 +463393,7 @@
],
"typeParameters": [
{
- "id": 28619,
+ "id": 11330,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -462516,7 +463404,7 @@
}
},
{
- "id": 28620,
+ "id": 11331,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -462529,7 +463417,7 @@
],
"parameters": [
{
- "id": 28621,
+ "id": 11332,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -462562,7 +463450,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -462573,13 +463461,13 @@
},
"trueType": {
"type": "reference",
- "target": 28592,
+ "target": 11303,
"name": "DeleteOrderPaymentCollectionsInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -462612,7 +463500,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -462627,7 +463515,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -462647,7 +463535,7 @@
}
},
{
- "id": 28622,
+ "id": 11333,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -462670,7 +463558,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28623,
+ "id": 11334,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -462684,7 +463572,7 @@
],
"signatures": [
{
- "id": 28624,
+ "id": 11335,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -462706,7 +463594,7 @@
}
},
{
- "id": 28625,
+ "id": 11336,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -462729,7 +463617,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28626,
+ "id": 11337,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -462743,7 +463631,7 @@
],
"signatures": [
{
- "id": 28627,
+ "id": 11338,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -462757,7 +463645,7 @@
],
"parameters": [
{
- "id": 28628,
+ "id": 11339,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -462783,7 +463671,7 @@
}
},
{
- "id": 28629,
+ "id": 11340,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -462806,7 +463694,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28630,
+ "id": 11341,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -462817,7 +463705,7 @@
],
"documents": [
{
- "id": 42667,
+ "id": 25608,
"name": "throwUnlessStatusIsNotPaid",
"variant": "document",
"kind": 8388608,
@@ -462843,7 +463731,7 @@
"frontmatter": {}
},
{
- "id": 42668,
+ "id": 25609,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -462870,21 +463758,21 @@
}
],
"childrenIncludingDocuments": [
- 28604,
- 28616,
- 28622,
- 28625,
- 28629
+ 11315,
+ 11327,
+ 11333,
+ 11336,
+ 11340
],
"groups": [
{
"title": "Properties",
"children": [
- 28604,
- 28616,
- 28622,
- 28625,
- 28629
+ 11315,
+ 11327,
+ 11333,
+ 11336,
+ 11340
]
}
],
@@ -462893,12 +463781,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 60,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L60"
}
],
"signatures": [
{
- "id": 28597,
+ "id": 11308,
"name": "deleteOrderPaymentCollections",
"variant": "signature",
"kind": 4096,
@@ -462945,12 +463833,12 @@
"fileName": "core-flows/src/order/workflows/delete-order-payment-collection.ts",
"line": 60,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/delete-order-payment-collection.ts#L60"
}
],
"typeParameters": [
{
- "id": 28598,
+ "id": 11309,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -462961,7 +463849,7 @@
}
},
{
- "id": 28599,
+ "id": 11310,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -462974,7 +463862,7 @@
],
"parameters": [
{
- "id": 28600,
+ "id": 11311,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -462998,14 +463886,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28601,
+ "id": 11312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28602,
+ "id": 11313,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -463028,7 +463916,7 @@
}
},
{
- "id": 28603,
+ "id": 11314,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -463055,8 +463943,8 @@
{
"title": "Properties",
"children": [
- 28602,
- 28603
+ 11313,
+ 11314
]
}
],
@@ -463131,7 +464019,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28592,
+ "target": 11303,
"name": "DeleteOrderPaymentCollectionsInput",
"package": "@medusajs/core-flows"
},
@@ -463141,14 +464029,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -463163,7 +464051,7 @@
]
},
{
- "id": 28633,
+ "id": 11344,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -463181,7 +464069,7 @@
"fileName": "core-flows/src/order/workflows/exchange/begin-order-exchange.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L25"
}
],
"type": {
@@ -463195,7 +464083,7 @@
}
},
{
- "id": 28634,
+ "id": 11345,
"name": "beginOrderExchangeValidationStep",
"variant": "declaration",
"kind": 64,
@@ -463230,7 +464118,7 @@
},
"children": [
{
- "id": 28643,
+ "id": 11354,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -463248,7 +464136,7 @@
}
},
{
- "id": 28644,
+ "id": 11355,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -463270,8 +464158,8 @@
{
"title": "Properties",
"children": [
- 28643,
- 28644
+ 11354,
+ 11355
]
}
],
@@ -463280,12 +464168,12 @@
"fileName": "core-flows/src/order/workflows/exchange/begin-order-exchange.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L47"
}
],
"signatures": [
{
- "id": 28635,
+ "id": 11346,
"name": "beginOrderExchangeValidationStep",
"variant": "signature",
"kind": 4096,
@@ -463323,12 +464211,12 @@
"fileName": "core-flows/src/order/workflows/exchange/begin-order-exchange.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L47"
}
],
"parameters": [
{
- "id": 28636,
+ "id": 11347,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -463338,7 +464226,7 @@
"types": [
{
"type": "reference",
- "target": 28631,
+ "target": 11342,
"name": "BeginOrderExchangeValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -463351,7 +464239,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28631,
+ "target": 11342,
"name": "BeginOrderExchangeValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -463384,14 +464272,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28637,
+ "id": 11348,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28638,
+ "id": 11349,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -463405,7 +464293,7 @@
],
"signatures": [
{
- "id": 28639,
+ "id": 11350,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -463419,7 +464307,7 @@
],
"parameters": [
{
- "id": 28640,
+ "id": 11351,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -463430,14 +464318,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28641,
+ "id": 11352,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28642,
+ "id": 11353,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -463461,7 +464349,7 @@
{
"title": "Properties",
"children": [
- 28642
+ 11353
]
}
],
@@ -463538,7 +464426,7 @@
{
"title": "Methods",
"children": [
- 28638
+ 11349
]
}
],
@@ -463572,7 +464460,7 @@
]
},
{
- "id": 28645,
+ "id": 11356,
"name": "beginExchangeOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -463584,7 +464472,7 @@
"fileName": "core-flows/src/order/workflows/exchange/begin-order-exchange.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L54"
}
],
"type": {
@@ -463594,7 +464482,7 @@
"defaultValue": "\"begin-exchange-order\""
},
{
- "id": 28646,
+ "id": 11357,
"name": "beginExchangeOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -463638,7 +464526,7 @@
},
"children": [
{
- "id": 28654,
+ "id": 11365,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -463661,7 +464549,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28655,
+ "id": 11366,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -463675,7 +464563,7 @@
],
"signatures": [
{
- "id": 28656,
+ "id": 11367,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -463703,7 +464591,7 @@
],
"parameters": [
{
- "id": 28657,
+ "id": 11368,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -463719,14 +464607,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28658,
+ "id": 11369,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28659,
+ "id": 11370,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -463786,7 +464674,7 @@
{
"title": "Properties",
"children": [
- 28659
+ 11370
]
}
],
@@ -463807,14 +464695,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28660,
+ "id": 11371,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28661,
+ "id": 11372,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -463860,7 +464748,7 @@
}
},
{
- "id": 28662,
+ "id": 11373,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -463906,7 +464794,7 @@
}
},
{
- "id": 28663,
+ "id": 11374,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -463995,7 +464883,7 @@
}
},
{
- "id": 28664,
+ "id": 11375,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -464060,7 +464948,7 @@
}
},
{
- "id": 28665,
+ "id": 11376,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -464106,7 +464994,7 @@
}
},
{
- "id": 28666,
+ "id": 11377,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -464152,7 +465040,7 @@
}
},
{
- "id": 28667,
+ "id": 11378,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -464198,7 +465086,7 @@
}
},
{
- "id": 28668,
+ "id": 11379,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -464244,7 +465132,7 @@
}
},
{
- "id": 28669,
+ "id": 11380,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -464303,7 +465191,7 @@
}
},
{
- "id": 28670,
+ "id": 11381,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -464362,7 +465250,7 @@
}
},
{
- "id": 28671,
+ "id": 11382,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -464421,7 +465309,7 @@
}
},
{
- "id": 28672,
+ "id": 11383,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -464480,7 +465368,7 @@
}
},
{
- "id": 28673,
+ "id": 11384,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -464545,7 +465433,7 @@
}
},
{
- "id": 28674,
+ "id": 11385,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -464601,7 +465489,7 @@
}
},
{
- "id": 28675,
+ "id": 11386,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -464660,7 +465548,7 @@
}
},
{
- "id": 28676,
+ "id": 11387,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -464737,7 +465625,7 @@
}
},
{
- "id": 28677,
+ "id": 11388,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -464796,7 +465684,7 @@
}
},
{
- "id": 28678,
+ "id": 11389,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -464873,7 +465761,7 @@
}
},
{
- "id": 28679,
+ "id": 11390,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -464932,7 +465820,7 @@
}
},
{
- "id": 28680,
+ "id": 11391,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -464991,7 +465879,7 @@
}
},
{
- "id": 28681,
+ "id": 11392,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -465080,7 +465968,7 @@
}
},
{
- "id": 28682,
+ "id": 11393,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -465157,7 +466045,7 @@
}
},
{
- "id": 28683,
+ "id": 11394,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -465216,7 +466104,7 @@
}
},
{
- "id": 28684,
+ "id": 11395,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -465293,7 +466181,7 @@
}
},
{
- "id": 28685,
+ "id": 11396,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -465362,7 +466250,7 @@
}
},
{
- "id": 28686,
+ "id": 11397,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -465435,32 +466323,32 @@
{
"title": "Properties",
"children": [
- 28661,
- 28662,
- 28663,
- 28664,
- 28665,
- 28666,
- 28667,
- 28668,
- 28669,
- 28670,
- 28671,
- 28672,
- 28673,
- 28674,
- 28675,
- 28676,
- 28677,
- 28678,
- 28679,
- 28680,
- 28681,
- 28682,
- 28683,
- 28684,
- 28685,
- 28686
+ 11372,
+ 11373,
+ 11374,
+ 11375,
+ 11376,
+ 11377,
+ 11378,
+ 11379,
+ 11380,
+ 11381,
+ 11382,
+ 11383,
+ 11384,
+ 11385,
+ 11386,
+ 11387,
+ 11388,
+ 11389,
+ 11390,
+ 11391,
+ 11392,
+ 11393,
+ 11394,
+ 11395,
+ 11396,
+ 11397
]
}
],
@@ -465505,14 +466393,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28687,
+ "id": 11398,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28688,
+ "id": 11399,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -465526,7 +466414,7 @@
],
"signatures": [
{
- "id": 28689,
+ "id": 11400,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -465540,7 +466428,7 @@
],
"parameters": [
{
- "id": 28690,
+ "id": 11401,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -465551,14 +466439,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28691,
+ "id": 11402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28692,
+ "id": 11403,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -465582,7 +466470,7 @@
{
"title": "Properties",
"children": [
- 28692
+ 11403
]
}
],
@@ -465664,7 +466552,7 @@
{
"title": "Methods",
"children": [
- 28688
+ 11399
]
}
],
@@ -465705,7 +466593,7 @@
}
},
{
- "id": 28693,
+ "id": 11404,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -465728,7 +466616,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28694,
+ "id": 11405,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -465742,7 +466630,7 @@
],
"signatures": [
{
- "id": 28695,
+ "id": 11406,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -465770,7 +466658,7 @@
],
"typeParameters": [
{
- "id": 28696,
+ "id": 11407,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -465781,7 +466669,7 @@
}
},
{
- "id": 28697,
+ "id": 11408,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -465794,7 +466682,7 @@
],
"parameters": [
{
- "id": 28698,
+ "id": 11409,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -465827,7 +466715,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -465847,7 +466735,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -465880,7 +466768,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -465900,7 +466788,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -465920,7 +466808,7 @@
}
},
{
- "id": 28699,
+ "id": 11410,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -465943,7 +466831,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28700,
+ "id": 11411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -465957,7 +466845,7 @@
],
"signatures": [
{
- "id": 28701,
+ "id": 11412,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -465979,7 +466867,7 @@
}
},
{
- "id": 28702,
+ "id": 11413,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -466002,7 +466890,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28703,
+ "id": 11414,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -466016,7 +466904,7 @@
],
"signatures": [
{
- "id": 28704,
+ "id": 11415,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -466030,7 +466918,7 @@
],
"parameters": [
{
- "id": 28705,
+ "id": 11416,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -466056,7 +466944,7 @@
}
},
{
- "id": 28706,
+ "id": 11417,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -466079,7 +466967,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28707,
+ "id": 11418,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -466090,7 +466978,7 @@
],
"documents": [
{
- "id": 42669,
+ "id": 25610,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -466116,7 +467004,7 @@
"frontmatter": {}
},
{
- "id": 42670,
+ "id": 25611,
"name": "beginOrderExchangeValidationStep",
"variant": "document",
"kind": 8388608,
@@ -466142,7 +467030,7 @@
"frontmatter": {}
},
{
- "id": 42671,
+ "id": 25612,
"name": "createOrderExchangesStep",
"variant": "document",
"kind": 8388608,
@@ -466168,7 +467056,7 @@
"frontmatter": {}
},
{
- "id": 42672,
+ "id": 25613,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -466195,21 +467083,21 @@
}
],
"childrenIncludingDocuments": [
- 28654,
- 28693,
- 28699,
- 28702,
- 28706
+ 11365,
+ 11404,
+ 11410,
+ 11413,
+ 11417
],
"groups": [
{
"title": "Properties",
"children": [
- 28654,
- 28693,
- 28699,
- 28702,
- 28706
+ 11365,
+ 11404,
+ 11410,
+ 11413,
+ 11417
]
}
],
@@ -466218,12 +467106,12 @@
"fileName": "core-flows/src/order/workflows/exchange/begin-order-exchange.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L74"
}
],
"signatures": [
{
- "id": 28647,
+ "id": 11358,
"name": "beginExchangeOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -466270,12 +467158,12 @@
"fileName": "core-flows/src/order/workflows/exchange/begin-order-exchange.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/begin-order-exchange.ts#L74"
}
],
"typeParameters": [
{
- "id": 28648,
+ "id": 11359,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -466286,7 +467174,7 @@
}
},
{
- "id": 28649,
+ "id": 11360,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -466299,7 +467187,7 @@
],
"parameters": [
{
- "id": 28650,
+ "id": 11361,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -466323,14 +467211,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28651,
+ "id": 11362,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28652,
+ "id": 11363,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -466353,7 +467241,7 @@
}
},
{
- "id": 28653,
+ "id": 11364,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -466380,8 +467268,8 @@
{
"title": "Properties",
"children": [
- 28652,
- 28653
+ 11363,
+ 11364
]
}
],
@@ -466474,14 +467362,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -466496,7 +467384,7 @@
]
},
{
- "id": 28710,
+ "id": 11421,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -466514,7 +467402,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L33"
}
],
"type": {
@@ -466528,7 +467416,7 @@
}
},
{
- "id": 28711,
+ "id": 11422,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -466546,7 +467434,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L37"
}
],
"type": {
@@ -466560,7 +467448,7 @@
}
},
{
- "id": 28712,
+ "id": 11423,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -466578,7 +467466,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L41"
}
],
"type": {
@@ -466592,7 +467480,7 @@
}
},
{
- "id": 28713,
+ "id": 11424,
"name": "cancelBeginOrderExchangeValidationStep",
"variant": "declaration",
"kind": 64,
@@ -466627,7 +467515,7 @@
},
"children": [
{
- "id": 28722,
+ "id": 11433,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -466645,7 +467533,7 @@
}
},
{
- "id": 28723,
+ "id": 11434,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -466667,8 +467555,8 @@
{
"title": "Properties",
"children": [
- 28722,
- 28723
+ 11433,
+ 11434
]
}
],
@@ -466677,12 +467565,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L71"
}
],
"signatures": [
{
- "id": 28714,
+ "id": 11425,
"name": "cancelBeginOrderExchangeValidationStep",
"variant": "signature",
"kind": 4096,
@@ -466720,12 +467608,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L71"
}
],
"parameters": [
{
- "id": 28715,
+ "id": 11426,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -466735,7 +467623,7 @@
"types": [
{
"type": "reference",
- "target": 28708,
+ "target": 11419,
"name": "CancelBeginOrderExchangeValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -466748,7 +467636,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28708,
+ "target": 11419,
"name": "CancelBeginOrderExchangeValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -466781,14 +467669,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28716,
+ "id": 11427,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28717,
+ "id": 11428,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -466802,7 +467690,7 @@
],
"signatures": [
{
- "id": 28718,
+ "id": 11429,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -466816,7 +467704,7 @@
],
"parameters": [
{
- "id": 28719,
+ "id": 11430,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -466827,14 +467715,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28720,
+ "id": 11431,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28721,
+ "id": 11432,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -466858,7 +467746,7 @@
{
"title": "Properties",
"children": [
- 28721
+ 11432
]
}
],
@@ -466935,7 +467823,7 @@
{
"title": "Methods",
"children": [
- 28717
+ 11428
]
}
],
@@ -466969,7 +467857,7 @@
]
},
{
- "id": 28726,
+ "id": 11437,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -466987,7 +467875,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L91"
}
],
"type": {
@@ -466996,7 +467884,7 @@
}
},
{
- "id": 28727,
+ "id": 11438,
"name": "cancelBeginOrderExchangeWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -467008,7 +467896,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 94,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L94"
}
],
"type": {
@@ -467018,7 +467906,7 @@
"defaultValue": "\"cancel-begin-order-exchange\""
},
{
- "id": 28728,
+ "id": 11439,
"name": "cancelBeginOrderExchangeWorkflow",
"variant": "declaration",
"kind": 64,
@@ -467062,7 +467950,7 @@
},
"children": [
{
- "id": 28736,
+ "id": 11447,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -467085,7 +467973,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28737,
+ "id": 11448,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -467099,7 +467987,7 @@
],
"signatures": [
{
- "id": 28738,
+ "id": 11449,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -467127,7 +468015,7 @@
],
"parameters": [
{
- "id": 28739,
+ "id": 11450,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -467143,14 +468031,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28740,
+ "id": 11451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28741,
+ "id": 11452,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -467175,7 +468063,7 @@
"types": [
{
"type": "reference",
- "target": 28724,
+ "target": 11435,
"name": "CancelBeginOrderExchangeWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -467188,7 +468076,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28724,
+ "target": 11435,
"name": "CancelBeginOrderExchangeWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -467204,7 +468092,7 @@
{
"title": "Properties",
"children": [
- 28741
+ 11452
]
}
],
@@ -467240,14 +468128,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28742,
+ "id": 11453,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28743,
+ "id": 11454,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -467261,7 +468149,7 @@
],
"signatures": [
{
- "id": 28744,
+ "id": 11455,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -467275,7 +468163,7 @@
],
"parameters": [
{
- "id": 28745,
+ "id": 11456,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -467286,14 +468174,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28746,
+ "id": 11457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28747,
+ "id": 11458,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -467317,7 +468205,7 @@
{
"title": "Properties",
"children": [
- 28747
+ 11458
]
}
],
@@ -467394,7 +468282,7 @@
{
"title": "Methods",
"children": [
- 28743
+ 11454
]
}
],
@@ -467430,7 +468318,7 @@
}
},
{
- "id": 28748,
+ "id": 11459,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -467453,7 +468341,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28749,
+ "id": 11460,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -467467,7 +468355,7 @@
],
"signatures": [
{
- "id": 28750,
+ "id": 11461,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -467495,7 +468383,7 @@
],
"typeParameters": [
{
- "id": 28751,
+ "id": 11462,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -467506,7 +468394,7 @@
}
},
{
- "id": 28752,
+ "id": 11463,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -467519,7 +468407,7 @@
],
"parameters": [
{
- "id": 28753,
+ "id": 11464,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -467552,7 +468440,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -467563,13 +468451,13 @@
},
"trueType": {
"type": "reference",
- "target": 28724,
+ "target": 11435,
"name": "CancelBeginOrderExchangeWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -467602,7 +468490,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -467617,7 +468505,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -467637,7 +468525,7 @@
}
},
{
- "id": 28754,
+ "id": 11465,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -467660,7 +468548,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28755,
+ "id": 11466,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -467674,7 +468562,7 @@
],
"signatures": [
{
- "id": 28756,
+ "id": 11467,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -467696,7 +468584,7 @@
}
},
{
- "id": 28757,
+ "id": 11468,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -467719,7 +468607,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28758,
+ "id": 11469,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -467733,7 +468621,7 @@
],
"signatures": [
{
- "id": 28759,
+ "id": 11470,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -467747,7 +468635,7 @@
],
"parameters": [
{
- "id": 28760,
+ "id": 11471,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -467773,7 +468661,7 @@
}
},
{
- "id": 28761,
+ "id": 11472,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -467796,7 +468684,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28762,
+ "id": 11473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -467807,7 +468695,7 @@
],
"documents": [
{
- "id": 42673,
+ "id": 25614,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -467833,7 +468721,7 @@
"frontmatter": {}
},
{
- "id": 42674,
+ "id": 25615,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -467859,7 +468747,7 @@
"frontmatter": {}
},
{
- "id": 42675,
+ "id": 25616,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -467885,7 +468773,7 @@
"frontmatter": {}
},
{
- "id": 42676,
+ "id": 25617,
"name": "cancelBeginOrderExchangeValidationStep",
"variant": "document",
"kind": 8388608,
@@ -467911,7 +468799,7 @@
"frontmatter": {}
},
{
- "id": 42677,
+ "id": 25618,
"name": "deleteReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -467937,7 +468825,7 @@
"frontmatter": {}
},
{
- "id": 42678,
+ "id": 25619,
"name": "deleteExchangesStep",
"variant": "document",
"kind": 8388608,
@@ -467963,7 +468851,7 @@
"frontmatter": {}
},
{
- "id": 42679,
+ "id": 25620,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -467989,7 +468877,7 @@
"frontmatter": {}
},
{
- "id": 42680,
+ "id": 25621,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -468016,21 +468904,21 @@
}
],
"childrenIncludingDocuments": [
- 28736,
- 28748,
- 28754,
- 28757,
- 28761
+ 11447,
+ 11459,
+ 11465,
+ 11468,
+ 11472
],
"groups": [
{
"title": "Properties",
"children": [
- 28736,
- 28748,
- 28754,
- 28757,
- 28761
+ 11447,
+ 11459,
+ 11465,
+ 11468,
+ 11472
]
}
],
@@ -468039,12 +468927,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L114"
}
],
"signatures": [
{
- "id": 28729,
+ "id": 11440,
"name": "cancelBeginOrderExchangeWorkflow",
"variant": "signature",
"kind": 4096,
@@ -468091,12 +468979,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-begin-order-exchange.ts#L114"
}
],
"typeParameters": [
{
- "id": 28730,
+ "id": 11441,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -468107,7 +468995,7 @@
}
},
{
- "id": 28731,
+ "id": 11442,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -468120,7 +469008,7 @@
],
"parameters": [
{
- "id": 28732,
+ "id": 11443,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -468144,14 +469032,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28733,
+ "id": 11444,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28734,
+ "id": 11445,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -468174,7 +469062,7 @@
}
},
{
- "id": 28735,
+ "id": 11446,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -468201,8 +469089,8 @@
{
"title": "Properties",
"children": [
- 28734,
- 28735
+ 11445,
+ 11446
]
}
],
@@ -468277,7 +469165,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28724,
+ "target": 11435,
"name": "CancelBeginOrderExchangeWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -468287,14 +469175,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -468309,7 +469197,7 @@
]
},
{
- "id": 28765,
+ "id": 11476,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -468327,7 +469215,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L29"
}
],
"type": {
@@ -468341,7 +469229,7 @@
}
},
{
- "id": 28768,
+ "id": 11479,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -468351,7 +469239,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 33,
"character": 29,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
}
],
"type": {
@@ -468368,7 +469256,7 @@
}
},
{
- "id": 28766,
+ "id": 11477,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -468386,7 +469274,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
}
],
"type": {
@@ -468404,14 +469292,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28767,
+ "id": 11478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28768,
+ "id": 11479,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -468421,7 +469309,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 33,
"character": 29,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
}
],
"type": {
@@ -468442,7 +469330,7 @@
{
"title": "Properties",
"children": [
- 28768
+ 11479
]
}
],
@@ -468451,7 +469339,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 33,
"character": 27,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L33"
}
]
}
@@ -468460,7 +469348,7 @@
}
},
{
- "id": 28769,
+ "id": 11480,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -468478,7 +469366,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L37"
}
],
"type": {
@@ -468493,7 +469381,7 @@
}
},
{
- "id": 28770,
+ "id": 11481,
"name": "cancelExchangeValidateOrder",
"variant": "declaration",
"kind": 64,
@@ -468528,7 +469416,7 @@
},
"children": [
{
- "id": 28779,
+ "id": 11490,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -468546,7 +469434,7 @@
}
},
{
- "id": 28780,
+ "id": 11491,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -468568,8 +469456,8 @@
{
"title": "Properties",
"children": [
- 28779,
- 28780
+ 11490,
+ 11491
]
}
],
@@ -468578,12 +469466,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 62,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L62"
}
],
"signatures": [
{
- "id": 28771,
+ "id": 11482,
"name": "cancelExchangeValidateOrder",
"variant": "signature",
"kind": 4096,
@@ -468621,12 +469509,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 62,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L62"
}
],
"parameters": [
{
- "id": 28772,
+ "id": 11483,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -468636,7 +469524,7 @@
"types": [
{
"type": "reference",
- "target": 28763,
+ "target": 11474,
"name": "CancelExchangeValidateOrderStepInput",
"package": "@medusajs/core-flows"
},
@@ -468649,7 +469537,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28763,
+ "target": 11474,
"name": "CancelExchangeValidateOrderStepInput",
"package": "@medusajs/core-flows"
}
@@ -468682,14 +469570,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28773,
+ "id": 11484,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28774,
+ "id": 11485,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -468703,7 +469591,7 @@
],
"signatures": [
{
- "id": 28775,
+ "id": 11486,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -468717,7 +469605,7 @@
],
"parameters": [
{
- "id": 28776,
+ "id": 11487,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -468728,14 +469616,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28777,
+ "id": 11488,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28778,
+ "id": 11489,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -468759,7 +469647,7 @@
{
"title": "Properties",
"children": [
- 28778
+ 11489
]
}
],
@@ -468836,7 +469724,7 @@
{
"title": "Methods",
"children": [
- 28774
+ 11485
]
}
],
@@ -468870,7 +469758,7 @@
]
},
{
- "id": 28781,
+ "id": 11492,
"name": "cancelOrderExchangeWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -468882,7 +469770,7 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L91"
}
],
"type": {
@@ -468892,7 +469780,7 @@
"defaultValue": "\"cancel-exchange\""
},
{
- "id": 28782,
+ "id": 11493,
"name": "cancelOrderExchangeWorkflow",
"variant": "declaration",
"kind": 64,
@@ -468945,7 +469833,7 @@
},
"children": [
{
- "id": 28790,
+ "id": 11501,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -468968,7 +469856,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28791,
+ "id": 11502,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -468982,7 +469870,7 @@
],
"signatures": [
{
- "id": 28792,
+ "id": 11503,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -469010,7 +469898,7 @@
],
"parameters": [
{
- "id": 28793,
+ "id": 11504,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -469026,14 +469914,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28794,
+ "id": 11505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28795,
+ "id": 11506,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -469093,7 +469981,7 @@
{
"title": "Properties",
"children": [
- 28795
+ 11506
]
}
],
@@ -469129,14 +470017,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28796,
+ "id": 11507,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28797,
+ "id": 11508,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -469150,7 +470038,7 @@
],
"signatures": [
{
- "id": 28798,
+ "id": 11509,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -469164,7 +470052,7 @@
],
"parameters": [
{
- "id": 28799,
+ "id": 11510,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -469175,14 +470063,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28800,
+ "id": 11511,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28801,
+ "id": 11512,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -469206,7 +470094,7 @@
{
"title": "Properties",
"children": [
- 28801
+ 11512
]
}
],
@@ -469283,7 +470171,7 @@
{
"title": "Methods",
"children": [
- 28797
+ 11508
]
}
],
@@ -469319,7 +470207,7 @@
}
},
{
- "id": 28802,
+ "id": 11513,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -469342,7 +470230,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28803,
+ "id": 11514,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -469356,7 +470244,7 @@
],
"signatures": [
{
- "id": 28804,
+ "id": 11515,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -469384,7 +470272,7 @@
],
"typeParameters": [
{
- "id": 28805,
+ "id": 11516,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -469395,7 +470283,7 @@
}
},
{
- "id": 28806,
+ "id": 11517,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -469408,7 +470296,7 @@
],
"parameters": [
{
- "id": 28807,
+ "id": 11518,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -469441,7 +470329,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -469461,7 +470349,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -469494,7 +470382,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -469509,7 +470397,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -469529,7 +470417,7 @@
}
},
{
- "id": 28808,
+ "id": 11519,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -469552,7 +470440,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28809,
+ "id": 11520,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -469566,7 +470454,7 @@
],
"signatures": [
{
- "id": 28810,
+ "id": 11521,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -469588,7 +470476,7 @@
}
},
{
- "id": 28811,
+ "id": 11522,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -469611,7 +470499,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28812,
+ "id": 11523,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -469625,7 +470513,7 @@
],
"signatures": [
{
- "id": 28813,
+ "id": 11524,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -469639,7 +470527,7 @@
],
"parameters": [
{
- "id": 28814,
+ "id": 11525,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -469665,7 +470553,7 @@
}
},
{
- "id": 28815,
+ "id": 11526,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -469688,7 +470576,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28816,
+ "id": 11527,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -469699,7 +470587,7 @@
],
"documents": [
{
- "id": 42681,
+ "id": 25622,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -469725,7 +470613,7 @@
"frontmatter": {}
},
{
- "id": 42682,
+ "id": 25623,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -469751,7 +470639,7 @@
"frontmatter": {}
},
{
- "id": 42683,
+ "id": 25624,
"name": "cancelExchangeValidateOrder",
"variant": "document",
"kind": 8388608,
@@ -469777,7 +470665,7 @@
"frontmatter": {}
},
{
- "id": 42684,
+ "id": 25625,
"name": "cancelOrderExchangeStep",
"variant": "document",
"kind": 8388608,
@@ -469803,7 +470691,7 @@
"frontmatter": {}
},
{
- "id": 42685,
+ "id": 25626,
"name": "deleteReservationsByLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -469829,7 +470717,7 @@
"frontmatter": {}
},
{
- "id": 42686,
+ "id": 25627,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -469864,7 +470752,7 @@
"frontmatter": {},
"children": [
{
- "id": 42687,
+ "id": 25628,
"name": "cancelReturnWorkflow",
"variant": "document",
"kind": 8388608,
@@ -469893,21 +470781,21 @@
}
],
"childrenIncludingDocuments": [
- 28790,
- 28802,
- 28808,
- 28811,
- 28815
+ 11501,
+ 11513,
+ 11519,
+ 11522,
+ 11526
],
"groups": [
{
"title": "Properties",
"children": [
- 28790,
- 28802,
- 28808,
- 28811,
- 28815
+ 11501,
+ 11513,
+ 11519,
+ 11522,
+ 11526
]
}
],
@@ -469916,12 +470804,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L111"
}
],
"signatures": [
{
- "id": 28783,
+ "id": 11494,
"name": "cancelOrderExchangeWorkflow",
"variant": "signature",
"kind": 4096,
@@ -469977,12 +470865,12 @@
"fileName": "core-flows/src/order/workflows/exchange/cancel-exchange.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/cancel-exchange.ts#L111"
}
],
"typeParameters": [
{
- "id": 28784,
+ "id": 11495,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -469993,7 +470881,7 @@
}
},
{
- "id": 28785,
+ "id": 11496,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -470006,7 +470894,7 @@
],
"parameters": [
{
- "id": 28786,
+ "id": 11497,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -470030,14 +470918,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28787,
+ "id": 11498,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28788,
+ "id": 11499,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -470060,7 +470948,7 @@
}
},
{
- "id": 28789,
+ "id": 11500,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -470087,8 +470975,8 @@
{
"title": "Properties",
"children": [
- 28788,
- 28789
+ 11499,
+ 11500
]
}
],
@@ -470176,14 +471064,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -470198,7 +471086,7 @@
]
},
{
- "id": 28819,
+ "id": 11530,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -470216,7 +471104,7 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L52"
}
],
"type": {
@@ -470230,7 +471118,7 @@
}
},
{
- "id": 28820,
+ "id": 11531,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -470248,7 +471136,7 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L56"
}
],
"type": {
@@ -470262,7 +471150,7 @@
}
},
{
- "id": 28821,
+ "id": 11532,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -470280,7 +471168,7 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L60"
}
],
"type": {
@@ -470294,7 +471182,7 @@
}
},
{
- "id": 28822,
+ "id": 11533,
"name": "confirmExchangeRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -470329,7 +471217,7 @@
},
"children": [
{
- "id": 28831,
+ "id": 11542,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -470347,7 +471235,7 @@
}
},
{
- "id": 28832,
+ "id": 11543,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -470369,8 +471257,8 @@
{
"title": "Properties",
"children": [
- 28831,
- 28832
+ 11542,
+ 11543
]
}
],
@@ -470379,12 +471267,12 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 90,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L90"
}
],
"signatures": [
{
- "id": 28823,
+ "id": 11534,
"name": "confirmExchangeRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -470422,12 +471310,12 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 90,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L90"
}
],
"parameters": [
{
- "id": 28824,
+ "id": 11535,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -470437,7 +471325,7 @@
"types": [
{
"type": "reference",
- "target": 28817,
+ "target": 11528,
"name": "ConfirmExchangeRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -470450,7 +471338,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28817,
+ "target": 11528,
"name": "ConfirmExchangeRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -470483,14 +471371,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28825,
+ "id": 11536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28826,
+ "id": 11537,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -470504,7 +471392,7 @@
],
"signatures": [
{
- "id": 28827,
+ "id": 11538,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -470518,7 +471406,7 @@
],
"parameters": [
{
- "id": 28828,
+ "id": 11539,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -470529,14 +471417,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28829,
+ "id": 11540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28830,
+ "id": 11541,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -470560,7 +471448,7 @@
{
"title": "Properties",
"children": [
- 28830
+ 11541
]
}
],
@@ -470637,7 +471525,7 @@
{
"title": "Methods",
"children": [
- 28826
+ 11537
]
}
],
@@ -470671,7 +471559,7 @@
]
},
{
- "id": 28835,
+ "id": 11546,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -470689,7 +471577,7 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L258"
}
],
"type": {
@@ -470698,7 +471586,7 @@
}
},
{
- "id": 28836,
+ "id": 11547,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -470718,7 +471606,7 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 262,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L262"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L262"
}
],
"type": {
@@ -470727,7 +471615,7 @@
}
},
{
- "id": 28837,
+ "id": 11548,
"name": "confirmExchangeRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -470739,7 +471627,7 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 265,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L265"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L265"
}
],
"type": {
@@ -470749,7 +471637,7 @@
"defaultValue": "\"confirm-exchange-request\""
},
{
- "id": 28838,
+ "id": 11549,
"name": "confirmExchangeRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -470811,7 +471699,7 @@
},
"children": [
{
- "id": 28846,
+ "id": 11557,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -470834,7 +471722,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28847,
+ "id": 11558,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -470848,7 +471736,7 @@
],
"signatures": [
{
- "id": 28848,
+ "id": 11559,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -470876,7 +471764,7 @@
],
"parameters": [
{
- "id": 28849,
+ "id": 11560,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -470892,14 +471780,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28850,
+ "id": 11561,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28851,
+ "id": 11562,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -470924,7 +471812,7 @@
"types": [
{
"type": "reference",
- "target": 28833,
+ "target": 11544,
"name": "ConfirmExchangeRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -470937,7 +471825,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28833,
+ "target": 11544,
"name": "ConfirmExchangeRequestWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -470953,7 +471841,7 @@
{
"title": "Properties",
"children": [
- 28851
+ 11562
]
}
],
@@ -470974,14 +471862,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28852,
+ "id": 11563,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28865,
+ "id": 11576,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -471027,7 +471915,7 @@
}
},
{
- "id": 28925,
+ "id": 11636,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -471073,7 +471961,7 @@
}
},
{
- "id": 28926,
+ "id": 11637,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -471119,7 +472007,7 @@
}
},
{
- "id": 28927,
+ "id": 11638,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -471176,7 +472064,7 @@
}
},
{
- "id": 28928,
+ "id": 11639,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -471232,7 +472120,7 @@
}
},
{
- "id": 28893,
+ "id": 11604,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -471289,7 +472177,7 @@
}
},
{
- "id": 28894,
+ "id": 11605,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -471346,7 +472234,7 @@
}
},
{
- "id": 28895,
+ "id": 11606,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -471403,7 +472291,7 @@
}
},
{
- "id": 28870,
+ "id": 11581,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -471460,7 +472348,7 @@
}
},
{
- "id": 28896,
+ "id": 11607,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -471506,7 +472394,7 @@
}
},
{
- "id": 28897,
+ "id": 11608,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -471576,7 +472464,7 @@
}
},
{
- "id": 28898,
+ "id": 11609,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -471646,7 +472534,7 @@
}
},
{
- "id": 28929,
+ "id": 11640,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -471722,7 +472610,7 @@
}
},
{
- "id": 28899,
+ "id": 11610,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -471798,7 +472686,7 @@
}
},
{
- "id": 28930,
+ "id": 11641,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -471868,7 +472756,7 @@
}
},
{
- "id": 28931,
+ "id": 11642,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -471925,7 +472813,7 @@
}
},
{
- "id": 28869,
+ "id": 11580,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -472020,7 +472908,7 @@
}
},
{
- "id": 28924,
+ "id": 11635,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -472095,7 +472983,7 @@
}
},
{
- "id": 28866,
+ "id": 11577,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -472164,7 +473052,7 @@
}
},
{
- "id": 28867,
+ "id": 11578,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -472233,7 +473121,7 @@
}
},
{
- "id": 28868,
+ "id": 11579,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -472308,7 +473196,7 @@
}
},
{
- "id": 28900,
+ "id": 11611,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -472364,7 +473252,7 @@
}
},
{
- "id": 28901,
+ "id": 11612,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -472420,7 +473308,7 @@
}
},
{
- "id": 28902,
+ "id": 11613,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -472476,7 +473364,7 @@
}
},
{
- "id": 28874,
+ "id": 11585,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -472532,7 +473420,7 @@
}
},
{
- "id": 28875,
+ "id": 11586,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -472588,7 +473476,7 @@
}
},
{
- "id": 28876,
+ "id": 11587,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -472644,7 +473532,7 @@
}
},
{
- "id": 28932,
+ "id": 11643,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -472700,7 +473588,7 @@
}
},
{
- "id": 28871,
+ "id": 11582,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -472756,7 +473644,7 @@
}
},
{
- "id": 28872,
+ "id": 11583,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -472812,7 +473700,7 @@
}
},
{
- "id": 28873,
+ "id": 11584,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -472868,7 +473756,7 @@
}
},
{
- "id": 28877,
+ "id": 11588,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -472924,7 +473812,7 @@
}
},
{
- "id": 28878,
+ "id": 11589,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -472980,7 +473868,7 @@
}
},
{
- "id": 28879,
+ "id": 11590,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -473036,7 +473924,7 @@
}
},
{
- "id": 28933,
+ "id": 11644,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -473092,7 +473980,7 @@
}
},
{
- "id": 28880,
+ "id": 11591,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -473148,7 +474036,7 @@
}
},
{
- "id": 28881,
+ "id": 11592,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -473204,7 +474092,7 @@
}
},
{
- "id": 28923,
+ "id": 11634,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -473260,7 +474148,7 @@
}
},
{
- "id": 28903,
+ "id": 11614,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -473316,7 +474204,7 @@
}
},
{
- "id": 28904,
+ "id": 11615,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -473372,7 +474260,7 @@
}
},
{
- "id": 28905,
+ "id": 11616,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -473428,7 +474316,7 @@
}
},
{
- "id": 28906,
+ "id": 11617,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -473484,7 +474372,7 @@
}
},
{
- "id": 28907,
+ "id": 11618,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -473540,7 +474428,7 @@
}
},
{
- "id": 28934,
+ "id": 11645,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -473596,7 +474484,7 @@
}
},
{
- "id": 28908,
+ "id": 11619,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -473652,7 +474540,7 @@
}
},
{
- "id": 28909,
+ "id": 11620,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -473708,7 +474596,7 @@
}
},
{
- "id": 28910,
+ "id": 11621,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -473764,7 +474652,7 @@
}
},
{
- "id": 28853,
+ "id": 11564,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -473820,7 +474708,7 @@
}
},
{
- "id": 28854,
+ "id": 11565,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -473860,14 +474748,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28855,
+ "id": 11566,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28856,
+ "id": 11567,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -473899,7 +474787,7 @@
{
"title": "Properties",
"children": [
- 28856
+ 11567
]
}
],
@@ -473939,14 +474827,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28857,
+ "id": 11568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28858,
+ "id": 11569,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -473978,7 +474866,7 @@
{
"title": "Properties",
"children": [
- 28858
+ 11569
]
}
],
@@ -474002,7 +474890,7 @@
}
},
{
- "id": 28859,
+ "id": 11570,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -474042,14 +474930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28860,
+ "id": 11571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28861,
+ "id": 11572,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -474081,7 +474969,7 @@
{
"title": "Properties",
"children": [
- 28861
+ 11572
]
}
],
@@ -474121,14 +475009,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28862,
+ "id": 11573,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28863,
+ "id": 11574,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -474160,7 +475048,7 @@
{
"title": "Properties",
"children": [
- 28863
+ 11574
]
}
],
@@ -474184,7 +475072,7 @@
}
},
{
- "id": 28864,
+ "id": 11575,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -474234,57 +475122,57 @@
{
"title": "Properties",
"children": [
- 28865,
- 28925,
- 28926,
- 28927,
- 28928,
- 28893,
- 28894,
- 28895,
- 28870,
- 28896,
- 28897,
- 28898,
- 28929,
- 28899,
- 28930,
- 28931,
- 28869,
- 28924,
- 28866,
- 28867,
- 28868,
- 28900,
- 28901,
- 28902,
- 28874,
- 28875,
- 28876,
- 28932,
- 28871,
- 28872,
- 28873,
- 28877,
- 28878,
- 28879,
- 28933,
- 28880,
- 28881,
- 28923,
- 28903,
- 28904,
- 28905,
- 28906,
- 28907,
- 28934,
- 28908,
- 28909,
- 28910,
- 28853,
- 28854,
- 28859,
- 28864
+ 11576,
+ 11636,
+ 11637,
+ 11638,
+ 11639,
+ 11604,
+ 11605,
+ 11606,
+ 11581,
+ 11607,
+ 11608,
+ 11609,
+ 11640,
+ 11610,
+ 11641,
+ 11642,
+ 11580,
+ 11635,
+ 11577,
+ 11578,
+ 11579,
+ 11611,
+ 11612,
+ 11613,
+ 11585,
+ 11586,
+ 11587,
+ 11643,
+ 11582,
+ 11583,
+ 11584,
+ 11588,
+ 11589,
+ 11590,
+ 11644,
+ 11591,
+ 11592,
+ 11634,
+ 11614,
+ 11615,
+ 11616,
+ 11617,
+ 11618,
+ 11645,
+ 11619,
+ 11620,
+ 11621,
+ 11564,
+ 11565,
+ 11570,
+ 11575
]
}
],
@@ -474329,14 +475217,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28935,
+ "id": 11646,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28936,
+ "id": 11647,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -474350,7 +475238,7 @@
],
"signatures": [
{
- "id": 28937,
+ "id": 11648,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -474364,7 +475252,7 @@
],
"parameters": [
{
- "id": 28938,
+ "id": 11649,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -474375,14 +475263,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28939,
+ "id": 11650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28940,
+ "id": 11651,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -474406,7 +475294,7 @@
{
"title": "Properties",
"children": [
- 28940
+ 11651
]
}
],
@@ -474488,7 +475376,7 @@
{
"title": "Methods",
"children": [
- 28936
+ 11647
]
}
],
@@ -474529,7 +475417,7 @@
}
},
{
- "id": 28941,
+ "id": 11652,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -474552,7 +475440,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28942,
+ "id": 11653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -474566,7 +475454,7 @@
],
"signatures": [
{
- "id": 28943,
+ "id": 11654,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -474594,7 +475482,7 @@
],
"typeParameters": [
{
- "id": 28944,
+ "id": 11655,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -474605,7 +475493,7 @@
}
},
{
- "id": 28945,
+ "id": 11656,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -474618,7 +475506,7 @@
],
"parameters": [
{
- "id": 28946,
+ "id": 11657,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -474651,7 +475539,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -474662,13 +475550,13 @@
},
"trueType": {
"type": "reference",
- "target": 28833,
+ "target": 11544,
"name": "ConfirmExchangeRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -474701,7 +475589,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -474721,7 +475609,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -474741,7 +475629,7 @@
}
},
{
- "id": 28947,
+ "id": 11658,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -474764,7 +475652,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28948,
+ "id": 11659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -474778,7 +475666,7 @@
],
"signatures": [
{
- "id": 28949,
+ "id": 11660,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -474800,7 +475688,7 @@
}
},
{
- "id": 28950,
+ "id": 11661,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -474823,7 +475711,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28951,
+ "id": 11662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -474837,7 +475725,7 @@
],
"signatures": [
{
- "id": 28952,
+ "id": 11663,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -474851,7 +475739,7 @@
],
"parameters": [
{
- "id": 28953,
+ "id": 11664,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -474877,7 +475765,7 @@
}
},
{
- "id": 28954,
+ "id": 11665,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -474900,7 +475788,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28955,
+ "id": 11666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -474911,7 +475799,7 @@
],
"documents": [
{
- "id": 42688,
+ "id": 25629,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -474937,7 +475825,7 @@
"frontmatter": {}
},
{
- "id": 42689,
+ "id": 25630,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -474963,7 +475851,7 @@
"frontmatter": {}
},
{
- "id": 42690,
+ "id": 25631,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -474989,7 +475877,7 @@
"frontmatter": {}
},
{
- "id": 42691,
+ "id": 25632,
"name": "confirmExchangeRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -475015,7 +475903,7 @@
"frontmatter": {}
},
{
- "id": 42692,
+ "id": 25633,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -475041,7 +475929,7 @@
"frontmatter": {}
},
{
- "id": 42693,
+ "id": 25634,
"name": "createOrderExchangeItemsFromActionsStep",
"variant": "document",
"kind": 8388608,
@@ -475067,7 +475955,7 @@
"frontmatter": {}
},
{
- "id": 42694,
+ "id": 25635,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -475102,7 +475990,7 @@
"frontmatter": {},
"children": [
{
- "id": 42695,
+ "id": 25636,
"name": "updateReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -475130,7 +476018,7 @@
]
},
{
- "id": 42696,
+ "id": 25637,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -475165,7 +476053,7 @@
"frontmatter": {},
"children": [
{
- "id": 42697,
+ "id": 25638,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -475191,7 +476079,7 @@
"frontmatter": {}
},
{
- "id": 42698,
+ "id": 25639,
"name": "reserveInventoryStep",
"variant": "document",
"kind": 8388608,
@@ -475219,7 +476107,7 @@
]
},
{
- "id": 42699,
+ "id": 25640,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -475254,7 +476142,7 @@
"frontmatter": {},
"children": [
{
- "id": 42700,
+ "id": 25641,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -475280,7 +476168,7 @@
"frontmatter": {}
},
{
- "id": 42701,
+ "id": 25642,
"name": "createReturnFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -475308,7 +476196,7 @@
]
},
{
- "id": 42702,
+ "id": 25643,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -475334,7 +476222,7 @@
"frontmatter": {}
},
{
- "id": 42703,
+ "id": 25644,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -475361,21 +476249,21 @@
}
],
"childrenIncludingDocuments": [
- 28846,
- 28941,
- 28947,
- 28950,
- 28954
+ 11557,
+ 11652,
+ 11658,
+ 11661,
+ 11665
],
"groups": [
{
"title": "Properties",
"children": [
- 28846,
- 28941,
- 28947,
- 28950,
- 28954
+ 11557,
+ 11652,
+ 11658,
+ 11661,
+ 11665
]
}
],
@@ -475384,12 +476272,12 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 285,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L285"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L285"
}
],
"signatures": [
{
- "id": 28839,
+ "id": 11550,
"name": "confirmExchangeRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -475454,12 +476342,12 @@
"fileName": "core-flows/src/order/workflows/exchange/confirm-exchange-request.ts",
"line": 285,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L285"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/confirm-exchange-request.ts#L285"
}
],
"typeParameters": [
{
- "id": 28840,
+ "id": 11551,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -475470,7 +476358,7 @@
}
},
{
- "id": 28841,
+ "id": 11552,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -475483,7 +476371,7 @@
],
"parameters": [
{
- "id": 28842,
+ "id": 11553,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -475507,14 +476395,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28843,
+ "id": 11554,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28844,
+ "id": 11555,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -475537,7 +476425,7 @@
}
},
{
- "id": 28845,
+ "id": 11556,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -475564,8 +476452,8 @@
{
"title": "Properties",
"children": [
- 28844,
- 28845
+ 11555,
+ 11556
]
}
],
@@ -475640,7 +476528,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28833,
+ "target": 11544,
"name": "ConfirmExchangeRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -475655,14 +476543,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -475677,7 +476565,7 @@
]
},
{
- "id": 28958,
+ "id": 11669,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -475695,7 +476583,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L35"
}
],
"type": {
@@ -475709,7 +476597,7 @@
}
},
{
- "id": 28959,
+ "id": 11670,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -475727,7 +476615,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L39"
}
],
"type": {
@@ -475741,7 +476629,7 @@
}
},
{
- "id": 28960,
+ "id": 11671,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -475759,7 +476647,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L43"
}
],
"type": {
@@ -475773,7 +476661,7 @@
}
},
{
- "id": 28961,
+ "id": 11672,
"name": "createExchangeShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -475808,7 +476696,7 @@
},
"children": [
{
- "id": 28970,
+ "id": 11681,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -475826,7 +476714,7 @@
}
},
{
- "id": 28971,
+ "id": 11682,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -475848,8 +476736,8 @@
{
"title": "Properties",
"children": [
- 28970,
- 28971
+ 11681,
+ 11682
]
}
],
@@ -475858,12 +476746,12 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L73"
}
],
"signatures": [
{
- "id": 28962,
+ "id": 11673,
"name": "createExchangeShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -475901,12 +476789,12 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L73"
}
],
"parameters": [
{
- "id": 28963,
+ "id": 11674,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -475916,7 +476804,7 @@
"types": [
{
"type": "reference",
- "target": 28956,
+ "target": 11667,
"name": "CreateExchangeShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -475929,7 +476817,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28956,
+ "target": 11667,
"name": "CreateExchangeShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -475962,14 +476850,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28964,
+ "id": 11675,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28965,
+ "id": 11676,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -475983,7 +476871,7 @@
],
"signatures": [
{
- "id": 28966,
+ "id": 11677,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -475997,7 +476885,7 @@
],
"parameters": [
{
- "id": 28967,
+ "id": 11678,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -476008,14 +476896,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28968,
+ "id": 11679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28969,
+ "id": 11680,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -476039,7 +476927,7 @@
{
"title": "Properties",
"children": [
- 28969
+ 11680
]
}
],
@@ -476116,7 +477004,7 @@
{
"title": "Methods",
"children": [
- 28965
+ 11676
]
}
],
@@ -476150,7 +477038,7 @@
]
},
{
- "id": 28974,
+ "id": 11685,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -476170,7 +477058,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L95"
}
],
"type": {
@@ -476179,7 +477067,7 @@
}
},
{
- "id": 28975,
+ "id": 11686,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -476199,7 +477087,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L99"
}
],
"type": {
@@ -476208,7 +477096,7 @@
}
},
{
- "id": 28976,
+ "id": 11687,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -476226,7 +477114,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L103"
}
],
"type": {
@@ -476235,7 +477123,7 @@
}
},
{
- "id": 28977,
+ "id": 11688,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -476255,7 +477143,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L108"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L108"
}
],
"type": {
@@ -476278,7 +477166,7 @@
}
},
{
- "id": 28978,
+ "id": 11689,
"name": "createExchangeShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -476290,7 +477178,7 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L111"
}
],
"type": {
@@ -476300,7 +477188,7 @@
"defaultValue": "\"create-exchange-shipping-method\""
},
{
- "id": 28979,
+ "id": 11690,
"name": "createExchangeShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -476365,7 +477253,7 @@
},
"children": [
{
- "id": 28987,
+ "id": 11698,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -476388,7 +477276,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28988,
+ "id": 11699,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -476402,7 +477290,7 @@
],
"signatures": [
{
- "id": 28989,
+ "id": 11700,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -476430,7 +477318,7 @@
],
"parameters": [
{
- "id": 28990,
+ "id": 11701,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -476446,14 +477334,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 28991,
+ "id": 11702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28992,
+ "id": 11703,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -476478,7 +477366,7 @@
"types": [
{
"type": "reference",
- "target": 28972,
+ "target": 11683,
"name": "CreateExchangeShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -476491,7 +477379,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28972,
+ "target": 11683,
"name": "CreateExchangeShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -476507,7 +477395,7 @@
{
"title": "Properties",
"children": [
- 28992
+ 11703
]
}
],
@@ -476528,14 +477416,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28993,
+ "id": 11704,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29006,
+ "id": 11717,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -476581,7 +477469,7 @@
}
},
{
- "id": 29066,
+ "id": 11777,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -476627,7 +477515,7 @@
}
},
{
- "id": 29067,
+ "id": 11778,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -476673,7 +477561,7 @@
}
},
{
- "id": 29068,
+ "id": 11779,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -476730,7 +477618,7 @@
}
},
{
- "id": 29069,
+ "id": 11780,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -476786,7 +477674,7 @@
}
},
{
- "id": 29034,
+ "id": 11745,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -476843,7 +477731,7 @@
}
},
{
- "id": 29035,
+ "id": 11746,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -476900,7 +477788,7 @@
}
},
{
- "id": 29036,
+ "id": 11747,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -476957,7 +477845,7 @@
}
},
{
- "id": 29011,
+ "id": 11722,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -477014,7 +477902,7 @@
}
},
{
- "id": 29037,
+ "id": 11748,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -477060,7 +477948,7 @@
}
},
{
- "id": 29038,
+ "id": 11749,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -477130,7 +478018,7 @@
}
},
{
- "id": 29039,
+ "id": 11750,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -477200,7 +478088,7 @@
}
},
{
- "id": 29070,
+ "id": 11781,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -477276,7 +478164,7 @@
}
},
{
- "id": 29040,
+ "id": 11751,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -477352,7 +478240,7 @@
}
},
{
- "id": 29071,
+ "id": 11782,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -477422,7 +478310,7 @@
}
},
{
- "id": 29072,
+ "id": 11783,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -477479,7 +478367,7 @@
}
},
{
- "id": 29010,
+ "id": 11721,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -477574,7 +478462,7 @@
}
},
{
- "id": 29065,
+ "id": 11776,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -477649,7 +478537,7 @@
}
},
{
- "id": 29007,
+ "id": 11718,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -477718,7 +478606,7 @@
}
},
{
- "id": 29008,
+ "id": 11719,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -477787,7 +478675,7 @@
}
},
{
- "id": 29009,
+ "id": 11720,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -477862,7 +478750,7 @@
}
},
{
- "id": 29041,
+ "id": 11752,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -477918,7 +478806,7 @@
}
},
{
- "id": 29042,
+ "id": 11753,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -477974,7 +478862,7 @@
}
},
{
- "id": 29043,
+ "id": 11754,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -478030,7 +478918,7 @@
}
},
{
- "id": 29015,
+ "id": 11726,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -478086,7 +478974,7 @@
}
},
{
- "id": 29016,
+ "id": 11727,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -478142,7 +479030,7 @@
}
},
{
- "id": 29017,
+ "id": 11728,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -478198,7 +479086,7 @@
}
},
{
- "id": 29073,
+ "id": 11784,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -478254,7 +479142,7 @@
}
},
{
- "id": 29012,
+ "id": 11723,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -478310,7 +479198,7 @@
}
},
{
- "id": 29013,
+ "id": 11724,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -478366,7 +479254,7 @@
}
},
{
- "id": 29014,
+ "id": 11725,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -478422,7 +479310,7 @@
}
},
{
- "id": 29018,
+ "id": 11729,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -478478,7 +479366,7 @@
}
},
{
- "id": 29019,
+ "id": 11730,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -478534,7 +479422,7 @@
}
},
{
- "id": 29020,
+ "id": 11731,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -478590,7 +479478,7 @@
}
},
{
- "id": 29074,
+ "id": 11785,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -478646,7 +479534,7 @@
}
},
{
- "id": 29021,
+ "id": 11732,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -478702,7 +479590,7 @@
}
},
{
- "id": 29022,
+ "id": 11733,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -478758,7 +479646,7 @@
}
},
{
- "id": 29064,
+ "id": 11775,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -478814,7 +479702,7 @@
}
},
{
- "id": 29044,
+ "id": 11755,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -478870,7 +479758,7 @@
}
},
{
- "id": 29045,
+ "id": 11756,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -478926,7 +479814,7 @@
}
},
{
- "id": 29046,
+ "id": 11757,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -478982,7 +479870,7 @@
}
},
{
- "id": 29047,
+ "id": 11758,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -479038,7 +479926,7 @@
}
},
{
- "id": 29048,
+ "id": 11759,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -479094,7 +479982,7 @@
}
},
{
- "id": 29075,
+ "id": 11786,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -479150,7 +480038,7 @@
}
},
{
- "id": 29049,
+ "id": 11760,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -479206,7 +480094,7 @@
}
},
{
- "id": 29050,
+ "id": 11761,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -479262,7 +480150,7 @@
}
},
{
- "id": 29051,
+ "id": 11762,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -479318,7 +480206,7 @@
}
},
{
- "id": 28994,
+ "id": 11705,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -479374,7 +480262,7 @@
}
},
{
- "id": 28995,
+ "id": 11706,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -479414,14 +480302,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28996,
+ "id": 11707,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28997,
+ "id": 11708,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -479453,7 +480341,7 @@
{
"title": "Properties",
"children": [
- 28997
+ 11708
]
}
],
@@ -479493,14 +480381,14 @@
{
"type": "reflection",
"declaration": {
- "id": 28998,
+ "id": 11709,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28999,
+ "id": 11710,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -479532,7 +480420,7 @@
{
"title": "Properties",
"children": [
- 28999
+ 11710
]
}
],
@@ -479556,7 +480444,7 @@
}
},
{
- "id": 29000,
+ "id": 11711,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -479596,14 +480484,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29001,
+ "id": 11712,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29002,
+ "id": 11713,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -479635,7 +480523,7 @@
{
"title": "Properties",
"children": [
- 29002
+ 11713
]
}
],
@@ -479675,14 +480563,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29003,
+ "id": 11714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29004,
+ "id": 11715,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -479714,7 +480602,7 @@
{
"title": "Properties",
"children": [
- 29004
+ 11715
]
}
],
@@ -479738,7 +480626,7 @@
}
},
{
- "id": 29005,
+ "id": 11716,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -479788,57 +480676,57 @@
{
"title": "Properties",
"children": [
- 29006,
- 29066,
- 29067,
- 29068,
- 29069,
- 29034,
- 29035,
- 29036,
- 29011,
- 29037,
- 29038,
- 29039,
- 29070,
- 29040,
- 29071,
- 29072,
- 29010,
- 29065,
- 29007,
- 29008,
- 29009,
- 29041,
- 29042,
- 29043,
- 29015,
- 29016,
- 29017,
- 29073,
- 29012,
- 29013,
- 29014,
- 29018,
- 29019,
- 29020,
- 29074,
- 29021,
- 29022,
- 29064,
- 29044,
- 29045,
- 29046,
- 29047,
- 29048,
- 29075,
- 29049,
- 29050,
- 29051,
- 28994,
- 28995,
- 29000,
- 29005
+ 11717,
+ 11777,
+ 11778,
+ 11779,
+ 11780,
+ 11745,
+ 11746,
+ 11747,
+ 11722,
+ 11748,
+ 11749,
+ 11750,
+ 11781,
+ 11751,
+ 11782,
+ 11783,
+ 11721,
+ 11776,
+ 11718,
+ 11719,
+ 11720,
+ 11752,
+ 11753,
+ 11754,
+ 11726,
+ 11727,
+ 11728,
+ 11784,
+ 11723,
+ 11724,
+ 11725,
+ 11729,
+ 11730,
+ 11731,
+ 11785,
+ 11732,
+ 11733,
+ 11775,
+ 11755,
+ 11756,
+ 11757,
+ 11758,
+ 11759,
+ 11786,
+ 11760,
+ 11761,
+ 11762,
+ 11705,
+ 11706,
+ 11711,
+ 11716
]
}
],
@@ -479883,14 +480771,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29076,
+ "id": 11787,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29077,
+ "id": 11788,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -479904,7 +480792,7 @@
],
"signatures": [
{
- "id": 29078,
+ "id": 11789,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -479918,7 +480806,7 @@
],
"parameters": [
{
- "id": 29079,
+ "id": 11790,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -479929,14 +480817,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29080,
+ "id": 11791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29081,
+ "id": 11792,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -479960,7 +480848,7 @@
{
"title": "Properties",
"children": [
- 29081
+ 11792
]
}
],
@@ -480042,7 +480930,7 @@
{
"title": "Methods",
"children": [
- 29077
+ 11788
]
}
],
@@ -480083,7 +480971,7 @@
}
},
{
- "id": 29082,
+ "id": 11793,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -480106,7 +480994,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29083,
+ "id": 11794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -480120,7 +481008,7 @@
],
"signatures": [
{
- "id": 29084,
+ "id": 11795,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -480148,7 +481036,7 @@
],
"typeParameters": [
{
- "id": 29085,
+ "id": 11796,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -480159,7 +481047,7 @@
}
},
{
- "id": 29086,
+ "id": 11797,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -480172,7 +481060,7 @@
],
"parameters": [
{
- "id": 29087,
+ "id": 11798,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -480205,7 +481093,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -480216,13 +481104,13 @@
},
"trueType": {
"type": "reference",
- "target": 28972,
+ "target": 11683,
"name": "CreateExchangeShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -480255,7 +481143,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -480275,7 +481163,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -480295,7 +481183,7 @@
}
},
{
- "id": 29088,
+ "id": 11799,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -480318,7 +481206,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29089,
+ "id": 11800,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -480332,7 +481220,7 @@
],
"signatures": [
{
- "id": 29090,
+ "id": 11801,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -480354,7 +481242,7 @@
}
},
{
- "id": 29091,
+ "id": 11802,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -480377,7 +481265,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29092,
+ "id": 11803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -480391,7 +481279,7 @@
],
"signatures": [
{
- "id": 29093,
+ "id": 11804,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -480405,7 +481293,7 @@
],
"parameters": [
{
- "id": 29094,
+ "id": 11805,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -480431,7 +481319,7 @@
}
},
{
- "id": 29095,
+ "id": 11806,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -480454,7 +481342,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29096,
+ "id": 11807,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -480465,7 +481353,7 @@
],
"documents": [
{
- "id": 42704,
+ "id": 25645,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -480491,7 +481379,7 @@
"frontmatter": {}
},
{
- "id": 42705,
+ "id": 25646,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -480517,7 +481405,7 @@
"frontmatter": {}
},
{
- "id": 42706,
+ "id": 25647,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -480543,7 +481431,7 @@
"frontmatter": {}
},
{
- "id": 42707,
+ "id": 25648,
"name": "fetchShippingOptionForOrderWorkflow",
"variant": "document",
"kind": 8388608,
@@ -480569,7 +481457,7 @@
"frontmatter": {}
},
{
- "id": 42708,
+ "id": 25649,
"name": "createExchangeShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -480595,7 +481483,7 @@
"frontmatter": {}
},
{
- "id": 42709,
+ "id": 25650,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -480621,7 +481509,7 @@
"frontmatter": {}
},
{
- "id": 42710,
+ "id": 25651,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -480647,7 +481535,7 @@
"frontmatter": {}
},
{
- "id": 42711,
+ "id": 25652,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -480674,21 +481562,21 @@
}
],
"childrenIncludingDocuments": [
- 28987,
- 29082,
- 29088,
- 29091,
- 29095
+ 11698,
+ 11793,
+ 11799,
+ 11802,
+ 11806
],
"groups": [
{
"title": "Properties",
"children": [
- 28987,
- 29082,
- 29088,
- 29091,
- 29095
+ 11698,
+ 11793,
+ 11799,
+ 11802,
+ 11806
]
}
],
@@ -480697,12 +481585,12 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 151,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L151"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L151"
}
],
"signatures": [
{
- "id": 28980,
+ "id": 11691,
"name": "createExchangeShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -480770,12 +481658,12 @@
"fileName": "core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts",
"line": 151,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L151"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/create-exchange-shipping-method.ts#L151"
}
],
"typeParameters": [
{
- "id": 28981,
+ "id": 11692,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -480786,7 +481674,7 @@
}
},
{
- "id": 28982,
+ "id": 11693,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -480799,7 +481687,7 @@
],
"parameters": [
{
- "id": 28983,
+ "id": 11694,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -480823,14 +481711,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 28984,
+ "id": 11695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 28985,
+ "id": 11696,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -480853,7 +481741,7 @@
}
},
{
- "id": 28986,
+ "id": 11697,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -480880,8 +481768,8 @@
{
"title": "Properties",
"children": [
- 28985,
- 28986
+ 11696,
+ 11697
]
}
],
@@ -480956,7 +481844,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 28972,
+ "target": 11683,
"name": "CreateExchangeShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -480971,14 +481859,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -480993,7 +481881,7 @@
]
},
{
- "id": 29099,
+ "id": 11810,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -481011,7 +481899,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L36"
}
],
"type": {
@@ -481025,7 +481913,7 @@
}
},
{
- "id": 29100,
+ "id": 11811,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -481043,7 +481931,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L40"
}
],
"type": {
@@ -481057,7 +481945,7 @@
}
},
{
- "id": 29101,
+ "id": 11812,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -481075,7 +481963,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L44"
}
],
"type": {
@@ -481089,7 +481977,7 @@
}
},
{
- "id": 29102,
+ "id": 11813,
"name": "exchangeAddNewItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -481124,7 +482012,7 @@
},
"children": [
{
- "id": 29111,
+ "id": 11822,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -481142,7 +482030,7 @@
}
},
{
- "id": 29112,
+ "id": 11823,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -481164,8 +482052,8 @@
{
"title": "Properties",
"children": [
- 29111,
- 29112
+ 11822,
+ 11823
]
}
],
@@ -481174,12 +482062,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L74"
}
],
"signatures": [
{
- "id": 29103,
+ "id": 11814,
"name": "exchangeAddNewItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -481217,12 +482105,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L74"
}
],
"parameters": [
{
- "id": 29104,
+ "id": 11815,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -481232,7 +482120,7 @@
"types": [
{
"type": "reference",
- "target": 29097,
+ "target": 11808,
"name": "ExchangeAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -481245,7 +482133,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 29097,
+ "target": 11808,
"name": "ExchangeAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -481278,14 +482166,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29105,
+ "id": 11816,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29106,
+ "id": 11817,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -481299,7 +482187,7 @@
],
"signatures": [
{
- "id": 29107,
+ "id": 11818,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -481313,7 +482201,7 @@
],
"parameters": [
{
- "id": 29108,
+ "id": 11819,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -481324,14 +482212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29109,
+ "id": 11820,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29110,
+ "id": 11821,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -481355,7 +482243,7 @@
{
"title": "Properties",
"children": [
- 29110
+ 11821
]
}
],
@@ -481432,7 +482320,7 @@
{
"title": "Methods",
"children": [
- 29106
+ 11817
]
}
],
@@ -481466,7 +482354,7 @@
]
},
{
- "id": 29113,
+ "id": 11824,
"name": "orderExchangeAddNewItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -481478,7 +482366,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 87,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L87"
}
],
"type": {
@@ -481488,7 +482376,7 @@
"defaultValue": "\"exchange-add-new-item\""
},
{
- "id": 29114,
+ "id": 11825,
"name": "orderExchangeAddNewItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -481541,7 +482429,7 @@
},
"children": [
{
- "id": 29122,
+ "id": 11833,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -481564,7 +482452,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29123,
+ "id": 11834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -481578,7 +482466,7 @@
],
"signatures": [
{
- "id": 29124,
+ "id": 11835,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -481606,7 +482494,7 @@
],
"parameters": [
{
- "id": 29125,
+ "id": 11836,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -481622,14 +482510,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29126,
+ "id": 11837,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29127,
+ "id": 11838,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -481689,7 +482577,7 @@
{
"title": "Properties",
"children": [
- 29127
+ 11838
]
}
],
@@ -481710,14 +482598,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29128,
+ "id": 11839,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29141,
+ "id": 11852,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -481763,7 +482651,7 @@
}
},
{
- "id": 29201,
+ "id": 11912,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -481809,7 +482697,7 @@
}
},
{
- "id": 29202,
+ "id": 11913,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -481855,7 +482743,7 @@
}
},
{
- "id": 29203,
+ "id": 11914,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -481912,7 +482800,7 @@
}
},
{
- "id": 29204,
+ "id": 11915,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -481968,7 +482856,7 @@
}
},
{
- "id": 29169,
+ "id": 11880,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -482025,7 +482913,7 @@
}
},
{
- "id": 29170,
+ "id": 11881,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -482082,7 +482970,7 @@
}
},
{
- "id": 29171,
+ "id": 11882,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -482139,7 +483027,7 @@
}
},
{
- "id": 29146,
+ "id": 11857,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -482196,7 +483084,7 @@
}
},
{
- "id": 29172,
+ "id": 11883,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -482242,7 +483130,7 @@
}
},
{
- "id": 29173,
+ "id": 11884,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -482312,7 +483200,7 @@
}
},
{
- "id": 29174,
+ "id": 11885,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -482382,7 +483270,7 @@
}
},
{
- "id": 29205,
+ "id": 11916,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -482458,7 +483346,7 @@
}
},
{
- "id": 29175,
+ "id": 11886,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -482534,7 +483422,7 @@
}
},
{
- "id": 29206,
+ "id": 11917,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -482604,7 +483492,7 @@
}
},
{
- "id": 29207,
+ "id": 11918,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -482661,7 +483549,7 @@
}
},
{
- "id": 29145,
+ "id": 11856,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -482756,7 +483644,7 @@
}
},
{
- "id": 29200,
+ "id": 11911,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -482831,7 +483719,7 @@
}
},
{
- "id": 29142,
+ "id": 11853,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -482900,7 +483788,7 @@
}
},
{
- "id": 29143,
+ "id": 11854,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -482969,7 +483857,7 @@
}
},
{
- "id": 29144,
+ "id": 11855,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -483044,7 +483932,7 @@
}
},
{
- "id": 29176,
+ "id": 11887,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -483100,7 +483988,7 @@
}
},
{
- "id": 29177,
+ "id": 11888,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -483156,7 +484044,7 @@
}
},
{
- "id": 29178,
+ "id": 11889,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -483212,7 +484100,7 @@
}
},
{
- "id": 29150,
+ "id": 11861,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -483268,7 +484156,7 @@
}
},
{
- "id": 29151,
+ "id": 11862,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -483324,7 +484212,7 @@
}
},
{
- "id": 29152,
+ "id": 11863,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -483380,7 +484268,7 @@
}
},
{
- "id": 29208,
+ "id": 11919,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -483436,7 +484324,7 @@
}
},
{
- "id": 29147,
+ "id": 11858,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -483492,7 +484380,7 @@
}
},
{
- "id": 29148,
+ "id": 11859,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -483548,7 +484436,7 @@
}
},
{
- "id": 29149,
+ "id": 11860,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -483604,7 +484492,7 @@
}
},
{
- "id": 29153,
+ "id": 11864,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -483660,7 +484548,7 @@
}
},
{
- "id": 29154,
+ "id": 11865,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -483716,7 +484604,7 @@
}
},
{
- "id": 29155,
+ "id": 11866,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -483772,7 +484660,7 @@
}
},
{
- "id": 29209,
+ "id": 11920,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -483828,7 +484716,7 @@
}
},
{
- "id": 29156,
+ "id": 11867,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -483884,7 +484772,7 @@
}
},
{
- "id": 29157,
+ "id": 11868,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -483940,7 +484828,7 @@
}
},
{
- "id": 29199,
+ "id": 11910,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -483996,7 +484884,7 @@
}
},
{
- "id": 29179,
+ "id": 11890,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -484052,7 +484940,7 @@
}
},
{
- "id": 29180,
+ "id": 11891,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -484108,7 +484996,7 @@
}
},
{
- "id": 29181,
+ "id": 11892,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -484164,7 +485052,7 @@
}
},
{
- "id": 29182,
+ "id": 11893,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -484220,7 +485108,7 @@
}
},
{
- "id": 29183,
+ "id": 11894,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -484276,7 +485164,7 @@
}
},
{
- "id": 29210,
+ "id": 11921,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -484332,7 +485220,7 @@
}
},
{
- "id": 29184,
+ "id": 11895,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -484388,7 +485276,7 @@
}
},
{
- "id": 29185,
+ "id": 11896,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -484444,7 +485332,7 @@
}
},
{
- "id": 29186,
+ "id": 11897,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -484500,7 +485388,7 @@
}
},
{
- "id": 29129,
+ "id": 11840,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -484556,7 +485444,7 @@
}
},
{
- "id": 29130,
+ "id": 11841,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -484596,14 +485484,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29131,
+ "id": 11842,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29132,
+ "id": 11843,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -484635,7 +485523,7 @@
{
"title": "Properties",
"children": [
- 29132
+ 11843
]
}
],
@@ -484675,14 +485563,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29133,
+ "id": 11844,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29134,
+ "id": 11845,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -484714,7 +485602,7 @@
{
"title": "Properties",
"children": [
- 29134
+ 11845
]
}
],
@@ -484738,7 +485626,7 @@
}
},
{
- "id": 29135,
+ "id": 11846,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -484778,14 +485666,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29136,
+ "id": 11847,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29137,
+ "id": 11848,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -484817,7 +485705,7 @@
{
"title": "Properties",
"children": [
- 29137
+ 11848
]
}
],
@@ -484857,14 +485745,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29138,
+ "id": 11849,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29139,
+ "id": 11850,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -484896,7 +485784,7 @@
{
"title": "Properties",
"children": [
- 29139
+ 11850
]
}
],
@@ -484920,7 +485808,7 @@
}
},
{
- "id": 29140,
+ "id": 11851,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -484970,57 +485858,57 @@
{
"title": "Properties",
"children": [
- 29141,
- 29201,
- 29202,
- 29203,
- 29204,
- 29169,
- 29170,
- 29171,
- 29146,
- 29172,
- 29173,
- 29174,
- 29205,
- 29175,
- 29206,
- 29207,
- 29145,
- 29200,
- 29142,
- 29143,
- 29144,
- 29176,
- 29177,
- 29178,
- 29150,
- 29151,
- 29152,
- 29208,
- 29147,
- 29148,
- 29149,
- 29153,
- 29154,
- 29155,
- 29209,
- 29156,
- 29157,
- 29199,
- 29179,
- 29180,
- 29181,
- 29182,
- 29183,
- 29210,
- 29184,
- 29185,
- 29186,
- 29129,
- 29130,
- 29135,
- 29140
+ 11852,
+ 11912,
+ 11913,
+ 11914,
+ 11915,
+ 11880,
+ 11881,
+ 11882,
+ 11857,
+ 11883,
+ 11884,
+ 11885,
+ 11916,
+ 11886,
+ 11917,
+ 11918,
+ 11856,
+ 11911,
+ 11853,
+ 11854,
+ 11855,
+ 11887,
+ 11888,
+ 11889,
+ 11861,
+ 11862,
+ 11863,
+ 11919,
+ 11858,
+ 11859,
+ 11860,
+ 11864,
+ 11865,
+ 11866,
+ 11920,
+ 11867,
+ 11868,
+ 11910,
+ 11890,
+ 11891,
+ 11892,
+ 11893,
+ 11894,
+ 11921,
+ 11895,
+ 11896,
+ 11897,
+ 11840,
+ 11841,
+ 11846,
+ 11851
]
}
],
@@ -485065,14 +485953,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29211,
+ "id": 11922,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29212,
+ "id": 11923,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -485086,7 +485974,7 @@
],
"signatures": [
{
- "id": 29213,
+ "id": 11924,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -485100,7 +485988,7 @@
],
"parameters": [
{
- "id": 29214,
+ "id": 11925,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -485111,14 +485999,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29215,
+ "id": 11926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29216,
+ "id": 11927,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -485142,7 +486030,7 @@
{
"title": "Properties",
"children": [
- 29216
+ 11927
]
}
],
@@ -485224,7 +486112,7 @@
{
"title": "Methods",
"children": [
- 29212
+ 11923
]
}
],
@@ -485265,7 +486153,7 @@
}
},
{
- "id": 29217,
+ "id": 11928,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -485288,7 +486176,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29218,
+ "id": 11929,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -485302,7 +486190,7 @@
],
"signatures": [
{
- "id": 29219,
+ "id": 11930,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -485330,7 +486218,7 @@
],
"typeParameters": [
{
- "id": 29220,
+ "id": 11931,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -485341,7 +486229,7 @@
}
},
{
- "id": 29221,
+ "id": 11932,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -485354,7 +486242,7 @@
],
"parameters": [
{
- "id": 29222,
+ "id": 11933,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -485387,7 +486275,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -485407,7 +486295,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -485440,7 +486328,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -485460,7 +486348,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -485480,7 +486368,7 @@
}
},
{
- "id": 29223,
+ "id": 11934,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -485503,7 +486391,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29224,
+ "id": 11935,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -485517,7 +486405,7 @@
],
"signatures": [
{
- "id": 29225,
+ "id": 11936,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -485539,7 +486427,7 @@
}
},
{
- "id": 29226,
+ "id": 11937,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -485562,7 +486450,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29227,
+ "id": 11938,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -485576,7 +486464,7 @@
],
"signatures": [
{
- "id": 29228,
+ "id": 11939,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -485590,7 +486478,7 @@
],
"parameters": [
{
- "id": 29229,
+ "id": 11940,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -485616,7 +486504,7 @@
}
},
{
- "id": 29230,
+ "id": 11941,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -485639,7 +486527,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29231,
+ "id": 11942,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -485650,7 +486538,7 @@
],
"documents": [
{
- "id": 42712,
+ "id": 25653,
"name": "exchangeAddNewItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -485676,7 +486564,7 @@
"frontmatter": {}
},
{
- "id": 42713,
+ "id": 25654,
"name": "addOrderLineItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -485702,7 +486590,7 @@
"frontmatter": {}
},
{
- "id": 42714,
+ "id": 25655,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -485728,7 +486616,7 @@
"frontmatter": {}
},
{
- "id": 42715,
+ "id": 25656,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -485754,7 +486642,7 @@
"frontmatter": {}
},
{
- "id": 42716,
+ "id": 25657,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -485780,7 +486668,7 @@
"frontmatter": {}
},
{
- "id": 42717,
+ "id": 25658,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -485807,21 +486695,21 @@
}
],
"childrenIncludingDocuments": [
- 29122,
- 29217,
- 29223,
- 29226,
- 29230
+ 11833,
+ 11928,
+ 11934,
+ 11937,
+ 11941
],
"groups": [
{
"title": "Properties",
"children": [
- 29122,
- 29217,
- 29223,
- 29226,
- 29230
+ 11833,
+ 11928,
+ 11934,
+ 11937,
+ 11941
]
}
],
@@ -485830,12 +486718,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 113,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L113"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L113"
}
],
"signatures": [
{
- "id": 29115,
+ "id": 11826,
"name": "orderExchangeAddNewItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -485891,12 +486779,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-add-new-item.ts",
"line": 113,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L113"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-add-new-item.ts#L113"
}
],
"typeParameters": [
{
- "id": 29116,
+ "id": 11827,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -485907,7 +486795,7 @@
}
},
{
- "id": 29117,
+ "id": 11828,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -485920,7 +486808,7 @@
],
"parameters": [
{
- "id": 29118,
+ "id": 11829,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -485944,14 +486832,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 29119,
+ "id": 11830,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29120,
+ "id": 11831,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -485974,7 +486862,7 @@
}
},
{
- "id": 29121,
+ "id": 11832,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -486001,8 +486889,8 @@
{
"title": "Properties",
"children": [
- 29120,
- 29121
+ 11831,
+ 11832
]
}
],
@@ -486095,14 +486983,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -486117,7 +487005,7 @@
]
},
{
- "id": 29234,
+ "id": 11945,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -486135,7 +487023,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L46"
}
],
"type": {
@@ -486149,7 +487037,7 @@
}
},
{
- "id": 29235,
+ "id": 11946,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -486167,7 +487055,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L50"
}
],
"type": {
@@ -486181,7 +487069,7 @@
}
},
{
- "id": 29236,
+ "id": 11947,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -486199,7 +487087,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L54"
}
],
"type": {
@@ -486213,7 +487101,7 @@
}
},
{
- "id": 29237,
+ "id": 11948,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -486231,7 +487119,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L58"
}
],
"type": {
@@ -486245,7 +487133,7 @@
}
},
{
- "id": 29238,
+ "id": 11949,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -486263,7 +487151,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L62"
}
],
"type": {
@@ -486285,7 +487173,7 @@
}
},
{
- "id": 29239,
+ "id": 11950,
"name": "exchangeRequestItemReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -486320,7 +487208,7 @@
},
"children": [
{
- "id": 29248,
+ "id": 11959,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -486338,7 +487226,7 @@
}
},
{
- "id": 29249,
+ "id": 11960,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -486360,8 +487248,8 @@
{
"title": "Properties",
"children": [
- 29248,
- 29249
+ 11959,
+ 11960
]
}
],
@@ -486370,12 +487258,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L103"
}
],
"signatures": [
{
- "id": 29240,
+ "id": 11951,
"name": "exchangeRequestItemReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -486413,12 +487301,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L103"
}
],
"parameters": [
{
- "id": 29241,
+ "id": 11952,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -486428,7 +487316,7 @@
"types": [
{
"type": "reference",
- "target": 29232,
+ "target": 11943,
"name": "ExchangeRequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -486441,7 +487329,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 29232,
+ "target": 11943,
"name": "ExchangeRequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -486474,14 +487362,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29242,
+ "id": 11953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29243,
+ "id": 11954,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -486495,7 +487383,7 @@
],
"signatures": [
{
- "id": 29244,
+ "id": 11955,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -486509,7 +487397,7 @@
],
"parameters": [
{
- "id": 29245,
+ "id": 11956,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -486520,14 +487408,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29246,
+ "id": 11957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29247,
+ "id": 11958,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -486551,7 +487439,7 @@
{
"title": "Properties",
"children": [
- 29247
+ 11958
]
}
],
@@ -486628,7 +487516,7 @@
{
"title": "Methods",
"children": [
- 29243
+ 11954
]
}
],
@@ -486662,7 +487550,7 @@
]
},
{
- "id": 29250,
+ "id": 11961,
"name": "orderExchangeRequestItemReturnWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -486674,7 +487562,7 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 125,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L125"
}
],
"type": {
@@ -486684,7 +487572,7 @@
"defaultValue": "\"exchange-request-item-return\""
},
{
- "id": 29251,
+ "id": 11962,
"name": "orderExchangeRequestItemReturnWorkflow",
"variant": "declaration",
"kind": 64,
@@ -486737,7 +487625,7 @@
},
"children": [
{
- "id": 29259,
+ "id": 11970,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -486760,7 +487648,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29260,
+ "id": 11971,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -486774,7 +487662,7 @@
],
"signatures": [
{
- "id": 29261,
+ "id": 11972,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -486802,7 +487690,7 @@
],
"parameters": [
{
- "id": 29262,
+ "id": 11973,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -486818,14 +487706,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29263,
+ "id": 11974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29264,
+ "id": 11975,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -486885,7 +487773,7 @@
{
"title": "Properties",
"children": [
- 29264
+ 11975
]
}
],
@@ -486906,14 +487794,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29265,
+ "id": 11976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29278,
+ "id": 11989,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -486959,7 +487847,7 @@
}
},
{
- "id": 29338,
+ "id": 12049,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -487005,7 +487893,7 @@
}
},
{
- "id": 29339,
+ "id": 12050,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -487051,7 +487939,7 @@
}
},
{
- "id": 29340,
+ "id": 12051,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -487108,7 +487996,7 @@
}
},
{
- "id": 29341,
+ "id": 12052,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -487164,7 +488052,7 @@
}
},
{
- "id": 29306,
+ "id": 12017,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -487221,7 +488109,7 @@
}
},
{
- "id": 29307,
+ "id": 12018,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -487278,7 +488166,7 @@
}
},
{
- "id": 29308,
+ "id": 12019,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -487335,7 +488223,7 @@
}
},
{
- "id": 29283,
+ "id": 11994,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -487392,7 +488280,7 @@
}
},
{
- "id": 29309,
+ "id": 12020,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -487438,7 +488326,7 @@
}
},
{
- "id": 29310,
+ "id": 12021,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -487508,7 +488396,7 @@
}
},
{
- "id": 29311,
+ "id": 12022,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -487578,7 +488466,7 @@
}
},
{
- "id": 29342,
+ "id": 12053,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -487654,7 +488542,7 @@
}
},
{
- "id": 29312,
+ "id": 12023,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -487730,7 +488618,7 @@
}
},
{
- "id": 29343,
+ "id": 12054,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -487800,7 +488688,7 @@
}
},
{
- "id": 29344,
+ "id": 12055,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -487857,7 +488745,7 @@
}
},
{
- "id": 29282,
+ "id": 11993,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -487952,7 +488840,7 @@
}
},
{
- "id": 29337,
+ "id": 12048,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -488027,7 +488915,7 @@
}
},
{
- "id": 29279,
+ "id": 11990,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -488096,7 +488984,7 @@
}
},
{
- "id": 29280,
+ "id": 11991,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -488165,7 +489053,7 @@
}
},
{
- "id": 29281,
+ "id": 11992,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -488240,7 +489128,7 @@
}
},
{
- "id": 29313,
+ "id": 12024,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -488296,7 +489184,7 @@
}
},
{
- "id": 29314,
+ "id": 12025,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -488352,7 +489240,7 @@
}
},
{
- "id": 29315,
+ "id": 12026,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -488408,7 +489296,7 @@
}
},
{
- "id": 29287,
+ "id": 11998,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -488464,7 +489352,7 @@
}
},
{
- "id": 29288,
+ "id": 11999,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -488520,7 +489408,7 @@
}
},
{
- "id": 29289,
+ "id": 12000,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -488576,7 +489464,7 @@
}
},
{
- "id": 29345,
+ "id": 12056,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -488632,7 +489520,7 @@
}
},
{
- "id": 29284,
+ "id": 11995,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -488688,7 +489576,7 @@
}
},
{
- "id": 29285,
+ "id": 11996,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -488744,7 +489632,7 @@
}
},
{
- "id": 29286,
+ "id": 11997,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -488800,7 +489688,7 @@
}
},
{
- "id": 29290,
+ "id": 12001,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -488856,7 +489744,7 @@
}
},
{
- "id": 29291,
+ "id": 12002,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -488912,7 +489800,7 @@
}
},
{
- "id": 29292,
+ "id": 12003,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -488968,7 +489856,7 @@
}
},
{
- "id": 29346,
+ "id": 12057,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -489024,7 +489912,7 @@
}
},
{
- "id": 29293,
+ "id": 12004,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -489080,7 +489968,7 @@
}
},
{
- "id": 29294,
+ "id": 12005,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -489136,7 +490024,7 @@
}
},
{
- "id": 29336,
+ "id": 12047,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -489192,7 +490080,7 @@
}
},
{
- "id": 29316,
+ "id": 12027,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -489248,7 +490136,7 @@
}
},
{
- "id": 29317,
+ "id": 12028,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -489304,7 +490192,7 @@
}
},
{
- "id": 29318,
+ "id": 12029,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -489360,7 +490248,7 @@
}
},
{
- "id": 29319,
+ "id": 12030,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -489416,7 +490304,7 @@
}
},
{
- "id": 29320,
+ "id": 12031,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -489472,7 +490360,7 @@
}
},
{
- "id": 29347,
+ "id": 12058,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -489528,7 +490416,7 @@
}
},
{
- "id": 29321,
+ "id": 12032,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -489584,7 +490472,7 @@
}
},
{
- "id": 29322,
+ "id": 12033,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -489640,7 +490528,7 @@
}
},
{
- "id": 29323,
+ "id": 12034,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -489696,7 +490584,7 @@
}
},
{
- "id": 29266,
+ "id": 11977,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -489752,7 +490640,7 @@
}
},
{
- "id": 29267,
+ "id": 11978,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -489792,14 +490680,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29268,
+ "id": 11979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29269,
+ "id": 11980,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -489831,7 +490719,7 @@
{
"title": "Properties",
"children": [
- 29269
+ 11980
]
}
],
@@ -489871,14 +490759,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29270,
+ "id": 11981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29271,
+ "id": 11982,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -489910,7 +490798,7 @@
{
"title": "Properties",
"children": [
- 29271
+ 11982
]
}
],
@@ -489934,7 +490822,7 @@
}
},
{
- "id": 29272,
+ "id": 11983,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -489974,14 +490862,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29273,
+ "id": 11984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29274,
+ "id": 11985,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -490013,7 +490901,7 @@
{
"title": "Properties",
"children": [
- 29274
+ 11985
]
}
],
@@ -490053,14 +490941,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29275,
+ "id": 11986,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29276,
+ "id": 11987,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -490092,7 +490980,7 @@
{
"title": "Properties",
"children": [
- 29276
+ 11987
]
}
],
@@ -490116,7 +491004,7 @@
}
},
{
- "id": 29277,
+ "id": 11988,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -490166,57 +491054,57 @@
{
"title": "Properties",
"children": [
- 29278,
- 29338,
- 29339,
- 29340,
- 29341,
- 29306,
- 29307,
- 29308,
- 29283,
- 29309,
- 29310,
- 29311,
- 29342,
- 29312,
- 29343,
- 29344,
- 29282,
- 29337,
- 29279,
- 29280,
- 29281,
- 29313,
- 29314,
- 29315,
- 29287,
- 29288,
- 29289,
- 29345,
- 29284,
- 29285,
- 29286,
- 29290,
- 29291,
- 29292,
- 29346,
- 29293,
- 29294,
- 29336,
- 29316,
- 29317,
- 29318,
- 29319,
- 29320,
- 29347,
- 29321,
- 29322,
- 29323,
- 29266,
- 29267,
- 29272,
- 29277
+ 11989,
+ 12049,
+ 12050,
+ 12051,
+ 12052,
+ 12017,
+ 12018,
+ 12019,
+ 11994,
+ 12020,
+ 12021,
+ 12022,
+ 12053,
+ 12023,
+ 12054,
+ 12055,
+ 11993,
+ 12048,
+ 11990,
+ 11991,
+ 11992,
+ 12024,
+ 12025,
+ 12026,
+ 11998,
+ 11999,
+ 12000,
+ 12056,
+ 11995,
+ 11996,
+ 11997,
+ 12001,
+ 12002,
+ 12003,
+ 12057,
+ 12004,
+ 12005,
+ 12047,
+ 12027,
+ 12028,
+ 12029,
+ 12030,
+ 12031,
+ 12058,
+ 12032,
+ 12033,
+ 12034,
+ 11977,
+ 11978,
+ 11983,
+ 11988
]
}
],
@@ -490261,14 +491149,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29348,
+ "id": 12059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29349,
+ "id": 12060,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -490282,7 +491170,7 @@
],
"signatures": [
{
- "id": 29350,
+ "id": 12061,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -490296,7 +491184,7 @@
],
"parameters": [
{
- "id": 29351,
+ "id": 12062,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -490307,14 +491195,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29352,
+ "id": 12063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29353,
+ "id": 12064,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -490338,7 +491226,7 @@
{
"title": "Properties",
"children": [
- 29353
+ 12064
]
}
],
@@ -490420,7 +491308,7 @@
{
"title": "Methods",
"children": [
- 29349
+ 12060
]
}
],
@@ -490461,7 +491349,7 @@
}
},
{
- "id": 29354,
+ "id": 12065,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -490484,7 +491372,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29355,
+ "id": 12066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -490498,7 +491386,7 @@
],
"signatures": [
{
- "id": 29356,
+ "id": 12067,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -490526,7 +491414,7 @@
],
"typeParameters": [
{
- "id": 29357,
+ "id": 12068,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -490537,7 +491425,7 @@
}
},
{
- "id": 29358,
+ "id": 12069,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -490550,7 +491438,7 @@
],
"parameters": [
{
- "id": 29359,
+ "id": 12070,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -490583,7 +491471,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -490603,7 +491491,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -490636,7 +491524,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -490656,7 +491544,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -490676,7 +491564,7 @@
}
},
{
- "id": 29360,
+ "id": 12071,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -490699,7 +491587,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29361,
+ "id": 12072,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -490713,7 +491601,7 @@
],
"signatures": [
{
- "id": 29362,
+ "id": 12073,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -490735,7 +491623,7 @@
}
},
{
- "id": 29363,
+ "id": 12074,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -490758,7 +491646,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29364,
+ "id": 12075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -490772,7 +491660,7 @@
],
"signatures": [
{
- "id": 29365,
+ "id": 12076,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -490786,7 +491674,7 @@
],
"parameters": [
{
- "id": 29366,
+ "id": 12077,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -490812,7 +491700,7 @@
}
},
{
- "id": 29367,
+ "id": 12078,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -490835,7 +491723,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29368,
+ "id": 12079,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -490846,7 +491734,7 @@
],
"documents": [
{
- "id": 42719,
+ "id": 25660,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -490881,7 +491769,7 @@
"frontmatter": {},
"children": [
{
- "id": 42720,
+ "id": 25661,
"name": "createReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -490909,7 +491797,7 @@
]
},
{
- "id": 42721,
+ "id": 25662,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -490944,7 +491832,7 @@
"frontmatter": {},
"children": [
{
- "id": 42722,
+ "id": 25663,
"name": "updateOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -490972,7 +491860,7 @@
]
},
{
- "id": 42723,
+ "id": 25664,
"name": "exchangeRequestItemReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -490998,7 +491886,7 @@
"frontmatter": {}
},
{
- "id": 42725,
+ "id": 25666,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -491024,7 +491912,7 @@
"frontmatter": {}
},
{
- "id": 42726,
+ "id": 25667,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -491050,7 +491938,7 @@
"frontmatter": {}
},
{
- "id": 42727,
+ "id": 25668,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -491077,21 +491965,21 @@
}
],
"childrenIncludingDocuments": [
- 29259,
- 29354,
- 29360,
- 29363,
- 29367
+ 11970,
+ 12065,
+ 12071,
+ 12074,
+ 12078
],
"groups": [
{
"title": "Properties",
"children": [
- 29259,
- 29354,
- 29360,
- 29363,
- 29367
+ 11970,
+ 12065,
+ 12071,
+ 12074,
+ 12078
]
}
],
@@ -491100,12 +491988,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 153,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L153"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L153"
}
],
"signatures": [
{
- "id": 29252,
+ "id": 11963,
"name": "orderExchangeRequestItemReturnWorkflow",
"variant": "signature",
"kind": 4096,
@@ -491161,12 +492049,12 @@
"fileName": "core-flows/src/order/workflows/exchange/exchange-request-item-return.ts",
"line": 153,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L153"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/exchange-request-item-return.ts#L153"
}
],
"typeParameters": [
{
- "id": 29253,
+ "id": 11964,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -491177,7 +492065,7 @@
}
},
{
- "id": 29254,
+ "id": 11965,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -491190,7 +492078,7 @@
],
"parameters": [
{
- "id": 29255,
+ "id": 11966,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -491214,14 +492102,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 29256,
+ "id": 11967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29257,
+ "id": 11968,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -491244,7 +492132,7 @@
}
},
{
- "id": 29258,
+ "id": 11969,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -491271,8 +492159,8 @@
{
"title": "Properties",
"children": [
- 29257,
- 29258
+ 11968,
+ 11969
]
}
],
@@ -491365,14 +492253,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -491387,7 +492275,7 @@
]
},
{
- "id": 29371,
+ "id": 12082,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -491405,7 +492293,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L37"
}
],
"type": {
@@ -491419,7 +492307,7 @@
}
},
{
- "id": 29372,
+ "id": 12083,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -491437,7 +492325,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L41"
}
],
"type": {
@@ -491451,7 +492339,7 @@
}
},
{
- "id": 29373,
+ "id": 12084,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -491469,7 +492357,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L45"
}
],
"type": {
@@ -491483,7 +492371,7 @@
}
},
{
- "id": 29374,
+ "id": 12085,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -491501,7 +492389,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L49"
}
],
"type": {
@@ -491516,7 +492404,7 @@
}
},
{
- "id": 29375,
+ "id": 12086,
"name": "removeExchangeItemActionValidationStep",
"variant": "declaration",
"kind": 64,
@@ -491551,7 +492439,7 @@
},
"children": [
{
- "id": 29384,
+ "id": 12095,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -491569,7 +492457,7 @@
}
},
{
- "id": 29385,
+ "id": 12096,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -491591,8 +492479,8 @@
{
"title": "Properties",
"children": [
- 29384,
- 29385
+ 12095,
+ 12096
]
}
],
@@ -491601,12 +492489,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L85"
}
],
"signatures": [
{
- "id": 29376,
+ "id": 12087,
"name": "removeExchangeItemActionValidationStep",
"variant": "signature",
"kind": 4096,
@@ -491644,12 +492532,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L85"
}
],
"parameters": [
{
- "id": 29377,
+ "id": 12088,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -491659,7 +492547,7 @@
"types": [
{
"type": "reference",
- "target": 29369,
+ "target": 12080,
"name": "RemoveExchangeItemActionValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -491672,7 +492560,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 29369,
+ "target": 12080,
"name": "RemoveExchangeItemActionValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -491705,14 +492593,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29378,
+ "id": 12089,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29379,
+ "id": 12090,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -491726,7 +492614,7 @@
],
"signatures": [
{
- "id": 29380,
+ "id": 12091,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -491740,7 +492628,7 @@
],
"parameters": [
{
- "id": 29381,
+ "id": 12092,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -491751,14 +492639,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29382,
+ "id": 12093,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29383,
+ "id": 12094,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -491782,7 +492670,7 @@
{
"title": "Properties",
"children": [
- 29383
+ 12094
]
}
],
@@ -491859,7 +492747,7 @@
{
"title": "Methods",
"children": [
- 29379
+ 12090
]
}
],
@@ -491893,7 +492781,7 @@
]
},
{
- "id": 29386,
+ "id": 12097,
"name": "removeItemExchangeActionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -491905,7 +492793,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L111"
}
],
"type": {
@@ -491915,7 +492803,7 @@
"defaultValue": "\"remove-item-exchange-action\""
},
{
- "id": 29387,
+ "id": 12098,
"name": "removeItemExchangeActionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -491968,7 +492856,7 @@
},
"children": [
{
- "id": 29395,
+ "id": 12106,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -491991,7 +492879,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29396,
+ "id": 12107,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -492005,7 +492893,7 @@
],
"signatures": [
{
- "id": 29397,
+ "id": 12108,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -492033,7 +492921,7 @@
],
"parameters": [
{
- "id": 29398,
+ "id": 12109,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -492049,14 +492937,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29399,
+ "id": 12110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29400,
+ "id": 12111,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -492116,7 +493004,7 @@
{
"title": "Properties",
"children": [
- 29400
+ 12111
]
}
],
@@ -492137,14 +493025,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29401,
+ "id": 12112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29414,
+ "id": 12125,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -492190,7 +493078,7 @@
}
},
{
- "id": 29474,
+ "id": 12185,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -492236,7 +493124,7 @@
}
},
{
- "id": 29475,
+ "id": 12186,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -492282,7 +493170,7 @@
}
},
{
- "id": 29476,
+ "id": 12187,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -492339,7 +493227,7 @@
}
},
{
- "id": 29477,
+ "id": 12188,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -492395,7 +493283,7 @@
}
},
{
- "id": 29442,
+ "id": 12153,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -492452,7 +493340,7 @@
}
},
{
- "id": 29443,
+ "id": 12154,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -492509,7 +493397,7 @@
}
},
{
- "id": 29444,
+ "id": 12155,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -492566,7 +493454,7 @@
}
},
{
- "id": 29419,
+ "id": 12130,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -492623,7 +493511,7 @@
}
},
{
- "id": 29445,
+ "id": 12156,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -492669,7 +493557,7 @@
}
},
{
- "id": 29446,
+ "id": 12157,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -492739,7 +493627,7 @@
}
},
{
- "id": 29447,
+ "id": 12158,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -492809,7 +493697,7 @@
}
},
{
- "id": 29478,
+ "id": 12189,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -492885,7 +493773,7 @@
}
},
{
- "id": 29448,
+ "id": 12159,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -492961,7 +493849,7 @@
}
},
{
- "id": 29479,
+ "id": 12190,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -493031,7 +493919,7 @@
}
},
{
- "id": 29480,
+ "id": 12191,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -493088,7 +493976,7 @@
}
},
{
- "id": 29418,
+ "id": 12129,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -493183,7 +494071,7 @@
}
},
{
- "id": 29473,
+ "id": 12184,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -493258,7 +494146,7 @@
}
},
{
- "id": 29415,
+ "id": 12126,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -493327,7 +494215,7 @@
}
},
{
- "id": 29416,
+ "id": 12127,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -493396,7 +494284,7 @@
}
},
{
- "id": 29417,
+ "id": 12128,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -493471,7 +494359,7 @@
}
},
{
- "id": 29449,
+ "id": 12160,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -493527,7 +494415,7 @@
}
},
{
- "id": 29450,
+ "id": 12161,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -493583,7 +494471,7 @@
}
},
{
- "id": 29451,
+ "id": 12162,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -493639,7 +494527,7 @@
}
},
{
- "id": 29423,
+ "id": 12134,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -493695,7 +494583,7 @@
}
},
{
- "id": 29424,
+ "id": 12135,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -493751,7 +494639,7 @@
}
},
{
- "id": 29425,
+ "id": 12136,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -493807,7 +494695,7 @@
}
},
{
- "id": 29481,
+ "id": 12192,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -493863,7 +494751,7 @@
}
},
{
- "id": 29420,
+ "id": 12131,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -493919,7 +494807,7 @@
}
},
{
- "id": 29421,
+ "id": 12132,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -493975,7 +494863,7 @@
}
},
{
- "id": 29422,
+ "id": 12133,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -494031,7 +494919,7 @@
}
},
{
- "id": 29426,
+ "id": 12137,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -494087,7 +494975,7 @@
}
},
{
- "id": 29427,
+ "id": 12138,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -494143,7 +495031,7 @@
}
},
{
- "id": 29428,
+ "id": 12139,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -494199,7 +495087,7 @@
}
},
{
- "id": 29482,
+ "id": 12193,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -494255,7 +495143,7 @@
}
},
{
- "id": 29429,
+ "id": 12140,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -494311,7 +495199,7 @@
}
},
{
- "id": 29430,
+ "id": 12141,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -494367,7 +495255,7 @@
}
},
{
- "id": 29472,
+ "id": 12183,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -494423,7 +495311,7 @@
}
},
{
- "id": 29452,
+ "id": 12163,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -494479,7 +495367,7 @@
}
},
{
- "id": 29453,
+ "id": 12164,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -494535,7 +495423,7 @@
}
},
{
- "id": 29454,
+ "id": 12165,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -494591,7 +495479,7 @@
}
},
{
- "id": 29455,
+ "id": 12166,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -494647,7 +495535,7 @@
}
},
{
- "id": 29456,
+ "id": 12167,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -494703,7 +495591,7 @@
}
},
{
- "id": 29483,
+ "id": 12194,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -494759,7 +495647,7 @@
}
},
{
- "id": 29457,
+ "id": 12168,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -494815,7 +495703,7 @@
}
},
{
- "id": 29458,
+ "id": 12169,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -494871,7 +495759,7 @@
}
},
{
- "id": 29459,
+ "id": 12170,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -494927,7 +495815,7 @@
}
},
{
- "id": 29402,
+ "id": 12113,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -494983,7 +495871,7 @@
}
},
{
- "id": 29403,
+ "id": 12114,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -495023,14 +495911,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29404,
+ "id": 12115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29405,
+ "id": 12116,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -495062,7 +495950,7 @@
{
"title": "Properties",
"children": [
- 29405
+ 12116
]
}
],
@@ -495102,14 +495990,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29406,
+ "id": 12117,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29407,
+ "id": 12118,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -495141,7 +496029,7 @@
{
"title": "Properties",
"children": [
- 29407
+ 12118
]
}
],
@@ -495165,7 +496053,7 @@
}
},
{
- "id": 29408,
+ "id": 12119,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -495205,14 +496093,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29409,
+ "id": 12120,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29410,
+ "id": 12121,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -495244,7 +496132,7 @@
{
"title": "Properties",
"children": [
- 29410
+ 12121
]
}
],
@@ -495284,14 +496172,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29411,
+ "id": 12122,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29412,
+ "id": 12123,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -495323,7 +496211,7 @@
{
"title": "Properties",
"children": [
- 29412
+ 12123
]
}
],
@@ -495347,7 +496235,7 @@
}
},
{
- "id": 29413,
+ "id": 12124,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -495397,57 +496285,57 @@
{
"title": "Properties",
"children": [
- 29414,
- 29474,
- 29475,
- 29476,
- 29477,
- 29442,
- 29443,
- 29444,
- 29419,
- 29445,
- 29446,
- 29447,
- 29478,
- 29448,
- 29479,
- 29480,
- 29418,
- 29473,
- 29415,
- 29416,
- 29417,
- 29449,
- 29450,
- 29451,
- 29423,
- 29424,
- 29425,
- 29481,
- 29420,
- 29421,
- 29422,
- 29426,
- 29427,
- 29428,
- 29482,
- 29429,
- 29430,
- 29472,
- 29452,
- 29453,
- 29454,
- 29455,
- 29456,
- 29483,
- 29457,
- 29458,
- 29459,
- 29402,
- 29403,
- 29408,
- 29413
+ 12125,
+ 12185,
+ 12186,
+ 12187,
+ 12188,
+ 12153,
+ 12154,
+ 12155,
+ 12130,
+ 12156,
+ 12157,
+ 12158,
+ 12189,
+ 12159,
+ 12190,
+ 12191,
+ 12129,
+ 12184,
+ 12126,
+ 12127,
+ 12128,
+ 12160,
+ 12161,
+ 12162,
+ 12134,
+ 12135,
+ 12136,
+ 12192,
+ 12131,
+ 12132,
+ 12133,
+ 12137,
+ 12138,
+ 12139,
+ 12193,
+ 12140,
+ 12141,
+ 12183,
+ 12163,
+ 12164,
+ 12165,
+ 12166,
+ 12167,
+ 12194,
+ 12168,
+ 12169,
+ 12170,
+ 12113,
+ 12114,
+ 12119,
+ 12124
]
}
],
@@ -495492,14 +496380,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29484,
+ "id": 12195,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29485,
+ "id": 12196,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -495513,7 +496401,7 @@
],
"signatures": [
{
- "id": 29486,
+ "id": 12197,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -495527,7 +496415,7 @@
],
"parameters": [
{
- "id": 29487,
+ "id": 12198,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -495538,14 +496426,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29488,
+ "id": 12199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29489,
+ "id": 12200,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -495569,7 +496457,7 @@
{
"title": "Properties",
"children": [
- 29489
+ 12200
]
}
],
@@ -495651,7 +496539,7 @@
{
"title": "Methods",
"children": [
- 29485
+ 12196
]
}
],
@@ -495692,7 +496580,7 @@
}
},
{
- "id": 29490,
+ "id": 12201,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -495715,7 +496603,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29491,
+ "id": 12202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -495729,7 +496617,7 @@
],
"signatures": [
{
- "id": 29492,
+ "id": 12203,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -495757,7 +496645,7 @@
],
"typeParameters": [
{
- "id": 29493,
+ "id": 12204,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -495768,7 +496656,7 @@
}
},
{
- "id": 29494,
+ "id": 12205,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -495781,7 +496669,7 @@
],
"parameters": [
{
- "id": 29495,
+ "id": 12206,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -495814,7 +496702,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -495834,7 +496722,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -495867,7 +496755,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -495887,7 +496775,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -495907,7 +496795,7 @@
}
},
{
- "id": 29496,
+ "id": 12207,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -495930,7 +496818,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29497,
+ "id": 12208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -495944,7 +496832,7 @@
],
"signatures": [
{
- "id": 29498,
+ "id": 12209,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -495966,7 +496854,7 @@
}
},
{
- "id": 29499,
+ "id": 12210,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -495989,7 +496877,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29500,
+ "id": 12211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -496003,7 +496891,7 @@
],
"signatures": [
{
- "id": 29501,
+ "id": 12212,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -496017,7 +496905,7 @@
],
"parameters": [
{
- "id": 29502,
+ "id": 12213,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -496043,7 +496931,7 @@
}
},
{
- "id": 29503,
+ "id": 12214,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -496066,7 +496954,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29504,
+ "id": 12215,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -496077,7 +496965,7 @@
],
"documents": [
{
- "id": 42728,
+ "id": 25669,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -496103,7 +496991,7 @@
"frontmatter": {}
},
{
- "id": 42729,
+ "id": 25670,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -496129,7 +497017,7 @@
"frontmatter": {}
},
{
- "id": 42730,
+ "id": 25671,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -496155,7 +497043,7 @@
"frontmatter": {}
},
{
- "id": 42731,
+ "id": 25672,
"name": "removeExchangeItemActionValidationStep",
"variant": "document",
"kind": 8388608,
@@ -496181,7 +497069,7 @@
"frontmatter": {}
},
{
- "id": 42732,
+ "id": 25673,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -496207,7 +497095,7 @@
"frontmatter": {}
},
{
- "id": 42733,
+ "id": 25674,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -496233,7 +497121,7 @@
"frontmatter": {}
},
{
- "id": 42734,
+ "id": 25675,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -496268,7 +497156,7 @@
"frontmatter": {},
"children": [
{
- "id": 42735,
+ "id": 25676,
"name": "removeExchangeShippingMethodWorkflow",
"variant": "document",
"kind": 8388608,
@@ -496296,7 +497184,7 @@
]
},
{
- "id": 42737,
+ "id": 25678,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -496323,21 +497211,21 @@
}
],
"childrenIncludingDocuments": [
- 29395,
- 29490,
- 29496,
- 29499,
- 29503
+ 12106,
+ 12201,
+ 12207,
+ 12210,
+ 12214
],
"groups": [
{
"title": "Properties",
"children": [
- 29395,
- 29490,
- 29496,
- 29499,
- 29503
+ 12106,
+ 12201,
+ 12207,
+ 12210,
+ 12214
]
}
],
@@ -496346,12 +497234,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 132,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L132"
}
],
"signatures": [
{
- "id": 29388,
+ "id": 12099,
"name": "removeItemExchangeActionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -496407,12 +497295,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts",
"line": 132,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-item-action.ts#L132"
}
],
"typeParameters": [
{
- "id": 29389,
+ "id": 12100,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -496423,7 +497311,7 @@
}
},
{
- "id": 29390,
+ "id": 12101,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -496436,7 +497324,7 @@
],
"parameters": [
{
- "id": 29391,
+ "id": 12102,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -496460,14 +497348,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 29392,
+ "id": 12103,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29393,
+ "id": 12104,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -496490,7 +497378,7 @@
}
},
{
- "id": 29394,
+ "id": 12105,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -496517,8 +497405,8 @@
{
"title": "Properties",
"children": [
- 29393,
- 29394
+ 12104,
+ 12105
]
}
],
@@ -496611,14 +497499,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -496633,7 +497521,7 @@
]
},
{
- "id": 29507,
+ "id": 12218,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -496651,7 +497539,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L33"
}
],
"type": {
@@ -496665,7 +497553,7 @@
}
},
{
- "id": 29508,
+ "id": 12219,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -496683,7 +497571,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L37"
}
],
"type": {
@@ -496697,7 +497585,7 @@
}
},
{
- "id": 29509,
+ "id": 12220,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -496715,7 +497603,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L41"
}
],
"type": {
@@ -496754,7 +497642,7 @@
}
},
{
- "id": 29510,
+ "id": 12221,
"name": "removeExchangeShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -496789,7 +497677,7 @@
},
"children": [
{
- "id": 29519,
+ "id": 12230,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -496807,7 +497695,7 @@
}
},
{
- "id": 29520,
+ "id": 12231,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -496829,8 +497717,8 @@
{
"title": "Properties",
"children": [
- 29519,
- 29520
+ 12230,
+ 12231
]
}
],
@@ -496839,12 +497727,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L72"
}
],
"signatures": [
{
- "id": 29511,
+ "id": 12222,
"name": "removeExchangeShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -496882,12 +497770,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L72"
}
],
"parameters": [
{
- "id": 29512,
+ "id": 12223,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -496897,7 +497785,7 @@
"types": [
{
"type": "reference",
- "target": 29505,
+ "target": 12216,
"name": "RemoveExchangeShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -496910,7 +497798,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 29505,
+ "target": 12216,
"name": "RemoveExchangeShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -496943,14 +497831,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29513,
+ "id": 12224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29514,
+ "id": 12225,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -496964,7 +497852,7 @@
],
"signatures": [
{
- "id": 29515,
+ "id": 12226,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -496978,7 +497866,7 @@
],
"parameters": [
{
- "id": 29516,
+ "id": 12227,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -496989,14 +497877,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29517,
+ "id": 12228,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29518,
+ "id": 12229,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -497020,7 +497908,7 @@
{
"title": "Properties",
"children": [
- 29518
+ 12229
]
}
],
@@ -497097,7 +497985,7 @@
{
"title": "Methods",
"children": [
- 29514
+ 12225
]
}
],
@@ -497131,7 +498019,7 @@
]
},
{
- "id": 29521,
+ "id": 12232,
"name": "removeExchangeShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -497143,7 +498031,7 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 98,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L98"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L98"
}
],
"type": {
@@ -497153,7 +498041,7 @@
"defaultValue": "\"remove-exchange-shipping-method\""
},
{
- "id": 29522,
+ "id": 12233,
"name": "removeExchangeShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -497197,7 +498085,7 @@
},
"children": [
{
- "id": 29530,
+ "id": 12241,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -497220,7 +498108,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29531,
+ "id": 12242,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -497234,7 +498122,7 @@
],
"signatures": [
{
- "id": 29532,
+ "id": 12243,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -497262,7 +498150,7 @@
],
"parameters": [
{
- "id": 29533,
+ "id": 12244,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -497278,14 +498166,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29534,
+ "id": 12245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29535,
+ "id": 12246,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -497345,7 +498233,7 @@
{
"title": "Properties",
"children": [
- 29535
+ 12246
]
}
],
@@ -497366,14 +498254,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29536,
+ "id": 12247,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29549,
+ "id": 12260,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -497419,7 +498307,7 @@
}
},
{
- "id": 29609,
+ "id": 12320,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -497465,7 +498353,7 @@
}
},
{
- "id": 29610,
+ "id": 12321,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -497511,7 +498399,7 @@
}
},
{
- "id": 29611,
+ "id": 12322,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -497568,7 +498456,7 @@
}
},
{
- "id": 29612,
+ "id": 12323,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -497624,7 +498512,7 @@
}
},
{
- "id": 29577,
+ "id": 12288,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -497681,7 +498569,7 @@
}
},
{
- "id": 29578,
+ "id": 12289,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -497738,7 +498626,7 @@
}
},
{
- "id": 29579,
+ "id": 12290,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -497795,7 +498683,7 @@
}
},
{
- "id": 29554,
+ "id": 12265,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -497852,7 +498740,7 @@
}
},
{
- "id": 29580,
+ "id": 12291,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -497898,7 +498786,7 @@
}
},
{
- "id": 29581,
+ "id": 12292,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -497968,7 +498856,7 @@
}
},
{
- "id": 29582,
+ "id": 12293,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -498038,7 +498926,7 @@
}
},
{
- "id": 29613,
+ "id": 12324,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -498114,7 +499002,7 @@
}
},
{
- "id": 29583,
+ "id": 12294,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -498190,7 +499078,7 @@
}
},
{
- "id": 29614,
+ "id": 12325,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -498260,7 +499148,7 @@
}
},
{
- "id": 29615,
+ "id": 12326,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -498317,7 +499205,7 @@
}
},
{
- "id": 29553,
+ "id": 12264,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -498412,7 +499300,7 @@
}
},
{
- "id": 29608,
+ "id": 12319,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -498487,7 +499375,7 @@
}
},
{
- "id": 29550,
+ "id": 12261,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -498556,7 +499444,7 @@
}
},
{
- "id": 29551,
+ "id": 12262,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -498625,7 +499513,7 @@
}
},
{
- "id": 29552,
+ "id": 12263,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -498700,7 +499588,7 @@
}
},
{
- "id": 29584,
+ "id": 12295,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -498756,7 +499644,7 @@
}
},
{
- "id": 29585,
+ "id": 12296,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -498812,7 +499700,7 @@
}
},
{
- "id": 29586,
+ "id": 12297,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -498868,7 +499756,7 @@
}
},
{
- "id": 29558,
+ "id": 12269,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -498924,7 +499812,7 @@
}
},
{
- "id": 29559,
+ "id": 12270,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -498980,7 +499868,7 @@
}
},
{
- "id": 29560,
+ "id": 12271,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -499036,7 +499924,7 @@
}
},
{
- "id": 29616,
+ "id": 12327,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -499092,7 +499980,7 @@
}
},
{
- "id": 29555,
+ "id": 12266,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -499148,7 +500036,7 @@
}
},
{
- "id": 29556,
+ "id": 12267,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -499204,7 +500092,7 @@
}
},
{
- "id": 29557,
+ "id": 12268,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -499260,7 +500148,7 @@
}
},
{
- "id": 29561,
+ "id": 12272,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -499316,7 +500204,7 @@
}
},
{
- "id": 29562,
+ "id": 12273,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -499372,7 +500260,7 @@
}
},
{
- "id": 29563,
+ "id": 12274,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -499428,7 +500316,7 @@
}
},
{
- "id": 29617,
+ "id": 12328,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -499484,7 +500372,7 @@
}
},
{
- "id": 29564,
+ "id": 12275,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -499540,7 +500428,7 @@
}
},
{
- "id": 29565,
+ "id": 12276,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -499596,7 +500484,7 @@
}
},
{
- "id": 29607,
+ "id": 12318,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -499652,7 +500540,7 @@
}
},
{
- "id": 29587,
+ "id": 12298,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -499708,7 +500596,7 @@
}
},
{
- "id": 29588,
+ "id": 12299,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -499764,7 +500652,7 @@
}
},
{
- "id": 29589,
+ "id": 12300,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -499820,7 +500708,7 @@
}
},
{
- "id": 29590,
+ "id": 12301,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -499876,7 +500764,7 @@
}
},
{
- "id": 29591,
+ "id": 12302,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -499932,7 +500820,7 @@
}
},
{
- "id": 29618,
+ "id": 12329,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -499988,7 +500876,7 @@
}
},
{
- "id": 29592,
+ "id": 12303,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -500044,7 +500932,7 @@
}
},
{
- "id": 29593,
+ "id": 12304,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -500100,7 +500988,7 @@
}
},
{
- "id": 29594,
+ "id": 12305,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -500156,7 +501044,7 @@
}
},
{
- "id": 29537,
+ "id": 12248,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -500212,7 +501100,7 @@
}
},
{
- "id": 29538,
+ "id": 12249,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -500252,14 +501140,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29539,
+ "id": 12250,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29540,
+ "id": 12251,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -500291,7 +501179,7 @@
{
"title": "Properties",
"children": [
- 29540
+ 12251
]
}
],
@@ -500331,14 +501219,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29541,
+ "id": 12252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29542,
+ "id": 12253,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -500370,7 +501258,7 @@
{
"title": "Properties",
"children": [
- 29542
+ 12253
]
}
],
@@ -500394,7 +501282,7 @@
}
},
{
- "id": 29543,
+ "id": 12254,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -500434,14 +501322,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29544,
+ "id": 12255,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29545,
+ "id": 12256,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -500473,7 +501361,7 @@
{
"title": "Properties",
"children": [
- 29545
+ 12256
]
}
],
@@ -500513,14 +501401,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29546,
+ "id": 12257,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29547,
+ "id": 12258,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -500552,7 +501440,7 @@
{
"title": "Properties",
"children": [
- 29547
+ 12258
]
}
],
@@ -500576,7 +501464,7 @@
}
},
{
- "id": 29548,
+ "id": 12259,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -500626,57 +501514,57 @@
{
"title": "Properties",
"children": [
- 29549,
- 29609,
- 29610,
- 29611,
- 29612,
- 29577,
- 29578,
- 29579,
- 29554,
- 29580,
- 29581,
- 29582,
- 29613,
- 29583,
- 29614,
- 29615,
- 29553,
- 29608,
- 29550,
- 29551,
- 29552,
- 29584,
- 29585,
- 29586,
- 29558,
- 29559,
- 29560,
- 29616,
- 29555,
- 29556,
- 29557,
- 29561,
- 29562,
- 29563,
- 29617,
- 29564,
- 29565,
- 29607,
- 29587,
- 29588,
- 29589,
- 29590,
- 29591,
- 29618,
- 29592,
- 29593,
- 29594,
- 29537,
- 29538,
- 29543,
- 29548
+ 12260,
+ 12320,
+ 12321,
+ 12322,
+ 12323,
+ 12288,
+ 12289,
+ 12290,
+ 12265,
+ 12291,
+ 12292,
+ 12293,
+ 12324,
+ 12294,
+ 12325,
+ 12326,
+ 12264,
+ 12319,
+ 12261,
+ 12262,
+ 12263,
+ 12295,
+ 12296,
+ 12297,
+ 12269,
+ 12270,
+ 12271,
+ 12327,
+ 12266,
+ 12267,
+ 12268,
+ 12272,
+ 12273,
+ 12274,
+ 12328,
+ 12275,
+ 12276,
+ 12318,
+ 12298,
+ 12299,
+ 12300,
+ 12301,
+ 12302,
+ 12329,
+ 12303,
+ 12304,
+ 12305,
+ 12248,
+ 12249,
+ 12254,
+ 12259
]
}
],
@@ -500721,14 +501609,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29619,
+ "id": 12330,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29620,
+ "id": 12331,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -500742,7 +501630,7 @@
],
"signatures": [
{
- "id": 29621,
+ "id": 12332,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -500756,7 +501644,7 @@
],
"parameters": [
{
- "id": 29622,
+ "id": 12333,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -500767,14 +501655,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29623,
+ "id": 12334,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29624,
+ "id": 12335,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -500798,7 +501686,7 @@
{
"title": "Properties",
"children": [
- 29624
+ 12335
]
}
],
@@ -500880,7 +501768,7 @@
{
"title": "Methods",
"children": [
- 29620
+ 12331
]
}
],
@@ -500921,7 +501809,7 @@
}
},
{
- "id": 29625,
+ "id": 12336,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -500944,7 +501832,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29626,
+ "id": 12337,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -500958,7 +501846,7 @@
],
"signatures": [
{
- "id": 29627,
+ "id": 12338,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -500986,7 +501874,7 @@
],
"typeParameters": [
{
- "id": 29628,
+ "id": 12339,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -500997,7 +501885,7 @@
}
},
{
- "id": 29629,
+ "id": 12340,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -501010,7 +501898,7 @@
],
"parameters": [
{
- "id": 29630,
+ "id": 12341,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -501043,7 +501931,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -501063,7 +501951,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -501096,7 +501984,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -501116,7 +502004,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -501136,7 +502024,7 @@
}
},
{
- "id": 29631,
+ "id": 12342,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -501159,7 +502047,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29632,
+ "id": 12343,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -501173,7 +502061,7 @@
],
"signatures": [
{
- "id": 29633,
+ "id": 12344,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -501195,7 +502083,7 @@
}
},
{
- "id": 29634,
+ "id": 12345,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -501218,7 +502106,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29635,
+ "id": 12346,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -501232,7 +502120,7 @@
],
"signatures": [
{
- "id": 29636,
+ "id": 12347,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -501246,7 +502134,7 @@
],
"parameters": [
{
- "id": 29637,
+ "id": 12348,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -501272,7 +502160,7 @@
}
},
{
- "id": 29638,
+ "id": 12349,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -501295,7 +502183,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29639,
+ "id": 12350,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -501306,7 +502194,7 @@
],
"documents": [
{
- "id": 42738,
+ "id": 25679,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -501332,7 +502220,7 @@
"frontmatter": {}
},
{
- "id": 42739,
+ "id": 25680,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -501358,7 +502246,7 @@
"frontmatter": {}
},
{
- "id": 42740,
+ "id": 25681,
"name": "removeExchangeShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -501384,7 +502272,7 @@
"frontmatter": {}
},
{
- "id": 42741,
+ "id": 25682,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -501410,7 +502298,7 @@
"frontmatter": {}
},
{
- "id": 42742,
+ "id": 25683,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -501436,7 +502324,7 @@
"frontmatter": {}
},
{
- "id": 42743,
+ "id": 25684,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -501463,21 +502351,21 @@
}
],
"childrenIncludingDocuments": [
- 29530,
- 29625,
- 29631,
- 29634,
- 29638
+ 12241,
+ 12336,
+ 12342,
+ 12345,
+ 12349
],
"groups": [
{
"title": "Properties",
"children": [
- 29530,
- 29625,
- 29631,
- 29634,
- 29638
+ 12241,
+ 12336,
+ 12342,
+ 12345,
+ 12349
]
}
],
@@ -501486,12 +502374,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L121"
}
],
"signatures": [
{
- "id": 29523,
+ "id": 12234,
"name": "removeExchangeShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -501538,12 +502426,12 @@
"fileName": "core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/remove-exchange-shipping-method.ts#L121"
}
],
"typeParameters": [
{
- "id": 29524,
+ "id": 12235,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -501554,7 +502442,7 @@
}
},
{
- "id": 29525,
+ "id": 12236,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -501567,7 +502455,7 @@
],
"parameters": [
{
- "id": 29526,
+ "id": 12237,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -501591,14 +502479,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 29527,
+ "id": 12238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29528,
+ "id": 12239,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -501621,7 +502509,7 @@
}
},
{
- "id": 29529,
+ "id": 12240,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -501648,8 +502536,8 @@
{
"title": "Properties",
"children": [
- 29528,
- 29529
+ 12239,
+ 12240
]
}
],
@@ -501742,14 +502630,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -501764,7 +502652,7 @@
]
},
{
- "id": 29642,
+ "id": 12353,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -501782,7 +502670,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L37"
}
],
"type": {
@@ -501796,7 +502684,7 @@
}
},
{
- "id": 29643,
+ "id": 12354,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -501814,7 +502702,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L41"
}
],
"type": {
@@ -501828,7 +502716,7 @@
}
},
{
- "id": 29644,
+ "id": 12355,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -501846,7 +502734,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L45"
}
],
"type": {
@@ -501860,7 +502748,7 @@
}
},
{
- "id": 29645,
+ "id": 12356,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -501878,7 +502766,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L49"
}
],
"type": {
@@ -501893,7 +502781,7 @@
}
},
{
- "id": 29646,
+ "id": 12357,
"name": "updateExchangeAddItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -501928,7 +502816,7 @@
},
"children": [
{
- "id": 29655,
+ "id": 12366,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -501946,7 +502834,7 @@
}
},
{
- "id": 29656,
+ "id": 12367,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -501968,8 +502856,8 @@
{
"title": "Properties",
"children": [
- 29655,
- 29656
+ 12366,
+ 12367
]
}
],
@@ -501978,12 +502866,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 87,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L87"
}
],
"signatures": [
{
- "id": 29647,
+ "id": 12358,
"name": "updateExchangeAddItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -502021,12 +502909,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 87,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L87"
}
],
"parameters": [
{
- "id": 29648,
+ "id": 12359,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -502036,7 +502924,7 @@
"types": [
{
"type": "reference",
- "target": 29640,
+ "target": 12351,
"name": "UpdateExchangeAddItemValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -502049,7 +502937,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 29640,
+ "target": 12351,
"name": "UpdateExchangeAddItemValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -502082,14 +502970,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29649,
+ "id": 12360,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29650,
+ "id": 12361,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -502103,7 +502991,7 @@
],
"signatures": [
{
- "id": 29651,
+ "id": 12362,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -502117,7 +503005,7 @@
],
"parameters": [
{
- "id": 29652,
+ "id": 12363,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -502128,14 +503016,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29653,
+ "id": 12364,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29654,
+ "id": 12365,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -502159,7 +503047,7 @@
{
"title": "Properties",
"children": [
- 29654
+ 12365
]
}
],
@@ -502236,7 +503124,7 @@
{
"title": "Methods",
"children": [
- 29650
+ 12361
]
}
],
@@ -502270,7 +503158,7 @@
]
},
{
- "id": 29657,
+ "id": 12368,
"name": "updateExchangeAddItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -502282,7 +503170,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 116,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L116"
}
],
"type": {
@@ -502292,7 +503180,7 @@
"defaultValue": "\"update-exchange-add-item\""
},
{
- "id": 29658,
+ "id": 12369,
"name": "updateExchangeAddItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -502345,7 +503233,7 @@
},
"children": [
{
- "id": 29666,
+ "id": 12377,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -502368,7 +503256,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29667,
+ "id": 12378,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -502382,7 +503270,7 @@
],
"signatures": [
{
- "id": 29668,
+ "id": 12379,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -502410,7 +503298,7 @@
],
"parameters": [
{
- "id": 29669,
+ "id": 12380,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -502426,14 +503314,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29670,
+ "id": 12381,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29671,
+ "id": 12382,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -502493,7 +503381,7 @@
{
"title": "Properties",
"children": [
- 29671
+ 12382
]
}
],
@@ -502514,14 +503402,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29672,
+ "id": 12383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29685,
+ "id": 12396,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -502567,7 +503455,7 @@
}
},
{
- "id": 29745,
+ "id": 12456,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -502613,7 +503501,7 @@
}
},
{
- "id": 29746,
+ "id": 12457,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -502659,7 +503547,7 @@
}
},
{
- "id": 29747,
+ "id": 12458,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -502716,7 +503604,7 @@
}
},
{
- "id": 29748,
+ "id": 12459,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -502772,7 +503660,7 @@
}
},
{
- "id": 29713,
+ "id": 12424,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -502829,7 +503717,7 @@
}
},
{
- "id": 29714,
+ "id": 12425,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -502886,7 +503774,7 @@
}
},
{
- "id": 29715,
+ "id": 12426,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -502943,7 +503831,7 @@
}
},
{
- "id": 29690,
+ "id": 12401,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -503000,7 +503888,7 @@
}
},
{
- "id": 29716,
+ "id": 12427,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -503046,7 +503934,7 @@
}
},
{
- "id": 29717,
+ "id": 12428,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -503116,7 +504004,7 @@
}
},
{
- "id": 29718,
+ "id": 12429,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -503186,7 +504074,7 @@
}
},
{
- "id": 29749,
+ "id": 12460,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -503262,7 +504150,7 @@
}
},
{
- "id": 29719,
+ "id": 12430,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -503338,7 +504226,7 @@
}
},
{
- "id": 29750,
+ "id": 12461,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -503408,7 +504296,7 @@
}
},
{
- "id": 29751,
+ "id": 12462,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -503465,7 +504353,7 @@
}
},
{
- "id": 29689,
+ "id": 12400,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -503560,7 +504448,7 @@
}
},
{
- "id": 29744,
+ "id": 12455,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -503635,7 +504523,7 @@
}
},
{
- "id": 29686,
+ "id": 12397,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -503704,7 +504592,7 @@
}
},
{
- "id": 29687,
+ "id": 12398,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -503773,7 +504661,7 @@
}
},
{
- "id": 29688,
+ "id": 12399,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -503848,7 +504736,7 @@
}
},
{
- "id": 29720,
+ "id": 12431,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -503904,7 +504792,7 @@
}
},
{
- "id": 29721,
+ "id": 12432,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -503960,7 +504848,7 @@
}
},
{
- "id": 29722,
+ "id": 12433,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -504016,7 +504904,7 @@
}
},
{
- "id": 29694,
+ "id": 12405,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -504072,7 +504960,7 @@
}
},
{
- "id": 29695,
+ "id": 12406,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -504128,7 +505016,7 @@
}
},
{
- "id": 29696,
+ "id": 12407,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -504184,7 +505072,7 @@
}
},
{
- "id": 29752,
+ "id": 12463,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -504240,7 +505128,7 @@
}
},
{
- "id": 29691,
+ "id": 12402,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -504296,7 +505184,7 @@
}
},
{
- "id": 29692,
+ "id": 12403,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -504352,7 +505240,7 @@
}
},
{
- "id": 29693,
+ "id": 12404,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -504408,7 +505296,7 @@
}
},
{
- "id": 29697,
+ "id": 12408,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -504464,7 +505352,7 @@
}
},
{
- "id": 29698,
+ "id": 12409,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -504520,7 +505408,7 @@
}
},
{
- "id": 29699,
+ "id": 12410,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -504576,7 +505464,7 @@
}
},
{
- "id": 29753,
+ "id": 12464,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -504632,7 +505520,7 @@
}
},
{
- "id": 29700,
+ "id": 12411,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -504688,7 +505576,7 @@
}
},
{
- "id": 29701,
+ "id": 12412,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -504744,7 +505632,7 @@
}
},
{
- "id": 29743,
+ "id": 12454,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -504800,7 +505688,7 @@
}
},
{
- "id": 29723,
+ "id": 12434,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -504856,7 +505744,7 @@
}
},
{
- "id": 29724,
+ "id": 12435,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -504912,7 +505800,7 @@
}
},
{
- "id": 29725,
+ "id": 12436,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -504968,7 +505856,7 @@
}
},
{
- "id": 29726,
+ "id": 12437,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -505024,7 +505912,7 @@
}
},
{
- "id": 29727,
+ "id": 12438,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -505080,7 +505968,7 @@
}
},
{
- "id": 29754,
+ "id": 12465,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -505136,7 +506024,7 @@
}
},
{
- "id": 29728,
+ "id": 12439,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -505192,7 +506080,7 @@
}
},
{
- "id": 29729,
+ "id": 12440,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -505248,7 +506136,7 @@
}
},
{
- "id": 29730,
+ "id": 12441,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -505304,7 +506192,7 @@
}
},
{
- "id": 29673,
+ "id": 12384,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -505360,7 +506248,7 @@
}
},
{
- "id": 29674,
+ "id": 12385,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -505400,14 +506288,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29675,
+ "id": 12386,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29676,
+ "id": 12387,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -505439,7 +506327,7 @@
{
"title": "Properties",
"children": [
- 29676
+ 12387
]
}
],
@@ -505479,14 +506367,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29677,
+ "id": 12388,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29678,
+ "id": 12389,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -505518,7 +506406,7 @@
{
"title": "Properties",
"children": [
- 29678
+ 12389
]
}
],
@@ -505542,7 +506430,7 @@
}
},
{
- "id": 29679,
+ "id": 12390,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -505582,14 +506470,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29680,
+ "id": 12391,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29681,
+ "id": 12392,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -505621,7 +506509,7 @@
{
"title": "Properties",
"children": [
- 29681
+ 12392
]
}
],
@@ -505661,14 +506549,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29682,
+ "id": 12393,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29683,
+ "id": 12394,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -505700,7 +506588,7 @@
{
"title": "Properties",
"children": [
- 29683
+ 12394
]
}
],
@@ -505724,7 +506612,7 @@
}
},
{
- "id": 29684,
+ "id": 12395,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -505774,57 +506662,57 @@
{
"title": "Properties",
"children": [
- 29685,
- 29745,
- 29746,
- 29747,
- 29748,
- 29713,
- 29714,
- 29715,
- 29690,
- 29716,
- 29717,
- 29718,
- 29749,
- 29719,
- 29750,
- 29751,
- 29689,
- 29744,
- 29686,
- 29687,
- 29688,
- 29720,
- 29721,
- 29722,
- 29694,
- 29695,
- 29696,
- 29752,
- 29691,
- 29692,
- 29693,
- 29697,
- 29698,
- 29699,
- 29753,
- 29700,
- 29701,
- 29743,
- 29723,
- 29724,
- 29725,
- 29726,
- 29727,
- 29754,
- 29728,
- 29729,
- 29730,
- 29673,
- 29674,
- 29679,
- 29684
+ 12396,
+ 12456,
+ 12457,
+ 12458,
+ 12459,
+ 12424,
+ 12425,
+ 12426,
+ 12401,
+ 12427,
+ 12428,
+ 12429,
+ 12460,
+ 12430,
+ 12461,
+ 12462,
+ 12400,
+ 12455,
+ 12397,
+ 12398,
+ 12399,
+ 12431,
+ 12432,
+ 12433,
+ 12405,
+ 12406,
+ 12407,
+ 12463,
+ 12402,
+ 12403,
+ 12404,
+ 12408,
+ 12409,
+ 12410,
+ 12464,
+ 12411,
+ 12412,
+ 12454,
+ 12434,
+ 12435,
+ 12436,
+ 12437,
+ 12438,
+ 12465,
+ 12439,
+ 12440,
+ 12441,
+ 12384,
+ 12385,
+ 12390,
+ 12395
]
}
],
@@ -505869,14 +506757,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29755,
+ "id": 12466,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29756,
+ "id": 12467,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -505890,7 +506778,7 @@
],
"signatures": [
{
- "id": 29757,
+ "id": 12468,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -505904,7 +506792,7 @@
],
"parameters": [
{
- "id": 29758,
+ "id": 12469,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -505915,14 +506803,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29759,
+ "id": 12470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29760,
+ "id": 12471,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -505946,7 +506834,7 @@
{
"title": "Properties",
"children": [
- 29760
+ 12471
]
}
],
@@ -506028,7 +506916,7 @@
{
"title": "Methods",
"children": [
- 29756
+ 12467
]
}
],
@@ -506069,7 +506957,7 @@
}
},
{
- "id": 29761,
+ "id": 12472,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -506092,7 +506980,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29762,
+ "id": 12473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -506106,7 +506994,7 @@
],
"signatures": [
{
- "id": 29763,
+ "id": 12474,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -506134,7 +507022,7 @@
],
"typeParameters": [
{
- "id": 29764,
+ "id": 12475,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -506145,7 +507033,7 @@
}
},
{
- "id": 29765,
+ "id": 12476,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -506158,7 +507046,7 @@
],
"parameters": [
{
- "id": 29766,
+ "id": 12477,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -506191,7 +507079,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -506211,7 +507099,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -506244,7 +507132,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -506264,7 +507152,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -506284,7 +507172,7 @@
}
},
{
- "id": 29767,
+ "id": 12478,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -506307,7 +507195,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29768,
+ "id": 12479,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -506321,7 +507209,7 @@
],
"signatures": [
{
- "id": 29769,
+ "id": 12480,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -506343,7 +507231,7 @@
}
},
{
- "id": 29770,
+ "id": 12481,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -506366,7 +507254,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29771,
+ "id": 12482,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -506380,7 +507268,7 @@
],
"signatures": [
{
- "id": 29772,
+ "id": 12483,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -506394,7 +507282,7 @@
],
"parameters": [
{
- "id": 29773,
+ "id": 12484,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -506420,7 +507308,7 @@
}
},
{
- "id": 29774,
+ "id": 12485,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -506443,7 +507331,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29775,
+ "id": 12486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -506454,7 +507342,7 @@
],
"documents": [
{
- "id": 42744,
+ "id": 25685,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -506480,7 +507368,7 @@
"frontmatter": {}
},
{
- "id": 42745,
+ "id": 25686,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -506506,7 +507394,7 @@
"frontmatter": {}
},
{
- "id": 42746,
+ "id": 25687,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -506532,7 +507420,7 @@
"frontmatter": {}
},
{
- "id": 42747,
+ "id": 25688,
"name": "updateExchangeAddItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -506558,7 +507446,7 @@
"frontmatter": {}
},
{
- "id": 42748,
+ "id": 25689,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -506584,7 +507472,7 @@
"frontmatter": {}
},
{
- "id": 42749,
+ "id": 25690,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -506610,7 +507498,7 @@
"frontmatter": {}
},
{
- "id": 42750,
+ "id": 25691,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -506637,21 +507525,21 @@
}
],
"childrenIncludingDocuments": [
- 29666,
- 29761,
- 29767,
- 29770,
- 29774
+ 12377,
+ 12472,
+ 12478,
+ 12481,
+ 12485
],
"groups": [
{
"title": "Properties",
"children": [
- 29666,
- 29761,
- 29767,
- 29770,
- 29774
+ 12377,
+ 12472,
+ 12478,
+ 12481,
+ 12485
]
}
],
@@ -506660,12 +507548,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L140"
}
],
"signatures": [
{
- "id": 29659,
+ "id": 12370,
"name": "updateExchangeAddItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -506721,12 +507609,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-add-item.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-add-item.ts#L140"
}
],
"typeParameters": [
{
- "id": 29660,
+ "id": 12371,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -506737,7 +507625,7 @@
}
},
{
- "id": 29661,
+ "id": 12372,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -506750,7 +507638,7 @@
],
"parameters": [
{
- "id": 29662,
+ "id": 12373,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -506774,14 +507662,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 29663,
+ "id": 12374,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29664,
+ "id": 12375,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -506804,7 +507692,7 @@
}
},
{
- "id": 29665,
+ "id": 12376,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -506831,8 +507719,8 @@
{
"title": "Properties",
"children": [
- 29664,
- 29665
+ 12375,
+ 12376
]
}
],
@@ -506925,14 +507813,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -506947,7 +507835,7 @@
]
},
{
- "id": 29778,
+ "id": 12489,
"name": "orderExchange",
"variant": "declaration",
"kind": 1024,
@@ -506965,7 +507853,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L40"
}
],
"type": {
@@ -506979,7 +507867,7 @@
}
},
{
- "id": 29779,
+ "id": 12490,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -506997,7 +507885,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L44"
}
],
"type": {
@@ -507011,7 +507899,7 @@
}
},
{
- "id": 29780,
+ "id": 12491,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -507029,7 +507917,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L48"
}
],
"type": {
@@ -507068,7 +507956,7 @@
}
},
{
- "id": 29781,
+ "id": 12492,
"name": "updateExchangeShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -507103,7 +507991,7 @@
},
"children": [
{
- "id": 29790,
+ "id": 12501,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -507121,7 +508009,7 @@
}
},
{
- "id": 29791,
+ "id": 12502,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -507143,8 +508031,8 @@
{
"title": "Properties",
"children": [
- 29790,
- 29791
+ 12501,
+ 12502
]
}
],
@@ -507153,12 +508041,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L86"
}
],
"signatures": [
{
- "id": 29782,
+ "id": 12493,
"name": "updateExchangeShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -507196,12 +508084,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L86"
}
],
"parameters": [
{
- "id": 29783,
+ "id": 12494,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -507211,7 +508099,7 @@
"types": [
{
"type": "reference",
- "target": 29776,
+ "target": 12487,
"name": "UpdateExchangeShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -507224,7 +508112,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 29776,
+ "target": 12487,
"name": "UpdateExchangeShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -507257,14 +508145,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29784,
+ "id": 12495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29785,
+ "id": 12496,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -507278,7 +508166,7 @@
],
"signatures": [
{
- "id": 29786,
+ "id": 12497,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -507292,7 +508180,7 @@
],
"parameters": [
{
- "id": 29787,
+ "id": 12498,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -507303,14 +508191,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29788,
+ "id": 12499,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29789,
+ "id": 12500,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -507334,7 +508222,7 @@
{
"title": "Properties",
"children": [
- 29789
+ 12500
]
}
],
@@ -507411,7 +508299,7 @@
{
"title": "Methods",
"children": [
- 29785
+ 12496
]
}
],
@@ -507445,7 +508333,7 @@
]
},
{
- "id": 29792,
+ "id": 12503,
"name": "updateExchangeShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -507457,7 +508345,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L112"
}
],
"type": {
@@ -507467,7 +508355,7 @@
"defaultValue": "\"update-exchange-shipping-method\""
},
{
- "id": 29793,
+ "id": 12504,
"name": "updateExchangeShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -507511,7 +508399,7 @@
},
"children": [
{
- "id": 29801,
+ "id": 12512,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -507534,7 +508422,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29802,
+ "id": 12513,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -507548,7 +508436,7 @@
],
"signatures": [
{
- "id": 29803,
+ "id": 12514,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -507576,7 +508464,7 @@
],
"parameters": [
{
- "id": 29804,
+ "id": 12515,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -507592,14 +508480,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29805,
+ "id": 12516,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29806,
+ "id": 12517,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -507687,7 +508575,7 @@
{
"title": "Properties",
"children": [
- 29806
+ 12517
]
}
],
@@ -507708,14 +508596,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29807,
+ "id": 12518,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29820,
+ "id": 12531,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -507761,7 +508649,7 @@
}
},
{
- "id": 29880,
+ "id": 12591,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -507807,7 +508695,7 @@
}
},
{
- "id": 29881,
+ "id": 12592,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -507853,7 +508741,7 @@
}
},
{
- "id": 29882,
+ "id": 12593,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -507910,7 +508798,7 @@
}
},
{
- "id": 29883,
+ "id": 12594,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -507966,7 +508854,7 @@
}
},
{
- "id": 29848,
+ "id": 12559,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -508023,7 +508911,7 @@
}
},
{
- "id": 29849,
+ "id": 12560,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -508080,7 +508968,7 @@
}
},
{
- "id": 29850,
+ "id": 12561,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -508137,7 +509025,7 @@
}
},
{
- "id": 29825,
+ "id": 12536,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -508194,7 +509082,7 @@
}
},
{
- "id": 29851,
+ "id": 12562,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -508240,7 +509128,7 @@
}
},
{
- "id": 29852,
+ "id": 12563,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -508310,7 +509198,7 @@
}
},
{
- "id": 29853,
+ "id": 12564,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -508380,7 +509268,7 @@
}
},
{
- "id": 29884,
+ "id": 12595,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -508456,7 +509344,7 @@
}
},
{
- "id": 29854,
+ "id": 12565,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -508532,7 +509420,7 @@
}
},
{
- "id": 29885,
+ "id": 12596,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -508602,7 +509490,7 @@
}
},
{
- "id": 29886,
+ "id": 12597,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -508659,7 +509547,7 @@
}
},
{
- "id": 29824,
+ "id": 12535,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -508754,7 +509642,7 @@
}
},
{
- "id": 29879,
+ "id": 12590,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -508829,7 +509717,7 @@
}
},
{
- "id": 29821,
+ "id": 12532,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -508898,7 +509786,7 @@
}
},
{
- "id": 29822,
+ "id": 12533,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -508967,7 +509855,7 @@
}
},
{
- "id": 29823,
+ "id": 12534,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -509042,7 +509930,7 @@
}
},
{
- "id": 29855,
+ "id": 12566,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -509098,7 +509986,7 @@
}
},
{
- "id": 29856,
+ "id": 12567,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -509154,7 +510042,7 @@
}
},
{
- "id": 29857,
+ "id": 12568,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -509210,7 +510098,7 @@
}
},
{
- "id": 29829,
+ "id": 12540,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -509266,7 +510154,7 @@
}
},
{
- "id": 29830,
+ "id": 12541,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -509322,7 +510210,7 @@
}
},
{
- "id": 29831,
+ "id": 12542,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -509378,7 +510266,7 @@
}
},
{
- "id": 29887,
+ "id": 12598,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -509434,7 +510322,7 @@
}
},
{
- "id": 29826,
+ "id": 12537,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -509490,7 +510378,7 @@
}
},
{
- "id": 29827,
+ "id": 12538,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -509546,7 +510434,7 @@
}
},
{
- "id": 29828,
+ "id": 12539,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -509602,7 +510490,7 @@
}
},
{
- "id": 29832,
+ "id": 12543,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -509658,7 +510546,7 @@
}
},
{
- "id": 29833,
+ "id": 12544,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -509714,7 +510602,7 @@
}
},
{
- "id": 29834,
+ "id": 12545,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -509770,7 +510658,7 @@
}
},
{
- "id": 29888,
+ "id": 12599,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -509826,7 +510714,7 @@
}
},
{
- "id": 29835,
+ "id": 12546,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -509882,7 +510770,7 @@
}
},
{
- "id": 29836,
+ "id": 12547,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -509938,7 +510826,7 @@
}
},
{
- "id": 29878,
+ "id": 12589,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -509994,7 +510882,7 @@
}
},
{
- "id": 29858,
+ "id": 12569,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -510050,7 +510938,7 @@
}
},
{
- "id": 29859,
+ "id": 12570,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -510106,7 +510994,7 @@
}
},
{
- "id": 29860,
+ "id": 12571,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -510162,7 +511050,7 @@
}
},
{
- "id": 29861,
+ "id": 12572,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -510218,7 +511106,7 @@
}
},
{
- "id": 29862,
+ "id": 12573,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -510274,7 +511162,7 @@
}
},
{
- "id": 29889,
+ "id": 12600,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -510330,7 +511218,7 @@
}
},
{
- "id": 29863,
+ "id": 12574,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -510386,7 +511274,7 @@
}
},
{
- "id": 29864,
+ "id": 12575,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -510442,7 +511330,7 @@
}
},
{
- "id": 29865,
+ "id": 12576,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -510498,7 +511386,7 @@
}
},
{
- "id": 29808,
+ "id": 12519,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -510554,7 +511442,7 @@
}
},
{
- "id": 29809,
+ "id": 12520,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -510594,14 +511482,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29810,
+ "id": 12521,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29811,
+ "id": 12522,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -510633,7 +511521,7 @@
{
"title": "Properties",
"children": [
- 29811
+ 12522
]
}
],
@@ -510673,14 +511561,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29812,
+ "id": 12523,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29813,
+ "id": 12524,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -510712,7 +511600,7 @@
{
"title": "Properties",
"children": [
- 29813
+ 12524
]
}
],
@@ -510736,7 +511624,7 @@
}
},
{
- "id": 29814,
+ "id": 12525,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -510776,14 +511664,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29815,
+ "id": 12526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29816,
+ "id": 12527,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -510815,7 +511703,7 @@
{
"title": "Properties",
"children": [
- 29816
+ 12527
]
}
],
@@ -510855,14 +511743,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29817,
+ "id": 12528,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29818,
+ "id": 12529,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -510894,7 +511782,7 @@
{
"title": "Properties",
"children": [
- 29818
+ 12529
]
}
],
@@ -510918,7 +511806,7 @@
}
},
{
- "id": 29819,
+ "id": 12530,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -510968,57 +511856,57 @@
{
"title": "Properties",
"children": [
- 29820,
- 29880,
- 29881,
- 29882,
- 29883,
- 29848,
- 29849,
- 29850,
- 29825,
- 29851,
- 29852,
- 29853,
- 29884,
- 29854,
- 29885,
- 29886,
- 29824,
- 29879,
- 29821,
- 29822,
- 29823,
- 29855,
- 29856,
- 29857,
- 29829,
- 29830,
- 29831,
- 29887,
- 29826,
- 29827,
- 29828,
- 29832,
- 29833,
- 29834,
- 29888,
- 29835,
- 29836,
- 29878,
- 29858,
- 29859,
- 29860,
- 29861,
- 29862,
- 29889,
- 29863,
- 29864,
- 29865,
- 29808,
- 29809,
- 29814,
- 29819
+ 12531,
+ 12591,
+ 12592,
+ 12593,
+ 12594,
+ 12559,
+ 12560,
+ 12561,
+ 12536,
+ 12562,
+ 12563,
+ 12564,
+ 12595,
+ 12565,
+ 12596,
+ 12597,
+ 12535,
+ 12590,
+ 12532,
+ 12533,
+ 12534,
+ 12566,
+ 12567,
+ 12568,
+ 12540,
+ 12541,
+ 12542,
+ 12598,
+ 12537,
+ 12538,
+ 12539,
+ 12543,
+ 12544,
+ 12545,
+ 12599,
+ 12546,
+ 12547,
+ 12589,
+ 12569,
+ 12570,
+ 12571,
+ 12572,
+ 12573,
+ 12600,
+ 12574,
+ 12575,
+ 12576,
+ 12519,
+ 12520,
+ 12525,
+ 12530
]
}
],
@@ -511063,14 +511951,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29890,
+ "id": 12601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29891,
+ "id": 12602,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -511084,7 +511972,7 @@
],
"signatures": [
{
- "id": 29892,
+ "id": 12603,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -511098,7 +511986,7 @@
],
"parameters": [
{
- "id": 29893,
+ "id": 12604,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -511109,14 +511997,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29894,
+ "id": 12605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29895,
+ "id": 12606,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -511140,7 +512028,7 @@
{
"title": "Properties",
"children": [
- 29895
+ 12606
]
}
],
@@ -511222,7 +512110,7 @@
{
"title": "Methods",
"children": [
- 29891
+ 12602
]
}
],
@@ -511263,7 +512151,7 @@
}
},
{
- "id": 29896,
+ "id": 12607,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -511286,7 +512174,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29897,
+ "id": 12608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -511300,7 +512188,7 @@
],
"signatures": [
{
- "id": 29898,
+ "id": 12609,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -511328,7 +512216,7 @@
],
"typeParameters": [
{
- "id": 29899,
+ "id": 12610,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -511339,7 +512227,7 @@
}
},
{
- "id": 29900,
+ "id": 12611,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -511352,7 +512240,7 @@
],
"parameters": [
{
- "id": 29901,
+ "id": 12612,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -511385,7 +512273,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -511419,7 +512307,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -511452,7 +512340,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -511472,7 +512360,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -511492,7 +512380,7 @@
}
},
{
- "id": 29902,
+ "id": 12613,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -511515,7 +512403,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29903,
+ "id": 12614,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -511529,7 +512417,7 @@
],
"signatures": [
{
- "id": 29904,
+ "id": 12615,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -511551,7 +512439,7 @@
}
},
{
- "id": 29905,
+ "id": 12616,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -511574,7 +512462,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29906,
+ "id": 12617,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -511588,7 +512476,7 @@
],
"signatures": [
{
- "id": 29907,
+ "id": 12618,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -511602,7 +512490,7 @@
],
"parameters": [
{
- "id": 29908,
+ "id": 12619,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -511628,7 +512516,7 @@
}
},
{
- "id": 29909,
+ "id": 12620,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -511651,14 +512539,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29910,
+ "id": 12621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29911,
+ "id": 12622,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -511666,7 +512554,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29912,
+ "id": 12623,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -511680,7 +512568,7 @@
],
"signatures": [
{
- "id": 29913,
+ "id": 12624,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -511694,7 +512582,7 @@
],
"typeParameters": [
{
- "id": 29914,
+ "id": 12625,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -511703,7 +512591,7 @@
],
"parameters": [
{
- "id": 29915,
+ "id": 12626,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -511718,14 +512606,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29916,
+ "id": 12627,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29917,
+ "id": 12628,
"name": "order_exchange",
"variant": "declaration",
"kind": 1024,
@@ -511735,7 +512623,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 210,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L210"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L210"
}
],
"type": {
@@ -511750,7 +512638,7 @@
"defaultValue": "orderExchange"
},
{
- "id": 29918,
+ "id": 12629,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -511760,7 +512648,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 211,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L211"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L211"
}
],
"type": {
@@ -511775,7 +512663,7 @@
"defaultValue": "orderChange"
},
{
- "id": 29919,
+ "id": 12630,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -511793,7 +512681,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 212,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L212"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L212"
}
],
"type": {
@@ -511816,9 +512704,9 @@
{
"title": "Properties",
"children": [
- 29917,
- 29918,
- 29919
+ 12628,
+ 12629,
+ 12630
]
}
],
@@ -511827,7 +512715,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 209,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L209"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L209"
}
]
}
@@ -511862,7 +512750,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -511873,7 +512761,7 @@
}
},
{
- "id": 29920,
+ "id": 12631,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -511889,7 +512777,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -511910,7 +512798,7 @@
}
},
{
- "id": 42753,
+ "id": 25694,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -511977,14 +512865,14 @@
},
"signatures": [
{
- "id": 42754,
+ "id": 25695,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42755,
+ "id": 25696,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -511999,7 +512887,7 @@
},
"type": {
"type": "reference",
- "target": 29916,
+ "target": 12627,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -512013,13 +512901,13 @@
{
"title": "Properties",
"children": [
- 29911
+ 12622
]
},
{
"title": "Functions",
"children": [
- 42753
+ 25694
]
}
],
@@ -512036,7 +512924,7 @@
],
"documents": [
{
- "id": 42751,
+ "id": 25692,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -512062,7 +512950,7 @@
"frontmatter": {}
},
{
- "id": 42752,
+ "id": 25693,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -512088,7 +512976,7 @@
"frontmatter": {}
},
{
- "id": 42756,
+ "id": 25697,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -512114,7 +513002,7 @@
"frontmatter": {}
},
{
- "id": 42757,
+ "id": 25698,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -512149,7 +513037,7 @@
"frontmatter": {},
"children": [
{
- "id": 42758,
+ "id": 25699,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -512175,7 +513063,7 @@
"frontmatter": {}
},
{
- "id": 42759,
+ "id": 25700,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -512203,7 +513091,7 @@
]
},
{
- "id": 42760,
+ "id": 25701,
"name": "updateExchangeShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -512229,7 +513117,7 @@
"frontmatter": {}
},
{
- "id": 42761,
+ "id": 25702,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -512255,7 +513143,7 @@
"frontmatter": {}
},
{
- "id": 42762,
+ "id": 25703,
"name": "updateOrderShippingMethodsStep",
"variant": "document",
"kind": 8388608,
@@ -512282,21 +513170,21 @@
}
],
"childrenIncludingDocuments": [
- 29801,
- 29896,
- 29902,
- 29905,
- 29909
+ 12512,
+ 12607,
+ 12613,
+ 12616,
+ 12620
],
"groups": [
{
"title": "Properties",
"children": [
- 29801,
- 29896,
- 29902,
- 29905,
- 29909
+ 12512,
+ 12607,
+ 12613,
+ 12616,
+ 12620
]
}
],
@@ -512305,12 +513193,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 173,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L173"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L173"
}
],
"signatures": [
{
- "id": 29794,
+ "id": 12505,
"name": "updateExchangeShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -512357,12 +513245,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 173,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L173"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L173"
}
],
"typeParameters": [
{
- "id": 29795,
+ "id": 12506,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -512373,7 +513261,7 @@
}
},
{
- "id": 29796,
+ "id": 12507,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -512386,7 +513274,7 @@
],
"parameters": [
{
- "id": 29797,
+ "id": 12508,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -512410,14 +513298,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 29798,
+ "id": 12509,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29799,
+ "id": 12510,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -512440,7 +513328,7 @@
}
},
{
- "id": 29800,
+ "id": 12511,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -512467,8 +513355,8 @@
{
"title": "Properties",
"children": [
- 29799,
- 29800
+ 12510,
+ 12511
]
}
],
@@ -512575,14 +513463,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -512597,14 +513485,14 @@
]
},
{
- "id": 29916,
+ "id": 12627,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29917,
+ "id": 12628,
"name": "order_exchange",
"variant": "declaration",
"kind": 1024,
@@ -512614,7 +513502,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 210,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L210"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L210"
}
],
"type": {
@@ -512629,7 +513517,7 @@
"defaultValue": "orderExchange"
},
{
- "id": 29918,
+ "id": 12629,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -512639,7 +513527,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 211,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L211"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L211"
}
],
"type": {
@@ -512654,7 +513542,7 @@
"defaultValue": "orderChange"
},
{
- "id": 29919,
+ "id": 12630,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -512672,7 +513560,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 212,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L212"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L212"
}
],
"type": {
@@ -512695,9 +513583,9 @@
{
"title": "Properties",
"children": [
- 29917,
- 29918,
- 29919
+ 12628,
+ 12629,
+ 12630
]
}
],
@@ -512706,12 +513594,12 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 209,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L209"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L209"
}
]
},
{
- "id": 29917,
+ "id": 12628,
"name": "order_exchange",
"variant": "declaration",
"kind": 1024,
@@ -512721,7 +513609,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 210,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L210"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L210"
}
],
"type": {
@@ -512736,7 +513624,7 @@
"defaultValue": "orderExchange"
},
{
- "id": 29918,
+ "id": 12629,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -512746,7 +513634,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 211,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L211"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L211"
}
],
"type": {
@@ -512761,7 +513649,7 @@
"defaultValue": "orderChange"
},
{
- "id": 29919,
+ "id": 12630,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -512779,7 +513667,7 @@
"fileName": "core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts",
"line": 212,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L212"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/exchange/update-exchange-shipping-method.ts#L212"
}
],
"type": {
@@ -512798,7 +513686,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 29923,
+ "id": 12634,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -512816,7 +513704,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -512825,7 +513713,7 @@
}
},
{
- "id": 29924,
+ "id": 12635,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -512845,7 +513733,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -512868,7 +513756,7 @@
}
},
{
- "id": 29925,
+ "id": 12636,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -512886,7 +513774,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -512895,7 +513783,7 @@
}
},
{
- "id": 29926,
+ "id": 12637,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -512913,7 +513801,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -512922,7 +513810,7 @@
}
},
{
- "id": 29927,
+ "id": 12638,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -512940,7 +513828,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -512954,7 +513842,7 @@
}
},
{
- "id": 29932,
+ "id": 12643,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -512972,7 +513860,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -512986,7 +513874,7 @@
}
},
{
- "id": 29933,
+ "id": 12644,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -513004,7 +513892,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -513013,7 +513901,7 @@
}
},
{
- "id": 29930,
+ "id": 12641,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -513031,20 +513919,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 29931,
+ "id": 12642,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29932,
+ "id": 12643,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -513062,7 +513950,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -513076,7 +513964,7 @@
}
},
{
- "id": 29933,
+ "id": 12644,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -513094,7 +513982,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -513107,8 +513995,8 @@
{
"title": "Properties",
"children": [
- 29932,
- 29933
+ 12643,
+ 12644
]
}
],
@@ -513117,14 +514005,14 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
}
},
{
- "id": 29934,
+ "id": 12645,
"name": "fetchShippingOptionsForOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -513136,7 +514024,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 92,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L92"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L92"
}
],
"type": {
@@ -513146,7 +514034,7 @@
"defaultValue": "\"fetch-shipping-option\""
},
{
- "id": 29935,
+ "id": 12646,
"name": "fetchShippingOptionForOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -513199,7 +514087,7 @@
},
"children": [
{
- "id": 29954,
+ "id": 12665,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -513222,7 +514110,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29955,
+ "id": 12666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -513236,7 +514124,7 @@
],
"signatures": [
{
- "id": 29956,
+ "id": 12667,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -513264,7 +514152,7 @@
],
"parameters": [
{
- "id": 29957,
+ "id": 12668,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -513280,14 +514168,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 29958,
+ "id": 12669,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29959,
+ "id": 12670,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -513325,14 +514213,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29960,
+ "id": 12671,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29961,
+ "id": 12672,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -513350,7 +514238,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -513359,7 +514247,7 @@
}
},
{
- "id": 29962,
+ "id": 12673,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -513379,7 +514267,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -513402,7 +514290,7 @@
}
},
{
- "id": 29963,
+ "id": 12674,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -513420,7 +514308,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -513429,7 +514317,7 @@
}
},
{
- "id": 29964,
+ "id": 12675,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -513447,7 +514335,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -513456,7 +514344,7 @@
}
},
{
- "id": 29965,
+ "id": 12676,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -513474,7 +514362,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -513492,11 +514380,11 @@
{
"title": "Properties",
"children": [
- 29961,
- 29962,
- 29963,
- 29964,
- 29965
+ 12672,
+ 12673,
+ 12674,
+ 12675,
+ 12676
]
}
],
@@ -513505,7 +514393,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 49,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
}
]
}
@@ -513534,14 +514422,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29966,
+ "id": 12677,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29967,
+ "id": 12678,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -513559,7 +514447,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -513568,7 +514456,7 @@
}
},
{
- "id": 29968,
+ "id": 12679,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -513588,7 +514476,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -513611,7 +514499,7 @@
}
},
{
- "id": 29969,
+ "id": 12680,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -513629,7 +514517,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -513638,7 +514526,7 @@
}
},
{
- "id": 29970,
+ "id": 12681,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -513656,7 +514544,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -513665,7 +514553,7 @@
}
},
{
- "id": 29971,
+ "id": 12682,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -513683,7 +514571,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -513701,11 +514589,11 @@
{
"title": "Properties",
"children": [
- 29967,
- 29968,
- 29969,
- 29970,
- 29971
+ 12678,
+ 12679,
+ 12680,
+ 12681,
+ 12682
]
}
],
@@ -513714,7 +514602,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 49,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
}
]
}
@@ -513733,7 +514621,7 @@
{
"title": "Properties",
"children": [
- 29959
+ 12670
]
}
],
@@ -513754,14 +514642,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29972,
+ "id": 12683,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29991,
+ "id": 12702,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -513779,7 +514667,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
@@ -513788,14 +514676,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29992,
+ "id": 12703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29993,
+ "id": 12704,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -513813,7 +514701,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -513827,7 +514715,7 @@
}
},
{
- "id": 29994,
+ "id": 12705,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -513845,7 +514733,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -513858,8 +514746,8 @@
{
"title": "Properties",
"children": [
- 29993,
- 29994
+ 12704,
+ 12705
]
}
],
@@ -513868,7 +514756,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -513883,14 +514771,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29995,
+ "id": 12706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29996,
+ "id": 12707,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -513908,7 +514796,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -513922,7 +514810,7 @@
}
},
{
- "id": 29997,
+ "id": 12708,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -513940,7 +514828,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -513953,8 +514841,8 @@
{
"title": "Properties",
"children": [
- 29996,
- 29997
+ 12707,
+ 12708
]
}
],
@@ -513963,7 +514851,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -513976,7 +514864,7 @@
}
},
{
- "id": 29973,
+ "id": 12684,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -514022,7 +514910,7 @@
}
},
{
- "id": 29974,
+ "id": 12685,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -514068,7 +514956,7 @@
}
},
{
- "id": 29975,
+ "id": 12686,
"name": "price_type",
"variant": "declaration",
"kind": 1024,
@@ -514124,7 +515012,7 @@
}
},
{
- "id": 29976,
+ "id": 12687,
"name": "service_zone_id",
"variant": "declaration",
"kind": 1024,
@@ -514170,7 +515058,7 @@
}
},
{
- "id": 29977,
+ "id": 12688,
"name": "shipping_profile_id",
"variant": "declaration",
"kind": 1024,
@@ -514216,7 +515104,7 @@
}
},
{
- "id": 29978,
+ "id": 12689,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -514262,7 +515150,7 @@
}
},
{
- "id": 29979,
+ "id": 12690,
"name": "shipping_option_type_id",
"variant": "declaration",
"kind": 1024,
@@ -514321,7 +515209,7 @@
}
},
{
- "id": 29980,
+ "id": 12691,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -514410,7 +515298,7 @@
}
},
{
- "id": 29981,
+ "id": 12692,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -514499,7 +515387,7 @@
}
},
{
- "id": 29982,
+ "id": 12693,
"name": "service_zone",
"variant": "declaration",
"kind": 1024,
@@ -514555,7 +515443,7 @@
}
},
{
- "id": 29983,
+ "id": 12694,
"name": "shipping_profile",
"variant": "declaration",
"kind": 1024,
@@ -514611,7 +515499,7 @@
}
},
{
- "id": 29984,
+ "id": 12695,
"name": "fulfillment_provider",
"variant": "declaration",
"kind": 1024,
@@ -514667,7 +515555,7 @@
}
},
{
- "id": 29985,
+ "id": 12696,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -514723,7 +515611,7 @@
}
},
{
- "id": 29986,
+ "id": 12697,
"name": "rules",
"variant": "declaration",
"kind": 1024,
@@ -514785,7 +515673,7 @@
}
},
{
- "id": 29987,
+ "id": 12698,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -514847,7 +515735,7 @@
}
},
{
- "id": 29988,
+ "id": 12699,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -514903,7 +515791,7 @@
}
},
{
- "id": 29989,
+ "id": 12700,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -514959,7 +515847,7 @@
}
},
{
- "id": 29990,
+ "id": 12701,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -515032,25 +515920,25 @@
{
"title": "Properties",
"children": [
- 29991,
- 29973,
- 29974,
- 29975,
- 29976,
- 29977,
- 29978,
- 29979,
- 29980,
- 29981,
- 29982,
- 29983,
- 29984,
- 29985,
- 29986,
- 29987,
- 29988,
- 29989,
- 29990
+ 12702,
+ 12684,
+ 12685,
+ 12686,
+ 12687,
+ 12688,
+ 12689,
+ 12690,
+ 12691,
+ 12692,
+ 12693,
+ 12694,
+ 12695,
+ 12696,
+ 12697,
+ 12698,
+ 12699,
+ 12700,
+ 12701
]
}
],
@@ -515075,14 +515963,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29998,
+ "id": 12709,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29999,
+ "id": 12710,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -515100,20 +515988,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30000,
+ "id": 12711,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30001,
+ "id": 12712,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -515131,7 +516019,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -515145,7 +516033,7 @@
}
},
{
- "id": 30002,
+ "id": 12713,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -515163,7 +516051,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -515176,8 +516064,8 @@
{
"title": "Properties",
"children": [
- 30001,
- 30002
+ 12712,
+ 12713
]
}
],
@@ -515186,7 +516074,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -515197,7 +516085,7 @@
{
"title": "Properties",
"children": [
- 29999
+ 12710
]
}
],
@@ -515206,7 +516094,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 76,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
}
]
}
@@ -515233,14 +516121,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30003,
+ "id": 12714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30004,
+ "id": 12715,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -515258,20 +516146,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30005,
+ "id": 12716,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30006,
+ "id": 12717,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -515289,7 +516177,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -515303,7 +516191,7 @@
}
},
{
- "id": 30007,
+ "id": 12718,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -515321,7 +516209,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -515334,8 +516222,8 @@
{
"title": "Properties",
"children": [
- 30006,
- 30007
+ 12717,
+ 12718
]
}
],
@@ -515344,7 +516232,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -515355,7 +516243,7 @@
{
"title": "Properties",
"children": [
- 30004
+ 12715
]
}
],
@@ -515364,7 +516252,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 76,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
}
]
}
@@ -515378,14 +516266,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30008,
+ "id": 12719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30009,
+ "id": 12720,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -515399,7 +516287,7 @@
],
"signatures": [
{
- "id": 30010,
+ "id": 12721,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -515413,7 +516301,7 @@
],
"parameters": [
{
- "id": 30011,
+ "id": 12722,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -515424,14 +516312,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30012,
+ "id": 12723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30013,
+ "id": 12724,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -515455,7 +516343,7 @@
{
"title": "Properties",
"children": [
- 30013
+ 12724
]
}
],
@@ -515531,14 +516419,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30014,
+ "id": 12725,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30015,
+ "id": 12726,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -515556,20 +516444,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30016,
+ "id": 12727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30017,
+ "id": 12728,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -515587,7 +516475,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -515601,7 +516489,7 @@
}
},
{
- "id": 30018,
+ "id": 12729,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -515619,7 +516507,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -515632,8 +516520,8 @@
{
"title": "Properties",
"children": [
- 30017,
- 30018
+ 12728,
+ 12729
]
}
],
@@ -515642,7 +516530,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -515653,7 +516541,7 @@
{
"title": "Properties",
"children": [
- 30015
+ 12726
]
}
],
@@ -515662,7 +516550,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 76,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
}
]
}
@@ -515681,7 +516569,7 @@
{
"title": "Methods",
"children": [
- 30009
+ 12720
]
}
],
@@ -515716,14 +516604,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30019,
+ "id": 12730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30020,
+ "id": 12731,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -515741,20 +516629,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30021,
+ "id": 12732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30022,
+ "id": 12733,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -515772,7 +516660,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -515786,7 +516674,7 @@
}
},
{
- "id": 30023,
+ "id": 12734,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -515804,7 +516692,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -515817,8 +516705,8 @@
{
"title": "Properties",
"children": [
- 30022,
- 30023
+ 12733,
+ 12734
]
}
],
@@ -515827,7 +516715,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -515838,7 +516726,7 @@
{
"title": "Properties",
"children": [
- 30020
+ 12731
]
}
],
@@ -515847,7 +516735,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 76,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
}
]
}
@@ -515866,7 +516754,7 @@
}
},
{
- "id": 30024,
+ "id": 12735,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -515889,7 +516777,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30025,
+ "id": 12736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -515903,7 +516791,7 @@
],
"signatures": [
{
- "id": 30026,
+ "id": 12737,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -515931,7 +516819,7 @@
],
"typeParameters": [
{
- "id": 30027,
+ "id": 12738,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -515942,7 +516830,7 @@
}
},
{
- "id": 30028,
+ "id": 12739,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -515955,7 +516843,7 @@
],
"parameters": [
{
- "id": 30029,
+ "id": 12740,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -515988,7 +516876,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -516012,14 +516900,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30030,
+ "id": 12741,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30031,
+ "id": 12742,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -516037,7 +516925,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -516046,7 +516934,7 @@
}
},
{
- "id": 30032,
+ "id": 12743,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -516066,7 +516954,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -516089,7 +516977,7 @@
}
},
{
- "id": 30033,
+ "id": 12744,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -516107,7 +516995,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -516116,7 +517004,7 @@
}
},
{
- "id": 30034,
+ "id": 12745,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -516134,7 +517022,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -516143,7 +517031,7 @@
}
},
{
- "id": 30035,
+ "id": 12746,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -516161,7 +517049,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -516179,11 +517067,11 @@
{
"title": "Properties",
"children": [
- 30031,
- 30032,
- 30033,
- 30034,
- 30035
+ 12742,
+ 12743,
+ 12744,
+ 12745,
+ 12746
]
}
],
@@ -516192,7 +517080,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 49,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
}
]
}
@@ -516201,7 +517089,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -516234,7 +517122,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -516258,14 +517146,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30036,
+ "id": 12747,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30037,
+ "id": 12748,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -516283,20 +517171,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30038,
+ "id": 12749,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30039,
+ "id": 12750,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -516314,7 +517202,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -516328,7 +517216,7 @@
}
},
{
- "id": 30040,
+ "id": 12751,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -516346,7 +517234,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -516359,8 +517247,8 @@
{
"title": "Properties",
"children": [
- 30039,
- 30040
+ 12750,
+ 12751
]
}
],
@@ -516369,7 +517257,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -516380,7 +517268,7 @@
{
"title": "Properties",
"children": [
- 30037
+ 12748
]
}
],
@@ -516389,7 +517277,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 76,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
}
]
}
@@ -516398,7 +517286,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -516418,7 +517306,7 @@
}
},
{
- "id": 30041,
+ "id": 12752,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -516441,7 +517329,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30042,
+ "id": 12753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -516455,7 +517343,7 @@
],
"signatures": [
{
- "id": 30043,
+ "id": 12754,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -516477,7 +517365,7 @@
}
},
{
- "id": 30044,
+ "id": 12755,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -516500,7 +517388,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30045,
+ "id": 12756,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -516514,7 +517402,7 @@
],
"signatures": [
{
- "id": 30046,
+ "id": 12757,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -516528,7 +517416,7 @@
],
"parameters": [
{
- "id": 30047,
+ "id": 12758,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -516554,7 +517442,7 @@
}
},
{
- "id": 30048,
+ "id": 12759,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -516577,14 +517465,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30049,
+ "id": 12760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30050,
+ "id": 12761,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -516592,7 +517480,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30051,
+ "id": 12762,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -516606,7 +517494,7 @@
],
"signatures": [
{
- "id": 30052,
+ "id": 12763,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -516620,7 +517508,7 @@
],
"typeParameters": [
{
- "id": 30053,
+ "id": 12764,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -516629,7 +517517,7 @@
],
"parameters": [
{
- "id": 30054,
+ "id": 12765,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -516643,7 +517531,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 29921,
+ "target": 12632,
"name": "FetchShippingOptionForOrderWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -516677,7 +517565,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -516688,7 +517576,7 @@
}
},
{
- "id": 30055,
+ "id": 12766,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -516704,7 +517592,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -516725,7 +517613,7 @@
}
},
{
- "id": 42765,
+ "id": 25706,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -516792,14 +517680,14 @@
},
"signatures": [
{
- "id": 42766,
+ "id": 25707,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42767,
+ "id": 25708,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -516819,14 +517707,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29943,
+ "id": 12654,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29944,
+ "id": 12655,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -516844,7 +517732,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -516853,7 +517741,7 @@
}
},
{
- "id": 29945,
+ "id": 12656,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -516873,7 +517761,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -516896,7 +517784,7 @@
}
},
{
- "id": 29946,
+ "id": 12657,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -516914,7 +517802,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -516923,7 +517811,7 @@
}
},
{
- "id": 29947,
+ "id": 12658,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -516941,7 +517829,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -516950,7 +517838,7 @@
}
},
{
- "id": 29948,
+ "id": 12659,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -516968,7 +517856,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -516986,11 +517874,11 @@
{
"title": "Properties",
"children": [
- 29944,
- 29945,
- 29946,
- 29947,
- 29948
+ 12655,
+ 12656,
+ 12657,
+ 12658,
+ 12659
]
}
],
@@ -516999,7 +517887,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 49,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
}
]
}
@@ -517016,13 +517904,13 @@
{
"title": "Properties",
"children": [
- 30050
+ 12761
]
},
{
"title": "Functions",
"children": [
- 42765
+ 25706
]
}
],
@@ -517039,7 +517927,7 @@
],
"documents": [
{
- "id": 42763,
+ "id": 25704,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -517074,7 +517962,7 @@
"frontmatter": {},
"children": [
{
- "id": 42764,
+ "id": 25705,
"name": "calculateShippingOptionsPricesStep",
"variant": "document",
"kind": 8388608,
@@ -517102,7 +517990,7 @@
]
},
{
- "id": 42768,
+ "id": 25709,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -517129,21 +518017,21 @@
}
],
"childrenIncludingDocuments": [
- 29954,
- 30024,
- 30041,
- 30044,
- 30048
+ 12665,
+ 12735,
+ 12752,
+ 12755,
+ 12759
],
"groups": [
{
"title": "Properties",
"children": [
- 29954,
- 30024,
- 30041,
- 30044,
- 30048
+ 12665,
+ 12735,
+ 12752,
+ 12755,
+ 12759
]
}
],
@@ -517152,12 +518040,12 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 167,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L167"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L167"
}
],
"signatures": [
{
- "id": 29936,
+ "id": 12647,
"name": "fetchShippingOptionForOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -517213,12 +518101,12 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 167,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L167"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L167"
}
],
"typeParameters": [
{
- "id": 29937,
+ "id": 12648,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -517229,7 +518117,7 @@
}
},
{
- "id": 29938,
+ "id": 12649,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -517242,7 +518130,7 @@
],
"parameters": [
{
- "id": 29939,
+ "id": 12650,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -517266,14 +518154,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 29940,
+ "id": 12651,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29941,
+ "id": 12652,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -517296,7 +518184,7 @@
}
},
{
- "id": 29942,
+ "id": 12653,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -517323,8 +518211,8 @@
{
"title": "Properties",
"children": [
- 29941,
- 29942
+ 12652,
+ 12653
]
}
],
@@ -517412,14 +518300,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29943,
+ "id": 12654,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29944,
+ "id": 12655,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -517437,7 +518325,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -517446,7 +518334,7 @@
}
},
{
- "id": 29945,
+ "id": 12656,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -517466,7 +518354,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -517489,7 +518377,7 @@
}
},
{
- "id": 29946,
+ "id": 12657,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -517507,7 +518395,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -517516,7 +518404,7 @@
}
},
{
- "id": 29947,
+ "id": 12658,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -517534,7 +518422,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -517543,7 +518431,7 @@
}
},
{
- "id": 29948,
+ "id": 12659,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -517561,7 +518449,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -517579,11 +518467,11 @@
{
"title": "Properties",
"children": [
- 29944,
- 29945,
- 29946,
- 29947,
- 29948
+ 12655,
+ 12656,
+ 12657,
+ 12658,
+ 12659
]
}
],
@@ -517592,7 +518480,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 49,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L49"
}
]
}
@@ -517614,14 +518502,14 @@
{
"type": "reflection",
"declaration": {
- "id": 29949,
+ "id": 12660,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29950,
+ "id": 12661,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -517639,20 +518527,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 29951,
+ "id": 12662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29952,
+ "id": 12663,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -517670,7 +518558,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -517684,7 +518572,7 @@
}
},
{
- "id": 29953,
+ "id": 12664,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -517702,7 +518590,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -517715,8 +518603,8 @@
{
"title": "Properties",
"children": [
- 29952,
- 29953
+ 12663,
+ 12664
]
}
],
@@ -517725,7 +518613,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
@@ -517736,7 +518624,7 @@
{
"title": "Properties",
"children": [
- 29950
+ 12661
]
}
],
@@ -517745,7 +518633,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 76,
"character": 76,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L76"
}
]
}
@@ -517754,14 +518642,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -517776,7 +518664,7 @@
]
},
{
- "id": 29944,
+ "id": 12655,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -517794,7 +518682,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -517803,7 +518691,7 @@
}
},
{
- "id": 29945,
+ "id": 12656,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -517823,7 +518711,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -517846,7 +518734,7 @@
}
},
{
- "id": 29946,
+ "id": 12657,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -517864,7 +518752,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -517873,7 +518761,7 @@
}
},
{
- "id": 29947,
+ "id": 12658,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -517891,7 +518779,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -517900,7 +518788,7 @@
}
},
{
- "id": 29948,
+ "id": 12659,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -517918,7 +518806,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -517932,7 +518820,7 @@
}
},
{
- "id": 29952,
+ "id": 12663,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -517950,7 +518838,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -517964,7 +518852,7 @@
}
},
{
- "id": 29953,
+ "id": 12664,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -517982,7 +518870,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -517991,7 +518879,7 @@
}
},
{
- "id": 29950,
+ "id": 12661,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -518009,20 +518897,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 29951,
+ "id": 12662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 29952,
+ "id": 12663,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518040,7 +518928,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518054,7 +518942,7 @@
}
},
{
- "id": 29953,
+ "id": 12664,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518072,7 +518960,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518085,8 +518973,8 @@
{
"title": "Properties",
"children": [
- 29952,
- 29953
+ 12663,
+ 12664
]
}
],
@@ -518095,14 +518983,14 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
}
},
{
- "id": 29961,
+ "id": 12672,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -518120,7 +519008,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -518129,7 +519017,7 @@
}
},
{
- "id": 29962,
+ "id": 12673,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -518149,7 +519037,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -518172,7 +519060,7 @@
}
},
{
- "id": 29963,
+ "id": 12674,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -518190,7 +519078,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -518199,7 +519087,7 @@
}
},
{
- "id": 29964,
+ "id": 12675,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -518217,7 +519105,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -518226,7 +519114,7 @@
}
},
{
- "id": 29965,
+ "id": 12676,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -518244,7 +519132,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -518258,7 +519146,7 @@
}
},
{
- "id": 29967,
+ "id": 12678,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -518276,7 +519164,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -518285,7 +519173,7 @@
}
},
{
- "id": 29968,
+ "id": 12679,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -518305,7 +519193,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -518328,7 +519216,7 @@
}
},
{
- "id": 29969,
+ "id": 12680,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -518346,7 +519234,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -518355,7 +519243,7 @@
}
},
{
- "id": 29970,
+ "id": 12681,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -518373,7 +519261,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -518382,7 +519270,7 @@
}
},
{
- "id": 29971,
+ "id": 12682,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -518400,7 +519288,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -518414,7 +519302,7 @@
}
},
{
- "id": 29993,
+ "id": 12704,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518432,7 +519320,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518446,7 +519334,7 @@
}
},
{
- "id": 29994,
+ "id": 12705,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518464,7 +519352,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518473,7 +519361,7 @@
}
},
{
- "id": 29996,
+ "id": 12707,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518491,7 +519379,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518505,7 +519393,7 @@
}
},
{
- "id": 29997,
+ "id": 12708,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518523,7 +519411,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518532,7 +519420,7 @@
}
},
{
- "id": 30001,
+ "id": 12712,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518550,7 +519438,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518564,7 +519452,7 @@
}
},
{
- "id": 30002,
+ "id": 12713,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518582,7 +519470,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518591,7 +519479,7 @@
}
},
{
- "id": 29999,
+ "id": 12710,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -518609,20 +519497,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30000,
+ "id": 12711,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30001,
+ "id": 12712,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518640,7 +519528,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518654,7 +519542,7 @@
}
},
{
- "id": 30002,
+ "id": 12713,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518672,7 +519560,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518685,8 +519573,8 @@
{
"title": "Properties",
"children": [
- 30001,
- 30002
+ 12712,
+ 12713
]
}
],
@@ -518695,14 +519583,14 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
}
},
{
- "id": 30006,
+ "id": 12717,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518720,7 +519608,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518734,7 +519622,7 @@
}
},
{
- "id": 30007,
+ "id": 12718,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518752,7 +519640,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518761,7 +519649,7 @@
}
},
{
- "id": 30004,
+ "id": 12715,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -518779,20 +519667,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30005,
+ "id": 12716,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30006,
+ "id": 12717,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518810,7 +519698,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518824,7 +519712,7 @@
}
},
{
- "id": 30007,
+ "id": 12718,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518842,7 +519730,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518855,8 +519743,8 @@
{
"title": "Properties",
"children": [
- 30006,
- 30007
+ 12717,
+ 12718
]
}
],
@@ -518865,14 +519753,14 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
}
},
{
- "id": 30017,
+ "id": 12728,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518890,7 +519778,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518904,7 +519792,7 @@
}
},
{
- "id": 30018,
+ "id": 12729,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -518922,7 +519810,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -518931,7 +519819,7 @@
}
},
{
- "id": 30015,
+ "id": 12726,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -518949,20 +519837,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30016,
+ "id": 12727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30017,
+ "id": 12728,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -518980,7 +519868,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -518994,7 +519882,7 @@
}
},
{
- "id": 30018,
+ "id": 12729,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -519012,7 +519900,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -519025,8 +519913,8 @@
{
"title": "Properties",
"children": [
- 30017,
- 30018
+ 12728,
+ 12729
]
}
],
@@ -519035,14 +519923,14 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
}
},
{
- "id": 30022,
+ "id": 12733,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -519060,7 +519948,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -519074,7 +519962,7 @@
}
},
{
- "id": 30023,
+ "id": 12734,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -519092,7 +519980,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -519101,7 +519989,7 @@
}
},
{
- "id": 30020,
+ "id": 12731,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -519119,20 +520007,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30021,
+ "id": 12732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30022,
+ "id": 12733,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -519150,7 +520038,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -519164,7 +520052,7 @@
}
},
{
- "id": 30023,
+ "id": 12734,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -519182,7 +520070,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -519195,8 +520083,8 @@
{
"title": "Properties",
"children": [
- 30022,
- 30023
+ 12733,
+ 12734
]
}
],
@@ -519205,14 +520093,14 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
}
},
{
- "id": 30031,
+ "id": 12742,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -519230,7 +520118,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L53"
}
],
"type": {
@@ -519239,7 +520127,7 @@
}
},
{
- "id": 30032,
+ "id": 12743,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -519259,7 +520147,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L58"
}
],
"type": {
@@ -519282,7 +520170,7 @@
}
},
{
- "id": 30033,
+ "id": 12744,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -519300,7 +520188,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L62"
}
],
"type": {
@@ -519309,7 +520197,7 @@
}
},
{
- "id": 30034,
+ "id": 12745,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -519327,7 +520215,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L66"
}
],
"type": {
@@ -519336,7 +520224,7 @@
}
},
{
- "id": 30035,
+ "id": 12746,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -519354,7 +520242,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L70"
}
],
"type": {
@@ -519368,7 +520256,7 @@
}
},
{
- "id": 30039,
+ "id": 12750,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -519386,7 +520274,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -519400,7 +520288,7 @@
}
},
{
- "id": 30040,
+ "id": 12751,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -519418,7 +520306,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -519427,7 +520315,7 @@
}
},
{
- "id": 30037,
+ "id": 12748,
"name": "calculated_price",
"variant": "declaration",
"kind": 1024,
@@ -519445,20 +520333,20 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30038,
+ "id": 12749,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30039,
+ "id": 12750,
"name": "calculated_amount",
"variant": "declaration",
"kind": 1024,
@@ -519476,7 +520364,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L84"
}
],
"type": {
@@ -519490,7 +520378,7 @@
}
},
{
- "id": 30040,
+ "id": 12751,
"name": "is_calculated_price_tax_inclusive",
"variant": "declaration",
"kind": 1024,
@@ -519508,7 +520396,7 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 88,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L88"
}
],
"type": {
@@ -519521,8 +520409,8 @@
{
"title": "Properties",
"children": [
- 30039,
- 30040
+ 12750,
+ 12751
]
}
],
@@ -519531,14 +520419,14 @@
"fileName": "core-flows/src/order/workflows/fetch-shipping-option.ts",
"line": 80,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/fetch-shipping-option.ts#L80"
}
]
}
}
},
{
- "id": 30060,
+ "id": 12771,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -519558,7 +520446,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L26"
}
],
"type": {
@@ -519567,7 +520455,7 @@
}
},
{
- "id": 30061,
+ "id": 12772,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -519587,7 +520475,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L30"
}
],
"type": {
@@ -519596,7 +520484,7 @@
}
},
{
- "id": 30058,
+ "id": 12769,
"name": "filters",
"variant": "declaration",
"kind": 1024,
@@ -519616,20 +520504,20 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L22"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30059,
+ "id": 12770,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30060,
+ "id": 12771,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -519649,7 +520537,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L26"
}
],
"type": {
@@ -519658,7 +520546,7 @@
}
},
{
- "id": 30061,
+ "id": 12772,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -519678,7 +520566,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L30"
}
],
"type": {
@@ -519691,8 +520579,8 @@
{
"title": "Properties",
"children": [
- 30060,
- 30061
+ 12771,
+ 12772
]
}
],
@@ -519701,14 +520589,14 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L22"
}
]
}
}
},
{
- "id": 30062,
+ "id": 12773,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -519726,7 +520614,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L37"
}
],
"type": {
@@ -519738,7 +520626,7 @@
}
},
{
- "id": 30063,
+ "id": 12774,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -519756,7 +520644,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L41"
}
],
"type": {
@@ -519765,7 +520653,7 @@
}
},
{
- "id": 30064,
+ "id": 12775,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -519785,7 +520673,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L46"
}
],
"type": {
@@ -519794,7 +520682,7 @@
}
},
{
- "id": 30065,
+ "id": 12776,
"name": "getOrderDetailWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -519806,7 +520694,7 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L49"
}
],
"type": {
@@ -519816,7 +520704,7 @@
"defaultValue": "\"get-order-detail\""
},
{
- "id": 30066,
+ "id": 12777,
"name": "getOrderDetailWorkflow",
"variant": "declaration",
"kind": 64,
@@ -519860,7 +520748,7 @@
},
"children": [
{
- "id": 30074,
+ "id": 12785,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -519883,7 +520771,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30075,
+ "id": 12786,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -519897,7 +520785,7 @@
],
"signatures": [
{
- "id": 30076,
+ "id": 12787,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -519925,7 +520813,7 @@
],
"parameters": [
{
- "id": 30077,
+ "id": 12788,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -519941,14 +520829,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30078,
+ "id": 12789,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30079,
+ "id": 12790,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -519973,7 +520861,7 @@
"types": [
{
"type": "reference",
- "target": 30056,
+ "target": 12767,
"name": "GetOrderDetailWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -519986,7 +520874,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30056,
+ "target": 12767,
"name": "GetOrderDetailWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -520002,7 +520890,7 @@
{
"title": "Properties",
"children": [
- 30079
+ 12790
]
}
],
@@ -520023,14 +520911,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30080,
+ "id": 12791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30085,
+ "id": 12796,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -520076,7 +520964,7 @@
}
},
{
- "id": 30086,
+ "id": 12797,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -520122,7 +521010,7 @@
}
},
{
- "id": 30087,
+ "id": 12798,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -520168,7 +521056,7 @@
}
},
{
- "id": 30088,
+ "id": 12799,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -520225,7 +521113,7 @@
}
},
{
- "id": 30089,
+ "id": 12800,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -520295,7 +521183,7 @@
}
},
{
- "id": 30090,
+ "id": 12801,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -520351,7 +521239,7 @@
}
},
{
- "id": 30091,
+ "id": 12802,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -520408,7 +521296,7 @@
}
},
{
- "id": 30092,
+ "id": 12803,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -520465,7 +521353,7 @@
}
},
{
- "id": 30093,
+ "id": 12804,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -520522,7 +521410,7 @@
}
},
{
- "id": 30094,
+ "id": 12805,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -520579,7 +521467,7 @@
}
},
{
- "id": 30095,
+ "id": 12806,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -520625,7 +521513,7 @@
}
},
{
- "id": 30096,
+ "id": 12807,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -520695,7 +521583,7 @@
}
},
{
- "id": 30097,
+ "id": 12808,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -520765,7 +521653,7 @@
}
},
{
- "id": 30098,
+ "id": 12809,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -520841,7 +521729,7 @@
}
},
{
- "id": 30099,
+ "id": 12810,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -520917,7 +521805,7 @@
}
},
{
- "id": 30100,
+ "id": 12811,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -520993,7 +521881,7 @@
}
},
{
- "id": 30101,
+ "id": 12812,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -521069,7 +521957,7 @@
}
},
{
- "id": 30102,
+ "id": 12813,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -521139,7 +522027,7 @@
}
},
{
- "id": 30103,
+ "id": 12814,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -521196,7 +522084,7 @@
}
},
{
- "id": 30104,
+ "id": 12815,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -521291,7 +522179,7 @@
}
},
{
- "id": 30105,
+ "id": 12816,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -521366,7 +522254,7 @@
}
},
{
- "id": 30106,
+ "id": 12817,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -521435,7 +522323,7 @@
}
},
{
- "id": 30107,
+ "id": 12818,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -521504,7 +522392,7 @@
}
},
{
- "id": 30108,
+ "id": 12819,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -521579,7 +522467,7 @@
}
},
{
- "id": 30109,
+ "id": 12820,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -521635,7 +522523,7 @@
}
},
{
- "id": 30110,
+ "id": 12821,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -521691,7 +522579,7 @@
}
},
{
- "id": 30111,
+ "id": 12822,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -521747,7 +522635,7 @@
}
},
{
- "id": 30112,
+ "id": 12823,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -521803,7 +522691,7 @@
}
},
{
- "id": 30113,
+ "id": 12824,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -521859,7 +522747,7 @@
}
},
{
- "id": 30114,
+ "id": 12825,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -521915,7 +522803,7 @@
}
},
{
- "id": 30115,
+ "id": 12826,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -521971,7 +522859,7 @@
}
},
{
- "id": 30116,
+ "id": 12827,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -522027,7 +522915,7 @@
}
},
{
- "id": 30117,
+ "id": 12828,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -522083,7 +522971,7 @@
}
},
{
- "id": 30118,
+ "id": 12829,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -522139,7 +523027,7 @@
}
},
{
- "id": 30119,
+ "id": 12830,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -522195,7 +523083,7 @@
}
},
{
- "id": 30120,
+ "id": 12831,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -522251,7 +523139,7 @@
}
},
{
- "id": 30121,
+ "id": 12832,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -522307,7 +523195,7 @@
}
},
{
- "id": 30122,
+ "id": 12833,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -522363,7 +523251,7 @@
}
},
{
- "id": 30123,
+ "id": 12834,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -522419,7 +523307,7 @@
}
},
{
- "id": 30124,
+ "id": 12835,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -522475,7 +523363,7 @@
}
},
{
- "id": 30125,
+ "id": 12836,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -522531,7 +523419,7 @@
}
},
{
- "id": 30126,
+ "id": 12837,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -522587,7 +523475,7 @@
}
},
{
- "id": 30127,
+ "id": 12838,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -522643,7 +523531,7 @@
}
},
{
- "id": 30128,
+ "id": 12839,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -522699,7 +523587,7 @@
}
},
{
- "id": 30129,
+ "id": 12840,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -522755,7 +523643,7 @@
}
},
{
- "id": 30130,
+ "id": 12841,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -522811,7 +523699,7 @@
}
},
{
- "id": 30131,
+ "id": 12842,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -522867,7 +523755,7 @@
}
},
{
- "id": 30132,
+ "id": 12843,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -522923,7 +523811,7 @@
}
},
{
- "id": 30133,
+ "id": 12844,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -522979,7 +523867,7 @@
}
},
{
- "id": 30134,
+ "id": 12845,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -523035,7 +523923,7 @@
}
},
{
- "id": 30081,
+ "id": 12792,
"name": "payment_collections",
"variant": "declaration",
"kind": 1024,
@@ -523100,7 +523988,7 @@
}
},
{
- "id": 30082,
+ "id": 12793,
"name": "payment_status",
"variant": "declaration",
"kind": 1024,
@@ -523156,7 +524044,7 @@
}
},
{
- "id": 30083,
+ "id": 12794,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -523221,7 +524109,7 @@
}
},
{
- "id": 30084,
+ "id": 12795,
"name": "fulfillment_status",
"variant": "declaration",
"kind": 1024,
@@ -523281,60 +524169,60 @@
{
"title": "Properties",
"children": [
- 30085,
- 30086,
- 30087,
- 30088,
- 30089,
- 30090,
- 30091,
- 30092,
- 30093,
- 30094,
- 30095,
- 30096,
- 30097,
- 30098,
- 30099,
- 30100,
- 30101,
- 30102,
- 30103,
- 30104,
- 30105,
- 30106,
- 30107,
- 30108,
- 30109,
- 30110,
- 30111,
- 30112,
- 30113,
- 30114,
- 30115,
- 30116,
- 30117,
- 30118,
- 30119,
- 30120,
- 30121,
- 30122,
- 30123,
- 30124,
- 30125,
- 30126,
- 30127,
- 30128,
- 30129,
- 30130,
- 30131,
- 30132,
- 30133,
- 30134,
- 30081,
- 30082,
- 30083,
- 30084
+ 12796,
+ 12797,
+ 12798,
+ 12799,
+ 12800,
+ 12801,
+ 12802,
+ 12803,
+ 12804,
+ 12805,
+ 12806,
+ 12807,
+ 12808,
+ 12809,
+ 12810,
+ 12811,
+ 12812,
+ 12813,
+ 12814,
+ 12815,
+ 12816,
+ 12817,
+ 12818,
+ 12819,
+ 12820,
+ 12821,
+ 12822,
+ 12823,
+ 12824,
+ 12825,
+ 12826,
+ 12827,
+ 12828,
+ 12829,
+ 12830,
+ 12831,
+ 12832,
+ 12833,
+ 12834,
+ 12835,
+ 12836,
+ 12837,
+ 12838,
+ 12839,
+ 12840,
+ 12841,
+ 12842,
+ 12843,
+ 12844,
+ 12845,
+ 12792,
+ 12793,
+ 12794,
+ 12795
]
}
],
@@ -523379,14 +524267,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30158,
+ "id": 12869,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30159,
+ "id": 12870,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -523400,7 +524288,7 @@
],
"signatures": [
{
- "id": 30160,
+ "id": 12871,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -523414,7 +524302,7 @@
],
"parameters": [
{
- "id": 30161,
+ "id": 12872,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -523425,14 +524313,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30162,
+ "id": 12873,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30163,
+ "id": 12874,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -523456,7 +524344,7 @@
{
"title": "Properties",
"children": [
- 30163
+ 12874
]
}
],
@@ -523538,7 +524426,7 @@
{
"title": "Methods",
"children": [
- 30159
+ 12870
]
}
],
@@ -523579,7 +524467,7 @@
}
},
{
- "id": 30164,
+ "id": 12875,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -523602,7 +524490,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30165,
+ "id": 12876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -523616,7 +524504,7 @@
],
"signatures": [
{
- "id": 30166,
+ "id": 12877,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -523644,7 +524532,7 @@
],
"typeParameters": [
{
- "id": 30167,
+ "id": 12878,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -523655,7 +524543,7 @@
}
},
{
- "id": 30168,
+ "id": 12879,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -523668,7 +524556,7 @@
],
"parameters": [
{
- "id": 30169,
+ "id": 12880,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -523701,7 +524589,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -523712,13 +524600,13 @@
},
"trueType": {
"type": "reference",
- "target": 30056,
+ "target": 12767,
"name": "GetOrderDetailWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -523751,7 +524639,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -523771,7 +524659,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -523791,7 +524679,7 @@
}
},
{
- "id": 30170,
+ "id": 12881,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -523814,7 +524702,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30171,
+ "id": 12882,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -523828,7 +524716,7 @@
],
"signatures": [
{
- "id": 30172,
+ "id": 12883,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -523850,7 +524738,7 @@
}
},
{
- "id": 30173,
+ "id": 12884,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -523873,7 +524761,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30174,
+ "id": 12885,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -523887,7 +524775,7 @@
],
"signatures": [
{
- "id": 30175,
+ "id": 12886,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -523901,7 +524789,7 @@
],
"parameters": [
{
- "id": 30176,
+ "id": 12887,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -523927,7 +524815,7 @@
}
},
{
- "id": 30177,
+ "id": 12888,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -523950,7 +524838,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30178,
+ "id": 12889,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -523963,11 +524851,11 @@
{
"title": "Properties",
"children": [
- 30074,
- 30164,
- 30170,
- 30173,
- 30177
+ 12785,
+ 12875,
+ 12881,
+ 12884,
+ 12888
]
}
],
@@ -523976,12 +524864,12 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L71"
}
],
"signatures": [
{
- "id": 30067,
+ "id": 12778,
"name": "getOrderDetailWorkflow",
"variant": "signature",
"kind": 4096,
@@ -524028,12 +524916,12 @@
"fileName": "core-flows/src/order/workflows/get-order-detail.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-order-detail.ts#L71"
}
],
"typeParameters": [
{
- "id": 30068,
+ "id": 12779,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -524044,7 +524932,7 @@
}
},
{
- "id": 30069,
+ "id": 12780,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -524057,7 +524945,7 @@
],
"parameters": [
{
- "id": 30070,
+ "id": 12781,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -524081,14 +524969,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30071,
+ "id": 12782,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30072,
+ "id": 12783,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -524111,7 +524999,7 @@
}
},
{
- "id": 30073,
+ "id": 12784,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -524138,8 +525026,8 @@
{
"title": "Properties",
"children": [
- 30072,
- 30073
+ 12783,
+ 12784
]
}
],
@@ -524214,7 +525102,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30056,
+ "target": 12767,
"name": "GetOrderDetailWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -524229,14 +525117,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -524251,7 +525139,7 @@
]
},
{
- "id": 30181,
+ "id": 12892,
"name": "rows",
"variant": "declaration",
"kind": 1024,
@@ -524269,7 +525157,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 26,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L26"
}
],
"type": {
@@ -524286,7 +525174,7 @@
}
},
{
- "id": 30184,
+ "id": 12895,
"name": "count",
"variant": "declaration",
"kind": 1024,
@@ -524304,7 +525192,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 34,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L34"
}
],
"type": {
@@ -524313,7 +525201,7 @@
}
},
{
- "id": 30185,
+ "id": 12896,
"name": "skip",
"variant": "declaration",
"kind": 1024,
@@ -524331,7 +525219,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 38,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L38"
}
],
"type": {
@@ -524340,7 +525228,7 @@
}
},
{
- "id": 30186,
+ "id": 12897,
"name": "take",
"variant": "declaration",
"kind": 1024,
@@ -524358,7 +525246,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 42,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L42"
}
],
"type": {
@@ -524367,7 +525255,7 @@
}
},
{
- "id": 30182,
+ "id": 12893,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -524385,20 +525273,20 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 30,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L30"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 30183,
+ "id": 12894,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30184,
+ "id": 12895,
"name": "count",
"variant": "declaration",
"kind": 1024,
@@ -524416,7 +525304,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 34,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L34"
}
],
"type": {
@@ -524425,7 +525313,7 @@
}
},
{
- "id": 30185,
+ "id": 12896,
"name": "skip",
"variant": "declaration",
"kind": 1024,
@@ -524443,7 +525331,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 38,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L38"
}
],
"type": {
@@ -524452,7 +525340,7 @@
}
},
{
- "id": 30186,
+ "id": 12897,
"name": "take",
"variant": "declaration",
"kind": 1024,
@@ -524470,7 +525358,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 42,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L42"
}
],
"type": {
@@ -524483,9 +525371,9 @@
{
"title": "Properties",
"children": [
- 30184,
- 30185,
- 30186
+ 12895,
+ 12896,
+ 12897
]
}
],
@@ -524494,14 +525382,14 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 30,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L30"
}
]
}
}
},
{
- "id": 30189,
+ "id": 12900,
"name": "fields",
"variant": "declaration",
"kind": 1024,
@@ -524519,7 +525407,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L52"
}
],
"type": {
@@ -524531,7 +525419,7 @@
}
},
{
- "id": 30192,
+ "id": 12903,
"name": "skip",
"variant": "declaration",
"kind": 1024,
@@ -524551,7 +525439,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 60,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L60"
}
],
"type": {
@@ -524560,7 +525448,7 @@
}
},
{
- "id": 30193,
+ "id": 12904,
"name": "take",
"variant": "declaration",
"kind": 1024,
@@ -524580,7 +525468,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 64,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L64"
}
],
"type": {
@@ -524589,7 +525477,7 @@
}
},
{
- "id": 30194,
+ "id": 12905,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -524625,7 +525513,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L69"
}
],
"type": {
@@ -524649,7 +525537,7 @@
}
},
{
- "id": 30190,
+ "id": 12901,
"name": "variables",
"variant": "declaration",
"kind": 1024,
@@ -524669,7 +525557,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L56"
}
],
"type": {
@@ -524697,14 +525585,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30191,
+ "id": 12902,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30192,
+ "id": 12903,
"name": "skip",
"variant": "declaration",
"kind": 1024,
@@ -524724,7 +525612,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 60,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L60"
}
],
"type": {
@@ -524733,7 +525621,7 @@
}
},
{
- "id": 30193,
+ "id": 12904,
"name": "take",
"variant": "declaration",
"kind": 1024,
@@ -524753,7 +525641,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 64,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L64"
}
],
"type": {
@@ -524762,7 +525650,7 @@
}
},
{
- "id": 30194,
+ "id": 12905,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -524798,7 +525686,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L69"
}
],
"type": {
@@ -524826,9 +525714,9 @@
{
"title": "Properties",
"children": [
- 30192,
- 30193,
- 30194
+ 12903,
+ 12904,
+ 12905
]
}
],
@@ -524837,7 +525725,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 56,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L56"
}
]
}
@@ -524846,7 +525734,7 @@
}
},
{
- "id": 30195,
+ "id": 12906,
"name": "getOrdersListWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -524858,7 +525746,7 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L73"
}
],
"type": {
@@ -524868,7 +525756,7 @@
"defaultValue": "\"get-orders-list\""
},
{
- "id": 30196,
+ "id": 12907,
"name": "getOrdersListWorkflow",
"variant": "declaration",
"kind": 64,
@@ -524924,7 +525812,7 @@
},
"children": [
{
- "id": 30204,
+ "id": 12915,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -524947,7 +525835,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30205,
+ "id": 12916,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -524961,7 +525849,7 @@
],
"signatures": [
{
- "id": 30206,
+ "id": 12917,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -524989,7 +525877,7 @@
],
"parameters": [
{
- "id": 30207,
+ "id": 12918,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -525005,14 +525893,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30208,
+ "id": 12919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30209,
+ "id": 12920,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -525037,7 +525925,7 @@
"types": [
{
"type": "reference",
- "target": 30187,
+ "target": 12898,
"name": "GetOrdersListWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -525050,7 +525938,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30187,
+ "target": 12898,
"name": "GetOrdersListWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -525066,7 +525954,7 @@
{
"title": "Properties",
"children": [
- 30209
+ 12920
]
}
],
@@ -525097,7 +525985,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30179,
+ "target": 12890,
"name": "GetOrdersListWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -525108,14 +525996,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30210,
+ "id": 12921,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30211,
+ "id": 12922,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -525129,7 +526017,7 @@
],
"signatures": [
{
- "id": 30212,
+ "id": 12923,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -525143,7 +526031,7 @@
],
"parameters": [
{
- "id": 30213,
+ "id": 12924,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -525154,14 +526042,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30214,
+ "id": 12925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30215,
+ "id": 12926,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -525185,7 +526073,7 @@
{
"title": "Properties",
"children": [
- 30215
+ 12926
]
}
],
@@ -525248,7 +526136,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30179,
+ "target": 12890,
"name": "GetOrdersListWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -525264,7 +526152,7 @@
{
"title": "Methods",
"children": [
- 30211
+ 12922
]
}
],
@@ -525286,7 +526174,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30179,
+ "target": 12890,
"name": "GetOrdersListWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -525302,7 +526190,7 @@
}
},
{
- "id": 30216,
+ "id": 12927,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -525325,7 +526213,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30217,
+ "id": 12928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -525339,7 +526227,7 @@
],
"signatures": [
{
- "id": 30218,
+ "id": 12929,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -525367,7 +526255,7 @@
],
"typeParameters": [
{
- "id": 30219,
+ "id": 12930,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -525378,7 +526266,7 @@
}
},
{
- "id": 30220,
+ "id": 12931,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -525391,7 +526279,7 @@
],
"parameters": [
{
- "id": 30221,
+ "id": 12932,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -525424,7 +526312,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -525435,13 +526323,13 @@
},
"trueType": {
"type": "reference",
- "target": 30187,
+ "target": 12898,
"name": "GetOrdersListWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -525474,7 +526362,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -525485,13 +526373,13 @@
},
"trueType": {
"type": "reference",
- "target": 30179,
+ "target": 12890,
"name": "GetOrdersListWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -525511,7 +526399,7 @@
}
},
{
- "id": 30222,
+ "id": 12933,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -525534,7 +526422,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30223,
+ "id": 12934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -525548,7 +526436,7 @@
],
"signatures": [
{
- "id": 30224,
+ "id": 12935,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -525570,7 +526458,7 @@
}
},
{
- "id": 30225,
+ "id": 12936,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -525593,7 +526481,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30226,
+ "id": 12937,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -525607,7 +526495,7 @@
],
"signatures": [
{
- "id": 30227,
+ "id": 12938,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -525621,7 +526509,7 @@
],
"parameters": [
{
- "id": 30228,
+ "id": 12939,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -525647,7 +526535,7 @@
}
},
{
- "id": 30229,
+ "id": 12940,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -525670,7 +526558,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30230,
+ "id": 12941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -525681,7 +526569,7 @@
],
"documents": [
{
- "id": 42770,
+ "id": 25711,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -525708,21 +526596,21 @@
}
],
"childrenIncludingDocuments": [
- 30204,
- 30216,
- 30222,
- 30225,
- 30229
+ 12915,
+ 12927,
+ 12933,
+ 12936,
+ 12940
],
"groups": [
{
"title": "Properties",
"children": [
- 30204,
- 30216,
- 30222,
- 30225,
- 30229
+ 12915,
+ 12927,
+ 12933,
+ 12936,
+ 12940
]
}
],
@@ -525731,12 +526619,12 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L114"
}
],
"signatures": [
{
- "id": 30197,
+ "id": 12908,
"name": "getOrdersListWorkflow",
"variant": "signature",
"kind": 4096,
@@ -525795,12 +526683,12 @@
"fileName": "core-flows/src/order/workflows/get-orders-list.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/get-orders-list.ts#L114"
}
],
"typeParameters": [
{
- "id": 30198,
+ "id": 12909,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -525811,7 +526699,7 @@
}
},
{
- "id": 30199,
+ "id": 12910,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -525824,7 +526712,7 @@
],
"parameters": [
{
- "id": 30200,
+ "id": 12911,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -525848,14 +526736,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30201,
+ "id": 12912,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30202,
+ "id": 12913,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -525878,7 +526766,7 @@
}
},
{
- "id": 30203,
+ "id": 12914,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -525905,8 +526793,8 @@
{
"title": "Properties",
"children": [
- 30202,
- 30203
+ 12913,
+ 12914
]
}
],
@@ -525981,26 +526869,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 30187,
+ "target": 12898,
"name": "GetOrdersListWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 30179,
+ "target": 12890,
"name": "GetOrdersListWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -526015,7 +526903,7 @@
]
},
{
- "id": 30231,
+ "id": 12942,
"name": "listShippingOptionsForOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -526027,7 +526915,7 @@
"fileName": "core-flows/src/order/workflows/list-shipping-options-for-order.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/list-shipping-options-for-order.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/list-shipping-options-for-order.ts#L11"
}
],
"type": {
@@ -526037,7 +526925,7 @@
"defaultValue": "\"list-shipping-options-for-order\""
},
{
- "id": 30232,
+ "id": 12943,
"name": "listShippingOptionsForOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -526090,7 +526978,7 @@
},
"children": [
{
- "id": 30240,
+ "id": 12951,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -526113,7 +527001,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30241,
+ "id": 12952,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -526127,7 +527015,7 @@
],
"signatures": [
{
- "id": 30242,
+ "id": 12953,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -526155,7 +527043,7 @@
],
"parameters": [
{
- "id": 30243,
+ "id": 12954,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -526171,14 +527059,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30244,
+ "id": 12955,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30245,
+ "id": 12956,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -526238,7 +527126,7 @@
{
"title": "Properties",
"children": [
- 30245
+ 12956
]
}
],
@@ -526291,14 +527179,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30246,
+ "id": 12957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30247,
+ "id": 12958,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -526312,7 +527200,7 @@
],
"signatures": [
{
- "id": 30248,
+ "id": 12959,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -526326,7 +527214,7 @@
],
"parameters": [
{
- "id": 30249,
+ "id": 12960,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -526337,14 +527225,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30250,
+ "id": 12961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30251,
+ "id": 12962,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -526368,7 +527256,7 @@
{
"title": "Properties",
"children": [
- 30251
+ 12962
]
}
],
@@ -526448,7 +527336,7 @@
{
"title": "Methods",
"children": [
- 30247
+ 12958
]
}
],
@@ -526487,7 +527375,7 @@
}
},
{
- "id": 30252,
+ "id": 12963,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -526510,7 +527398,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30253,
+ "id": 12964,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -526524,7 +527412,7 @@
],
"signatures": [
{
- "id": 30254,
+ "id": 12965,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -526552,7 +527440,7 @@
],
"typeParameters": [
{
- "id": 30255,
+ "id": 12966,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -526563,7 +527451,7 @@
}
},
{
- "id": 30256,
+ "id": 12967,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -526576,7 +527464,7 @@
],
"parameters": [
{
- "id": 30257,
+ "id": 12968,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -526609,7 +527497,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -526629,7 +527517,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -526662,7 +527550,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -526680,7 +527568,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -526700,7 +527588,7 @@
}
},
{
- "id": 30258,
+ "id": 12969,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -526723,7 +527611,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30259,
+ "id": 12970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -526737,7 +527625,7 @@
],
"signatures": [
{
- "id": 30260,
+ "id": 12971,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -526759,7 +527647,7 @@
}
},
{
- "id": 30261,
+ "id": 12972,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -526782,7 +527670,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30262,
+ "id": 12973,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -526796,7 +527684,7 @@
],
"signatures": [
{
- "id": 30263,
+ "id": 12974,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -526810,7 +527698,7 @@
],
"parameters": [
{
- "id": 30264,
+ "id": 12975,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -526836,7 +527724,7 @@
}
},
{
- "id": 30265,
+ "id": 12976,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -526859,7 +527747,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30266,
+ "id": 12977,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -526870,7 +527758,7 @@
],
"documents": [
{
- "id": 42771,
+ "id": 25712,
"name": "validatePresenceOfStep",
"variant": "document",
"kind": 8388608,
@@ -526897,21 +527785,21 @@
}
],
"childrenIncludingDocuments": [
- 30240,
- 30252,
- 30258,
- 30261,
- 30265
+ 12951,
+ 12963,
+ 12969,
+ 12972,
+ 12976
],
"groups": [
{
"title": "Properties",
"children": [
- 30240,
- 30252,
- 30258,
- 30261,
- 30265
+ 12951,
+ 12963,
+ 12969,
+ 12972,
+ 12976
]
}
],
@@ -526920,12 +527808,12 @@
"fileName": "core-flows/src/order/workflows/list-shipping-options-for-order.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/list-shipping-options-for-order.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/list-shipping-options-for-order.ts#L35"
}
],
"signatures": [
{
- "id": 30233,
+ "id": 12944,
"name": "listShippingOptionsForOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -526981,12 +527869,12 @@
"fileName": "core-flows/src/order/workflows/list-shipping-options-for-order.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/list-shipping-options-for-order.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/list-shipping-options-for-order.ts#L35"
}
],
"typeParameters": [
{
- "id": 30234,
+ "id": 12945,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -526997,7 +527885,7 @@
}
},
{
- "id": 30235,
+ "id": 12946,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -527010,7 +527898,7 @@
],
"parameters": [
{
- "id": 30236,
+ "id": 12947,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -527034,14 +527922,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30237,
+ "id": 12948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30238,
+ "id": 12949,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -527064,7 +527952,7 @@
}
},
{
- "id": 30239,
+ "id": 12950,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -527091,8 +527979,8 @@
{
"title": "Properties",
"children": [
- 30238,
- 30239
+ 12949,
+ 12950
]
}
],
@@ -527183,14 +528071,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -527205,7 +528093,7 @@
]
},
{
- "id": 30271,
+ "id": 12982,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -527223,7 +528111,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L54"
}
],
"type": {
@@ -527240,7 +528128,7 @@
}
},
{
- "id": 30269,
+ "id": 12980,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -527258,7 +528146,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L50"
}
],
"type": {
@@ -527276,14 +528164,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30270,
+ "id": 12981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30271,
+ "id": 12982,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -527301,7 +528189,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L54"
}
],
"type": {
@@ -527322,7 +528210,7 @@
{
"title": "Properties",
"children": [
- 30271
+ 12982
]
}
],
@@ -527331,7 +528219,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 50,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L50"
}
]
}
@@ -527340,7 +528228,7 @@
}
},
{
- "id": 30272,
+ "id": 12983,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -527358,7 +528246,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L59"
}
],
"type": {
@@ -527372,7 +528260,7 @@
}
},
{
- "id": 30273,
+ "id": 12984,
"name": "orderFulfillmentDeliverablilityValidationStepId",
"variant": "declaration",
"kind": 32,
@@ -527384,7 +528272,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 62,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L62"
}
],
"type": {
@@ -527394,7 +528282,7 @@
"defaultValue": "\"order-fulfillment-deliverability-validation\""
},
{
- "id": 30274,
+ "id": 12985,
"name": "orderFulfillmentDeliverablilityValidationStep",
"variant": "declaration",
"kind": 64,
@@ -527429,7 +528317,7 @@
},
"children": [
{
- "id": 30293,
+ "id": 13004,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -527447,7 +528335,7 @@
}
},
{
- "id": 30294,
+ "id": 13005,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -527469,8 +528357,8 @@
{
"title": "Properties",
"children": [
- 30293,
- 30294
+ 13004,
+ 13005
]
}
],
@@ -527479,12 +528367,12 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 94,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L94"
}
],
"signatures": [
{
- "id": 30275,
+ "id": 12986,
"name": "orderFulfillmentDeliverablilityValidationStep",
"variant": "signature",
"kind": 4096,
@@ -527522,12 +528410,12 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 94,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L94"
}
],
"parameters": [
{
- "id": 30276,
+ "id": 12987,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -527538,14 +528426,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30277,
+ "id": 12988,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30278,
+ "id": 12989,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -527555,7 +528443,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -527573,14 +528461,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30279,
+ "id": 12990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30280,
+ "id": 12991,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -527590,7 +528478,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -527611,7 +528499,7 @@
{
"title": "Properties",
"children": [
- 30280
+ 12991
]
}
],
@@ -527620,7 +528508,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
]
}
@@ -527629,7 +528517,7 @@
}
},
{
- "id": 30281,
+ "id": 12992,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -527639,7 +528527,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 101,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
}
],
"type": {
@@ -527657,8 +528545,8 @@
{
"title": "Properties",
"children": [
- 30278,
- 30281
+ 12989,
+ 12992
]
}
],
@@ -527667,7 +528555,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 99,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L99"
}
]
}
@@ -527682,14 +528570,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30282,
+ "id": 12993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30283,
+ "id": 12994,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -527699,7 +528587,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -527717,14 +528605,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30284,
+ "id": 12995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30285,
+ "id": 12996,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -527734,7 +528622,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -527755,7 +528643,7 @@
{
"title": "Properties",
"children": [
- 30285
+ 12996
]
}
],
@@ -527764,7 +528652,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
]
}
@@ -527773,7 +528661,7 @@
}
},
{
- "id": 30286,
+ "id": 12997,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -527783,7 +528671,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 101,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
}
],
"type": {
@@ -527801,8 +528689,8 @@
{
"title": "Properties",
"children": [
- 30283,
- 30286
+ 12994,
+ 12997
]
}
],
@@ -527811,7 +528699,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 99,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L99"
}
]
}
@@ -527845,14 +528733,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30287,
+ "id": 12998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30288,
+ "id": 12999,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -527866,7 +528754,7 @@
],
"signatures": [
{
- "id": 30289,
+ "id": 13000,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -527880,7 +528768,7 @@
],
"parameters": [
{
- "id": 30290,
+ "id": 13001,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -527891,14 +528779,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30291,
+ "id": 13002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30292,
+ "id": 13003,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -527922,7 +528810,7 @@
{
"title": "Properties",
"children": [
- 30292
+ 13003
]
}
],
@@ -527999,7 +528887,7 @@
{
"title": "Methods",
"children": [
- 30288
+ 12999
]
}
],
@@ -528033,7 +528921,7 @@
]
},
{
- "id": 30280,
+ "id": 12991,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -528043,7 +528931,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -528060,7 +528948,7 @@
}
},
{
- "id": 30278,
+ "id": 12989,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -528070,7 +528958,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -528088,14 +528976,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30279,
+ "id": 12990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30280,
+ "id": 12991,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -528105,7 +528993,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -528126,7 +529014,7 @@
{
"title": "Properties",
"children": [
- 30280
+ 12991
]
}
],
@@ -528135,7 +529023,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
]
}
@@ -528144,7 +529032,7 @@
}
},
{
- "id": 30281,
+ "id": 12992,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -528154,7 +529042,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 101,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
}
],
"type": {
@@ -528168,7 +529056,7 @@
}
},
{
- "id": 30285,
+ "id": 12996,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -528178,7 +529066,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -528195,7 +529083,7 @@
}
},
{
- "id": 30283,
+ "id": 12994,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -528205,7 +529093,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -528223,14 +529111,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30284,
+ "id": 12995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30285,
+ "id": 12996,
"name": "fulfillments",
"variant": "declaration",
"kind": 1024,
@@ -528240,7 +529128,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
],
"type": {
@@ -528261,7 +529149,7 @@
{
"title": "Properties",
"children": [
- 30285
+ 12996
]
}
],
@@ -528270,7 +529158,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 100,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L100"
}
]
}
@@ -528279,7 +529167,7 @@
}
},
{
- "id": 30286,
+ "id": 12997,
"name": "fulfillment",
"variant": "declaration",
"kind": 1024,
@@ -528289,7 +529177,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 101,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L101"
}
],
"type": {
@@ -528303,7 +529191,7 @@
}
},
{
- "id": 30297,
+ "id": 13008,
"name": "orderId",
"variant": "declaration",
"kind": 1024,
@@ -528321,7 +529209,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 191,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L191"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L191"
}
],
"type": {
@@ -528330,7 +529218,7 @@
}
},
{
- "id": 30298,
+ "id": 13009,
"name": "fulfillmentId",
"variant": "declaration",
"kind": 1024,
@@ -528348,7 +529236,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L195"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L195"
}
],
"type": {
@@ -528357,7 +529245,7 @@
}
},
{
- "id": 30299,
+ "id": 13010,
"name": "markOrderFulfillmentAsDeliveredWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -528369,7 +529257,7 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 198,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L198"
}
],
"type": {
@@ -528379,7 +529267,7 @@
"defaultValue": "\"mark-order-fulfillment-as-delivered-workflow\""
},
{
- "id": 30300,
+ "id": 13011,
"name": "markOrderFulfillmentAsDeliveredWorkflow",
"variant": "declaration",
"kind": 64,
@@ -528428,6 +529316,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "orderId --- acquireLockStep({ key: orderId, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -528441,7 +529338,7 @@
},
"children": [
{
- "id": 30308,
+ "id": 13019,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -528464,7 +529361,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30309,
+ "id": 13020,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -528478,7 +529375,7 @@
],
"signatures": [
{
- "id": 30310,
+ "id": 13021,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -528506,7 +529403,7 @@
],
"parameters": [
{
- "id": 30311,
+ "id": 13022,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -528522,14 +529419,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30312,
+ "id": 13023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30313,
+ "id": 13024,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -528554,7 +529451,7 @@
"types": [
{
"type": "reference",
- "target": 30295,
+ "target": 13006,
"name": "MarkOrderFulfillmentAsDeliveredWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -528567,7 +529464,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30295,
+ "target": 13006,
"name": "MarkOrderFulfillmentAsDeliveredWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -528583,7 +529480,7 @@
{
"title": "Properties",
"children": [
- 30313
+ 13024
]
}
],
@@ -528608,7 +529505,7 @@
}
},
{
- "id": 30314,
+ "id": 13025,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -528631,7 +529528,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30315,
+ "id": 13026,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -528645,7 +529542,7 @@
],
"signatures": [
{
- "id": 30316,
+ "id": 13027,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -528673,7 +529570,7 @@
],
"typeParameters": [
{
- "id": 30317,
+ "id": 13028,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -528684,7 +529581,7 @@
}
},
{
- "id": 30318,
+ "id": 13029,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -528697,7 +529594,7 @@
],
"parameters": [
{
- "id": 30319,
+ "id": 13030,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -528730,7 +529627,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -528741,13 +529638,13 @@
},
"trueType": {
"type": "reference",
- "target": 30295,
+ "target": 13006,
"name": "MarkOrderFulfillmentAsDeliveredWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -528780,7 +529677,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -528795,7 +529692,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -528815,7 +529712,7 @@
}
},
{
- "id": 30320,
+ "id": 13031,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -528838,7 +529735,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30321,
+ "id": 13032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -528852,7 +529749,7 @@
],
"signatures": [
{
- "id": 30322,
+ "id": 13033,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -528874,7 +529771,7 @@
}
},
{
- "id": 30323,
+ "id": 13034,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -528897,7 +529794,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30324,
+ "id": 13035,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -528911,7 +529808,7 @@
],
"signatures": [
{
- "id": 30325,
+ "id": 13036,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -528925,7 +529822,7 @@
],
"parameters": [
{
- "id": 30326,
+ "id": 13037,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -528951,7 +529848,7 @@
}
},
{
- "id": 30327,
+ "id": 13038,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -528974,7 +529871,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30328,
+ "id": 13039,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -528985,7 +529882,7 @@
],
"documents": [
{
- "id": 42772,
+ "id": 25713,
"name": "orderFulfillmentDeliverablilityValidationStep",
"variant": "document",
"kind": 8388608,
@@ -529011,7 +529908,7 @@
"frontmatter": {}
},
{
- "id": 42773,
+ "id": 25714,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -529037,7 +529934,7 @@
"frontmatter": {}
},
{
- "id": 42774,
+ "id": 25715,
"name": "markFulfillmentAsDeliveredWorkflow",
"variant": "document",
"kind": 8388608,
@@ -529063,7 +529960,7 @@
"frontmatter": {}
},
{
- "id": 42775,
+ "id": 25716,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -529089,7 +529986,7 @@
"frontmatter": {}
},
{
- "id": 42776,
+ "id": 25717,
"name": "registerOrderDeliveryStep",
"variant": "document",
"kind": 8388608,
@@ -529115,7 +530012,7 @@
"frontmatter": {}
},
{
- "id": 42777,
+ "id": 25718,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -529142,21 +530039,21 @@
}
],
"childrenIncludingDocuments": [
- 30308,
- 30314,
- 30320,
- 30323,
- 30327
+ 13019,
+ 13025,
+ 13031,
+ 13034,
+ 13038
],
"groups": [
{
"title": "Properties",
"children": [
- 30308,
- 30314,
- 30320,
- 30323,
- 30327
+ 13019,
+ 13025,
+ 13031,
+ 13034,
+ 13038
]
}
],
@@ -529165,12 +530062,12 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 220,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L220"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L220"
}
],
"signatures": [
{
- "id": 30301,
+ "id": 13012,
"name": "markOrderFulfillmentAsDeliveredWorkflow",
"variant": "signature",
"kind": 4096,
@@ -529219,6 +530116,15 @@
}
]
},
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "orderId --- acquireLockStep({ key: orderId, timeout: 2, ttl: 10, })"
+ }
+ ]
+ },
{
"tag": "@tags",
"content": [
@@ -529235,12 +530141,12 @@
"fileName": "core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts",
"line": 220,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L220"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-order-fulfillment-as-delivered.ts#L220"
}
],
"typeParameters": [
{
- "id": 30302,
+ "id": 13013,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -529251,7 +530157,7 @@
}
},
{
- "id": 30303,
+ "id": 13014,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -529264,7 +530170,7 @@
],
"parameters": [
{
- "id": 30304,
+ "id": 13015,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -529288,14 +530194,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30305,
+ "id": 13016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30306,
+ "id": 13017,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -529318,7 +530224,7 @@
}
},
{
- "id": 30307,
+ "id": 13018,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -529345,8 +530251,8 @@
{
"title": "Properties",
"children": [
- 30306,
- 30307
+ 13017,
+ 13018
]
}
],
@@ -529421,7 +530327,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30295,
+ "target": 13006,
"name": "MarkOrderFulfillmentAsDeliveredWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -529431,14 +530337,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -529453,7 +530359,7 @@
]
},
{
- "id": 30331,
+ "id": 13042,
"name": "paymentCollection",
"variant": "declaration",
"kind": 1024,
@@ -529471,7 +530377,7 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L23"
}
],
"type": {
@@ -529485,7 +530391,7 @@
}
},
{
- "id": 30332,
+ "id": 13043,
"name": "throwUnlessPaymentCollectionNotPaid",
"variant": "declaration",
"kind": 64,
@@ -529520,7 +530426,7 @@
},
"children": [
{
- "id": 30341,
+ "id": 13052,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -529538,7 +530444,7 @@
}
},
{
- "id": 30342,
+ "id": 13053,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -529560,8 +530466,8 @@
{
"title": "Properties",
"children": [
- 30341,
- 30342
+ 13052,
+ 13053
]
}
],
@@ -529570,12 +530476,12 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L45"
}
],
"signatures": [
{
- "id": 30333,
+ "id": 13044,
"name": "throwUnlessPaymentCollectionNotPaid",
"variant": "signature",
"kind": 4096,
@@ -529613,12 +530519,12 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L45"
}
],
"parameters": [
{
- "id": 30334,
+ "id": 13045,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -529628,7 +530534,7 @@
"types": [
{
"type": "reference",
- "target": 30329,
+ "target": 13040,
"name": "ThrowUnlessPaymentCollectionNotePaidInput",
"package": "@medusajs/core-flows"
},
@@ -529641,7 +530547,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30329,
+ "target": 13040,
"name": "ThrowUnlessPaymentCollectionNotePaidInput",
"package": "@medusajs/core-flows"
}
@@ -529674,14 +530580,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30335,
+ "id": 13046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30336,
+ "id": 13047,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -529695,7 +530601,7 @@
],
"signatures": [
{
- "id": 30337,
+ "id": 13048,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -529709,7 +530615,7 @@
],
"parameters": [
{
- "id": 30338,
+ "id": 13049,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -529720,14 +530626,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30339,
+ "id": 13050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30340,
+ "id": 13051,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -529751,7 +530657,7 @@
{
"title": "Properties",
"children": [
- 30340
+ 13051
]
}
],
@@ -529828,7 +530734,7 @@
{
"title": "Methods",
"children": [
- 30336
+ 13047
]
}
],
@@ -529862,7 +530768,7 @@
]
},
{
- "id": 30345,
+ "id": 13056,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -529880,7 +530786,7 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L64"
}
],
"type": {
@@ -529889,7 +530795,7 @@
}
},
{
- "id": 30346,
+ "id": 13057,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -529907,7 +530813,7 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L68"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L68"
}
],
"type": {
@@ -529916,7 +530822,7 @@
}
},
{
- "id": 30347,
+ "id": 13058,
"name": "captured_by",
"variant": "declaration",
"kind": 1024,
@@ -529936,7 +530842,7 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L72"
}
],
"type": {
@@ -529945,7 +530851,7 @@
}
},
{
- "id": 30348,
+ "id": 13059,
"name": "markPaymentCollectionAsPaidId",
"variant": "declaration",
"kind": 32,
@@ -529957,7 +530863,7 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 76,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L76"
}
],
"type": {
@@ -529967,7 +530873,7 @@
"defaultValue": "\"mark-payment-collection-as-paid\""
},
{
- "id": 30349,
+ "id": 13060,
"name": "markPaymentCollectionAsPaid",
"variant": "declaration",
"kind": 64,
@@ -530029,7 +530935,7 @@
},
"children": [
{
- "id": 30357,
+ "id": 13068,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -530052,7 +530958,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30358,
+ "id": 13069,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -530066,7 +530972,7 @@
],
"signatures": [
{
- "id": 30359,
+ "id": 13070,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -530094,7 +531000,7 @@
],
"parameters": [
{
- "id": 30360,
+ "id": 13071,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -530110,14 +531016,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30361,
+ "id": 13072,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30362,
+ "id": 13073,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -530142,7 +531048,7 @@
"types": [
{
"type": "reference",
- "target": 30343,
+ "target": 13054,
"name": "MarkPaymentCollectionAsPaidInput",
"package": "@medusajs/core-flows"
},
@@ -530155,7 +531061,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30343,
+ "target": 13054,
"name": "MarkPaymentCollectionAsPaidInput",
"package": "@medusajs/core-flows"
}
@@ -530171,7 +531077,7 @@
{
"title": "Properties",
"children": [
- 30362
+ 13073
]
}
],
@@ -530192,14 +531098,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30363,
+ "id": 13074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30364,
+ "id": 13075,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -530245,7 +531151,7 @@
}
},
{
- "id": 30365,
+ "id": 13076,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -530301,7 +531207,7 @@
}
},
{
- "id": 30366,
+ "id": 13077,
"name": "raw_amount",
"variant": "declaration",
"kind": 1024,
@@ -530354,7 +531260,7 @@
}
},
{
- "id": 30367,
+ "id": 13078,
"name": "authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -530407,7 +531313,7 @@
}
},
{
- "id": 30368,
+ "id": 13079,
"name": "raw_authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -530460,7 +531366,7 @@
}
},
{
- "id": 30369,
+ "id": 13080,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -530506,7 +531412,7 @@
}
},
{
- "id": 30370,
+ "id": 13081,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -530552,7 +531458,7 @@
}
},
{
- "id": 30371,
+ "id": 13082,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -530639,7 +531545,7 @@
}
},
{
- "id": 30372,
+ "id": 13083,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -530714,7 +531620,7 @@
}
},
{
- "id": 30373,
+ "id": 13084,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -530789,7 +531695,7 @@
}
},
{
- "id": 30374,
+ "id": 13085,
"name": "captured_at",
"variant": "declaration",
"kind": 1024,
@@ -530864,7 +531770,7 @@
}
},
{
- "id": 30375,
+ "id": 13086,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -530939,7 +531845,7 @@
}
},
{
- "id": 30376,
+ "id": 13087,
"name": "captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -530992,7 +531898,7 @@
}
},
{
- "id": 30377,
+ "id": 13088,
"name": "raw_captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -531045,7 +531951,7 @@
}
},
{
- "id": 30378,
+ "id": 13089,
"name": "refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -531098,7 +532004,7 @@
}
},
{
- "id": 30379,
+ "id": 13090,
"name": "raw_refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -531151,7 +532057,7 @@
}
},
{
- "id": 30380,
+ "id": 13091,
"name": "captures",
"variant": "declaration",
"kind": 1024,
@@ -531227,7 +532133,7 @@
}
},
{
- "id": 30381,
+ "id": 13092,
"name": "refunds",
"variant": "declaration",
"kind": 1024,
@@ -531303,7 +532209,7 @@
}
},
{
- "id": 30382,
+ "id": 13093,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -531349,7 +532255,7 @@
}
},
{
- "id": 30383,
+ "id": 13094,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -531419,7 +532325,7 @@
}
},
{
- "id": 30384,
+ "id": 13095,
"name": "payment_session",
"variant": "declaration",
"kind": 1024,
@@ -531493,27 +532399,27 @@
{
"title": "Properties",
"children": [
- 30364,
- 30365,
- 30366,
- 30367,
- 30368,
- 30369,
- 30370,
- 30371,
- 30372,
- 30373,
- 30374,
- 30375,
- 30376,
- 30377,
- 30378,
- 30379,
- 30380,
- 30381,
- 30382,
- 30383,
- 30384
+ 13075,
+ 13076,
+ 13077,
+ 13078,
+ 13079,
+ 13080,
+ 13081,
+ 13082,
+ 13083,
+ 13084,
+ 13085,
+ 13086,
+ 13087,
+ 13088,
+ 13089,
+ 13090,
+ 13091,
+ 13092,
+ 13093,
+ 13094,
+ 13095
]
}
],
@@ -531567,14 +532473,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30385,
+ "id": 13096,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30386,
+ "id": 13097,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -531588,7 +532494,7 @@
],
"signatures": [
{
- "id": 30387,
+ "id": 13098,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -531602,7 +532508,7 @@
],
"parameters": [
{
- "id": 30388,
+ "id": 13099,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -531613,14 +532519,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30389,
+ "id": 13100,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30390,
+ "id": 13101,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -531644,7 +532550,7 @@
{
"title": "Properties",
"children": [
- 30390
+ 13101
]
}
],
@@ -531735,7 +532641,7 @@
{
"title": "Methods",
"children": [
- 30386
+ 13097
]
}
],
@@ -531785,7 +532691,7 @@
}
},
{
- "id": 30391,
+ "id": 13102,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -531808,7 +532714,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30392,
+ "id": 13103,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -531822,7 +532728,7 @@
],
"signatures": [
{
- "id": 30393,
+ "id": 13104,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -531850,7 +532756,7 @@
],
"typeParameters": [
{
- "id": 30394,
+ "id": 13105,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -531861,7 +532767,7 @@
}
},
{
- "id": 30395,
+ "id": 13106,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -531874,7 +532780,7 @@
],
"parameters": [
{
- "id": 30396,
+ "id": 13107,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -531907,7 +532813,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -531918,13 +532824,13 @@
},
"trueType": {
"type": "reference",
- "target": 30343,
+ "target": 13054,
"name": "MarkPaymentCollectionAsPaidInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -531957,7 +532863,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -531986,7 +532892,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -532006,7 +532912,7 @@
}
},
{
- "id": 30397,
+ "id": 13108,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -532029,7 +532935,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30398,
+ "id": 13109,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -532043,7 +532949,7 @@
],
"signatures": [
{
- "id": 30399,
+ "id": 13110,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -532065,7 +532971,7 @@
}
},
{
- "id": 30400,
+ "id": 13111,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -532088,7 +532994,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30401,
+ "id": 13112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -532102,7 +533008,7 @@
],
"signatures": [
{
- "id": 30402,
+ "id": 13113,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -532116,7 +533022,7 @@
],
"parameters": [
{
- "id": 30403,
+ "id": 13114,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -532142,7 +533048,7 @@
}
},
{
- "id": 30404,
+ "id": 13115,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -532165,7 +533071,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30405,
+ "id": 13116,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -532176,7 +533082,7 @@
],
"documents": [
{
- "id": 42778,
+ "id": 25719,
"name": "throwUnlessPaymentCollectionNotPaid",
"variant": "document",
"kind": 8388608,
@@ -532202,7 +533108,7 @@
"frontmatter": {}
},
{
- "id": 42779,
+ "id": 25720,
"name": "createPaymentSessionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -532228,7 +533134,7 @@
"frontmatter": {}
},
{
- "id": 42780,
+ "id": 25721,
"name": "authorizePaymentSessionStep",
"variant": "document",
"kind": 8388608,
@@ -532254,7 +533160,7 @@
"frontmatter": {}
},
{
- "id": 42781,
+ "id": 25722,
"name": "capturePaymentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -532281,21 +533187,21 @@
}
],
"childrenIncludingDocuments": [
- 30357,
- 30391,
- 30397,
- 30400,
- 30404
+ 13068,
+ 13102,
+ 13108,
+ 13111,
+ 13115
],
"groups": [
{
"title": "Properties",
"children": [
- 30357,
- 30391,
- 30397,
- 30400,
- 30404
+ 13068,
+ 13102,
+ 13108,
+ 13111,
+ 13115
]
}
],
@@ -532304,12 +533210,12 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L97"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L97"
}
],
"signatures": [
{
- "id": 30350,
+ "id": 13061,
"name": "markPaymentCollectionAsPaid",
"variant": "signature",
"kind": 4096,
@@ -532374,12 +533280,12 @@
"fileName": "core-flows/src/order/workflows/mark-payment-collection-as-paid.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L97"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/mark-payment-collection-as-paid.ts#L97"
}
],
"typeParameters": [
{
- "id": 30351,
+ "id": 13062,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -532390,7 +533296,7 @@
}
},
{
- "id": 30352,
+ "id": 13063,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -532403,7 +533309,7 @@
],
"parameters": [
{
- "id": 30353,
+ "id": 13064,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -532427,14 +533333,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30354,
+ "id": 13065,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30355,
+ "id": 13066,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -532457,7 +533363,7 @@
}
},
{
- "id": 30356,
+ "id": 13067,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -532484,8 +533390,8 @@
{
"title": "Properties",
"children": [
- 30355,
- 30356
+ 13066,
+ 13067
]
}
],
@@ -532560,7 +533466,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30343,
+ "target": 13054,
"name": "MarkPaymentCollectionAsPaidInput",
"package": "@medusajs/core-flows"
},
@@ -532584,14 +533490,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -532606,7 +533512,7 @@
]
},
{
- "id": 30408,
+ "id": 13119,
"name": "shipping_method_id",
"variant": "declaration",
"kind": 1024,
@@ -532624,7 +533530,7 @@
"fileName": "core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L53"
}
],
"type": {
@@ -532633,7 +533539,7 @@
}
},
{
- "id": 30409,
+ "id": 13120,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -532651,7 +533557,7 @@
"fileName": "core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L57"
}
],
"type": {
@@ -532660,7 +533566,7 @@
}
},
{
- "id": 30410,
+ "id": 13121,
"name": "action_id",
"variant": "declaration",
"kind": 1024,
@@ -532678,7 +533584,7 @@
"fileName": "core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L61"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L61"
}
],
"type": {
@@ -532687,7 +533593,7 @@
}
},
{
- "id": 30411,
+ "id": 13122,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -532705,7 +533611,7 @@
"fileName": "core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L65"
}
],
"type": {
@@ -532719,7 +533625,7 @@
}
},
{
- "id": 30412,
+ "id": 13123,
"name": "maybeRefreshShippingMethodsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -532731,7 +533637,7 @@
"fileName": "core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts",
"line": 68,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L68"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L68"
}
],
"type": {
@@ -532741,7 +533647,7 @@
"defaultValue": "\"maybe-refresh-shipping-methods\""
},
{
- "id": 30413,
+ "id": 13124,
"name": "maybeRefreshShippingMethodsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -532794,7 +533700,7 @@
},
"children": [
{
- "id": 30421,
+ "id": 13132,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -532817,7 +533723,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30422,
+ "id": 13133,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -532831,7 +533737,7 @@
],
"signatures": [
{
- "id": 30423,
+ "id": 13134,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -532859,7 +533765,7 @@
],
"parameters": [
{
- "id": 30424,
+ "id": 13135,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -532875,14 +533781,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30425,
+ "id": 13136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30426,
+ "id": 13137,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -532907,7 +533813,7 @@
"types": [
{
"type": "reference",
- "target": 30406,
+ "target": 13117,
"name": "MaybeRefreshShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -532920,7 +533826,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30406,
+ "target": 13117,
"name": "MaybeRefreshShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -532936,7 +533842,7 @@
{
"title": "Properties",
"children": [
- 30426
+ 13137
]
}
],
@@ -532976,14 +533882,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30427,
+ "id": 13138,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30428,
+ "id": 13139,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -532997,7 +533903,7 @@
],
"signatures": [
{
- "id": 30429,
+ "id": 13140,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -533011,7 +533917,7 @@
],
"parameters": [
{
- "id": 30430,
+ "id": 13141,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -533022,14 +533928,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30431,
+ "id": 13142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30432,
+ "id": 13143,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -533053,7 +533959,7 @@
{
"title": "Properties",
"children": [
- 30432
+ 13143
]
}
],
@@ -533130,7 +534036,7 @@
{
"title": "Methods",
"children": [
- 30428
+ 13139
]
}
],
@@ -533166,7 +534072,7 @@
}
},
{
- "id": 30433,
+ "id": 13144,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -533189,7 +534095,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30434,
+ "id": 13145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -533203,7 +534109,7 @@
],
"signatures": [
{
- "id": 30435,
+ "id": 13146,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -533231,7 +534137,7 @@
],
"typeParameters": [
{
- "id": 30436,
+ "id": 13147,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -533242,7 +534148,7 @@
}
},
{
- "id": 30437,
+ "id": 13148,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -533255,7 +534161,7 @@
],
"parameters": [
{
- "id": 30438,
+ "id": 13149,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -533288,7 +534194,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -533299,13 +534205,13 @@
},
"trueType": {
"type": "reference",
- "target": 30406,
+ "target": 13117,
"name": "MaybeRefreshShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -533338,7 +534244,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -533353,7 +534259,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -533373,7 +534279,7 @@
}
},
{
- "id": 30439,
+ "id": 13150,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -533396,7 +534302,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30440,
+ "id": 13151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -533410,7 +534316,7 @@
],
"signatures": [
{
- "id": 30441,
+ "id": 13152,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -533432,7 +534338,7 @@
}
},
{
- "id": 30442,
+ "id": 13153,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -533455,7 +534361,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30443,
+ "id": 13154,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -533469,7 +534375,7 @@
],
"signatures": [
{
- "id": 30444,
+ "id": 13155,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -533483,7 +534389,7 @@
],
"parameters": [
{
- "id": 30445,
+ "id": 13156,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -533509,7 +534415,7 @@
}
},
{
- "id": 30446,
+ "id": 13157,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -533532,7 +534438,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30447,
+ "id": 13158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -533543,7 +534449,7 @@
],
"documents": [
{
- "id": 42782,
+ "id": 25723,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -533578,7 +534484,7 @@
"frontmatter": {},
"children": [
{
- "id": 42783,
+ "id": 25724,
"name": "calculateShippingOptionsPricesStep",
"variant": "document",
"kind": 8388608,
@@ -533604,7 +534510,7 @@
"frontmatter": {}
},
{
- "id": 42784,
+ "id": 25725,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -533630,7 +534536,7 @@
"frontmatter": {}
},
{
- "id": 42785,
+ "id": 25726,
"name": "updateOrderShippingMethodsStep",
"variant": "document",
"kind": 8388608,
@@ -533659,21 +534565,21 @@
}
],
"childrenIncludingDocuments": [
- 30421,
- 30433,
- 30439,
- 30442,
- 30446
+ 13132,
+ 13144,
+ 13150,
+ 13153,
+ 13157
],
"groups": [
{
"title": "Properties",
"children": [
- 30421,
- 30433,
- 30439,
- 30442,
- 30446
+ 13132,
+ 13144,
+ 13150,
+ 13153,
+ 13157
]
}
],
@@ -533682,12 +534588,12 @@
"fileName": "core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L100"
}
],
"signatures": [
{
- "id": 30414,
+ "id": 13125,
"name": "maybeRefreshShippingMethodsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -533743,12 +534649,12 @@
"fileName": "core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/maybe-refresh-shipping-methods.ts#L100"
}
],
"typeParameters": [
{
- "id": 30415,
+ "id": 13126,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -533759,7 +534665,7 @@
}
},
{
- "id": 30416,
+ "id": 13127,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -533772,7 +534678,7 @@
],
"parameters": [
{
- "id": 30417,
+ "id": 13128,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -533796,14 +534702,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30418,
+ "id": 13129,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30419,
+ "id": 13130,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -533826,7 +534732,7 @@
}
},
{
- "id": 30420,
+ "id": 13131,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -533853,8 +534759,8 @@
{
"title": "Properties",
"children": [
- 30419,
- 30420
+ 13130,
+ 13131
]
}
],
@@ -533929,7 +534835,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30406,
+ "target": 13117,
"name": "MaybeRefreshShippingMethodsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -533939,14 +534845,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -533961,7 +534867,7 @@
]
},
{
- "id": 30450,
+ "id": 13161,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -533979,7 +534885,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/begin-order-edit.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L25"
}
],
"type": {
@@ -533993,7 +534899,7 @@
}
},
{
- "id": 30451,
+ "id": 13162,
"name": "beginOrderEditValidationStep",
"variant": "declaration",
"kind": 64,
@@ -534028,7 +534934,7 @@
},
"children": [
{
- "id": 30460,
+ "id": 13171,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -534046,7 +534952,7 @@
}
},
{
- "id": 30461,
+ "id": 13172,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -534068,8 +534974,8 @@
{
"title": "Properties",
"children": [
- 30460,
- 30461
+ 13171,
+ 13172
]
}
],
@@ -534078,12 +534984,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/begin-order-edit.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L47"
}
],
"signatures": [
{
- "id": 30452,
+ "id": 13163,
"name": "beginOrderEditValidationStep",
"variant": "signature",
"kind": 4096,
@@ -534121,12 +535027,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/begin-order-edit.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L47"
}
],
"parameters": [
{
- "id": 30453,
+ "id": 13164,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -534136,7 +535042,7 @@
"types": [
{
"type": "reference",
- "target": 30448,
+ "target": 13159,
"name": "BeginOrderEditValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -534149,7 +535055,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30448,
+ "target": 13159,
"name": "BeginOrderEditValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -534182,14 +535088,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30454,
+ "id": 13165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30455,
+ "id": 13166,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -534203,7 +535109,7 @@
],
"signatures": [
{
- "id": 30456,
+ "id": 13167,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -534217,7 +535123,7 @@
],
"parameters": [
{
- "id": 30457,
+ "id": 13168,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -534228,14 +535134,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30458,
+ "id": 13169,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30459,
+ "id": 13170,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -534259,7 +535165,7 @@
{
"title": "Properties",
"children": [
- 30459
+ 13170
]
}
],
@@ -534336,7 +535242,7 @@
{
"title": "Methods",
"children": [
- 30455
+ 13166
]
}
],
@@ -534370,7 +535276,7 @@
]
},
{
- "id": 30462,
+ "id": 13173,
"name": "beginOrderEditOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -534382,7 +535288,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/begin-order-edit.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L54"
}
],
"type": {
@@ -534392,7 +535298,7 @@
"defaultValue": "\"begin-order-edit-order\""
},
{
- "id": 30463,
+ "id": 13174,
"name": "beginOrderEditOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -534454,7 +535360,7 @@
},
"children": [
{
- "id": 30471,
+ "id": 13182,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -534477,7 +535383,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30472,
+ "id": 13183,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -534491,7 +535397,7 @@
],
"signatures": [
{
- "id": 30473,
+ "id": 13184,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -534519,7 +535425,7 @@
],
"parameters": [
{
- "id": 30474,
+ "id": 13185,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -534535,14 +535441,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30475,
+ "id": 13186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30476,
+ "id": 13187,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -534602,7 +535508,7 @@
{
"title": "Properties",
"children": [
- 30476
+ 13187
]
}
],
@@ -534623,14 +535529,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30477,
+ "id": 13188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30478,
+ "id": 13189,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -534676,7 +535582,7 @@
}
},
{
- "id": 30479,
+ "id": 13190,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -534722,7 +535628,7 @@
}
},
{
- "id": 30480,
+ "id": 13191,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -534811,7 +535717,7 @@
}
},
{
- "id": 30481,
+ "id": 13192,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -534876,7 +535782,7 @@
}
},
{
- "id": 30482,
+ "id": 13193,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -534922,7 +535828,7 @@
}
},
{
- "id": 30483,
+ "id": 13194,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -534968,7 +535874,7 @@
}
},
{
- "id": 30484,
+ "id": 13195,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -535014,7 +535920,7 @@
}
},
{
- "id": 30485,
+ "id": 13196,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -535060,7 +535966,7 @@
}
},
{
- "id": 30486,
+ "id": 13197,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -535119,7 +536025,7 @@
}
},
{
- "id": 30487,
+ "id": 13198,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -535178,7 +536084,7 @@
}
},
{
- "id": 30488,
+ "id": 13199,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -535237,7 +536143,7 @@
}
},
{
- "id": 30489,
+ "id": 13200,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -535296,7 +536202,7 @@
}
},
{
- "id": 30490,
+ "id": 13201,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -535361,7 +536267,7 @@
}
},
{
- "id": 30491,
+ "id": 13202,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -535417,7 +536323,7 @@
}
},
{
- "id": 30492,
+ "id": 13203,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -535476,7 +536382,7 @@
}
},
{
- "id": 30493,
+ "id": 13204,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -535553,7 +536459,7 @@
}
},
{
- "id": 30494,
+ "id": 13205,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -535612,7 +536518,7 @@
}
},
{
- "id": 30495,
+ "id": 13206,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -535689,7 +536595,7 @@
}
},
{
- "id": 30496,
+ "id": 13207,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -535748,7 +536654,7 @@
}
},
{
- "id": 30497,
+ "id": 13208,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -535807,7 +536713,7 @@
}
},
{
- "id": 30498,
+ "id": 13209,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -535896,7 +536802,7 @@
}
},
{
- "id": 30499,
+ "id": 13210,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -535973,7 +536879,7 @@
}
},
{
- "id": 30500,
+ "id": 13211,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -536032,7 +536938,7 @@
}
},
{
- "id": 30501,
+ "id": 13212,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -536109,7 +537015,7 @@
}
},
{
- "id": 30502,
+ "id": 13213,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -536178,7 +537084,7 @@
}
},
{
- "id": 30503,
+ "id": 13214,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -536251,32 +537157,32 @@
{
"title": "Properties",
"children": [
- 30478,
- 30479,
- 30480,
- 30481,
- 30482,
- 30483,
- 30484,
- 30485,
- 30486,
- 30487,
- 30488,
- 30489,
- 30490,
- 30491,
- 30492,
- 30493,
- 30494,
- 30495,
- 30496,
- 30497,
- 30498,
- 30499,
- 30500,
- 30501,
- 30502,
- 30503
+ 13189,
+ 13190,
+ 13191,
+ 13192,
+ 13193,
+ 13194,
+ 13195,
+ 13196,
+ 13197,
+ 13198,
+ 13199,
+ 13200,
+ 13201,
+ 13202,
+ 13203,
+ 13204,
+ 13205,
+ 13206,
+ 13207,
+ 13208,
+ 13209,
+ 13210,
+ 13211,
+ 13212,
+ 13213,
+ 13214
]
}
],
@@ -536321,14 +537227,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30504,
+ "id": 13215,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30505,
+ "id": 13216,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -536342,7 +537248,7 @@
],
"signatures": [
{
- "id": 30506,
+ "id": 13217,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -536356,7 +537262,7 @@
],
"parameters": [
{
- "id": 30507,
+ "id": 13218,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -536367,14 +537273,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30508,
+ "id": 13219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30509,
+ "id": 13220,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -536398,7 +537304,7 @@
{
"title": "Properties",
"children": [
- 30509
+ 13220
]
}
],
@@ -536480,7 +537386,7 @@
{
"title": "Methods",
"children": [
- 30505
+ 13216
]
}
],
@@ -536521,7 +537427,7 @@
}
},
{
- "id": 30510,
+ "id": 13221,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -536544,7 +537450,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30511,
+ "id": 13222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -536558,7 +537464,7 @@
],
"signatures": [
{
- "id": 30512,
+ "id": 13223,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -536586,7 +537492,7 @@
],
"typeParameters": [
{
- "id": 30513,
+ "id": 13224,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -536597,7 +537503,7 @@
}
},
{
- "id": 30514,
+ "id": 13225,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -536610,7 +537516,7 @@
],
"parameters": [
{
- "id": 30515,
+ "id": 13226,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -536643,7 +537549,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -536663,7 +537569,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -536696,7 +537602,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -536716,7 +537622,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -536736,7 +537642,7 @@
}
},
{
- "id": 30516,
+ "id": 13227,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -536759,7 +537665,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30517,
+ "id": 13228,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -536773,7 +537679,7 @@
],
"signatures": [
{
- "id": 30518,
+ "id": 13229,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -536795,7 +537701,7 @@
}
},
{
- "id": 30519,
+ "id": 13230,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -536818,7 +537724,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30520,
+ "id": 13231,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -536832,7 +537738,7 @@
],
"signatures": [
{
- "id": 30521,
+ "id": 13232,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -536846,7 +537752,7 @@
],
"parameters": [
{
- "id": 30522,
+ "id": 13233,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -536872,7 +537778,7 @@
}
},
{
- "id": 30523,
+ "id": 13234,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -536895,7 +537801,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30524,
+ "id": 13235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -536906,7 +537812,7 @@
],
"documents": [
{
- "id": 42786,
+ "id": 25727,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -536932,7 +537838,7 @@
"frontmatter": {}
},
{
- "id": 42787,
+ "id": 25728,
"name": "beginOrderEditValidationStep",
"variant": "document",
"kind": 8388608,
@@ -536958,7 +537864,7 @@
"frontmatter": {}
},
{
- "id": 42788,
+ "id": 25729,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -536985,21 +537891,21 @@
}
],
"childrenIncludingDocuments": [
- 30471,
- 30510,
- 30516,
- 30519,
- 30523
+ 13182,
+ 13221,
+ 13227,
+ 13230,
+ 13234
],
"groups": [
{
"title": "Properties",
"children": [
- 30471,
- 30510,
- 30516,
- 30519,
- 30523
+ 13182,
+ 13221,
+ 13227,
+ 13230,
+ 13234
]
}
],
@@ -537008,12 +537914,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/begin-order-edit.ts",
"line": 77,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L77"
}
],
"signatures": [
{
- "id": 30464,
+ "id": 13175,
"name": "beginOrderEditOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -537078,12 +537984,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/begin-order-edit.ts",
"line": 77,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/begin-order-edit.ts#L77"
}
],
"typeParameters": [
{
- "id": 30465,
+ "id": 13176,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -537094,7 +538000,7 @@
}
},
{
- "id": 30466,
+ "id": 13177,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -537107,7 +538013,7 @@
],
"parameters": [
{
- "id": 30467,
+ "id": 13178,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -537131,14 +538037,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30468,
+ "id": 13179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30469,
+ "id": 13180,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -537161,7 +538067,7 @@
}
},
{
- "id": 30470,
+ "id": 13181,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -537188,8 +538094,8 @@
{
"title": "Properties",
"children": [
- 30469,
- 30470
+ 13180,
+ 13181
]
}
],
@@ -537282,14 +538188,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -537304,7 +538210,7 @@
]
},
{
- "id": 30527,
+ "id": 13238,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -537322,7 +538228,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L29"
}
],
"type": {
@@ -537336,7 +538242,7 @@
}
},
{
- "id": 30528,
+ "id": 13239,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -537354,7 +538260,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L33"
}
],
"type": {
@@ -537368,7 +538274,7 @@
}
},
{
- "id": 30529,
+ "id": 13240,
"name": "cancelBeginOrderEditValidationStep",
"variant": "declaration",
"kind": 64,
@@ -537403,7 +538309,7 @@
},
"children": [
{
- "id": 30538,
+ "id": 13249,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -537421,7 +538327,7 @@
}
},
{
- "id": 30539,
+ "id": 13250,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -537443,8 +538349,8 @@
{
"title": "Properties",
"children": [
- 30538,
- 30539
+ 13249,
+ 13250
]
}
],
@@ -537453,12 +538359,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L59"
}
],
"signatures": [
{
- "id": 30530,
+ "id": 13241,
"name": "cancelBeginOrderEditValidationStep",
"variant": "signature",
"kind": 4096,
@@ -537496,12 +538402,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L59"
}
],
"parameters": [
{
- "id": 30531,
+ "id": 13242,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -537511,7 +538417,7 @@
"types": [
{
"type": "reference",
- "target": 30525,
+ "target": 13236,
"name": "CancelBeginOrderEditValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -537524,7 +538430,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30525,
+ "target": 13236,
"name": "CancelBeginOrderEditValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -537557,14 +538463,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30532,
+ "id": 13243,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30533,
+ "id": 13244,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -537578,7 +538484,7 @@
],
"signatures": [
{
- "id": 30534,
+ "id": 13245,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -537592,7 +538498,7 @@
],
"parameters": [
{
- "id": 30535,
+ "id": 13246,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -537603,14 +538509,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30536,
+ "id": 13247,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30537,
+ "id": 13248,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -537634,7 +538540,7 @@
{
"title": "Properties",
"children": [
- 30537
+ 13248
]
}
],
@@ -537711,7 +538617,7 @@
{
"title": "Methods",
"children": [
- 30533
+ 13244
]
}
],
@@ -537745,7 +538651,7 @@
]
},
{
- "id": 30542,
+ "id": 13253,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -537763,7 +538669,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L77"
}
],
"type": {
@@ -537772,7 +538678,7 @@
}
},
{
- "id": 30543,
+ "id": 13254,
"name": "cancelBeginOrderEditWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -537784,7 +538690,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 80,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L80"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L80"
}
],
"type": {
@@ -537794,7 +538700,7 @@
"defaultValue": "\"cancel-begin-order-edit\""
},
{
- "id": 30544,
+ "id": 13255,
"name": "cancelBeginOrderEditWorkflow",
"variant": "declaration",
"kind": 64,
@@ -537847,7 +538753,7 @@
},
"children": [
{
- "id": 30552,
+ "id": 13263,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -537870,7 +538776,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30553,
+ "id": 13264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -537884,7 +538790,7 @@
],
"signatures": [
{
- "id": 30554,
+ "id": 13265,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -537912,7 +538818,7 @@
],
"parameters": [
{
- "id": 30555,
+ "id": 13266,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -537928,14 +538834,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30556,
+ "id": 13267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30557,
+ "id": 13268,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -537960,7 +538866,7 @@
"types": [
{
"type": "reference",
- "target": 30540,
+ "target": 13251,
"name": "CancelBeginOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -537973,7 +538879,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30540,
+ "target": 13251,
"name": "CancelBeginOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -537989,7 +538895,7 @@
{
"title": "Properties",
"children": [
- 30557
+ 13268
]
}
],
@@ -538025,14 +538931,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30558,
+ "id": 13269,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30559,
+ "id": 13270,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -538046,7 +538952,7 @@
],
"signatures": [
{
- "id": 30560,
+ "id": 13271,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -538060,7 +538966,7 @@
],
"parameters": [
{
- "id": 30561,
+ "id": 13272,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -538071,14 +538977,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30562,
+ "id": 13273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30563,
+ "id": 13274,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -538102,7 +539008,7 @@
{
"title": "Properties",
"children": [
- 30563
+ 13274
]
}
],
@@ -538179,7 +539085,7 @@
{
"title": "Methods",
"children": [
- 30559
+ 13270
]
}
],
@@ -538215,7 +539121,7 @@
}
},
{
- "id": 30564,
+ "id": 13275,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -538238,7 +539144,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30565,
+ "id": 13276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -538252,7 +539158,7 @@
],
"signatures": [
{
- "id": 30566,
+ "id": 13277,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -538280,7 +539186,7 @@
],
"typeParameters": [
{
- "id": 30567,
+ "id": 13278,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -538291,7 +539197,7 @@
}
},
{
- "id": 30568,
+ "id": 13279,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -538304,7 +539210,7 @@
],
"parameters": [
{
- "id": 30569,
+ "id": 13280,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -538337,7 +539243,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -538348,13 +539254,13 @@
},
"trueType": {
"type": "reference",
- "target": 30540,
+ "target": 13251,
"name": "CancelBeginOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -538387,7 +539293,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -538402,7 +539308,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -538422,7 +539328,7 @@
}
},
{
- "id": 30570,
+ "id": 13281,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -538445,7 +539351,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30571,
+ "id": 13282,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -538459,7 +539365,7 @@
],
"signatures": [
{
- "id": 30572,
+ "id": 13283,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -538481,7 +539387,7 @@
}
},
{
- "id": 30573,
+ "id": 13284,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -538504,7 +539410,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30574,
+ "id": 13285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -538518,7 +539424,7 @@
],
"signatures": [
{
- "id": 30575,
+ "id": 13286,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -538532,7 +539438,7 @@
],
"parameters": [
{
- "id": 30576,
+ "id": 13287,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -538558,7 +539464,7 @@
}
},
{
- "id": 30577,
+ "id": 13288,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -538581,7 +539487,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30578,
+ "id": 13289,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -538592,7 +539498,7 @@
],
"documents": [
{
- "id": 42789,
+ "id": 25730,
"name": "cancelBeginOrderEditValidationStep",
"variant": "document",
"kind": 8388608,
@@ -538618,7 +539524,7 @@
"frontmatter": {}
},
{
- "id": 42790,
+ "id": 25731,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -538644,7 +539550,7 @@
"frontmatter": {}
},
{
- "id": 42791,
+ "id": 25732,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -538670,7 +539576,7 @@
"frontmatter": {}
},
{
- "id": 42792,
+ "id": 25733,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -538697,21 +539603,21 @@
}
],
"childrenIncludingDocuments": [
- 30552,
- 30564,
- 30570,
- 30573,
- 30577
+ 13263,
+ 13275,
+ 13281,
+ 13284,
+ 13288
],
"groups": [
{
"title": "Properties",
"children": [
- 30552,
- 30564,
- 30570,
- 30573,
- 30577
+ 13263,
+ 13275,
+ 13281,
+ 13284,
+ 13288
]
}
],
@@ -538720,12 +539626,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L100"
}
],
"signatures": [
{
- "id": 30545,
+ "id": 13256,
"name": "cancelBeginOrderEditWorkflow",
"variant": "signature",
"kind": 4096,
@@ -538781,12 +539687,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts",
"line": 100,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/cancel-begin-order-edit.ts#L100"
}
],
"typeParameters": [
{
- "id": 30546,
+ "id": 13257,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -538797,7 +539703,7 @@
}
},
{
- "id": 30547,
+ "id": 13258,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -538810,7 +539716,7 @@
],
"parameters": [
{
- "id": 30548,
+ "id": 13259,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -538834,14 +539740,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30549,
+ "id": 13260,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30550,
+ "id": 13261,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -538864,7 +539770,7 @@
}
},
{
- "id": 30551,
+ "id": 13262,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -538891,8 +539797,8 @@
{
"title": "Properties",
"children": [
- 30550,
- 30551
+ 13261,
+ 13262
]
}
],
@@ -538967,7 +539873,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30540,
+ "target": 13251,
"name": "CancelBeginOrderEditWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -538977,14 +539883,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -538999,7 +539905,7 @@
]
},
{
- "id": 30583,
+ "id": 13294,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -539017,7 +539923,7 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L36"
}
],
"type": {
@@ -539034,7 +539940,7 @@
}
},
{
- "id": 30581,
+ "id": 13292,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -539052,7 +539958,7 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L32"
}
],
"type": {
@@ -539070,14 +539976,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30582,
+ "id": 13293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30583,
+ "id": 13294,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -539095,7 +540001,7 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L36"
}
],
"type": {
@@ -539116,7 +540022,7 @@
{
"title": "Properties",
"children": [
- 30583
+ 13294
]
}
],
@@ -539125,7 +540031,7 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 32,
"character": 20,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L32"
}
]
}
@@ -539134,7 +540040,7 @@
}
},
{
- "id": 30584,
+ "id": 13295,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -539152,7 +540058,7 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L41"
}
],
"type": {
@@ -539166,7 +540072,7 @@
}
},
{
- "id": 30585,
+ "id": 13296,
"name": "computeAdjustmentsForPreviewWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -539178,7 +540084,7 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L44"
}
],
"type": {
@@ -539188,7 +540094,7 @@
"defaultValue": "\"compute-adjustments-for-preview\""
},
{
- "id": 30586,
+ "id": 13297,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "declaration",
"kind": 64,
@@ -539259,7 +540165,7 @@
},
"children": [
{
- "id": 30594,
+ "id": 13305,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -539282,7 +540188,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30595,
+ "id": 13306,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -539296,7 +540202,7 @@
],
"signatures": [
{
- "id": 30596,
+ "id": 13307,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -539324,7 +540230,7 @@
],
"parameters": [
{
- "id": 30597,
+ "id": 13308,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -539340,14 +540246,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30598,
+ "id": 13309,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30599,
+ "id": 13310,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -539372,7 +540278,7 @@
"types": [
{
"type": "reference",
- "target": 30579,
+ "target": 13290,
"name": "ComputeAdjustmentsForPreviewWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -539385,7 +540291,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30579,
+ "target": 13290,
"name": "ComputeAdjustmentsForPreviewWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -539401,7 +540307,7 @@
{
"title": "Properties",
"children": [
- 30599
+ 13310
]
}
],
@@ -539437,14 +540343,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30600,
+ "id": 13311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30601,
+ "id": 13312,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -539458,7 +540364,7 @@
],
"signatures": [
{
- "id": 30602,
+ "id": 13313,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -539472,7 +540378,7 @@
],
"parameters": [
{
- "id": 30603,
+ "id": 13314,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -539483,14 +540389,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30604,
+ "id": 13315,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30605,
+ "id": 13316,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -539514,7 +540420,7 @@
{
"title": "Properties",
"children": [
- 30605
+ 13316
]
}
],
@@ -539591,7 +540497,7 @@
{
"title": "Methods",
"children": [
- 30601
+ 13312
]
}
],
@@ -539627,7 +540533,7 @@
}
},
{
- "id": 30606,
+ "id": 13317,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -539650,7 +540556,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30607,
+ "id": 13318,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -539664,7 +540570,7 @@
],
"signatures": [
{
- "id": 30608,
+ "id": 13319,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -539692,7 +540598,7 @@
],
"typeParameters": [
{
- "id": 30609,
+ "id": 13320,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -539703,7 +540609,7 @@
}
},
{
- "id": 30610,
+ "id": 13321,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -539716,7 +540622,7 @@
],
"parameters": [
{
- "id": 30611,
+ "id": 13322,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -539749,7 +540655,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -539760,13 +540666,13 @@
},
"trueType": {
"type": "reference",
- "target": 30579,
+ "target": 13290,
"name": "ComputeAdjustmentsForPreviewWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -539799,7 +540705,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -539814,7 +540720,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -539834,7 +540740,7 @@
}
},
{
- "id": 30612,
+ "id": 13323,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -539857,7 +540763,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30613,
+ "id": 13324,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -539871,7 +540777,7 @@
],
"signatures": [
{
- "id": 30614,
+ "id": 13325,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -539893,7 +540799,7 @@
}
},
{
- "id": 30615,
+ "id": 13326,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -539916,7 +540822,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30616,
+ "id": 13327,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -539930,7 +540836,7 @@
],
"signatures": [
{
- "id": 30617,
+ "id": 13328,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -539944,7 +540850,7 @@
],
"parameters": [
{
- "id": 30618,
+ "id": 13329,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -539970,7 +540876,7 @@
}
},
{
- "id": 30619,
+ "id": 13330,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -539993,7 +540899,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30620,
+ "id": 13331,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -540004,7 +540910,7 @@
],
"documents": [
{
- "id": 42793,
+ "id": 25734,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -540030,7 +540936,7 @@
"frontmatter": {}
},
{
- "id": 42794,
+ "id": 25735,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -540065,7 +540971,7 @@
"frontmatter": {},
"children": [
{
- "id": 42795,
+ "id": 25736,
"name": "getActionsToComputeFromPromotionsStep",
"variant": "document",
"kind": 8388608,
@@ -540091,7 +540997,7 @@
"frontmatter": {}
},
{
- "id": 42796,
+ "id": 25737,
"name": "prepareAdjustmentsFromPromotionActionsStep",
"variant": "document",
"kind": 8388608,
@@ -540119,7 +541025,7 @@
]
},
{
- "id": 42797,
+ "id": 25738,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -540154,7 +541060,7 @@
"frontmatter": {},
"children": [
{
- "id": 42798,
+ "id": 25739,
"name": "listOrderChangeActionsByTypeStep",
"variant": "document",
"kind": 8388608,
@@ -540180,7 +541086,7 @@
"frontmatter": {}
},
{
- "id": 42799,
+ "id": 25740,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -540209,21 +541115,21 @@
}
],
"childrenIncludingDocuments": [
- 30594,
- 30606,
- 30612,
- 30615,
- 30619
+ 13305,
+ 13317,
+ 13323,
+ 13326,
+ 13330
],
"groups": [
{
"title": "Properties",
"children": [
- 30594,
- 30606,
- 30612,
- 30615,
- 30619
+ 13305,
+ 13317,
+ 13323,
+ 13326,
+ 13330
]
}
],
@@ -540232,12 +541138,12 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 77,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L77"
}
],
"signatures": [
{
- "id": 30587,
+ "id": 13298,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "signature",
"kind": 4096,
@@ -540311,12 +541217,12 @@
"fileName": "core-flows/src/order/workflows/compute-adjustments-for-preview.ts",
"line": 77,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L77"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/compute-adjustments-for-preview.ts#L77"
}
],
"typeParameters": [
{
- "id": 30588,
+ "id": 13299,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -540327,7 +541233,7 @@
}
},
{
- "id": 30589,
+ "id": 13300,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -540340,7 +541246,7 @@
],
"parameters": [
{
- "id": 30590,
+ "id": 13301,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -540364,14 +541270,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30591,
+ "id": 13302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30592,
+ "id": 13303,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -540394,7 +541300,7 @@
}
},
{
- "id": 30593,
+ "id": 13304,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -540421,8 +541327,8 @@
{
"title": "Properties",
"children": [
- 30592,
- 30593
+ 13303,
+ 13304
]
}
],
@@ -540497,7 +541403,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30579,
+ "target": 13290,
"name": "ComputeAdjustmentsForPreviewWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -540507,14 +541413,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -540529,7 +541435,7 @@
]
},
{
- "id": 30623,
+ "id": 13334,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -540547,7 +541453,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L43"
}
],
"type": {
@@ -540561,7 +541467,7 @@
}
},
{
- "id": 30624,
+ "id": 13335,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -540579,7 +541485,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 47,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L47"
}
],
"type": {
@@ -540593,7 +541499,7 @@
}
},
{
- "id": 30625,
+ "id": 13336,
"name": "confirmOrderEditRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -540628,7 +541534,7 @@
},
"children": [
{
- "id": 30634,
+ "id": 13345,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -540646,7 +541552,7 @@
}
},
{
- "id": 30635,
+ "id": 13346,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -540668,8 +541574,8 @@
{
"title": "Properties",
"children": [
- 30634,
- 30635
+ 13345,
+ 13346
]
}
],
@@ -540678,12 +541584,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L73"
}
],
"signatures": [
{
- "id": 30626,
+ "id": 13337,
"name": "confirmOrderEditRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -540721,12 +541627,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L73"
}
],
"parameters": [
{
- "id": 30627,
+ "id": 13338,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -540736,7 +541642,7 @@
"types": [
{
"type": "reference",
- "target": 30621,
+ "target": 13332,
"name": "ConfirmOrderEditRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -540749,7 +541655,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30621,
+ "target": 13332,
"name": "ConfirmOrderEditRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -540782,14 +541688,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30628,
+ "id": 13339,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30629,
+ "id": 13340,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -540803,7 +541709,7 @@
],
"signatures": [
{
- "id": 30630,
+ "id": 13341,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -540817,7 +541723,7 @@
],
"parameters": [
{
- "id": 30631,
+ "id": 13342,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -540828,14 +541734,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30632,
+ "id": 13343,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30633,
+ "id": 13344,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -540859,7 +541765,7 @@
{
"title": "Properties",
"children": [
- 30633
+ 13344
]
}
],
@@ -540936,7 +541842,7 @@
{
"title": "Methods",
"children": [
- 30629
+ 13340
]
}
],
@@ -540970,7 +541876,7 @@
]
},
{
- "id": 30638,
+ "id": 13349,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -540988,7 +541894,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L91"
}
],
"type": {
@@ -540997,7 +541903,7 @@
}
},
{
- "id": 30639,
+ "id": 13350,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -541017,7 +541923,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L95"
}
],
"type": {
@@ -541026,7 +541932,7 @@
}
},
{
- "id": 30640,
+ "id": 13351,
"name": "confirmOrderEditRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -541038,7 +541944,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 98,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L98"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L98"
}
],
"type": {
@@ -541048,7 +541954,7 @@
"defaultValue": "\"confirm-order-edit-request\""
},
{
- "id": 30641,
+ "id": 13352,
"name": "confirmOrderEditRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -541110,7 +542016,7 @@
},
"children": [
{
- "id": 30649,
+ "id": 13360,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -541133,7 +542039,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30650,
+ "id": 13361,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -541147,7 +542053,7 @@
],
"signatures": [
{
- "id": 30651,
+ "id": 13362,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -541175,7 +542081,7 @@
],
"parameters": [
{
- "id": 30652,
+ "id": 13363,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -541191,14 +542097,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30653,
+ "id": 13364,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30654,
+ "id": 13365,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -541223,7 +542129,7 @@
"types": [
{
"type": "reference",
- "target": 30636,
+ "target": 13347,
"name": "ConfirmOrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -541236,7 +542142,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30636,
+ "target": 13347,
"name": "ConfirmOrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -541252,7 +542158,7 @@
{
"title": "Properties",
"children": [
- 30654
+ 13365
]
}
],
@@ -541273,14 +542179,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30655,
+ "id": 13366,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30668,
+ "id": 13379,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -541326,7 +542232,7 @@
}
},
{
- "id": 30728,
+ "id": 13439,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -541372,7 +542278,7 @@
}
},
{
- "id": 30729,
+ "id": 13440,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -541418,7 +542324,7 @@
}
},
{
- "id": 30730,
+ "id": 13441,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -541475,7 +542381,7 @@
}
},
{
- "id": 30731,
+ "id": 13442,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -541531,7 +542437,7 @@
}
},
{
- "id": 30696,
+ "id": 13407,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -541588,7 +542494,7 @@
}
},
{
- "id": 30697,
+ "id": 13408,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -541645,7 +542551,7 @@
}
},
{
- "id": 30698,
+ "id": 13409,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -541702,7 +542608,7 @@
}
},
{
- "id": 30673,
+ "id": 13384,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -541759,7 +542665,7 @@
}
},
{
- "id": 30699,
+ "id": 13410,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -541805,7 +542711,7 @@
}
},
{
- "id": 30700,
+ "id": 13411,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -541875,7 +542781,7 @@
}
},
{
- "id": 30701,
+ "id": 13412,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -541945,7 +542851,7 @@
}
},
{
- "id": 30732,
+ "id": 13443,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -542021,7 +542927,7 @@
}
},
{
- "id": 30702,
+ "id": 13413,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -542097,7 +543003,7 @@
}
},
{
- "id": 30733,
+ "id": 13444,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -542167,7 +543073,7 @@
}
},
{
- "id": 30734,
+ "id": 13445,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -542224,7 +543130,7 @@
}
},
{
- "id": 30672,
+ "id": 13383,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -542319,7 +543225,7 @@
}
},
{
- "id": 30727,
+ "id": 13438,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -542394,7 +543300,7 @@
}
},
{
- "id": 30669,
+ "id": 13380,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -542463,7 +543369,7 @@
}
},
{
- "id": 30670,
+ "id": 13381,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -542532,7 +543438,7 @@
}
},
{
- "id": 30671,
+ "id": 13382,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -542607,7 +543513,7 @@
}
},
{
- "id": 30703,
+ "id": 13414,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -542663,7 +543569,7 @@
}
},
{
- "id": 30704,
+ "id": 13415,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -542719,7 +543625,7 @@
}
},
{
- "id": 30705,
+ "id": 13416,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -542775,7 +543681,7 @@
}
},
{
- "id": 30677,
+ "id": 13388,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -542831,7 +543737,7 @@
}
},
{
- "id": 30678,
+ "id": 13389,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -542887,7 +543793,7 @@
}
},
{
- "id": 30679,
+ "id": 13390,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -542943,7 +543849,7 @@
}
},
{
- "id": 30735,
+ "id": 13446,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -542999,7 +543905,7 @@
}
},
{
- "id": 30674,
+ "id": 13385,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -543055,7 +543961,7 @@
}
},
{
- "id": 30675,
+ "id": 13386,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -543111,7 +544017,7 @@
}
},
{
- "id": 30676,
+ "id": 13387,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -543167,7 +544073,7 @@
}
},
{
- "id": 30680,
+ "id": 13391,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -543223,7 +544129,7 @@
}
},
{
- "id": 30681,
+ "id": 13392,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -543279,7 +544185,7 @@
}
},
{
- "id": 30682,
+ "id": 13393,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -543335,7 +544241,7 @@
}
},
{
- "id": 30736,
+ "id": 13447,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -543391,7 +544297,7 @@
}
},
{
- "id": 30683,
+ "id": 13394,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -543447,7 +544353,7 @@
}
},
{
- "id": 30684,
+ "id": 13395,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -543503,7 +544409,7 @@
}
},
{
- "id": 30726,
+ "id": 13437,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -543559,7 +544465,7 @@
}
},
{
- "id": 30706,
+ "id": 13417,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -543615,7 +544521,7 @@
}
},
{
- "id": 30707,
+ "id": 13418,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -543671,7 +544577,7 @@
}
},
{
- "id": 30708,
+ "id": 13419,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -543727,7 +544633,7 @@
}
},
{
- "id": 30709,
+ "id": 13420,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -543783,7 +544689,7 @@
}
},
{
- "id": 30710,
+ "id": 13421,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -543839,7 +544745,7 @@
}
},
{
- "id": 30737,
+ "id": 13448,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -543895,7 +544801,7 @@
}
},
{
- "id": 30711,
+ "id": 13422,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -543951,7 +544857,7 @@
}
},
{
- "id": 30712,
+ "id": 13423,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -544007,7 +544913,7 @@
}
},
{
- "id": 30713,
+ "id": 13424,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -544063,7 +544969,7 @@
}
},
{
- "id": 30656,
+ "id": 13367,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -544119,7 +545025,7 @@
}
},
{
- "id": 30657,
+ "id": 13368,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -544159,14 +545065,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30658,
+ "id": 13369,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30659,
+ "id": 13370,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -544198,7 +545104,7 @@
{
"title": "Properties",
"children": [
- 30659
+ 13370
]
}
],
@@ -544238,14 +545144,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30660,
+ "id": 13371,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30661,
+ "id": 13372,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -544277,7 +545183,7 @@
{
"title": "Properties",
"children": [
- 30661
+ 13372
]
}
],
@@ -544301,7 +545207,7 @@
}
},
{
- "id": 30662,
+ "id": 13373,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -544341,14 +545247,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30663,
+ "id": 13374,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30664,
+ "id": 13375,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -544380,7 +545286,7 @@
{
"title": "Properties",
"children": [
- 30664
+ 13375
]
}
],
@@ -544420,14 +545326,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30665,
+ "id": 13376,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30666,
+ "id": 13377,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -544459,7 +545365,7 @@
{
"title": "Properties",
"children": [
- 30666
+ 13377
]
}
],
@@ -544483,7 +545389,7 @@
}
},
{
- "id": 30667,
+ "id": 13378,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -544533,57 +545439,57 @@
{
"title": "Properties",
"children": [
- 30668,
- 30728,
- 30729,
- 30730,
- 30731,
- 30696,
- 30697,
- 30698,
- 30673,
- 30699,
- 30700,
- 30701,
- 30732,
- 30702,
- 30733,
- 30734,
- 30672,
- 30727,
- 30669,
- 30670,
- 30671,
- 30703,
- 30704,
- 30705,
- 30677,
- 30678,
- 30679,
- 30735,
- 30674,
- 30675,
- 30676,
- 30680,
- 30681,
- 30682,
- 30736,
- 30683,
- 30684,
- 30726,
- 30706,
- 30707,
- 30708,
- 30709,
- 30710,
- 30737,
- 30711,
- 30712,
- 30713,
- 30656,
- 30657,
- 30662,
- 30667
+ 13379,
+ 13439,
+ 13440,
+ 13441,
+ 13442,
+ 13407,
+ 13408,
+ 13409,
+ 13384,
+ 13410,
+ 13411,
+ 13412,
+ 13443,
+ 13413,
+ 13444,
+ 13445,
+ 13383,
+ 13438,
+ 13380,
+ 13381,
+ 13382,
+ 13414,
+ 13415,
+ 13416,
+ 13388,
+ 13389,
+ 13390,
+ 13446,
+ 13385,
+ 13386,
+ 13387,
+ 13391,
+ 13392,
+ 13393,
+ 13447,
+ 13394,
+ 13395,
+ 13437,
+ 13417,
+ 13418,
+ 13419,
+ 13420,
+ 13421,
+ 13448,
+ 13422,
+ 13423,
+ 13424,
+ 13367,
+ 13368,
+ 13373,
+ 13378
]
}
],
@@ -544628,14 +545534,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30738,
+ "id": 13449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30739,
+ "id": 13450,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -544649,7 +545555,7 @@
],
"signatures": [
{
- "id": 30740,
+ "id": 13451,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -544663,7 +545569,7 @@
],
"parameters": [
{
- "id": 30741,
+ "id": 13452,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -544674,14 +545580,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30742,
+ "id": 13453,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30743,
+ "id": 13454,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -544705,7 +545611,7 @@
{
"title": "Properties",
"children": [
- 30743
+ 13454
]
}
],
@@ -544787,7 +545693,7 @@
{
"title": "Methods",
"children": [
- 30739
+ 13450
]
}
],
@@ -544828,7 +545734,7 @@
}
},
{
- "id": 30744,
+ "id": 13455,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -544851,7 +545757,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30745,
+ "id": 13456,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -544865,7 +545771,7 @@
],
"signatures": [
{
- "id": 30746,
+ "id": 13457,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -544893,7 +545799,7 @@
],
"typeParameters": [
{
- "id": 30747,
+ "id": 13458,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -544904,7 +545810,7 @@
}
},
{
- "id": 30748,
+ "id": 13459,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -544917,7 +545823,7 @@
],
"parameters": [
{
- "id": 30749,
+ "id": 13460,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -544950,7 +545856,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -544961,13 +545867,13 @@
},
"trueType": {
"type": "reference",
- "target": 30636,
+ "target": 13347,
"name": "ConfirmOrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -545000,7 +545906,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -545020,7 +545926,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -545040,7 +545946,7 @@
}
},
{
- "id": 30750,
+ "id": 13461,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -545063,7 +545969,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30751,
+ "id": 13462,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -545077,7 +545983,7 @@
],
"signatures": [
{
- "id": 30752,
+ "id": 13463,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -545099,7 +546005,7 @@
}
},
{
- "id": 30753,
+ "id": 13464,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -545122,7 +546028,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30754,
+ "id": 13465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -545136,7 +546042,7 @@
],
"signatures": [
{
- "id": 30755,
+ "id": 13466,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -545150,7 +546056,7 @@
],
"parameters": [
{
- "id": 30756,
+ "id": 13467,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -545176,7 +546082,7 @@
}
},
{
- "id": 30757,
+ "id": 13468,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -545199,7 +546105,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30758,
+ "id": 13469,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -545210,7 +546116,7 @@
],
"documents": [
{
- "id": 42800,
+ "id": 25741,
"name": "confirmOrderEditRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -545236,7 +546142,7 @@
"frontmatter": {}
},
{
- "id": 42801,
+ "id": 25742,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -545262,7 +546168,7 @@
"frontmatter": {}
},
{
- "id": 42802,
+ "id": 25743,
"name": "deleteReservationsByLineItemsStep",
"variant": "document",
"kind": 8388608,
@@ -545288,7 +546194,7 @@
"frontmatter": {}
},
{
- "id": 42803,
+ "id": 25744,
"name": "reserveInventoryStep",
"variant": "document",
"kind": 8388608,
@@ -545314,7 +546220,7 @@
"frontmatter": {}
},
{
- "id": 42804,
+ "id": 25745,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -545340,7 +546246,7 @@
"frontmatter": {}
},
{
- "id": 42805,
+ "id": 25746,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -545367,21 +546273,21 @@
}
],
"childrenIncludingDocuments": [
- 30649,
- 30744,
- 30750,
- 30753,
- 30757
+ 13360,
+ 13455,
+ 13461,
+ 13464,
+ 13468
],
"groups": [
{
"title": "Properties",
"children": [
- 30649,
- 30744,
- 30750,
- 30753,
- 30757
+ 13360,
+ 13455,
+ 13461,
+ 13464,
+ 13468
]
}
],
@@ -545390,12 +546296,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 118,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L118"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L118"
}
],
"signatures": [
{
- "id": 30642,
+ "id": 13353,
"name": "confirmOrderEditRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -545460,12 +546366,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts",
"line": 118,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L118"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/confirm-order-edit-request.ts#L118"
}
],
"typeParameters": [
{
- "id": 30643,
+ "id": 13354,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -545476,7 +546382,7 @@
}
},
{
- "id": 30644,
+ "id": 13355,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -545489,7 +546395,7 @@
],
"parameters": [
{
- "id": 30645,
+ "id": 13356,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -545513,14 +546419,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30646,
+ "id": 13357,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30647,
+ "id": 13358,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -545543,7 +546449,7 @@
}
},
{
- "id": 30648,
+ "id": 13359,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -545570,8 +546476,8 @@
{
"title": "Properties",
"children": [
- 30647,
- 30648
+ 13358,
+ 13359
]
}
],
@@ -545646,7 +546552,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30636,
+ "target": 13347,
"name": "ConfirmOrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -545661,14 +546567,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -545683,7 +546589,7 @@
]
},
{
- "id": 30761,
+ "id": 13472,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -545701,7 +546607,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L35"
}
],
"type": {
@@ -545715,7 +546621,7 @@
}
},
{
- "id": 30762,
+ "id": 13473,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -545733,7 +546639,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L39"
}
],
"type": {
@@ -545747,7 +546653,7 @@
}
},
{
- "id": 30763,
+ "id": 13474,
"name": "createOrderEditShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -545773,7 +546679,7 @@
},
"children": [
{
- "id": 30772,
+ "id": 13483,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -545791,7 +546697,7 @@
}
},
{
- "id": 30773,
+ "id": 13484,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -545813,8 +546719,8 @@
{
"title": "Properties",
"children": [
- 30772,
- 30773
+ 13483,
+ 13484
]
}
],
@@ -545823,12 +546729,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L65"
}
],
"signatures": [
{
- "id": 30764,
+ "id": 13475,
"name": "createOrderEditShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -545857,12 +546763,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L65"
}
],
"parameters": [
{
- "id": 30765,
+ "id": 13476,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -545872,7 +546778,7 @@
"types": [
{
"type": "reference",
- "target": 30759,
+ "target": 13470,
"name": "CreateOrderEditShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -545885,7 +546791,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30759,
+ "target": 13470,
"name": "CreateOrderEditShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -545918,14 +546824,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30766,
+ "id": 13477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30767,
+ "id": 13478,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -545939,7 +546845,7 @@
],
"signatures": [
{
- "id": 30768,
+ "id": 13479,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -545953,7 +546859,7 @@
],
"parameters": [
{
- "id": 30769,
+ "id": 13480,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -545964,14 +546870,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30770,
+ "id": 13481,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30771,
+ "id": 13482,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -545995,7 +546901,7 @@
{
"title": "Properties",
"children": [
- 30771
+ 13482
]
}
],
@@ -546072,7 +546978,7 @@
{
"title": "Methods",
"children": [
- 30767
+ 13478
]
}
],
@@ -546106,7 +547012,7 @@
]
},
{
- "id": 30776,
+ "id": 13487,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -546124,7 +547030,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L83"
}
],
"type": {
@@ -546133,7 +547039,7 @@
}
},
{
- "id": 30777,
+ "id": 13488,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -546151,7 +547057,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L87"
}
],
"type": {
@@ -546160,7 +547066,7 @@
}
},
{
- "id": 30778,
+ "id": 13489,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -546180,7 +547086,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L92"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L92"
}
],
"type": {
@@ -546203,7 +547109,7 @@
}
},
{
- "id": 30779,
+ "id": 13490,
"name": "createOrderEditShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -546215,7 +547121,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 95,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L95"
}
],
"type": {
@@ -546225,7 +547131,7 @@
"defaultValue": "\"create-order-edit-shipping-method\""
},
{
- "id": 30780,
+ "id": 13491,
"name": "createOrderEditShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -546278,7 +547184,7 @@
},
"children": [
{
- "id": 30788,
+ "id": 13499,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -546301,7 +547207,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30789,
+ "id": 13500,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -546315,7 +547221,7 @@
],
"signatures": [
{
- "id": 30790,
+ "id": 13501,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -546343,7 +547249,7 @@
],
"parameters": [
{
- "id": 30791,
+ "id": 13502,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -546359,14 +547265,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30792,
+ "id": 13503,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30793,
+ "id": 13504,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -546394,7 +547300,7 @@
"types": [
{
"type": "reference",
- "target": 30774,
+ "target": 13485,
"name": "CreateOrderEditShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -546421,7 +547327,7 @@
"types": [
{
"type": "reference",
- "target": 30774,
+ "target": 13485,
"name": "CreateOrderEditShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -546448,7 +547354,7 @@
{
"title": "Properties",
"children": [
- 30793
+ 13504
]
}
],
@@ -546469,14 +547375,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30794,
+ "id": 13505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30807,
+ "id": 13518,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -546522,7 +547428,7 @@
}
},
{
- "id": 30867,
+ "id": 13578,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -546568,7 +547474,7 @@
}
},
{
- "id": 30868,
+ "id": 13579,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -546614,7 +547520,7 @@
}
},
{
- "id": 30869,
+ "id": 13580,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -546671,7 +547577,7 @@
}
},
{
- "id": 30870,
+ "id": 13581,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -546727,7 +547633,7 @@
}
},
{
- "id": 30835,
+ "id": 13546,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -546784,7 +547690,7 @@
}
},
{
- "id": 30836,
+ "id": 13547,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -546841,7 +547747,7 @@
}
},
{
- "id": 30837,
+ "id": 13548,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -546898,7 +547804,7 @@
}
},
{
- "id": 30812,
+ "id": 13523,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -546955,7 +547861,7 @@
}
},
{
- "id": 30838,
+ "id": 13549,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -547001,7 +547907,7 @@
}
},
{
- "id": 30839,
+ "id": 13550,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -547071,7 +547977,7 @@
}
},
{
- "id": 30840,
+ "id": 13551,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -547141,7 +548047,7 @@
}
},
{
- "id": 30871,
+ "id": 13582,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -547217,7 +548123,7 @@
}
},
{
- "id": 30841,
+ "id": 13552,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -547293,7 +548199,7 @@
}
},
{
- "id": 30872,
+ "id": 13583,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -547363,7 +548269,7 @@
}
},
{
- "id": 30873,
+ "id": 13584,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -547420,7 +548326,7 @@
}
},
{
- "id": 30811,
+ "id": 13522,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -547515,7 +548421,7 @@
}
},
{
- "id": 30866,
+ "id": 13577,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -547590,7 +548496,7 @@
}
},
{
- "id": 30808,
+ "id": 13519,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -547659,7 +548565,7 @@
}
},
{
- "id": 30809,
+ "id": 13520,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -547728,7 +548634,7 @@
}
},
{
- "id": 30810,
+ "id": 13521,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -547803,7 +548709,7 @@
}
},
{
- "id": 30842,
+ "id": 13553,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -547859,7 +548765,7 @@
}
},
{
- "id": 30843,
+ "id": 13554,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -547915,7 +548821,7 @@
}
},
{
- "id": 30844,
+ "id": 13555,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -547971,7 +548877,7 @@
}
},
{
- "id": 30816,
+ "id": 13527,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -548027,7 +548933,7 @@
}
},
{
- "id": 30817,
+ "id": 13528,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -548083,7 +548989,7 @@
}
},
{
- "id": 30818,
+ "id": 13529,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -548139,7 +549045,7 @@
}
},
{
- "id": 30874,
+ "id": 13585,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -548195,7 +549101,7 @@
}
},
{
- "id": 30813,
+ "id": 13524,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -548251,7 +549157,7 @@
}
},
{
- "id": 30814,
+ "id": 13525,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -548307,7 +549213,7 @@
}
},
{
- "id": 30815,
+ "id": 13526,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -548363,7 +549269,7 @@
}
},
{
- "id": 30819,
+ "id": 13530,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -548419,7 +549325,7 @@
}
},
{
- "id": 30820,
+ "id": 13531,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -548475,7 +549381,7 @@
}
},
{
- "id": 30821,
+ "id": 13532,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -548531,7 +549437,7 @@
}
},
{
- "id": 30875,
+ "id": 13586,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -548587,7 +549493,7 @@
}
},
{
- "id": 30822,
+ "id": 13533,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -548643,7 +549549,7 @@
}
},
{
- "id": 30823,
+ "id": 13534,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -548699,7 +549605,7 @@
}
},
{
- "id": 30865,
+ "id": 13576,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -548755,7 +549661,7 @@
}
},
{
- "id": 30845,
+ "id": 13556,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -548811,7 +549717,7 @@
}
},
{
- "id": 30846,
+ "id": 13557,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -548867,7 +549773,7 @@
}
},
{
- "id": 30847,
+ "id": 13558,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -548923,7 +549829,7 @@
}
},
{
- "id": 30848,
+ "id": 13559,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -548979,7 +549885,7 @@
}
},
{
- "id": 30849,
+ "id": 13560,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -549035,7 +549941,7 @@
}
},
{
- "id": 30876,
+ "id": 13587,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -549091,7 +549997,7 @@
}
},
{
- "id": 30850,
+ "id": 13561,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -549147,7 +550053,7 @@
}
},
{
- "id": 30851,
+ "id": 13562,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -549203,7 +550109,7 @@
}
},
{
- "id": 30852,
+ "id": 13563,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -549259,7 +550165,7 @@
}
},
{
- "id": 30795,
+ "id": 13506,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -549315,7 +550221,7 @@
}
},
{
- "id": 30796,
+ "id": 13507,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -549355,14 +550261,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30797,
+ "id": 13508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30798,
+ "id": 13509,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -549394,7 +550300,7 @@
{
"title": "Properties",
"children": [
- 30798
+ 13509
]
}
],
@@ -549434,14 +550340,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30799,
+ "id": 13510,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30800,
+ "id": 13511,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -549473,7 +550379,7 @@
{
"title": "Properties",
"children": [
- 30800
+ 13511
]
}
],
@@ -549497,7 +550403,7 @@
}
},
{
- "id": 30801,
+ "id": 13512,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -549537,14 +550443,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30802,
+ "id": 13513,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30803,
+ "id": 13514,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -549576,7 +550482,7 @@
{
"title": "Properties",
"children": [
- 30803
+ 13514
]
}
],
@@ -549616,14 +550522,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30804,
+ "id": 13515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30805,
+ "id": 13516,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -549655,7 +550561,7 @@
{
"title": "Properties",
"children": [
- 30805
+ 13516
]
}
],
@@ -549679,7 +550585,7 @@
}
},
{
- "id": 30806,
+ "id": 13517,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -549729,57 +550635,57 @@
{
"title": "Properties",
"children": [
- 30807,
- 30867,
- 30868,
- 30869,
- 30870,
- 30835,
- 30836,
- 30837,
- 30812,
- 30838,
- 30839,
- 30840,
- 30871,
- 30841,
- 30872,
- 30873,
- 30811,
- 30866,
- 30808,
- 30809,
- 30810,
- 30842,
- 30843,
- 30844,
- 30816,
- 30817,
- 30818,
- 30874,
- 30813,
- 30814,
- 30815,
- 30819,
- 30820,
- 30821,
- 30875,
- 30822,
- 30823,
- 30865,
- 30845,
- 30846,
- 30847,
- 30848,
- 30849,
- 30876,
- 30850,
- 30851,
- 30852,
- 30795,
- 30796,
- 30801,
- 30806
+ 13518,
+ 13578,
+ 13579,
+ 13580,
+ 13581,
+ 13546,
+ 13547,
+ 13548,
+ 13523,
+ 13549,
+ 13550,
+ 13551,
+ 13582,
+ 13552,
+ 13583,
+ 13584,
+ 13522,
+ 13577,
+ 13519,
+ 13520,
+ 13521,
+ 13553,
+ 13554,
+ 13555,
+ 13527,
+ 13528,
+ 13529,
+ 13585,
+ 13524,
+ 13525,
+ 13526,
+ 13530,
+ 13531,
+ 13532,
+ 13586,
+ 13533,
+ 13534,
+ 13576,
+ 13556,
+ 13557,
+ 13558,
+ 13559,
+ 13560,
+ 13587,
+ 13561,
+ 13562,
+ 13563,
+ 13506,
+ 13507,
+ 13512,
+ 13517
]
}
],
@@ -549824,14 +550730,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30877,
+ "id": 13588,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30878,
+ "id": 13589,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -549845,7 +550751,7 @@
],
"signatures": [
{
- "id": 30879,
+ "id": 13590,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -549859,7 +550765,7 @@
],
"parameters": [
{
- "id": 30880,
+ "id": 13591,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -549870,14 +550776,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30881,
+ "id": 13592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30882,
+ "id": 13593,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -549901,7 +550807,7 @@
{
"title": "Properties",
"children": [
- 30882
+ 13593
]
}
],
@@ -549983,7 +550889,7 @@
{
"title": "Methods",
"children": [
- 30878
+ 13589
]
}
],
@@ -550024,7 +550930,7 @@
}
},
{
- "id": 30883,
+ "id": 13594,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -550047,7 +550953,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30884,
+ "id": 13595,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -550061,7 +550967,7 @@
],
"signatures": [
{
- "id": 30885,
+ "id": 13596,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -550089,7 +550995,7 @@
],
"typeParameters": [
{
- "id": 30886,
+ "id": 13597,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -550100,7 +551006,7 @@
}
},
{
- "id": 30887,
+ "id": 13598,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -550113,7 +551019,7 @@
],
"parameters": [
{
- "id": 30888,
+ "id": 13599,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -550146,7 +551052,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -550160,7 +551066,7 @@
"types": [
{
"type": "reference",
- "target": 30774,
+ "target": 13485,
"name": "CreateOrderEditShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -550177,7 +551083,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -550210,7 +551116,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -550230,7 +551136,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -550250,7 +551156,7 @@
}
},
{
- "id": 30889,
+ "id": 13600,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -550273,7 +551179,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30890,
+ "id": 13601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -550287,7 +551193,7 @@
],
"signatures": [
{
- "id": 30891,
+ "id": 13602,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -550309,7 +551215,7 @@
}
},
{
- "id": 30892,
+ "id": 13603,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -550332,7 +551238,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30893,
+ "id": 13604,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -550346,7 +551252,7 @@
],
"signatures": [
{
- "id": 30894,
+ "id": 13605,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -550360,7 +551266,7 @@
],
"parameters": [
{
- "id": 30895,
+ "id": 13606,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -550386,7 +551292,7 @@
}
},
{
- "id": 30896,
+ "id": 13607,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -550409,14 +551315,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30897,
+ "id": 13608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30898,
+ "id": 13609,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -550424,7 +551330,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30899,
+ "id": 13610,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -550438,7 +551344,7 @@
],
"signatures": [
{
- "id": 30900,
+ "id": 13611,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -550452,7 +551358,7 @@
],
"typeParameters": [
{
- "id": 30901,
+ "id": 13612,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -550461,7 +551367,7 @@
],
"parameters": [
{
- "id": 30902,
+ "id": 13613,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -550476,14 +551382,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30903,
+ "id": 13614,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30904,
+ "id": 13615,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -550493,7 +551399,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 168,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L168"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L168"
}
],
"type": {
@@ -550507,7 +551413,7 @@
}
},
{
- "id": 30905,
+ "id": 13616,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -550517,7 +551423,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 169,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L169"
}
],
"type": {
@@ -550527,7 +551433,7 @@
"defaultValue": "input.shipping_option_id"
},
{
- "id": 30906,
+ "id": 13617,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -550545,7 +551451,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 170,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L170"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L170"
}
],
"type": {
@@ -550583,9 +551489,9 @@
{
"title": "Properties",
"children": [
- 30904,
- 30905,
- 30906
+ 13615,
+ 13616,
+ 13617
]
}
],
@@ -550594,7 +551500,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L167"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L167"
}
]
}
@@ -550629,7 +551535,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -550640,7 +551546,7 @@
}
},
{
- "id": 30907,
+ "id": 13618,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -550656,7 +551562,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -550677,7 +551583,7 @@
}
},
{
- "id": 42806,
+ "id": 25747,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -550744,14 +551650,14 @@
},
"signatures": [
{
- "id": 42807,
+ "id": 25748,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42808,
+ "id": 25749,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -550766,7 +551672,7 @@
},
"type": {
"type": "reference",
- "target": 30903,
+ "target": 13614,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -550780,13 +551686,13 @@
{
"title": "Properties",
"children": [
- 30898
+ 13609
]
},
{
"title": "Functions",
"children": [
- 42806
+ 25747
]
}
],
@@ -550803,7 +551709,7 @@
],
"documents": [
{
- "id": 42809,
+ "id": 25750,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -550829,7 +551735,7 @@
"frontmatter": {}
},
{
- "id": 42810,
+ "id": 25751,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -550855,7 +551761,7 @@
"frontmatter": {}
},
{
- "id": 42811,
+ "id": 25752,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -550882,21 +551788,21 @@
}
],
"childrenIncludingDocuments": [
- 30788,
- 30883,
- 30889,
- 30892,
- 30896
+ 13499,
+ 13594,
+ 13600,
+ 13603,
+ 13607
],
"groups": [
{
"title": "Properties",
"children": [
- 30788,
- 30883,
- 30889,
- 30892,
- 30896
+ 13499,
+ 13594,
+ 13600,
+ 13603,
+ 13607
]
}
],
@@ -550905,12 +551811,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 152,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L152"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L152"
}
],
"signatures": [
{
- "id": 30781,
+ "id": 13492,
"name": "createOrderEditShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -550966,12 +551872,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 152,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L152"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L152"
}
],
"typeParameters": [
{
- "id": 30782,
+ "id": 13493,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -550982,7 +551888,7 @@
}
},
{
- "id": 30783,
+ "id": 13494,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -550995,7 +551901,7 @@
],
"parameters": [
{
- "id": 30784,
+ "id": 13495,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -551019,14 +551925,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30785,
+ "id": 13496,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30786,
+ "id": 13497,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -551049,7 +551955,7 @@
}
},
{
- "id": 30787,
+ "id": 13498,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -551076,8 +551982,8 @@
{
"title": "Properties",
"children": [
- 30786,
- 30787
+ 13497,
+ 13498
]
}
],
@@ -551155,7 +552061,7 @@
"types": [
{
"type": "reference",
- "target": 30774,
+ "target": 13485,
"name": "CreateOrderEditShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -551181,14 +552087,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -551203,14 +552109,14 @@
]
},
{
- "id": 30903,
+ "id": 13614,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30904,
+ "id": 13615,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -551220,7 +552126,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 168,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L168"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L168"
}
],
"type": {
@@ -551234,7 +552140,7 @@
}
},
{
- "id": 30905,
+ "id": 13616,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -551244,7 +552150,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 169,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L169"
}
],
"type": {
@@ -551254,7 +552160,7 @@
"defaultValue": "input.shipping_option_id"
},
{
- "id": 30906,
+ "id": 13617,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -551272,7 +552178,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 170,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L170"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L170"
}
],
"type": {
@@ -551310,9 +552216,9 @@
{
"title": "Properties",
"children": [
- 30904,
- 30905,
- 30906
+ 13615,
+ 13616,
+ 13617
]
}
],
@@ -551321,12 +552227,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L167"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L167"
}
]
},
{
- "id": 30904,
+ "id": 13615,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -551336,7 +552242,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 168,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L168"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L168"
}
],
"type": {
@@ -551350,7 +552256,7 @@
}
},
{
- "id": 30905,
+ "id": 13616,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -551360,7 +552266,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 169,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L169"
}
],
"type": {
@@ -551370,7 +552276,7 @@
"defaultValue": "input.shipping_option_id"
},
{
- "id": 30906,
+ "id": 13617,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -551388,7 +552294,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts",
"line": 170,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L170"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/create-order-edit-shipping-method.ts#L170"
}
],
"type": {
@@ -551422,7 +552328,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 30910,
+ "id": 13621,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -551440,7 +552346,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L34"
}
],
"type": {
@@ -551454,7 +552360,7 @@
}
},
{
- "id": 30911,
+ "id": 13622,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -551472,7 +552378,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L38"
}
],
"type": {
@@ -551486,7 +552392,7 @@
}
},
{
- "id": 30912,
+ "id": 13623,
"name": "orderEditAddNewItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -551521,7 +552427,7 @@
},
"children": [
{
- "id": 30921,
+ "id": 13632,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -551539,7 +552445,7 @@
}
},
{
- "id": 30922,
+ "id": 13633,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -551561,8 +552467,8 @@
{
"title": "Properties",
"children": [
- 30921,
- 30922
+ 13632,
+ 13633
]
}
],
@@ -551571,12 +552477,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L64"
}
],
"signatures": [
{
- "id": 30913,
+ "id": 13624,
"name": "orderEditAddNewItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -551614,12 +552520,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L64"
}
],
"parameters": [
{
- "id": 30914,
+ "id": 13625,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -551629,7 +552535,7 @@
"types": [
{
"type": "reference",
- "target": 30908,
+ "target": 13619,
"name": "OrderEditAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -551642,7 +552548,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 30908,
+ "target": 13619,
"name": "OrderEditAddNewItemValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -551675,14 +552581,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30915,
+ "id": 13626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30916,
+ "id": 13627,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -551696,7 +552602,7 @@
],
"signatures": [
{
- "id": 30917,
+ "id": 13628,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -551710,7 +552616,7 @@
],
"parameters": [
{
- "id": 30918,
+ "id": 13629,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -551721,14 +552627,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30919,
+ "id": 13630,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30920,
+ "id": 13631,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -551752,7 +552658,7 @@
{
"title": "Properties",
"children": [
- 30920
+ 13631
]
}
],
@@ -551829,7 +552735,7 @@
{
"title": "Methods",
"children": [
- 30916
+ 13627
]
}
],
@@ -551863,7 +552769,7 @@
]
},
{
- "id": 30923,
+ "id": 13634,
"name": "orderEditAddNewItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -551875,7 +552781,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts",
"line": 75,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L75"
}
],
"type": {
@@ -551885,7 +552791,7 @@
"defaultValue": "\"order-edit-add-new-item\""
},
{
- "id": 30924,
+ "id": 13635,
"name": "orderEditAddNewItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -551938,7 +552844,7 @@
},
"children": [
{
- "id": 30932,
+ "id": 13643,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -551961,7 +552867,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30933,
+ "id": 13644,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -551975,7 +552881,7 @@
],
"signatures": [
{
- "id": 30934,
+ "id": 13645,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -552003,7 +552909,7 @@
],
"parameters": [
{
- "id": 30935,
+ "id": 13646,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -552019,14 +552925,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 30936,
+ "id": 13647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30937,
+ "id": 13648,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -552086,7 +552992,7 @@
{
"title": "Properties",
"children": [
- 30937
+ 13648
]
}
],
@@ -552107,14 +553013,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30938,
+ "id": 13649,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30951,
+ "id": 13662,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -552160,7 +553066,7 @@
}
},
{
- "id": 31011,
+ "id": 13722,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -552206,7 +553112,7 @@
}
},
{
- "id": 31012,
+ "id": 13723,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -552252,7 +553158,7 @@
}
},
{
- "id": 31013,
+ "id": 13724,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -552309,7 +553215,7 @@
}
},
{
- "id": 31014,
+ "id": 13725,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -552365,7 +553271,7 @@
}
},
{
- "id": 30979,
+ "id": 13690,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -552422,7 +553328,7 @@
}
},
{
- "id": 30980,
+ "id": 13691,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -552479,7 +553385,7 @@
}
},
{
- "id": 30981,
+ "id": 13692,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -552536,7 +553442,7 @@
}
},
{
- "id": 30956,
+ "id": 13667,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -552593,7 +553499,7 @@
}
},
{
- "id": 30982,
+ "id": 13693,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -552639,7 +553545,7 @@
}
},
{
- "id": 30983,
+ "id": 13694,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -552709,7 +553615,7 @@
}
},
{
- "id": 30984,
+ "id": 13695,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -552779,7 +553685,7 @@
}
},
{
- "id": 31015,
+ "id": 13726,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -552855,7 +553761,7 @@
}
},
{
- "id": 30985,
+ "id": 13696,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -552931,7 +553837,7 @@
}
},
{
- "id": 31016,
+ "id": 13727,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -553001,7 +553907,7 @@
}
},
{
- "id": 31017,
+ "id": 13728,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -553058,7 +553964,7 @@
}
},
{
- "id": 30955,
+ "id": 13666,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -553153,7 +554059,7 @@
}
},
{
- "id": 31010,
+ "id": 13721,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -553228,7 +554134,7 @@
}
},
{
- "id": 30952,
+ "id": 13663,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -553297,7 +554203,7 @@
}
},
{
- "id": 30953,
+ "id": 13664,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -553366,7 +554272,7 @@
}
},
{
- "id": 30954,
+ "id": 13665,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -553441,7 +554347,7 @@
}
},
{
- "id": 30986,
+ "id": 13697,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -553497,7 +554403,7 @@
}
},
{
- "id": 30987,
+ "id": 13698,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -553553,7 +554459,7 @@
}
},
{
- "id": 30988,
+ "id": 13699,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -553609,7 +554515,7 @@
}
},
{
- "id": 30960,
+ "id": 13671,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -553665,7 +554571,7 @@
}
},
{
- "id": 30961,
+ "id": 13672,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -553721,7 +554627,7 @@
}
},
{
- "id": 30962,
+ "id": 13673,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -553777,7 +554683,7 @@
}
},
{
- "id": 31018,
+ "id": 13729,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -553833,7 +554739,7 @@
}
},
{
- "id": 30957,
+ "id": 13668,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -553889,7 +554795,7 @@
}
},
{
- "id": 30958,
+ "id": 13669,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -553945,7 +554851,7 @@
}
},
{
- "id": 30959,
+ "id": 13670,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -554001,7 +554907,7 @@
}
},
{
- "id": 30963,
+ "id": 13674,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -554057,7 +554963,7 @@
}
},
{
- "id": 30964,
+ "id": 13675,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -554113,7 +555019,7 @@
}
},
{
- "id": 30965,
+ "id": 13676,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -554169,7 +555075,7 @@
}
},
{
- "id": 31019,
+ "id": 13730,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -554225,7 +555131,7 @@
}
},
{
- "id": 30966,
+ "id": 13677,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -554281,7 +555187,7 @@
}
},
{
- "id": 30967,
+ "id": 13678,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -554337,7 +555243,7 @@
}
},
{
- "id": 31009,
+ "id": 13720,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -554393,7 +555299,7 @@
}
},
{
- "id": 30989,
+ "id": 13700,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -554449,7 +555355,7 @@
}
},
{
- "id": 30990,
+ "id": 13701,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -554505,7 +555411,7 @@
}
},
{
- "id": 30991,
+ "id": 13702,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -554561,7 +555467,7 @@
}
},
{
- "id": 30992,
+ "id": 13703,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -554617,7 +555523,7 @@
}
},
{
- "id": 30993,
+ "id": 13704,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -554673,7 +555579,7 @@
}
},
{
- "id": 31020,
+ "id": 13731,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -554729,7 +555635,7 @@
}
},
{
- "id": 30994,
+ "id": 13705,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -554785,7 +555691,7 @@
}
},
{
- "id": 30995,
+ "id": 13706,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -554841,7 +555747,7 @@
}
},
{
- "id": 30996,
+ "id": 13707,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -554897,7 +555803,7 @@
}
},
{
- "id": 30939,
+ "id": 13650,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -554953,7 +555859,7 @@
}
},
{
- "id": 30940,
+ "id": 13651,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -554993,14 +555899,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30941,
+ "id": 13652,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30942,
+ "id": 13653,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -555032,7 +555938,7 @@
{
"title": "Properties",
"children": [
- 30942
+ 13653
]
}
],
@@ -555072,14 +555978,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30943,
+ "id": 13654,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30944,
+ "id": 13655,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -555111,7 +556017,7 @@
{
"title": "Properties",
"children": [
- 30944
+ 13655
]
}
],
@@ -555135,7 +556041,7 @@
}
},
{
- "id": 30945,
+ "id": 13656,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -555175,14 +556081,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30946,
+ "id": 13657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30947,
+ "id": 13658,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -555214,7 +556120,7 @@
{
"title": "Properties",
"children": [
- 30947
+ 13658
]
}
],
@@ -555254,14 +556160,14 @@
{
"type": "reflection",
"declaration": {
- "id": 30948,
+ "id": 13659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30949,
+ "id": 13660,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -555293,7 +556199,7 @@
{
"title": "Properties",
"children": [
- 30949
+ 13660
]
}
],
@@ -555317,7 +556223,7 @@
}
},
{
- "id": 30950,
+ "id": 13661,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -555367,57 +556273,57 @@
{
"title": "Properties",
"children": [
- 30951,
- 31011,
- 31012,
- 31013,
- 31014,
- 30979,
- 30980,
- 30981,
- 30956,
- 30982,
- 30983,
- 30984,
- 31015,
- 30985,
- 31016,
- 31017,
- 30955,
- 31010,
- 30952,
- 30953,
- 30954,
- 30986,
- 30987,
- 30988,
- 30960,
- 30961,
- 30962,
- 31018,
- 30957,
- 30958,
- 30959,
- 30963,
- 30964,
- 30965,
- 31019,
- 30966,
- 30967,
- 31009,
- 30989,
- 30990,
- 30991,
- 30992,
- 30993,
- 31020,
- 30994,
- 30995,
- 30996,
- 30939,
- 30940,
- 30945,
- 30950
+ 13662,
+ 13722,
+ 13723,
+ 13724,
+ 13725,
+ 13690,
+ 13691,
+ 13692,
+ 13667,
+ 13693,
+ 13694,
+ 13695,
+ 13726,
+ 13696,
+ 13727,
+ 13728,
+ 13666,
+ 13721,
+ 13663,
+ 13664,
+ 13665,
+ 13697,
+ 13698,
+ 13699,
+ 13671,
+ 13672,
+ 13673,
+ 13729,
+ 13668,
+ 13669,
+ 13670,
+ 13674,
+ 13675,
+ 13676,
+ 13730,
+ 13677,
+ 13678,
+ 13720,
+ 13700,
+ 13701,
+ 13702,
+ 13703,
+ 13704,
+ 13731,
+ 13705,
+ 13706,
+ 13707,
+ 13650,
+ 13651,
+ 13656,
+ 13661
]
}
],
@@ -555462,14 +556368,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31021,
+ "id": 13732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31022,
+ "id": 13733,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -555483,7 +556389,7 @@
],
"signatures": [
{
- "id": 31023,
+ "id": 13734,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -555497,7 +556403,7 @@
],
"parameters": [
{
- "id": 31024,
+ "id": 13735,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -555508,14 +556414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31025,
+ "id": 13736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31026,
+ "id": 13737,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -555539,7 +556445,7 @@
{
"title": "Properties",
"children": [
- 31026
+ 13737
]
}
],
@@ -555621,7 +556527,7 @@
{
"title": "Methods",
"children": [
- 31022
+ 13733
]
}
],
@@ -555662,7 +556568,7 @@
}
},
{
- "id": 31027,
+ "id": 13738,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -555685,7 +556591,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31028,
+ "id": 13739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -555699,7 +556605,7 @@
],
"signatures": [
{
- "id": 31029,
+ "id": 13740,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -555727,7 +556633,7 @@
],
"typeParameters": [
{
- "id": 31030,
+ "id": 13741,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -555738,7 +556644,7 @@
}
},
{
- "id": 31031,
+ "id": 13742,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -555751,7 +556657,7 @@
],
"parameters": [
{
- "id": 31032,
+ "id": 13743,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -555784,7 +556690,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -555804,7 +556710,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -555837,7 +556743,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -555857,7 +556763,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -555877,7 +556783,7 @@
}
},
{
- "id": 31033,
+ "id": 13744,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -555900,7 +556806,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31034,
+ "id": 13745,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -555914,7 +556820,7 @@
],
"signatures": [
{
- "id": 31035,
+ "id": 13746,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -555936,7 +556842,7 @@
}
},
{
- "id": 31036,
+ "id": 13747,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -555959,7 +556865,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31037,
+ "id": 13748,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -555973,7 +556879,7 @@
],
"signatures": [
{
- "id": 31038,
+ "id": 13749,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -555987,7 +556893,7 @@
],
"parameters": [
{
- "id": 31039,
+ "id": 13750,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -556013,7 +556919,7 @@
}
},
{
- "id": 31040,
+ "id": 13751,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -556036,7 +556942,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31041,
+ "id": 13752,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -556047,7 +556953,7 @@
],
"documents": [
{
- "id": 42812,
+ "id": 25753,
"name": "orderEditAddNewItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -556073,7 +556979,7 @@
"frontmatter": {}
},
{
- "id": 42813,
+ "id": 25754,
"name": "addOrderLineItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -556099,7 +557005,7 @@
"frontmatter": {}
},
{
- "id": 42814,
+ "id": 25755,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -556125,7 +557031,7 @@
"frontmatter": {}
},
{
- "id": 42815,
+ "id": 25756,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -556151,7 +557057,7 @@
"frontmatter": {}
},
{
- "id": 42816,
+ "id": 25757,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -556177,7 +557083,7 @@
"frontmatter": {}
},
{
- "id": 42817,
+ "id": 25758,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -556204,21 +557110,21 @@
}
],
"childrenIncludingDocuments": [
- 30932,
- 31027,
- 31033,
- 31036,
- 31040
+ 13643,
+ 13738,
+ 13744,
+ 13747,
+ 13751
],
"groups": [
{
"title": "Properties",
"children": [
- 30932,
- 31027,
- 31033,
- 31036,
- 31040
+ 13643,
+ 13738,
+ 13744,
+ 13747,
+ 13751
]
}
],
@@ -556227,12 +557133,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts",
"line": 101,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L101"
}
],
"signatures": [
{
- "id": 30925,
+ "id": 13636,
"name": "orderEditAddNewItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -556288,12 +557194,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts",
"line": 101,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-add-new-item.ts#L101"
}
],
"typeParameters": [
{
- "id": 30926,
+ "id": 13637,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -556304,7 +557210,7 @@
}
},
{
- "id": 30927,
+ "id": 13638,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -556317,7 +557223,7 @@
],
"parameters": [
{
- "id": 30928,
+ "id": 13639,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -556341,14 +557247,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 30929,
+ "id": 13640,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 30930,
+ "id": 13641,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -556371,7 +557277,7 @@
}
},
{
- "id": 30931,
+ "id": 13642,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -556398,8 +557304,8 @@
{
"title": "Properties",
"children": [
- 30930,
- 30931
+ 13641,
+ 13642
]
}
],
@@ -556492,14 +557398,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -556514,7 +557420,7 @@
]
},
{
- "id": 31044,
+ "id": 13755,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -556532,7 +557438,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L37"
}
],
"type": {
@@ -556546,7 +557452,7 @@
}
},
{
- "id": 31045,
+ "id": 13756,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -556564,7 +557470,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L41"
}
],
"type": {
@@ -556578,7 +557484,7 @@
}
},
{
- "id": 31046,
+ "id": 13757,
"name": "orderEditUpdateItemQuantityValidationStep",
"variant": "declaration",
"kind": 64,
@@ -556613,7 +557519,7 @@
},
"children": [
{
- "id": 31055,
+ "id": 13766,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -556631,7 +557537,7 @@
}
},
{
- "id": 31056,
+ "id": 13767,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -556653,8 +557559,8 @@
{
"title": "Properties",
"children": [
- 31055,
- 31056
+ 13766,
+ 13767
]
}
],
@@ -556663,12 +557569,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L67"
}
],
"signatures": [
{
- "id": 31047,
+ "id": 13758,
"name": "orderEditUpdateItemQuantityValidationStep",
"variant": "signature",
"kind": 4096,
@@ -556706,12 +557612,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L67"
}
],
"parameters": [
{
- "id": 31048,
+ "id": 13759,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -556721,7 +557627,7 @@
"types": [
{
"type": "reference",
- "target": 31042,
+ "target": 13753,
"name": "OrderEditUpdateItemQuantityValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -556734,7 +557640,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31042,
+ "target": 13753,
"name": "OrderEditUpdateItemQuantityValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -556767,14 +557673,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31049,
+ "id": 13760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31050,
+ "id": 13761,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -556788,7 +557694,7 @@
],
"signatures": [
{
- "id": 31051,
+ "id": 13762,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -556802,7 +557708,7 @@
],
"parameters": [
{
- "id": 31052,
+ "id": 13763,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -556813,14 +557719,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31053,
+ "id": 13764,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31054,
+ "id": 13765,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -556844,7 +557750,7 @@
{
"title": "Properties",
"children": [
- 31054
+ 13765
]
}
],
@@ -556921,7 +557827,7 @@
{
"title": "Methods",
"children": [
- 31050
+ 13761
]
}
],
@@ -556955,7 +557861,7 @@
]
},
{
- "id": 31057,
+ "id": 13768,
"name": "orderEditUpdateItemQuantityWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -556967,7 +557873,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts",
"line": 78,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L78"
}
],
"type": {
@@ -556977,7 +557883,7 @@
"defaultValue": "\"order-edit-update-item-quantity\""
},
{
- "id": 31058,
+ "id": 13769,
"name": "orderEditUpdateItemQuantityWorkflow",
"variant": "declaration",
"kind": 64,
@@ -557046,7 +557952,7 @@
},
"children": [
{
- "id": 31066,
+ "id": 13777,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -557069,7 +557975,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31067,
+ "id": 13778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -557083,7 +557989,7 @@
],
"signatures": [
{
- "id": 31068,
+ "id": 13779,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -557111,7 +558017,7 @@
],
"parameters": [
{
- "id": 31069,
+ "id": 13780,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -557127,14 +558033,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31070,
+ "id": 13781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31071,
+ "id": 13782,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -557194,7 +558100,7 @@
{
"title": "Properties",
"children": [
- 31071
+ 13782
]
}
],
@@ -557215,14 +558121,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31072,
+ "id": 13783,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31085,
+ "id": 13796,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -557268,7 +558174,7 @@
}
},
{
- "id": 31145,
+ "id": 13856,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -557314,7 +558220,7 @@
}
},
{
- "id": 31146,
+ "id": 13857,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -557360,7 +558266,7 @@
}
},
{
- "id": 31147,
+ "id": 13858,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -557417,7 +558323,7 @@
}
},
{
- "id": 31148,
+ "id": 13859,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -557473,7 +558379,7 @@
}
},
{
- "id": 31113,
+ "id": 13824,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -557530,7 +558436,7 @@
}
},
{
- "id": 31114,
+ "id": 13825,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -557587,7 +558493,7 @@
}
},
{
- "id": 31115,
+ "id": 13826,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -557644,7 +558550,7 @@
}
},
{
- "id": 31090,
+ "id": 13801,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -557701,7 +558607,7 @@
}
},
{
- "id": 31116,
+ "id": 13827,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -557747,7 +558653,7 @@
}
},
{
- "id": 31117,
+ "id": 13828,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -557817,7 +558723,7 @@
}
},
{
- "id": 31118,
+ "id": 13829,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -557887,7 +558793,7 @@
}
},
{
- "id": 31149,
+ "id": 13860,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -557963,7 +558869,7 @@
}
},
{
- "id": 31119,
+ "id": 13830,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -558039,7 +558945,7 @@
}
},
{
- "id": 31150,
+ "id": 13861,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -558109,7 +559015,7 @@
}
},
{
- "id": 31151,
+ "id": 13862,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -558166,7 +559072,7 @@
}
},
{
- "id": 31089,
+ "id": 13800,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -558261,7 +559167,7 @@
}
},
{
- "id": 31144,
+ "id": 13855,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -558336,7 +559242,7 @@
}
},
{
- "id": 31086,
+ "id": 13797,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -558405,7 +559311,7 @@
}
},
{
- "id": 31087,
+ "id": 13798,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -558474,7 +559380,7 @@
}
},
{
- "id": 31088,
+ "id": 13799,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -558549,7 +559455,7 @@
}
},
{
- "id": 31120,
+ "id": 13831,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -558605,7 +559511,7 @@
}
},
{
- "id": 31121,
+ "id": 13832,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -558661,7 +559567,7 @@
}
},
{
- "id": 31122,
+ "id": 13833,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -558717,7 +559623,7 @@
}
},
{
- "id": 31094,
+ "id": 13805,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -558773,7 +559679,7 @@
}
},
{
- "id": 31095,
+ "id": 13806,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -558829,7 +559735,7 @@
}
},
{
- "id": 31096,
+ "id": 13807,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -558885,7 +559791,7 @@
}
},
{
- "id": 31152,
+ "id": 13863,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -558941,7 +559847,7 @@
}
},
{
- "id": 31091,
+ "id": 13802,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -558997,7 +559903,7 @@
}
},
{
- "id": 31092,
+ "id": 13803,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -559053,7 +559959,7 @@
}
},
{
- "id": 31093,
+ "id": 13804,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -559109,7 +560015,7 @@
}
},
{
- "id": 31097,
+ "id": 13808,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -559165,7 +560071,7 @@
}
},
{
- "id": 31098,
+ "id": 13809,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -559221,7 +560127,7 @@
}
},
{
- "id": 31099,
+ "id": 13810,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -559277,7 +560183,7 @@
}
},
{
- "id": 31153,
+ "id": 13864,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -559333,7 +560239,7 @@
}
},
{
- "id": 31100,
+ "id": 13811,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -559389,7 +560295,7 @@
}
},
{
- "id": 31101,
+ "id": 13812,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -559445,7 +560351,7 @@
}
},
{
- "id": 31143,
+ "id": 13854,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -559501,7 +560407,7 @@
}
},
{
- "id": 31123,
+ "id": 13834,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -559557,7 +560463,7 @@
}
},
{
- "id": 31124,
+ "id": 13835,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -559613,7 +560519,7 @@
}
},
{
- "id": 31125,
+ "id": 13836,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -559669,7 +560575,7 @@
}
},
{
- "id": 31126,
+ "id": 13837,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -559725,7 +560631,7 @@
}
},
{
- "id": 31127,
+ "id": 13838,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -559781,7 +560687,7 @@
}
},
{
- "id": 31154,
+ "id": 13865,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -559837,7 +560743,7 @@
}
},
{
- "id": 31128,
+ "id": 13839,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -559893,7 +560799,7 @@
}
},
{
- "id": 31129,
+ "id": 13840,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -559949,7 +560855,7 @@
}
},
{
- "id": 31130,
+ "id": 13841,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -560005,7 +560911,7 @@
}
},
{
- "id": 31073,
+ "id": 13784,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -560061,7 +560967,7 @@
}
},
{
- "id": 31074,
+ "id": 13785,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -560101,14 +561007,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31075,
+ "id": 13786,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31076,
+ "id": 13787,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -560140,7 +561046,7 @@
{
"title": "Properties",
"children": [
- 31076
+ 13787
]
}
],
@@ -560180,14 +561086,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31077,
+ "id": 13788,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31078,
+ "id": 13789,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -560219,7 +561125,7 @@
{
"title": "Properties",
"children": [
- 31078
+ 13789
]
}
],
@@ -560243,7 +561149,7 @@
}
},
{
- "id": 31079,
+ "id": 13790,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -560283,14 +561189,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31080,
+ "id": 13791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31081,
+ "id": 13792,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -560322,7 +561228,7 @@
{
"title": "Properties",
"children": [
- 31081
+ 13792
]
}
],
@@ -560362,14 +561268,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31082,
+ "id": 13793,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31083,
+ "id": 13794,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -560401,7 +561307,7 @@
{
"title": "Properties",
"children": [
- 31083
+ 13794
]
}
],
@@ -560425,7 +561331,7 @@
}
},
{
- "id": 31084,
+ "id": 13795,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -560475,57 +561381,57 @@
{
"title": "Properties",
"children": [
- 31085,
- 31145,
- 31146,
- 31147,
- 31148,
- 31113,
- 31114,
- 31115,
- 31090,
- 31116,
- 31117,
- 31118,
- 31149,
- 31119,
- 31150,
- 31151,
- 31089,
- 31144,
- 31086,
- 31087,
- 31088,
- 31120,
- 31121,
- 31122,
- 31094,
- 31095,
- 31096,
- 31152,
- 31091,
- 31092,
- 31093,
- 31097,
- 31098,
- 31099,
- 31153,
- 31100,
- 31101,
- 31143,
- 31123,
- 31124,
- 31125,
- 31126,
- 31127,
- 31154,
- 31128,
- 31129,
- 31130,
- 31073,
- 31074,
- 31079,
- 31084
+ 13796,
+ 13856,
+ 13857,
+ 13858,
+ 13859,
+ 13824,
+ 13825,
+ 13826,
+ 13801,
+ 13827,
+ 13828,
+ 13829,
+ 13860,
+ 13830,
+ 13861,
+ 13862,
+ 13800,
+ 13855,
+ 13797,
+ 13798,
+ 13799,
+ 13831,
+ 13832,
+ 13833,
+ 13805,
+ 13806,
+ 13807,
+ 13863,
+ 13802,
+ 13803,
+ 13804,
+ 13808,
+ 13809,
+ 13810,
+ 13864,
+ 13811,
+ 13812,
+ 13854,
+ 13834,
+ 13835,
+ 13836,
+ 13837,
+ 13838,
+ 13865,
+ 13839,
+ 13840,
+ 13841,
+ 13784,
+ 13785,
+ 13790,
+ 13795
]
}
],
@@ -560570,14 +561476,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31155,
+ "id": 13866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31156,
+ "id": 13867,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -560591,7 +561497,7 @@
],
"signatures": [
{
- "id": 31157,
+ "id": 13868,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -560605,7 +561511,7 @@
],
"parameters": [
{
- "id": 31158,
+ "id": 13869,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -560616,14 +561522,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31159,
+ "id": 13870,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31160,
+ "id": 13871,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -560647,7 +561553,7 @@
{
"title": "Properties",
"children": [
- 31160
+ 13871
]
}
],
@@ -560729,7 +561635,7 @@
{
"title": "Methods",
"children": [
- 31156
+ 13867
]
}
],
@@ -560770,7 +561676,7 @@
}
},
{
- "id": 31161,
+ "id": 13872,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -560793,7 +561699,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31162,
+ "id": 13873,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -560807,7 +561713,7 @@
],
"signatures": [
{
- "id": 31163,
+ "id": 13874,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -560835,7 +561741,7 @@
],
"typeParameters": [
{
- "id": 31164,
+ "id": 13875,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -560846,7 +561752,7 @@
}
},
{
- "id": 31165,
+ "id": 13876,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -560859,7 +561765,7 @@
],
"parameters": [
{
- "id": 31166,
+ "id": 13877,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -560892,7 +561798,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -560912,7 +561818,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -560945,7 +561851,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -560965,7 +561871,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -560985,7 +561891,7 @@
}
},
{
- "id": 31167,
+ "id": 13878,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -561008,7 +561914,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31168,
+ "id": 13879,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -561022,7 +561928,7 @@
],
"signatures": [
{
- "id": 31169,
+ "id": 13880,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -561044,7 +561950,7 @@
}
},
{
- "id": 31170,
+ "id": 13881,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -561067,7 +561973,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31171,
+ "id": 13882,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -561081,7 +561987,7 @@
],
"signatures": [
{
- "id": 31172,
+ "id": 13883,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -561095,7 +562001,7 @@
],
"parameters": [
{
- "id": 31173,
+ "id": 13884,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -561121,7 +562027,7 @@
}
},
{
- "id": 31174,
+ "id": 13885,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -561144,7 +562050,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31175,
+ "id": 13886,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -561155,7 +562061,7 @@
],
"documents": [
{
- "id": 42818,
+ "id": 25759,
"name": "orderEditUpdateItemQuantityValidationStep",
"variant": "document",
"kind": 8388608,
@@ -561181,7 +562087,7 @@
"frontmatter": {}
},
{
- "id": 42819,
+ "id": 25760,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -561207,7 +562113,7 @@
"frontmatter": {}
},
{
- "id": 42820,
+ "id": 25761,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -561233,7 +562139,7 @@
"frontmatter": {}
},
{
- "id": 42821,
+ "id": 25762,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -561260,21 +562166,21 @@
}
],
"childrenIncludingDocuments": [
- 31066,
- 31161,
- 31167,
- 31170,
- 31174
+ 13777,
+ 13872,
+ 13878,
+ 13881,
+ 13885
],
"groups": [
{
"title": "Properties",
"children": [
- 31066,
- 31161,
- 31167,
- 31170,
- 31174
+ 13777,
+ 13872,
+ 13878,
+ 13881,
+ 13885
]
}
],
@@ -561283,12 +562189,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L111"
}
],
"signatures": [
{
- "id": 31059,
+ "id": 13770,
"name": "orderEditUpdateItemQuantityWorkflow",
"variant": "signature",
"kind": 4096,
@@ -561360,12 +562266,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/order-edit-update-item-quantity.ts#L111"
}
],
"typeParameters": [
{
- "id": 31060,
+ "id": 13771,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -561376,7 +562282,7 @@
}
},
{
- "id": 31061,
+ "id": 13772,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -561389,7 +562295,7 @@
],
"parameters": [
{
- "id": 31062,
+ "id": 13773,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -561413,14 +562319,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 31063,
+ "id": 13774,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31064,
+ "id": 13775,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -561443,7 +562349,7 @@
}
},
{
- "id": 31065,
+ "id": 13776,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -561470,8 +562376,8 @@
{
"title": "Properties",
"children": [
- 31064,
- 31065
+ 13775,
+ 13776
]
}
],
@@ -561564,14 +562470,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -561586,7 +562492,7 @@
]
},
{
- "id": 31178,
+ "id": 13889,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -561604,7 +562510,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L35"
}
],
"type": {
@@ -561618,7 +562524,7 @@
}
},
{
- "id": 31179,
+ "id": 13890,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -561636,7 +562542,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L39"
}
],
"type": {
@@ -561650,7 +562556,7 @@
}
},
{
- "id": 31180,
+ "id": 13891,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -561668,7 +562574,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L43"
}
],
"type": {
@@ -561683,7 +562589,7 @@
}
},
{
- "id": 31181,
+ "id": 13892,
"name": "removeOrderEditItemActionValidationStep",
"variant": "declaration",
"kind": 64,
@@ -561718,7 +562624,7 @@
},
"children": [
{
- "id": 31190,
+ "id": 13901,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -561736,7 +562642,7 @@
}
},
{
- "id": 31191,
+ "id": 13902,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -561758,8 +562664,8 @@
{
"title": "Properties",
"children": [
- 31190,
- 31191
+ 13901,
+ 13902
]
}
],
@@ -561768,12 +562674,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L74"
}
],
"signatures": [
{
- "id": 31182,
+ "id": 13893,
"name": "removeOrderEditItemActionValidationStep",
"variant": "signature",
"kind": 4096,
@@ -561811,12 +562717,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L74"
}
],
"parameters": [
{
- "id": 31183,
+ "id": 13894,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -561826,7 +562732,7 @@
"types": [
{
"type": "reference",
- "target": 31176,
+ "target": 13887,
"name": "RemoveOrderEditItemActionValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -561839,7 +562745,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31176,
+ "target": 13887,
"name": "RemoveOrderEditItemActionValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -561872,14 +562778,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31184,
+ "id": 13895,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31185,
+ "id": 13896,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -561893,7 +562799,7 @@
],
"signatures": [
{
- "id": 31186,
+ "id": 13897,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -561907,7 +562813,7 @@
],
"parameters": [
{
- "id": 31187,
+ "id": 13898,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -561918,14 +562824,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31188,
+ "id": 13899,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31189,
+ "id": 13900,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -561949,7 +562855,7 @@
{
"title": "Properties",
"children": [
- 31189
+ 13900
]
}
],
@@ -562026,7 +562932,7 @@
{
"title": "Methods",
"children": [
- 31185
+ 13896
]
}
],
@@ -562060,7 +562966,7 @@
]
},
{
- "id": 31192,
+ "id": 13903,
"name": "removeItemOrderEditActionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -562072,7 +562978,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 104,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L104"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L104"
}
],
"type": {
@@ -562082,7 +562988,7 @@
"defaultValue": "\"remove-item-order edit-action\""
},
{
- "id": 31193,
+ "id": 13904,
"name": "removeItemOrderEditActionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -562135,7 +563041,7 @@
},
"children": [
{
- "id": 31201,
+ "id": 13912,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -562158,7 +563064,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31202,
+ "id": 13913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -562172,7 +563078,7 @@
],
"signatures": [
{
- "id": 31203,
+ "id": 13914,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -562200,7 +563106,7 @@
],
"parameters": [
{
- "id": 31204,
+ "id": 13915,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -562216,14 +563122,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31205,
+ "id": 13916,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31206,
+ "id": 13917,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -562283,7 +563189,7 @@
{
"title": "Properties",
"children": [
- 31206
+ 13917
]
}
],
@@ -562304,14 +563210,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31207,
+ "id": 13918,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31220,
+ "id": 13931,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -562357,7 +563263,7 @@
}
},
{
- "id": 31280,
+ "id": 13991,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -562403,7 +563309,7 @@
}
},
{
- "id": 31281,
+ "id": 13992,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -562449,7 +563355,7 @@
}
},
{
- "id": 31282,
+ "id": 13993,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -562506,7 +563412,7 @@
}
},
{
- "id": 31283,
+ "id": 13994,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -562562,7 +563468,7 @@
}
},
{
- "id": 31248,
+ "id": 13959,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -562619,7 +563525,7 @@
}
},
{
- "id": 31249,
+ "id": 13960,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -562676,7 +563582,7 @@
}
},
{
- "id": 31250,
+ "id": 13961,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -562733,7 +563639,7 @@
}
},
{
- "id": 31225,
+ "id": 13936,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -562790,7 +563696,7 @@
}
},
{
- "id": 31251,
+ "id": 13962,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -562836,7 +563742,7 @@
}
},
{
- "id": 31252,
+ "id": 13963,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -562906,7 +563812,7 @@
}
},
{
- "id": 31253,
+ "id": 13964,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -562976,7 +563882,7 @@
}
},
{
- "id": 31284,
+ "id": 13995,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -563052,7 +563958,7 @@
}
},
{
- "id": 31254,
+ "id": 13965,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -563128,7 +564034,7 @@
}
},
{
- "id": 31285,
+ "id": 13996,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -563198,7 +564104,7 @@
}
},
{
- "id": 31286,
+ "id": 13997,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -563255,7 +564161,7 @@
}
},
{
- "id": 31224,
+ "id": 13935,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -563350,7 +564256,7 @@
}
},
{
- "id": 31279,
+ "id": 13990,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -563425,7 +564331,7 @@
}
},
{
- "id": 31221,
+ "id": 13932,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -563494,7 +564400,7 @@
}
},
{
- "id": 31222,
+ "id": 13933,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -563563,7 +564469,7 @@
}
},
{
- "id": 31223,
+ "id": 13934,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -563638,7 +564544,7 @@
}
},
{
- "id": 31255,
+ "id": 13966,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -563694,7 +564600,7 @@
}
},
{
- "id": 31256,
+ "id": 13967,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -563750,7 +564656,7 @@
}
},
{
- "id": 31257,
+ "id": 13968,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -563806,7 +564712,7 @@
}
},
{
- "id": 31229,
+ "id": 13940,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -563862,7 +564768,7 @@
}
},
{
- "id": 31230,
+ "id": 13941,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -563918,7 +564824,7 @@
}
},
{
- "id": 31231,
+ "id": 13942,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -563974,7 +564880,7 @@
}
},
{
- "id": 31287,
+ "id": 13998,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -564030,7 +564936,7 @@
}
},
{
- "id": 31226,
+ "id": 13937,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -564086,7 +564992,7 @@
}
},
{
- "id": 31227,
+ "id": 13938,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -564142,7 +565048,7 @@
}
},
{
- "id": 31228,
+ "id": 13939,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -564198,7 +565104,7 @@
}
},
{
- "id": 31232,
+ "id": 13943,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -564254,7 +565160,7 @@
}
},
{
- "id": 31233,
+ "id": 13944,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -564310,7 +565216,7 @@
}
},
{
- "id": 31234,
+ "id": 13945,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -564366,7 +565272,7 @@
}
},
{
- "id": 31288,
+ "id": 13999,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -564422,7 +565328,7 @@
}
},
{
- "id": 31235,
+ "id": 13946,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -564478,7 +565384,7 @@
}
},
{
- "id": 31236,
+ "id": 13947,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -564534,7 +565440,7 @@
}
},
{
- "id": 31278,
+ "id": 13989,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -564590,7 +565496,7 @@
}
},
{
- "id": 31258,
+ "id": 13969,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -564646,7 +565552,7 @@
}
},
{
- "id": 31259,
+ "id": 13970,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -564702,7 +565608,7 @@
}
},
{
- "id": 31260,
+ "id": 13971,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -564758,7 +565664,7 @@
}
},
{
- "id": 31261,
+ "id": 13972,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -564814,7 +565720,7 @@
}
},
{
- "id": 31262,
+ "id": 13973,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -564870,7 +565776,7 @@
}
},
{
- "id": 31289,
+ "id": 14000,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -564926,7 +565832,7 @@
}
},
{
- "id": 31263,
+ "id": 13974,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -564982,7 +565888,7 @@
}
},
{
- "id": 31264,
+ "id": 13975,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -565038,7 +565944,7 @@
}
},
{
- "id": 31265,
+ "id": 13976,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -565094,7 +566000,7 @@
}
},
{
- "id": 31208,
+ "id": 13919,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -565150,7 +566056,7 @@
}
},
{
- "id": 31209,
+ "id": 13920,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -565190,14 +566096,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31210,
+ "id": 13921,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31211,
+ "id": 13922,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -565229,7 +566135,7 @@
{
"title": "Properties",
"children": [
- 31211
+ 13922
]
}
],
@@ -565269,14 +566175,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31212,
+ "id": 13923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31213,
+ "id": 13924,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -565308,7 +566214,7 @@
{
"title": "Properties",
"children": [
- 31213
+ 13924
]
}
],
@@ -565332,7 +566238,7 @@
}
},
{
- "id": 31214,
+ "id": 13925,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -565372,14 +566278,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31215,
+ "id": 13926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31216,
+ "id": 13927,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -565411,7 +566317,7 @@
{
"title": "Properties",
"children": [
- 31216
+ 13927
]
}
],
@@ -565451,14 +566357,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31217,
+ "id": 13928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31218,
+ "id": 13929,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -565490,7 +566396,7 @@
{
"title": "Properties",
"children": [
- 31218
+ 13929
]
}
],
@@ -565514,7 +566420,7 @@
}
},
{
- "id": 31219,
+ "id": 13930,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -565564,57 +566470,57 @@
{
"title": "Properties",
"children": [
- 31220,
- 31280,
- 31281,
- 31282,
- 31283,
- 31248,
- 31249,
- 31250,
- 31225,
- 31251,
- 31252,
- 31253,
- 31284,
- 31254,
- 31285,
- 31286,
- 31224,
- 31279,
- 31221,
- 31222,
- 31223,
- 31255,
- 31256,
- 31257,
- 31229,
- 31230,
- 31231,
- 31287,
- 31226,
- 31227,
- 31228,
- 31232,
- 31233,
- 31234,
- 31288,
- 31235,
- 31236,
- 31278,
- 31258,
- 31259,
- 31260,
- 31261,
- 31262,
- 31289,
- 31263,
- 31264,
- 31265,
- 31208,
- 31209,
- 31214,
- 31219
+ 13931,
+ 13991,
+ 13992,
+ 13993,
+ 13994,
+ 13959,
+ 13960,
+ 13961,
+ 13936,
+ 13962,
+ 13963,
+ 13964,
+ 13995,
+ 13965,
+ 13996,
+ 13997,
+ 13935,
+ 13990,
+ 13932,
+ 13933,
+ 13934,
+ 13966,
+ 13967,
+ 13968,
+ 13940,
+ 13941,
+ 13942,
+ 13998,
+ 13937,
+ 13938,
+ 13939,
+ 13943,
+ 13944,
+ 13945,
+ 13999,
+ 13946,
+ 13947,
+ 13989,
+ 13969,
+ 13970,
+ 13971,
+ 13972,
+ 13973,
+ 14000,
+ 13974,
+ 13975,
+ 13976,
+ 13919,
+ 13920,
+ 13925,
+ 13930
]
}
],
@@ -565659,14 +566565,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31290,
+ "id": 14001,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31291,
+ "id": 14002,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -565680,7 +566586,7 @@
],
"signatures": [
{
- "id": 31292,
+ "id": 14003,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -565694,7 +566600,7 @@
],
"parameters": [
{
- "id": 31293,
+ "id": 14004,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -565705,14 +566611,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31294,
+ "id": 14005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31295,
+ "id": 14006,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -565736,7 +566642,7 @@
{
"title": "Properties",
"children": [
- 31295
+ 14006
]
}
],
@@ -565818,7 +566724,7 @@
{
"title": "Methods",
"children": [
- 31291
+ 14002
]
}
],
@@ -565859,7 +566765,7 @@
}
},
{
- "id": 31296,
+ "id": 14007,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -565882,7 +566788,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31297,
+ "id": 14008,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -565896,7 +566802,7 @@
],
"signatures": [
{
- "id": 31298,
+ "id": 14009,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -565924,7 +566830,7 @@
],
"typeParameters": [
{
- "id": 31299,
+ "id": 14010,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -565935,7 +566841,7 @@
}
},
{
- "id": 31300,
+ "id": 14011,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -565948,7 +566854,7 @@
],
"parameters": [
{
- "id": 31301,
+ "id": 14012,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -565981,7 +566887,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -566001,7 +566907,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -566034,7 +566940,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -566054,7 +566960,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -566074,7 +566980,7 @@
}
},
{
- "id": 31302,
+ "id": 14013,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -566097,7 +567003,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31303,
+ "id": 14014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -566111,7 +567017,7 @@
],
"signatures": [
{
- "id": 31304,
+ "id": 14015,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -566133,7 +567039,7 @@
}
},
{
- "id": 31305,
+ "id": 14016,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -566156,7 +567062,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31306,
+ "id": 14017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -566170,7 +567076,7 @@
],
"signatures": [
{
- "id": 31307,
+ "id": 14018,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -566184,7 +567090,7 @@
],
"parameters": [
{
- "id": 31308,
+ "id": 14019,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -566210,7 +567116,7 @@
}
},
{
- "id": 31309,
+ "id": 14020,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -566233,7 +567139,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31310,
+ "id": 14021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -566244,7 +567150,7 @@
],
"documents": [
{
- "id": 42822,
+ "id": 25763,
"name": "removeOrderEditItemActionValidationStep",
"variant": "document",
"kind": 8388608,
@@ -566270,7 +567176,7 @@
"frontmatter": {}
},
{
- "id": 42823,
+ "id": 25764,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -566296,7 +567202,7 @@
"frontmatter": {}
},
{
- "id": 42824,
+ "id": 25765,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -566322,7 +567228,7 @@
"frontmatter": {}
},
{
- "id": 42825,
+ "id": 25766,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -566349,21 +567255,21 @@
}
],
"childrenIncludingDocuments": [
- 31201,
- 31296,
- 31302,
- 31305,
- 31309
+ 13912,
+ 14007,
+ 14013,
+ 14016,
+ 14020
],
"groups": [
{
"title": "Properties",
"children": [
- 31201,
- 31296,
- 31302,
- 31305,
- 31309
+ 13912,
+ 14007,
+ 14013,
+ 14016,
+ 14020
]
}
],
@@ -566372,12 +567278,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 126,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L126"
}
],
"signatures": [
{
- "id": 31194,
+ "id": 13905,
"name": "removeItemOrderEditActionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -566433,12 +567339,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts",
"line": 126,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-item-action.ts#L126"
}
],
"typeParameters": [
{
- "id": 31195,
+ "id": 13906,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -566449,7 +567355,7 @@
}
},
{
- "id": 31196,
+ "id": 13907,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -566462,7 +567368,7 @@
],
"parameters": [
{
- "id": 31197,
+ "id": 13908,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -566486,14 +567392,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 31198,
+ "id": 13909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31199,
+ "id": 13910,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -566516,7 +567422,7 @@
}
},
{
- "id": 31200,
+ "id": 13911,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -566543,8 +567449,8 @@
{
"title": "Properties",
"children": [
- 31199,
- 31200
+ 13910,
+ 13911
]
}
],
@@ -566637,14 +567543,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -566659,7 +567565,7 @@
]
},
{
- "id": 31313,
+ "id": 14024,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -566677,7 +567583,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L29"
}
],
"type": {
@@ -566691,7 +567597,7 @@
}
},
{
- "id": 31314,
+ "id": 14025,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -566709,7 +567615,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L33"
}
],
"type": {
@@ -566748,7 +567654,7 @@
}
},
{
- "id": 31315,
+ "id": 14026,
"name": "removeOrderEditShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -566783,7 +567689,7 @@
},
"children": [
{
- "id": 31324,
+ "id": 14035,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -566801,7 +567707,7 @@
}
},
{
- "id": 31325,
+ "id": 14036,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -566823,8 +567729,8 @@
{
"title": "Properties",
"children": [
- 31324,
- 31325
+ 14035,
+ 14036
]
}
],
@@ -566833,12 +567739,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts",
"line": 63,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L63"
}
],
"signatures": [
{
- "id": 31316,
+ "id": 14027,
"name": "removeOrderEditShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -566876,12 +567782,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts",
"line": 63,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L63"
}
],
"parameters": [
{
- "id": 31317,
+ "id": 14028,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -566891,7 +567797,7 @@
"types": [
{
"type": "reference",
- "target": 31311,
+ "target": 14022,
"name": "RemoveOrderEditShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -566904,7 +567810,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31311,
+ "target": 14022,
"name": "RemoveOrderEditShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -566937,14 +567843,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31318,
+ "id": 14029,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31319,
+ "id": 14030,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -566958,7 +567864,7 @@
],
"signatures": [
{
- "id": 31320,
+ "id": 14031,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -566972,7 +567878,7 @@
],
"parameters": [
{
- "id": 31321,
+ "id": 14032,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -566983,14 +567889,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31322,
+ "id": 14033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31323,
+ "id": 14034,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -567014,7 +567920,7 @@
{
"title": "Properties",
"children": [
- 31323
+ 14034
]
}
],
@@ -567091,7 +567997,7 @@
{
"title": "Methods",
"children": [
- 31319
+ 14030
]
}
],
@@ -567125,7 +568031,7 @@
]
},
{
- "id": 31326,
+ "id": 14037,
"name": "removeOrderEditShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -567137,7 +568043,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts",
"line": 87,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L87"
}
],
"type": {
@@ -567147,7 +568053,7 @@
"defaultValue": "\"remove-order-edit-shipping-method\""
},
{
- "id": 31327,
+ "id": 14038,
"name": "removeOrderEditShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -567191,7 +568097,7 @@
},
"children": [
{
- "id": 31335,
+ "id": 14046,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -567214,7 +568120,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31336,
+ "id": 14047,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -567228,7 +568134,7 @@
],
"signatures": [
{
- "id": 31337,
+ "id": 14048,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -567256,7 +568162,7 @@
],
"parameters": [
{
- "id": 31338,
+ "id": 14049,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -567272,14 +568178,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31339,
+ "id": 14050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31340,
+ "id": 14051,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -567339,7 +568245,7 @@
{
"title": "Properties",
"children": [
- 31340
+ 14051
]
}
],
@@ -567360,14 +568266,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31341,
+ "id": 14052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31354,
+ "id": 14065,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -567413,7 +568319,7 @@
}
},
{
- "id": 31414,
+ "id": 14125,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -567459,7 +568365,7 @@
}
},
{
- "id": 31415,
+ "id": 14126,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -567505,7 +568411,7 @@
}
},
{
- "id": 31416,
+ "id": 14127,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -567562,7 +568468,7 @@
}
},
{
- "id": 31417,
+ "id": 14128,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -567618,7 +568524,7 @@
}
},
{
- "id": 31382,
+ "id": 14093,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -567675,7 +568581,7 @@
}
},
{
- "id": 31383,
+ "id": 14094,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -567732,7 +568638,7 @@
}
},
{
- "id": 31384,
+ "id": 14095,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -567789,7 +568695,7 @@
}
},
{
- "id": 31359,
+ "id": 14070,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -567846,7 +568752,7 @@
}
},
{
- "id": 31385,
+ "id": 14096,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -567892,7 +568798,7 @@
}
},
{
- "id": 31386,
+ "id": 14097,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -567962,7 +568868,7 @@
}
},
{
- "id": 31387,
+ "id": 14098,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -568032,7 +568938,7 @@
}
},
{
- "id": 31418,
+ "id": 14129,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -568108,7 +569014,7 @@
}
},
{
- "id": 31388,
+ "id": 14099,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -568184,7 +569090,7 @@
}
},
{
- "id": 31419,
+ "id": 14130,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -568254,7 +569160,7 @@
}
},
{
- "id": 31420,
+ "id": 14131,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -568311,7 +569217,7 @@
}
},
{
- "id": 31358,
+ "id": 14069,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -568406,7 +569312,7 @@
}
},
{
- "id": 31413,
+ "id": 14124,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -568481,7 +569387,7 @@
}
},
{
- "id": 31355,
+ "id": 14066,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -568550,7 +569456,7 @@
}
},
{
- "id": 31356,
+ "id": 14067,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -568619,7 +569525,7 @@
}
},
{
- "id": 31357,
+ "id": 14068,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -568694,7 +569600,7 @@
}
},
{
- "id": 31389,
+ "id": 14100,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -568750,7 +569656,7 @@
}
},
{
- "id": 31390,
+ "id": 14101,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -568806,7 +569712,7 @@
}
},
{
- "id": 31391,
+ "id": 14102,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -568862,7 +569768,7 @@
}
},
{
- "id": 31363,
+ "id": 14074,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -568918,7 +569824,7 @@
}
},
{
- "id": 31364,
+ "id": 14075,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -568974,7 +569880,7 @@
}
},
{
- "id": 31365,
+ "id": 14076,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -569030,7 +569936,7 @@
}
},
{
- "id": 31421,
+ "id": 14132,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -569086,7 +569992,7 @@
}
},
{
- "id": 31360,
+ "id": 14071,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -569142,7 +570048,7 @@
}
},
{
- "id": 31361,
+ "id": 14072,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -569198,7 +570104,7 @@
}
},
{
- "id": 31362,
+ "id": 14073,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -569254,7 +570160,7 @@
}
},
{
- "id": 31366,
+ "id": 14077,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -569310,7 +570216,7 @@
}
},
{
- "id": 31367,
+ "id": 14078,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -569366,7 +570272,7 @@
}
},
{
- "id": 31368,
+ "id": 14079,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -569422,7 +570328,7 @@
}
},
{
- "id": 31422,
+ "id": 14133,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -569478,7 +570384,7 @@
}
},
{
- "id": 31369,
+ "id": 14080,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -569534,7 +570440,7 @@
}
},
{
- "id": 31370,
+ "id": 14081,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -569590,7 +570496,7 @@
}
},
{
- "id": 31412,
+ "id": 14123,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -569646,7 +570552,7 @@
}
},
{
- "id": 31392,
+ "id": 14103,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -569702,7 +570608,7 @@
}
},
{
- "id": 31393,
+ "id": 14104,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -569758,7 +570664,7 @@
}
},
{
- "id": 31394,
+ "id": 14105,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -569814,7 +570720,7 @@
}
},
{
- "id": 31395,
+ "id": 14106,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -569870,7 +570776,7 @@
}
},
{
- "id": 31396,
+ "id": 14107,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -569926,7 +570832,7 @@
}
},
{
- "id": 31423,
+ "id": 14134,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -569982,7 +570888,7 @@
}
},
{
- "id": 31397,
+ "id": 14108,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -570038,7 +570944,7 @@
}
},
{
- "id": 31398,
+ "id": 14109,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -570094,7 +571000,7 @@
}
},
{
- "id": 31399,
+ "id": 14110,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -570150,7 +571056,7 @@
}
},
{
- "id": 31342,
+ "id": 14053,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -570206,7 +571112,7 @@
}
},
{
- "id": 31343,
+ "id": 14054,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -570246,14 +571152,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31344,
+ "id": 14055,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31345,
+ "id": 14056,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -570285,7 +571191,7 @@
{
"title": "Properties",
"children": [
- 31345
+ 14056
]
}
],
@@ -570325,14 +571231,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31346,
+ "id": 14057,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31347,
+ "id": 14058,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -570364,7 +571270,7 @@
{
"title": "Properties",
"children": [
- 31347
+ 14058
]
}
],
@@ -570388,7 +571294,7 @@
}
},
{
- "id": 31348,
+ "id": 14059,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -570428,14 +571334,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31349,
+ "id": 14060,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31350,
+ "id": 14061,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -570467,7 +571373,7 @@
{
"title": "Properties",
"children": [
- 31350
+ 14061
]
}
],
@@ -570507,14 +571413,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31351,
+ "id": 14062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31352,
+ "id": 14063,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -570546,7 +571452,7 @@
{
"title": "Properties",
"children": [
- 31352
+ 14063
]
}
],
@@ -570570,7 +571476,7 @@
}
},
{
- "id": 31353,
+ "id": 14064,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -570620,57 +571526,57 @@
{
"title": "Properties",
"children": [
- 31354,
- 31414,
- 31415,
- 31416,
- 31417,
- 31382,
- 31383,
- 31384,
- 31359,
- 31385,
- 31386,
- 31387,
- 31418,
- 31388,
- 31419,
- 31420,
- 31358,
- 31413,
- 31355,
- 31356,
- 31357,
- 31389,
- 31390,
- 31391,
- 31363,
- 31364,
- 31365,
- 31421,
- 31360,
- 31361,
- 31362,
- 31366,
- 31367,
- 31368,
- 31422,
- 31369,
- 31370,
- 31412,
- 31392,
- 31393,
- 31394,
- 31395,
- 31396,
- 31423,
- 31397,
- 31398,
- 31399,
- 31342,
- 31343,
- 31348,
- 31353
+ 14065,
+ 14125,
+ 14126,
+ 14127,
+ 14128,
+ 14093,
+ 14094,
+ 14095,
+ 14070,
+ 14096,
+ 14097,
+ 14098,
+ 14129,
+ 14099,
+ 14130,
+ 14131,
+ 14069,
+ 14124,
+ 14066,
+ 14067,
+ 14068,
+ 14100,
+ 14101,
+ 14102,
+ 14074,
+ 14075,
+ 14076,
+ 14132,
+ 14071,
+ 14072,
+ 14073,
+ 14077,
+ 14078,
+ 14079,
+ 14133,
+ 14080,
+ 14081,
+ 14123,
+ 14103,
+ 14104,
+ 14105,
+ 14106,
+ 14107,
+ 14134,
+ 14108,
+ 14109,
+ 14110,
+ 14053,
+ 14054,
+ 14059,
+ 14064
]
}
],
@@ -570715,14 +571621,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31424,
+ "id": 14135,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31425,
+ "id": 14136,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -570736,7 +571642,7 @@
],
"signatures": [
{
- "id": 31426,
+ "id": 14137,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -570750,7 +571656,7 @@
],
"parameters": [
{
- "id": 31427,
+ "id": 14138,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -570761,14 +571667,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31428,
+ "id": 14139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31429,
+ "id": 14140,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -570792,7 +571698,7 @@
{
"title": "Properties",
"children": [
- 31429
+ 14140
]
}
],
@@ -570874,7 +571780,7 @@
{
"title": "Methods",
"children": [
- 31425
+ 14136
]
}
],
@@ -570915,7 +571821,7 @@
}
},
{
- "id": 31430,
+ "id": 14141,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -570938,7 +571844,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31431,
+ "id": 14142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -570952,7 +571858,7 @@
],
"signatures": [
{
- "id": 31432,
+ "id": 14143,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -570980,7 +571886,7 @@
],
"typeParameters": [
{
- "id": 31433,
+ "id": 14144,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -570991,7 +571897,7 @@
}
},
{
- "id": 31434,
+ "id": 14145,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -571004,7 +571910,7 @@
],
"parameters": [
{
- "id": 31435,
+ "id": 14146,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -571037,7 +571943,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -571057,7 +571963,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -571090,7 +571996,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -571110,7 +572016,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -571130,7 +572036,7 @@
}
},
{
- "id": 31436,
+ "id": 14147,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -571153,7 +572059,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31437,
+ "id": 14148,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -571167,7 +572073,7 @@
],
"signatures": [
{
- "id": 31438,
+ "id": 14149,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -571189,7 +572095,7 @@
}
},
{
- "id": 31439,
+ "id": 14150,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -571212,7 +572118,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31440,
+ "id": 14151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -571226,7 +572132,7 @@
],
"signatures": [
{
- "id": 31441,
+ "id": 14152,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -571240,7 +572146,7 @@
],
"parameters": [
{
- "id": 31442,
+ "id": 14153,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -571266,7 +572172,7 @@
}
},
{
- "id": 31443,
+ "id": 14154,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -571289,7 +572195,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31444,
+ "id": 14155,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -571300,7 +572206,7 @@
],
"documents": [
{
- "id": 42826,
+ "id": 25767,
"name": "removeOrderEditShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -571326,7 +572232,7 @@
"frontmatter": {}
},
{
- "id": 42827,
+ "id": 25768,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -571352,7 +572258,7 @@
"frontmatter": {}
},
{
- "id": 42828,
+ "id": 25769,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -571378,7 +572284,7 @@
"frontmatter": {}
},
{
- "id": 42829,
+ "id": 25770,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -571405,21 +572311,21 @@
}
],
"childrenIncludingDocuments": [
- 31335,
- 31430,
- 31436,
- 31439,
- 31443
+ 14046,
+ 14141,
+ 14147,
+ 14150,
+ 14154
],
"groups": [
{
"title": "Properties",
"children": [
- 31335,
- 31430,
- 31436,
- 31439,
- 31443
+ 14046,
+ 14141,
+ 14147,
+ 14150,
+ 14154
]
}
],
@@ -571428,12 +572334,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts",
"line": 109,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L109"
}
],
"signatures": [
{
- "id": 31328,
+ "id": 14039,
"name": "removeOrderEditShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -571480,12 +572386,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts",
"line": 109,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/remove-order-edit-shipping-method.ts#L109"
}
],
"typeParameters": [
{
- "id": 31329,
+ "id": 14040,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -571496,7 +572402,7 @@
}
},
{
- "id": 31330,
+ "id": 14041,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -571509,7 +572415,7 @@
],
"parameters": [
{
- "id": 31331,
+ "id": 14042,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -571533,14 +572439,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 31332,
+ "id": 14043,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31333,
+ "id": 14044,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -571563,7 +572469,7 @@
}
},
{
- "id": 31334,
+ "id": 14045,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -571590,8 +572496,8 @@
{
"title": "Properties",
"children": [
- 31333,
- 31334
+ 14044,
+ 14045
]
}
],
@@ -571684,14 +572590,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -571706,7 +572612,7 @@
]
},
{
- "id": 31447,
+ "id": 14158,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -571724,7 +572630,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L51"
}
],
"type": {
@@ -571738,7 +572644,7 @@
}
},
{
- "id": 31448,
+ "id": 14159,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -571756,7 +572662,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L55"
}
],
"type": {
@@ -571770,7 +572676,7 @@
}
},
{
- "id": 31449,
+ "id": 14160,
"name": "requestOrderEditRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -571805,7 +572711,7 @@
},
"children": [
{
- "id": 31458,
+ "id": 14169,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -571823,7 +572729,7 @@
}
},
{
- "id": 31459,
+ "id": 14170,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -571845,8 +572751,8 @@
{
"title": "Properties",
"children": [
- 31458,
- 31459
+ 14169,
+ 14170
]
}
],
@@ -571855,12 +572761,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L81"
}
],
"signatures": [
{
- "id": 31450,
+ "id": 14161,
"name": "requestOrderEditRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -571898,12 +572804,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L81"
}
],
"parameters": [
{
- "id": 31451,
+ "id": 14162,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -571913,7 +572819,7 @@
"types": [
{
"type": "reference",
- "target": 31445,
+ "target": 14156,
"name": "RequestOrderEditRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -571926,7 +572832,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31445,
+ "target": 14156,
"name": "RequestOrderEditRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -571959,14 +572865,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31452,
+ "id": 14163,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31453,
+ "id": 14164,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -571980,7 +572886,7 @@
],
"signatures": [
{
- "id": 31454,
+ "id": 14165,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -571994,7 +572900,7 @@
],
"parameters": [
{
- "id": 31455,
+ "id": 14166,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -572005,14 +572911,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31456,
+ "id": 14167,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31457,
+ "id": 14168,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -572036,7 +572942,7 @@
{
"title": "Properties",
"children": [
- 31457
+ 14168
]
}
],
@@ -572113,7 +573019,7 @@
{
"title": "Methods",
"children": [
- 31453
+ 14164
]
}
],
@@ -572147,7 +573053,7 @@
]
},
{
- "id": 31462,
+ "id": 14173,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -572165,7 +573071,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L99"
}
],
"type": {
@@ -572174,7 +573080,7 @@
}
},
{
- "id": 31463,
+ "id": 14174,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -572194,7 +573100,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L103"
}
],
"type": {
@@ -572203,7 +573109,7 @@
}
},
{
- "id": 31464,
+ "id": 14175,
"name": "requestOrderEditRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -572215,7 +573121,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 106,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L106"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L106"
}
],
"type": {
@@ -572225,7 +573131,7 @@
"defaultValue": "\"order-edit-request\""
},
{
- "id": 31465,
+ "id": 14176,
"name": "requestOrderEditRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -572287,7 +573193,7 @@
},
"children": [
{
- "id": 31473,
+ "id": 14184,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -572310,7 +573216,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31474,
+ "id": 14185,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -572324,7 +573230,7 @@
],
"signatures": [
{
- "id": 31475,
+ "id": 14186,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -572352,7 +573258,7 @@
],
"parameters": [
{
- "id": 31476,
+ "id": 14187,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -572368,14 +573274,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31477,
+ "id": 14188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31478,
+ "id": 14189,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -572400,7 +573306,7 @@
"types": [
{
"type": "reference",
- "target": 31460,
+ "target": 14171,
"name": "OrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -572413,7 +573319,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31460,
+ "target": 14171,
"name": "OrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -572429,7 +573335,7 @@
{
"title": "Properties",
"children": [
- 31478
+ 14189
]
}
],
@@ -572450,14 +573356,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31479,
+ "id": 14190,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31492,
+ "id": 14203,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -572503,7 +573409,7 @@
}
},
{
- "id": 31552,
+ "id": 14263,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -572549,7 +573455,7 @@
}
},
{
- "id": 31553,
+ "id": 14264,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -572595,7 +573501,7 @@
}
},
{
- "id": 31554,
+ "id": 14265,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -572652,7 +573558,7 @@
}
},
{
- "id": 31555,
+ "id": 14266,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -572708,7 +573614,7 @@
}
},
{
- "id": 31520,
+ "id": 14231,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -572765,7 +573671,7 @@
}
},
{
- "id": 31521,
+ "id": 14232,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -572822,7 +573728,7 @@
}
},
{
- "id": 31522,
+ "id": 14233,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -572879,7 +573785,7 @@
}
},
{
- "id": 31497,
+ "id": 14208,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -572936,7 +573842,7 @@
}
},
{
- "id": 31523,
+ "id": 14234,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -572982,7 +573888,7 @@
}
},
{
- "id": 31524,
+ "id": 14235,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -573052,7 +573958,7 @@
}
},
{
- "id": 31525,
+ "id": 14236,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -573122,7 +574028,7 @@
}
},
{
- "id": 31556,
+ "id": 14267,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -573198,7 +574104,7 @@
}
},
{
- "id": 31526,
+ "id": 14237,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -573274,7 +574180,7 @@
}
},
{
- "id": 31557,
+ "id": 14268,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -573344,7 +574250,7 @@
}
},
{
- "id": 31558,
+ "id": 14269,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -573401,7 +574307,7 @@
}
},
{
- "id": 31496,
+ "id": 14207,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -573496,7 +574402,7 @@
}
},
{
- "id": 31551,
+ "id": 14262,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -573571,7 +574477,7 @@
}
},
{
- "id": 31493,
+ "id": 14204,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -573640,7 +574546,7 @@
}
},
{
- "id": 31494,
+ "id": 14205,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -573709,7 +574615,7 @@
}
},
{
- "id": 31495,
+ "id": 14206,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -573784,7 +574690,7 @@
}
},
{
- "id": 31527,
+ "id": 14238,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -573840,7 +574746,7 @@
}
},
{
- "id": 31528,
+ "id": 14239,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -573896,7 +574802,7 @@
}
},
{
- "id": 31529,
+ "id": 14240,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -573952,7 +574858,7 @@
}
},
{
- "id": 31501,
+ "id": 14212,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -574008,7 +574914,7 @@
}
},
{
- "id": 31502,
+ "id": 14213,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -574064,7 +574970,7 @@
}
},
{
- "id": 31503,
+ "id": 14214,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -574120,7 +575026,7 @@
}
},
{
- "id": 31559,
+ "id": 14270,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -574176,7 +575082,7 @@
}
},
{
- "id": 31498,
+ "id": 14209,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -574232,7 +575138,7 @@
}
},
{
- "id": 31499,
+ "id": 14210,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -574288,7 +575194,7 @@
}
},
{
- "id": 31500,
+ "id": 14211,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -574344,7 +575250,7 @@
}
},
{
- "id": 31504,
+ "id": 14215,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -574400,7 +575306,7 @@
}
},
{
- "id": 31505,
+ "id": 14216,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -574456,7 +575362,7 @@
}
},
{
- "id": 31506,
+ "id": 14217,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -574512,7 +575418,7 @@
}
},
{
- "id": 31560,
+ "id": 14271,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -574568,7 +575474,7 @@
}
},
{
- "id": 31507,
+ "id": 14218,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -574624,7 +575530,7 @@
}
},
{
- "id": 31508,
+ "id": 14219,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -574680,7 +575586,7 @@
}
},
{
- "id": 31550,
+ "id": 14261,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -574736,7 +575642,7 @@
}
},
{
- "id": 31530,
+ "id": 14241,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -574792,7 +575698,7 @@
}
},
{
- "id": 31531,
+ "id": 14242,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -574848,7 +575754,7 @@
}
},
{
- "id": 31532,
+ "id": 14243,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -574904,7 +575810,7 @@
}
},
{
- "id": 31533,
+ "id": 14244,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -574960,7 +575866,7 @@
}
},
{
- "id": 31534,
+ "id": 14245,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -575016,7 +575922,7 @@
}
},
{
- "id": 31561,
+ "id": 14272,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -575072,7 +575978,7 @@
}
},
{
- "id": 31535,
+ "id": 14246,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -575128,7 +576034,7 @@
}
},
{
- "id": 31536,
+ "id": 14247,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -575184,7 +576090,7 @@
}
},
{
- "id": 31537,
+ "id": 14248,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -575240,7 +576146,7 @@
}
},
{
- "id": 31480,
+ "id": 14191,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -575296,7 +576202,7 @@
}
},
{
- "id": 31481,
+ "id": 14192,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -575336,14 +576242,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31482,
+ "id": 14193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31483,
+ "id": 14194,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -575375,7 +576281,7 @@
{
"title": "Properties",
"children": [
- 31483
+ 14194
]
}
],
@@ -575415,14 +576321,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31484,
+ "id": 14195,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31485,
+ "id": 14196,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -575454,7 +576360,7 @@
{
"title": "Properties",
"children": [
- 31485
+ 14196
]
}
],
@@ -575478,7 +576384,7 @@
}
},
{
- "id": 31486,
+ "id": 14197,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -575518,14 +576424,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31487,
+ "id": 14198,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31488,
+ "id": 14199,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -575557,7 +576463,7 @@
{
"title": "Properties",
"children": [
- 31488
+ 14199
]
}
],
@@ -575597,14 +576503,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31489,
+ "id": 14200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31490,
+ "id": 14201,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -575636,7 +576542,7 @@
{
"title": "Properties",
"children": [
- 31490
+ 14201
]
}
],
@@ -575660,7 +576566,7 @@
}
},
{
- "id": 31491,
+ "id": 14202,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -575710,57 +576616,57 @@
{
"title": "Properties",
"children": [
- 31492,
- 31552,
- 31553,
- 31554,
- 31555,
- 31520,
- 31521,
- 31522,
- 31497,
- 31523,
- 31524,
- 31525,
- 31556,
- 31526,
- 31557,
- 31558,
- 31496,
- 31551,
- 31493,
- 31494,
- 31495,
- 31527,
- 31528,
- 31529,
- 31501,
- 31502,
- 31503,
- 31559,
- 31498,
- 31499,
- 31500,
- 31504,
- 31505,
- 31506,
- 31560,
- 31507,
- 31508,
- 31550,
- 31530,
- 31531,
- 31532,
- 31533,
- 31534,
- 31561,
- 31535,
- 31536,
- 31537,
- 31480,
- 31481,
- 31486,
- 31491
+ 14203,
+ 14263,
+ 14264,
+ 14265,
+ 14266,
+ 14231,
+ 14232,
+ 14233,
+ 14208,
+ 14234,
+ 14235,
+ 14236,
+ 14267,
+ 14237,
+ 14268,
+ 14269,
+ 14207,
+ 14262,
+ 14204,
+ 14205,
+ 14206,
+ 14238,
+ 14239,
+ 14240,
+ 14212,
+ 14213,
+ 14214,
+ 14270,
+ 14209,
+ 14210,
+ 14211,
+ 14215,
+ 14216,
+ 14217,
+ 14271,
+ 14218,
+ 14219,
+ 14261,
+ 14241,
+ 14242,
+ 14243,
+ 14244,
+ 14245,
+ 14272,
+ 14246,
+ 14247,
+ 14248,
+ 14191,
+ 14192,
+ 14197,
+ 14202
]
}
],
@@ -575805,14 +576711,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31562,
+ "id": 14273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31563,
+ "id": 14274,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -575826,7 +576732,7 @@
],
"signatures": [
{
- "id": 31564,
+ "id": 14275,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -575840,7 +576746,7 @@
],
"parameters": [
{
- "id": 31565,
+ "id": 14276,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -575851,14 +576757,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31566,
+ "id": 14277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31567,
+ "id": 14278,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -575882,7 +576788,7 @@
{
"title": "Properties",
"children": [
- 31567
+ 14278
]
}
],
@@ -575964,7 +576870,7 @@
{
"title": "Methods",
"children": [
- 31563
+ 14274
]
}
],
@@ -576005,7 +576911,7 @@
}
},
{
- "id": 31568,
+ "id": 14279,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -576028,7 +576934,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31569,
+ "id": 14280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -576042,7 +576948,7 @@
],
"signatures": [
{
- "id": 31570,
+ "id": 14281,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -576070,7 +576976,7 @@
],
"typeParameters": [
{
- "id": 31571,
+ "id": 14282,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -576081,7 +576987,7 @@
}
},
{
- "id": 31572,
+ "id": 14283,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -576094,7 +577000,7 @@
],
"parameters": [
{
- "id": 31573,
+ "id": 14284,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -576127,7 +577033,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -576138,13 +577044,13 @@
},
"trueType": {
"type": "reference",
- "target": 31460,
+ "target": 14171,
"name": "OrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -576177,7 +577083,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -576197,7 +577103,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -576217,7 +577123,7 @@
}
},
{
- "id": 31574,
+ "id": 14285,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -576240,7 +577146,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31575,
+ "id": 14286,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -576254,7 +577160,7 @@
],
"signatures": [
{
- "id": 31576,
+ "id": 14287,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -576276,7 +577182,7 @@
}
},
{
- "id": 31577,
+ "id": 14288,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -576299,7 +577205,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31578,
+ "id": 14289,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -576313,7 +577219,7 @@
],
"signatures": [
{
- "id": 31579,
+ "id": 14290,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -576327,7 +577233,7 @@
],
"parameters": [
{
- "id": 31580,
+ "id": 14291,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -576353,7 +577259,7 @@
}
},
{
- "id": 31581,
+ "id": 14292,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -576376,7 +577282,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31582,
+ "id": 14293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -576387,7 +577293,7 @@
],
"documents": [
{
- "id": 42830,
+ "id": 25771,
"name": "requestOrderEditRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -576413,7 +577319,7 @@
"frontmatter": {}
},
{
- "id": 42831,
+ "id": 25772,
"name": "updateOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -576439,7 +577345,7 @@
"frontmatter": {}
},
{
- "id": 42832,
+ "id": 25773,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -576465,7 +577371,7 @@
"frontmatter": {}
},
{
- "id": 42833,
+ "id": 25774,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -576492,21 +577398,21 @@
}
],
"childrenIncludingDocuments": [
- 31473,
- 31568,
- 31574,
- 31577,
- 31581
+ 14184,
+ 14279,
+ 14285,
+ 14288,
+ 14292
],
"groups": [
{
"title": "Properties",
"children": [
- 31473,
- 31568,
- 31574,
- 31577,
- 31581
+ 14184,
+ 14279,
+ 14285,
+ 14288,
+ 14292
]
}
],
@@ -576515,12 +577421,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 126,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L126"
}
],
"signatures": [
{
- "id": 31466,
+ "id": 14177,
"name": "requestOrderEditRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -576585,12 +577491,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/request-order-edit.ts",
"line": 126,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/request-order-edit.ts#L126"
}
],
"typeParameters": [
{
- "id": 31467,
+ "id": 14178,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -576601,7 +577507,7 @@
}
},
{
- "id": 31468,
+ "id": 14179,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -576614,7 +577520,7 @@
],
"parameters": [
{
- "id": 31469,
+ "id": 14180,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -576638,14 +577544,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 31470,
+ "id": 14181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31471,
+ "id": 14182,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -576668,7 +577574,7 @@
}
},
{
- "id": 31472,
+ "id": 14183,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -576695,8 +577601,8 @@
{
"title": "Properties",
"children": [
- 31471,
- 31472
+ 14182,
+ 14183
]
}
],
@@ -576771,7 +577677,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31460,
+ "target": 14171,
"name": "OrderEditRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -576786,14 +577692,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -576808,7 +577714,7 @@
]
},
{
- "id": 31585,
+ "id": 14296,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -576826,7 +577732,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L35"
}
],
"type": {
@@ -576840,7 +577746,7 @@
}
},
{
- "id": 31586,
+ "id": 14297,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -576858,7 +577764,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L39"
}
],
"type": {
@@ -576872,7 +577778,7 @@
}
},
{
- "id": 31587,
+ "id": 14298,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -576890,7 +577796,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L43"
}
],
"type": {
@@ -576905,7 +577811,7 @@
}
},
{
- "id": 31588,
+ "id": 14299,
"name": "updateOrderEditAddItemValidationStep",
"variant": "declaration",
"kind": 64,
@@ -576940,7 +577846,7 @@
},
"children": [
{
- "id": 31597,
+ "id": 14308,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -576958,7 +577864,7 @@
}
},
{
- "id": 31598,
+ "id": 14309,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -576980,8 +577886,8 @@
{
"title": "Properties",
"children": [
- 31597,
- 31598
+ 14308,
+ 14309
]
}
],
@@ -576990,12 +577896,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 78,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L78"
}
],
"signatures": [
{
- "id": 31589,
+ "id": 14300,
"name": "updateOrderEditAddItemValidationStep",
"variant": "signature",
"kind": 4096,
@@ -577033,12 +577939,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 78,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L78"
}
],
"parameters": [
{
- "id": 31590,
+ "id": 14301,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -577048,7 +577954,7 @@
"types": [
{
"type": "reference",
- "target": 31583,
+ "target": 14294,
"name": "UpdateOrderEditAddItemValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -577061,7 +577967,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31583,
+ "target": 14294,
"name": "UpdateOrderEditAddItemValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -577094,14 +578000,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31591,
+ "id": 14302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31592,
+ "id": 14303,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -577115,7 +578021,7 @@
],
"signatures": [
{
- "id": 31593,
+ "id": 14304,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -577129,7 +578035,7 @@
],
"parameters": [
{
- "id": 31594,
+ "id": 14305,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -577140,14 +578046,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31595,
+ "id": 14306,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31596,
+ "id": 14307,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -577171,7 +578077,7 @@
{
"title": "Properties",
"children": [
- 31596
+ 14307
]
}
],
@@ -577248,7 +578154,7 @@
{
"title": "Methods",
"children": [
- 31592
+ 14303
]
}
],
@@ -577282,7 +578188,7 @@
]
},
{
- "id": 31599,
+ "id": 14310,
"name": "updateOrderEditAddItemWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -577294,7 +578200,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 101,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L101"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L101"
}
],
"type": {
@@ -577304,7 +578210,7 @@
"defaultValue": "\"update-order-edit-add-item\""
},
{
- "id": 31600,
+ "id": 14311,
"name": "updateOrderEditAddItemWorkflow",
"variant": "declaration",
"kind": 64,
@@ -577357,7 +578263,7 @@
},
"children": [
{
- "id": 31608,
+ "id": 14319,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -577380,7 +578286,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31609,
+ "id": 14320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -577394,7 +578300,7 @@
],
"signatures": [
{
- "id": 31610,
+ "id": 14321,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -577422,7 +578328,7 @@
],
"parameters": [
{
- "id": 31611,
+ "id": 14322,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -577438,14 +578344,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31612,
+ "id": 14323,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31613,
+ "id": 14324,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -577505,7 +578411,7 @@
{
"title": "Properties",
"children": [
- 31613
+ 14324
]
}
],
@@ -577526,14 +578432,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31614,
+ "id": 14325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31627,
+ "id": 14338,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -577579,7 +578485,7 @@
}
},
{
- "id": 31687,
+ "id": 14398,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -577625,7 +578531,7 @@
}
},
{
- "id": 31688,
+ "id": 14399,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -577671,7 +578577,7 @@
}
},
{
- "id": 31689,
+ "id": 14400,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -577728,7 +578634,7 @@
}
},
{
- "id": 31690,
+ "id": 14401,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -577784,7 +578690,7 @@
}
},
{
- "id": 31655,
+ "id": 14366,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -577841,7 +578747,7 @@
}
},
{
- "id": 31656,
+ "id": 14367,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -577898,7 +578804,7 @@
}
},
{
- "id": 31657,
+ "id": 14368,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -577955,7 +578861,7 @@
}
},
{
- "id": 31632,
+ "id": 14343,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -578012,7 +578918,7 @@
}
},
{
- "id": 31658,
+ "id": 14369,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -578058,7 +578964,7 @@
}
},
{
- "id": 31659,
+ "id": 14370,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -578128,7 +579034,7 @@
}
},
{
- "id": 31660,
+ "id": 14371,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -578198,7 +579104,7 @@
}
},
{
- "id": 31691,
+ "id": 14402,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -578274,7 +579180,7 @@
}
},
{
- "id": 31661,
+ "id": 14372,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -578350,7 +579256,7 @@
}
},
{
- "id": 31692,
+ "id": 14403,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -578420,7 +579326,7 @@
}
},
{
- "id": 31693,
+ "id": 14404,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -578477,7 +579383,7 @@
}
},
{
- "id": 31631,
+ "id": 14342,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -578572,7 +579478,7 @@
}
},
{
- "id": 31686,
+ "id": 14397,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -578647,7 +579553,7 @@
}
},
{
- "id": 31628,
+ "id": 14339,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -578716,7 +579622,7 @@
}
},
{
- "id": 31629,
+ "id": 14340,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -578785,7 +579691,7 @@
}
},
{
- "id": 31630,
+ "id": 14341,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -578860,7 +579766,7 @@
}
},
{
- "id": 31662,
+ "id": 14373,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -578916,7 +579822,7 @@
}
},
{
- "id": 31663,
+ "id": 14374,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -578972,7 +579878,7 @@
}
},
{
- "id": 31664,
+ "id": 14375,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -579028,7 +579934,7 @@
}
},
{
- "id": 31636,
+ "id": 14347,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -579084,7 +579990,7 @@
}
},
{
- "id": 31637,
+ "id": 14348,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -579140,7 +580046,7 @@
}
},
{
- "id": 31638,
+ "id": 14349,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -579196,7 +580102,7 @@
}
},
{
- "id": 31694,
+ "id": 14405,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -579252,7 +580158,7 @@
}
},
{
- "id": 31633,
+ "id": 14344,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -579308,7 +580214,7 @@
}
},
{
- "id": 31634,
+ "id": 14345,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -579364,7 +580270,7 @@
}
},
{
- "id": 31635,
+ "id": 14346,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -579420,7 +580326,7 @@
}
},
{
- "id": 31639,
+ "id": 14350,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -579476,7 +580382,7 @@
}
},
{
- "id": 31640,
+ "id": 14351,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -579532,7 +580438,7 @@
}
},
{
- "id": 31641,
+ "id": 14352,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -579588,7 +580494,7 @@
}
},
{
- "id": 31695,
+ "id": 14406,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -579644,7 +580550,7 @@
}
},
{
- "id": 31642,
+ "id": 14353,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -579700,7 +580606,7 @@
}
},
{
- "id": 31643,
+ "id": 14354,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -579756,7 +580662,7 @@
}
},
{
- "id": 31685,
+ "id": 14396,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -579812,7 +580718,7 @@
}
},
{
- "id": 31665,
+ "id": 14376,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -579868,7 +580774,7 @@
}
},
{
- "id": 31666,
+ "id": 14377,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -579924,7 +580830,7 @@
}
},
{
- "id": 31667,
+ "id": 14378,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -579980,7 +580886,7 @@
}
},
{
- "id": 31668,
+ "id": 14379,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -580036,7 +580942,7 @@
}
},
{
- "id": 31669,
+ "id": 14380,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -580092,7 +580998,7 @@
}
},
{
- "id": 31696,
+ "id": 14407,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -580148,7 +581054,7 @@
}
},
{
- "id": 31670,
+ "id": 14381,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -580204,7 +581110,7 @@
}
},
{
- "id": 31671,
+ "id": 14382,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -580260,7 +581166,7 @@
}
},
{
- "id": 31672,
+ "id": 14383,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -580316,7 +581222,7 @@
}
},
{
- "id": 31615,
+ "id": 14326,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -580372,7 +581278,7 @@
}
},
{
- "id": 31616,
+ "id": 14327,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -580412,14 +581318,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31617,
+ "id": 14328,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31618,
+ "id": 14329,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -580451,7 +581357,7 @@
{
"title": "Properties",
"children": [
- 31618
+ 14329
]
}
],
@@ -580491,14 +581397,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31619,
+ "id": 14330,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31620,
+ "id": 14331,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -580530,7 +581436,7 @@
{
"title": "Properties",
"children": [
- 31620
+ 14331
]
}
],
@@ -580554,7 +581460,7 @@
}
},
{
- "id": 31621,
+ "id": 14332,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -580594,14 +581500,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31622,
+ "id": 14333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31623,
+ "id": 14334,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -580633,7 +581539,7 @@
{
"title": "Properties",
"children": [
- 31623
+ 14334
]
}
],
@@ -580673,14 +581579,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31624,
+ "id": 14335,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31625,
+ "id": 14336,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -580712,7 +581618,7 @@
{
"title": "Properties",
"children": [
- 31625
+ 14336
]
}
],
@@ -580736,7 +581642,7 @@
}
},
{
- "id": 31626,
+ "id": 14337,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -580786,57 +581692,57 @@
{
"title": "Properties",
"children": [
- 31627,
- 31687,
- 31688,
- 31689,
- 31690,
- 31655,
- 31656,
- 31657,
- 31632,
- 31658,
- 31659,
- 31660,
- 31691,
- 31661,
- 31692,
- 31693,
- 31631,
- 31686,
- 31628,
- 31629,
- 31630,
- 31662,
- 31663,
- 31664,
- 31636,
- 31637,
- 31638,
- 31694,
- 31633,
- 31634,
- 31635,
- 31639,
- 31640,
- 31641,
- 31695,
- 31642,
- 31643,
- 31685,
- 31665,
- 31666,
- 31667,
- 31668,
- 31669,
- 31696,
- 31670,
- 31671,
- 31672,
- 31615,
- 31616,
- 31621,
- 31626
+ 14338,
+ 14398,
+ 14399,
+ 14400,
+ 14401,
+ 14366,
+ 14367,
+ 14368,
+ 14343,
+ 14369,
+ 14370,
+ 14371,
+ 14402,
+ 14372,
+ 14403,
+ 14404,
+ 14342,
+ 14397,
+ 14339,
+ 14340,
+ 14341,
+ 14373,
+ 14374,
+ 14375,
+ 14347,
+ 14348,
+ 14349,
+ 14405,
+ 14344,
+ 14345,
+ 14346,
+ 14350,
+ 14351,
+ 14352,
+ 14406,
+ 14353,
+ 14354,
+ 14396,
+ 14376,
+ 14377,
+ 14378,
+ 14379,
+ 14380,
+ 14407,
+ 14381,
+ 14382,
+ 14383,
+ 14326,
+ 14327,
+ 14332,
+ 14337
]
}
],
@@ -580881,14 +581787,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31697,
+ "id": 14408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31698,
+ "id": 14409,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -580902,7 +581808,7 @@
],
"signatures": [
{
- "id": 31699,
+ "id": 14410,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -580916,7 +581822,7 @@
],
"parameters": [
{
- "id": 31700,
+ "id": 14411,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -580927,14 +581833,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31701,
+ "id": 14412,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31702,
+ "id": 14413,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -580958,7 +581864,7 @@
{
"title": "Properties",
"children": [
- 31702
+ 14413
]
}
],
@@ -581040,7 +581946,7 @@
{
"title": "Methods",
"children": [
- 31698
+ 14409
]
}
],
@@ -581081,7 +581987,7 @@
}
},
{
- "id": 31703,
+ "id": 14414,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -581104,7 +582010,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31704,
+ "id": 14415,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -581118,7 +582024,7 @@
],
"signatures": [
{
- "id": 31705,
+ "id": 14416,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -581146,7 +582052,7 @@
],
"typeParameters": [
{
- "id": 31706,
+ "id": 14417,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -581157,7 +582063,7 @@
}
},
{
- "id": 31707,
+ "id": 14418,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -581170,7 +582076,7 @@
],
"parameters": [
{
- "id": 31708,
+ "id": 14419,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -581203,7 +582109,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -581223,7 +582129,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -581256,7 +582162,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -581276,7 +582182,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -581296,7 +582202,7 @@
}
},
{
- "id": 31709,
+ "id": 14420,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -581319,7 +582225,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31710,
+ "id": 14421,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -581333,7 +582239,7 @@
],
"signatures": [
{
- "id": 31711,
+ "id": 14422,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -581355,7 +582261,7 @@
}
},
{
- "id": 31712,
+ "id": 14423,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -581378,7 +582284,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31713,
+ "id": 14424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -581392,7 +582298,7 @@
],
"signatures": [
{
- "id": 31714,
+ "id": 14425,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -581406,7 +582312,7 @@
],
"parameters": [
{
- "id": 31715,
+ "id": 14426,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -581432,7 +582338,7 @@
}
},
{
- "id": 31716,
+ "id": 14427,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -581455,7 +582361,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31717,
+ "id": 14428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -581466,7 +582372,7 @@
],
"documents": [
{
- "id": 42834,
+ "id": 25775,
"name": "updateOrderEditAddItemValidationStep",
"variant": "document",
"kind": 8388608,
@@ -581492,7 +582398,7 @@
"frontmatter": {}
},
{
- "id": 42835,
+ "id": 25776,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -581518,7 +582424,7 @@
"frontmatter": {}
},
{
- "id": 42836,
+ "id": 25777,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -581544,7 +582450,7 @@
"frontmatter": {}
},
{
- "id": 42837,
+ "id": 25778,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -581571,21 +582477,21 @@
}
],
"childrenIncludingDocuments": [
- 31608,
- 31703,
- 31709,
- 31712,
- 31716
+ 14319,
+ 14414,
+ 14420,
+ 14423,
+ 14427
],
"groups": [
{
"title": "Properties",
"children": [
- 31608,
- 31703,
- 31709,
- 31712,
- 31716
+ 14319,
+ 14414,
+ 14420,
+ 14423,
+ 14427
]
}
],
@@ -581594,12 +582500,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 125,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L125"
}
],
"signatures": [
{
- "id": 31601,
+ "id": 14312,
"name": "updateOrderEditAddItemWorkflow",
"variant": "signature",
"kind": 4096,
@@ -581655,12 +582561,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts",
"line": 125,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-add-item.ts#L125"
}
],
"typeParameters": [
{
- "id": 31602,
+ "id": 14313,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -581671,7 +582577,7 @@
}
},
{
- "id": 31603,
+ "id": 14314,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -581684,7 +582590,7 @@
],
"parameters": [
{
- "id": 31604,
+ "id": 14315,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -581708,14 +582614,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 31605,
+ "id": 14316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31606,
+ "id": 14317,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -581738,7 +582644,7 @@
}
},
{
- "id": 31607,
+ "id": 14318,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -581765,8 +582671,8 @@
{
"title": "Properties",
"children": [
- 31606,
- 31607
+ 14317,
+ 14318
]
}
],
@@ -581859,14 +582765,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -581881,7 +582787,7 @@
]
},
{
- "id": 31720,
+ "id": 14431,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -581899,7 +582805,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L35"
}
],
"type": {
@@ -581913,7 +582819,7 @@
}
},
{
- "id": 31721,
+ "id": 14432,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -581931,7 +582837,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L39"
}
],
"type": {
@@ -581945,7 +582851,7 @@
}
},
{
- "id": 31722,
+ "id": 14433,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -581963,7 +582869,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L43"
}
],
"type": {
@@ -581978,7 +582884,7 @@
}
},
{
- "id": 31723,
+ "id": 14434,
"name": "updateOrderEditItemQuantityValidationStep",
"variant": "declaration",
"kind": 64,
@@ -582013,7 +582919,7 @@
},
"children": [
{
- "id": 31732,
+ "id": 14443,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -582031,7 +582937,7 @@
}
},
{
- "id": 31733,
+ "id": 14444,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -582053,8 +582959,8 @@
{
"title": "Properties",
"children": [
- 31732,
- 31733
+ 14443,
+ 14444
]
}
],
@@ -582063,12 +582969,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 78,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L78"
}
],
"signatures": [
{
- "id": 31724,
+ "id": 14435,
"name": "updateOrderEditItemQuantityValidationStep",
"variant": "signature",
"kind": 4096,
@@ -582106,12 +583012,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 78,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L78"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L78"
}
],
"parameters": [
{
- "id": 31725,
+ "id": 14436,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -582121,7 +583027,7 @@
"types": [
{
"type": "reference",
- "target": 31718,
+ "target": 14429,
"name": "UpdateOrderEditItemQuantityValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -582134,7 +583040,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31718,
+ "target": 14429,
"name": "UpdateOrderEditItemQuantityValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -582167,14 +583073,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31726,
+ "id": 14437,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31727,
+ "id": 14438,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -582188,7 +583094,7 @@
],
"signatures": [
{
- "id": 31728,
+ "id": 14439,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -582202,7 +583108,7 @@
],
"parameters": [
{
- "id": 31729,
+ "id": 14440,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -582213,14 +583119,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31730,
+ "id": 14441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31731,
+ "id": 14442,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -582244,7 +583150,7 @@
{
"title": "Properties",
"children": [
- 31731
+ 14442
]
}
],
@@ -582321,7 +583227,7 @@
{
"title": "Methods",
"children": [
- 31727
+ 14438
]
}
],
@@ -582355,7 +583261,7 @@
]
},
{
- "id": 31734,
+ "id": 14445,
"name": "updateOrderEditItemQuantityWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -582367,7 +583273,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 105,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L105"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L105"
}
],
"type": {
@@ -582377,7 +583283,7 @@
"defaultValue": "\"update-order-edit-update-quantity\""
},
{
- "id": 31735,
+ "id": 14446,
"name": "updateOrderEditItemQuantityWorkflow",
"variant": "declaration",
"kind": 64,
@@ -582438,7 +583344,7 @@
},
"children": [
{
- "id": 31743,
+ "id": 14454,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -582461,7 +583367,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31744,
+ "id": 14455,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -582475,7 +583381,7 @@
],
"signatures": [
{
- "id": 31745,
+ "id": 14456,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -582503,7 +583409,7 @@
],
"parameters": [
{
- "id": 31746,
+ "id": 14457,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -582519,14 +583425,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31747,
+ "id": 14458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31748,
+ "id": 14459,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -582586,7 +583492,7 @@
{
"title": "Properties",
"children": [
- 31748
+ 14459
]
}
],
@@ -582607,14 +583513,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31749,
+ "id": 14460,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31762,
+ "id": 14473,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -582660,7 +583566,7 @@
}
},
{
- "id": 31822,
+ "id": 14533,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -582706,7 +583612,7 @@
}
},
{
- "id": 31823,
+ "id": 14534,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -582752,7 +583658,7 @@
}
},
{
- "id": 31824,
+ "id": 14535,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -582809,7 +583715,7 @@
}
},
{
- "id": 31825,
+ "id": 14536,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -582865,7 +583771,7 @@
}
},
{
- "id": 31790,
+ "id": 14501,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -582922,7 +583828,7 @@
}
},
{
- "id": 31791,
+ "id": 14502,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -582979,7 +583885,7 @@
}
},
{
- "id": 31792,
+ "id": 14503,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -583036,7 +583942,7 @@
}
},
{
- "id": 31767,
+ "id": 14478,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -583093,7 +583999,7 @@
}
},
{
- "id": 31793,
+ "id": 14504,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -583139,7 +584045,7 @@
}
},
{
- "id": 31794,
+ "id": 14505,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -583209,7 +584115,7 @@
}
},
{
- "id": 31795,
+ "id": 14506,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -583279,7 +584185,7 @@
}
},
{
- "id": 31826,
+ "id": 14537,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -583355,7 +584261,7 @@
}
},
{
- "id": 31796,
+ "id": 14507,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -583431,7 +584337,7 @@
}
},
{
- "id": 31827,
+ "id": 14538,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -583501,7 +584407,7 @@
}
},
{
- "id": 31828,
+ "id": 14539,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -583558,7 +584464,7 @@
}
},
{
- "id": 31766,
+ "id": 14477,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -583653,7 +584559,7 @@
}
},
{
- "id": 31821,
+ "id": 14532,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -583728,7 +584634,7 @@
}
},
{
- "id": 31763,
+ "id": 14474,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -583797,7 +584703,7 @@
}
},
{
- "id": 31764,
+ "id": 14475,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -583866,7 +584772,7 @@
}
},
{
- "id": 31765,
+ "id": 14476,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -583941,7 +584847,7 @@
}
},
{
- "id": 31797,
+ "id": 14508,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -583997,7 +584903,7 @@
}
},
{
- "id": 31798,
+ "id": 14509,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -584053,7 +584959,7 @@
}
},
{
- "id": 31799,
+ "id": 14510,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -584109,7 +585015,7 @@
}
},
{
- "id": 31771,
+ "id": 14482,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -584165,7 +585071,7 @@
}
},
{
- "id": 31772,
+ "id": 14483,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -584221,7 +585127,7 @@
}
},
{
- "id": 31773,
+ "id": 14484,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -584277,7 +585183,7 @@
}
},
{
- "id": 31829,
+ "id": 14540,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -584333,7 +585239,7 @@
}
},
{
- "id": 31768,
+ "id": 14479,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -584389,7 +585295,7 @@
}
},
{
- "id": 31769,
+ "id": 14480,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -584445,7 +585351,7 @@
}
},
{
- "id": 31770,
+ "id": 14481,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -584501,7 +585407,7 @@
}
},
{
- "id": 31774,
+ "id": 14485,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -584557,7 +585463,7 @@
}
},
{
- "id": 31775,
+ "id": 14486,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -584613,7 +585519,7 @@
}
},
{
- "id": 31776,
+ "id": 14487,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -584669,7 +585575,7 @@
}
},
{
- "id": 31830,
+ "id": 14541,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -584725,7 +585631,7 @@
}
},
{
- "id": 31777,
+ "id": 14488,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -584781,7 +585687,7 @@
}
},
{
- "id": 31778,
+ "id": 14489,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -584837,7 +585743,7 @@
}
},
{
- "id": 31820,
+ "id": 14531,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -584893,7 +585799,7 @@
}
},
{
- "id": 31800,
+ "id": 14511,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -584949,7 +585855,7 @@
}
},
{
- "id": 31801,
+ "id": 14512,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -585005,7 +585911,7 @@
}
},
{
- "id": 31802,
+ "id": 14513,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -585061,7 +585967,7 @@
}
},
{
- "id": 31803,
+ "id": 14514,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -585117,7 +586023,7 @@
}
},
{
- "id": 31804,
+ "id": 14515,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -585173,7 +586079,7 @@
}
},
{
- "id": 31831,
+ "id": 14542,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -585229,7 +586135,7 @@
}
},
{
- "id": 31805,
+ "id": 14516,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -585285,7 +586191,7 @@
}
},
{
- "id": 31806,
+ "id": 14517,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -585341,7 +586247,7 @@
}
},
{
- "id": 31807,
+ "id": 14518,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -585397,7 +586303,7 @@
}
},
{
- "id": 31750,
+ "id": 14461,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -585453,7 +586359,7 @@
}
},
{
- "id": 31751,
+ "id": 14462,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -585493,14 +586399,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31752,
+ "id": 14463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31753,
+ "id": 14464,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -585532,7 +586438,7 @@
{
"title": "Properties",
"children": [
- 31753
+ 14464
]
}
],
@@ -585572,14 +586478,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31754,
+ "id": 14465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31755,
+ "id": 14466,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -585611,7 +586517,7 @@
{
"title": "Properties",
"children": [
- 31755
+ 14466
]
}
],
@@ -585635,7 +586541,7 @@
}
},
{
- "id": 31756,
+ "id": 14467,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -585675,14 +586581,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31757,
+ "id": 14468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31758,
+ "id": 14469,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -585714,7 +586620,7 @@
{
"title": "Properties",
"children": [
- 31758
+ 14469
]
}
],
@@ -585754,14 +586660,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31759,
+ "id": 14470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31760,
+ "id": 14471,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -585793,7 +586699,7 @@
{
"title": "Properties",
"children": [
- 31760
+ 14471
]
}
],
@@ -585817,7 +586723,7 @@
}
},
{
- "id": 31761,
+ "id": 14472,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -585867,57 +586773,57 @@
{
"title": "Properties",
"children": [
- 31762,
- 31822,
- 31823,
- 31824,
- 31825,
- 31790,
- 31791,
- 31792,
- 31767,
- 31793,
- 31794,
- 31795,
- 31826,
- 31796,
- 31827,
- 31828,
- 31766,
- 31821,
- 31763,
- 31764,
- 31765,
- 31797,
- 31798,
- 31799,
- 31771,
- 31772,
- 31773,
- 31829,
- 31768,
- 31769,
- 31770,
- 31774,
- 31775,
- 31776,
- 31830,
- 31777,
- 31778,
- 31820,
- 31800,
- 31801,
- 31802,
- 31803,
- 31804,
- 31831,
- 31805,
- 31806,
- 31807,
- 31750,
- 31751,
- 31756,
- 31761
+ 14473,
+ 14533,
+ 14534,
+ 14535,
+ 14536,
+ 14501,
+ 14502,
+ 14503,
+ 14478,
+ 14504,
+ 14505,
+ 14506,
+ 14537,
+ 14507,
+ 14538,
+ 14539,
+ 14477,
+ 14532,
+ 14474,
+ 14475,
+ 14476,
+ 14508,
+ 14509,
+ 14510,
+ 14482,
+ 14483,
+ 14484,
+ 14540,
+ 14479,
+ 14480,
+ 14481,
+ 14485,
+ 14486,
+ 14487,
+ 14541,
+ 14488,
+ 14489,
+ 14531,
+ 14511,
+ 14512,
+ 14513,
+ 14514,
+ 14515,
+ 14542,
+ 14516,
+ 14517,
+ 14518,
+ 14461,
+ 14462,
+ 14467,
+ 14472
]
}
],
@@ -585962,14 +586868,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31832,
+ "id": 14543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31833,
+ "id": 14544,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -585983,7 +586889,7 @@
],
"signatures": [
{
- "id": 31834,
+ "id": 14545,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -585997,7 +586903,7 @@
],
"parameters": [
{
- "id": 31835,
+ "id": 14546,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -586008,14 +586914,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31836,
+ "id": 14547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31837,
+ "id": 14548,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -586039,7 +586945,7 @@
{
"title": "Properties",
"children": [
- 31837
+ 14548
]
}
],
@@ -586121,7 +587027,7 @@
{
"title": "Methods",
"children": [
- 31833
+ 14544
]
}
],
@@ -586162,7 +587068,7 @@
}
},
{
- "id": 31838,
+ "id": 14549,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -586185,7 +587091,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31839,
+ "id": 14550,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -586199,7 +587105,7 @@
],
"signatures": [
{
- "id": 31840,
+ "id": 14551,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -586227,7 +587133,7 @@
],
"typeParameters": [
{
- "id": 31841,
+ "id": 14552,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -586238,7 +587144,7 @@
}
},
{
- "id": 31842,
+ "id": 14553,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -586251,7 +587157,7 @@
],
"parameters": [
{
- "id": 31843,
+ "id": 14554,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -586284,7 +587190,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -586304,7 +587210,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -586337,7 +587243,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -586357,7 +587263,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -586377,7 +587283,7 @@
}
},
{
- "id": 31844,
+ "id": 14555,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -586400,7 +587306,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31845,
+ "id": 14556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -586414,7 +587320,7 @@
],
"signatures": [
{
- "id": 31846,
+ "id": 14557,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -586436,7 +587342,7 @@
}
},
{
- "id": 31847,
+ "id": 14558,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -586459,7 +587365,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31848,
+ "id": 14559,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -586473,7 +587379,7 @@
],
"signatures": [
{
- "id": 31849,
+ "id": 14560,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -586487,7 +587393,7 @@
],
"parameters": [
{
- "id": 31850,
+ "id": 14561,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -586513,7 +587419,7 @@
}
},
{
- "id": 31851,
+ "id": 14562,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -586536,7 +587442,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31852,
+ "id": 14563,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -586547,7 +587453,7 @@
],
"documents": [
{
- "id": 42838,
+ "id": 25779,
"name": "updateOrderEditItemQuantityValidationStep",
"variant": "document",
"kind": 8388608,
@@ -586573,7 +587479,7 @@
"frontmatter": {}
},
{
- "id": 42839,
+ "id": 25780,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -586599,7 +587505,7 @@
"frontmatter": {}
},
{
- "id": 42840,
+ "id": 25781,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -586625,7 +587531,7 @@
"frontmatter": {}
},
{
- "id": 42841,
+ "id": 25782,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -586652,21 +587558,21 @@
}
],
"childrenIncludingDocuments": [
- 31743,
- 31838,
- 31844,
- 31847,
- 31851
+ 14454,
+ 14549,
+ 14555,
+ 14558,
+ 14562
],
"groups": [
{
"title": "Properties",
"children": [
- 31743,
- 31838,
- 31844,
- 31847,
- 31851
+ 14454,
+ 14549,
+ 14555,
+ 14558,
+ 14562
]
}
],
@@ -586675,12 +587581,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 132,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L132"
}
],
"signatures": [
{
- "id": 31736,
+ "id": 14447,
"name": "updateOrderEditItemQuantityWorkflow",
"variant": "signature",
"kind": 4096,
@@ -586744,12 +587650,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts",
"line": 132,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-item-quantity.ts#L132"
}
],
"typeParameters": [
{
- "id": 31737,
+ "id": 14448,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -586760,7 +587666,7 @@
}
},
{
- "id": 31738,
+ "id": 14449,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -586773,7 +587679,7 @@
],
"parameters": [
{
- "id": 31739,
+ "id": 14450,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -586797,14 +587703,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 31740,
+ "id": 14451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31741,
+ "id": 14452,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -586827,7 +587733,7 @@
}
},
{
- "id": 31742,
+ "id": 14453,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -586854,8 +587760,8 @@
{
"title": "Properties",
"children": [
- 31741,
- 31742
+ 14452,
+ 14453
]
}
],
@@ -586948,14 +587854,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -586970,7 +587876,7 @@
]
},
{
- "id": 31855,
+ "id": 14566,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -586988,7 +587894,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L37"
}
],
"type": {
@@ -587002,7 +587908,7 @@
}
},
{
- "id": 31856,
+ "id": 14567,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -587020,7 +587926,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L41"
}
],
"type": {
@@ -587059,7 +587965,7 @@
}
},
{
- "id": 31857,
+ "id": 14568,
"name": "updateOrderEditShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -587094,7 +588000,7 @@
},
"children": [
{
- "id": 31866,
+ "id": 14577,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -587112,7 +588018,7 @@
}
},
{
- "id": 31867,
+ "id": 14578,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -587134,8 +588040,8 @@
{
"title": "Properties",
"children": [
- 31866,
- 31867
+ 14577,
+ 14578
]
}
],
@@ -587144,12 +588050,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L74"
}
],
"signatures": [
{
- "id": 31858,
+ "id": 14569,
"name": "updateOrderEditShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -587187,12 +588093,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L74"
}
],
"parameters": [
{
- "id": 31859,
+ "id": 14570,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -587202,7 +588108,7 @@
"types": [
{
"type": "reference",
- "target": 31853,
+ "target": 14564,
"name": "UpdateOrderEditShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -587215,7 +588121,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31853,
+ "target": 14564,
"name": "UpdateOrderEditShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -587248,14 +588154,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31860,
+ "id": 14571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31861,
+ "id": 14572,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -587269,7 +588175,7 @@
],
"signatures": [
{
- "id": 31862,
+ "id": 14573,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -587283,7 +588189,7 @@
],
"parameters": [
{
- "id": 31863,
+ "id": 14574,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -587294,14 +588200,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31864,
+ "id": 14575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31865,
+ "id": 14576,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -587325,7 +588231,7 @@
{
"title": "Properties",
"children": [
- 31865
+ 14576
]
}
],
@@ -587402,7 +588308,7 @@
{
"title": "Methods",
"children": [
- 31861
+ 14572
]
}
],
@@ -587436,7 +588342,7 @@
]
},
{
- "id": 31868,
+ "id": 14579,
"name": "updateOrderEditShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -587448,7 +588354,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 98,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L98"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L98"
}
],
"type": {
@@ -587458,7 +588364,7 @@
"defaultValue": "\"update-order-edit-shipping-method\""
},
{
- "id": 31869,
+ "id": 14580,
"name": "updateOrderEditShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -587502,7 +588408,7 @@
},
"children": [
{
- "id": 31877,
+ "id": 14588,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -587525,7 +588431,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31878,
+ "id": 14589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -587539,7 +588445,7 @@
],
"signatures": [
{
- "id": 31879,
+ "id": 14590,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -587567,7 +588473,7 @@
],
"parameters": [
{
- "id": 31880,
+ "id": 14591,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -587583,14 +588489,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31881,
+ "id": 14592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31882,
+ "id": 14593,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -587678,7 +588584,7 @@
{
"title": "Properties",
"children": [
- 31882
+ 14593
]
}
],
@@ -587699,14 +588605,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31883,
+ "id": 14594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31896,
+ "id": 14607,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -587752,7 +588658,7 @@
}
},
{
- "id": 31956,
+ "id": 14667,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -587798,7 +588704,7 @@
}
},
{
- "id": 31957,
+ "id": 14668,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -587844,7 +588750,7 @@
}
},
{
- "id": 31958,
+ "id": 14669,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -587901,7 +588807,7 @@
}
},
{
- "id": 31959,
+ "id": 14670,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -587957,7 +588863,7 @@
}
},
{
- "id": 31924,
+ "id": 14635,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -588014,7 +588920,7 @@
}
},
{
- "id": 31925,
+ "id": 14636,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -588071,7 +588977,7 @@
}
},
{
- "id": 31926,
+ "id": 14637,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -588128,7 +589034,7 @@
}
},
{
- "id": 31901,
+ "id": 14612,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -588185,7 +589091,7 @@
}
},
{
- "id": 31927,
+ "id": 14638,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -588231,7 +589137,7 @@
}
},
{
- "id": 31928,
+ "id": 14639,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -588301,7 +589207,7 @@
}
},
{
- "id": 31929,
+ "id": 14640,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -588371,7 +589277,7 @@
}
},
{
- "id": 31960,
+ "id": 14671,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -588447,7 +589353,7 @@
}
},
{
- "id": 31930,
+ "id": 14641,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -588523,7 +589429,7 @@
}
},
{
- "id": 31961,
+ "id": 14672,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -588593,7 +589499,7 @@
}
},
{
- "id": 31962,
+ "id": 14673,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -588650,7 +589556,7 @@
}
},
{
- "id": 31900,
+ "id": 14611,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -588745,7 +589651,7 @@
}
},
{
- "id": 31955,
+ "id": 14666,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -588820,7 +589726,7 @@
}
},
{
- "id": 31897,
+ "id": 14608,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -588889,7 +589795,7 @@
}
},
{
- "id": 31898,
+ "id": 14609,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -588958,7 +589864,7 @@
}
},
{
- "id": 31899,
+ "id": 14610,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -589033,7 +589939,7 @@
}
},
{
- "id": 31931,
+ "id": 14642,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -589089,7 +589995,7 @@
}
},
{
- "id": 31932,
+ "id": 14643,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -589145,7 +590051,7 @@
}
},
{
- "id": 31933,
+ "id": 14644,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -589201,7 +590107,7 @@
}
},
{
- "id": 31905,
+ "id": 14616,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -589257,7 +590163,7 @@
}
},
{
- "id": 31906,
+ "id": 14617,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -589313,7 +590219,7 @@
}
},
{
- "id": 31907,
+ "id": 14618,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -589369,7 +590275,7 @@
}
},
{
- "id": 31963,
+ "id": 14674,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -589425,7 +590331,7 @@
}
},
{
- "id": 31902,
+ "id": 14613,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -589481,7 +590387,7 @@
}
},
{
- "id": 31903,
+ "id": 14614,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -589537,7 +590443,7 @@
}
},
{
- "id": 31904,
+ "id": 14615,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -589593,7 +590499,7 @@
}
},
{
- "id": 31908,
+ "id": 14619,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -589649,7 +590555,7 @@
}
},
{
- "id": 31909,
+ "id": 14620,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -589705,7 +590611,7 @@
}
},
{
- "id": 31910,
+ "id": 14621,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -589761,7 +590667,7 @@
}
},
{
- "id": 31964,
+ "id": 14675,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -589817,7 +590723,7 @@
}
},
{
- "id": 31911,
+ "id": 14622,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -589873,7 +590779,7 @@
}
},
{
- "id": 31912,
+ "id": 14623,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -589929,7 +590835,7 @@
}
},
{
- "id": 31954,
+ "id": 14665,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -589985,7 +590891,7 @@
}
},
{
- "id": 31934,
+ "id": 14645,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -590041,7 +590947,7 @@
}
},
{
- "id": 31935,
+ "id": 14646,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -590097,7 +591003,7 @@
}
},
{
- "id": 31936,
+ "id": 14647,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -590153,7 +591059,7 @@
}
},
{
- "id": 31937,
+ "id": 14648,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -590209,7 +591115,7 @@
}
},
{
- "id": 31938,
+ "id": 14649,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -590265,7 +591171,7 @@
}
},
{
- "id": 31965,
+ "id": 14676,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -590321,7 +591227,7 @@
}
},
{
- "id": 31939,
+ "id": 14650,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -590377,7 +591283,7 @@
}
},
{
- "id": 31940,
+ "id": 14651,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -590433,7 +591339,7 @@
}
},
{
- "id": 31941,
+ "id": 14652,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -590489,7 +591395,7 @@
}
},
{
- "id": 31884,
+ "id": 14595,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -590545,7 +591451,7 @@
}
},
{
- "id": 31885,
+ "id": 14596,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -590585,14 +591491,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31886,
+ "id": 14597,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31887,
+ "id": 14598,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -590624,7 +591530,7 @@
{
"title": "Properties",
"children": [
- 31887
+ 14598
]
}
],
@@ -590664,14 +591570,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31888,
+ "id": 14599,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31889,
+ "id": 14600,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -590703,7 +591609,7 @@
{
"title": "Properties",
"children": [
- 31889
+ 14600
]
}
],
@@ -590727,7 +591633,7 @@
}
},
{
- "id": 31890,
+ "id": 14601,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -590767,14 +591673,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31891,
+ "id": 14602,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31892,
+ "id": 14603,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -590806,7 +591712,7 @@
{
"title": "Properties",
"children": [
- 31892
+ 14603
]
}
],
@@ -590846,14 +591752,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31893,
+ "id": 14604,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31894,
+ "id": 14605,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -590885,7 +591791,7 @@
{
"title": "Properties",
"children": [
- 31894
+ 14605
]
}
],
@@ -590909,7 +591815,7 @@
}
},
{
- "id": 31895,
+ "id": 14606,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -590959,57 +591865,57 @@
{
"title": "Properties",
"children": [
- 31896,
- 31956,
- 31957,
- 31958,
- 31959,
- 31924,
- 31925,
- 31926,
- 31901,
- 31927,
- 31928,
- 31929,
- 31960,
- 31930,
- 31961,
- 31962,
- 31900,
- 31955,
- 31897,
- 31898,
- 31899,
- 31931,
- 31932,
- 31933,
- 31905,
- 31906,
- 31907,
- 31963,
- 31902,
- 31903,
- 31904,
- 31908,
- 31909,
- 31910,
- 31964,
- 31911,
- 31912,
- 31954,
- 31934,
- 31935,
- 31936,
- 31937,
- 31938,
- 31965,
- 31939,
- 31940,
- 31941,
- 31884,
- 31885,
- 31890,
- 31895
+ 14607,
+ 14667,
+ 14668,
+ 14669,
+ 14670,
+ 14635,
+ 14636,
+ 14637,
+ 14612,
+ 14638,
+ 14639,
+ 14640,
+ 14671,
+ 14641,
+ 14672,
+ 14673,
+ 14611,
+ 14666,
+ 14608,
+ 14609,
+ 14610,
+ 14642,
+ 14643,
+ 14644,
+ 14616,
+ 14617,
+ 14618,
+ 14674,
+ 14613,
+ 14614,
+ 14615,
+ 14619,
+ 14620,
+ 14621,
+ 14675,
+ 14622,
+ 14623,
+ 14665,
+ 14645,
+ 14646,
+ 14647,
+ 14648,
+ 14649,
+ 14676,
+ 14650,
+ 14651,
+ 14652,
+ 14595,
+ 14596,
+ 14601,
+ 14606
]
}
],
@@ -591054,14 +591960,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31966,
+ "id": 14677,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31967,
+ "id": 14678,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -591075,7 +591981,7 @@
],
"signatures": [
{
- "id": 31968,
+ "id": 14679,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -591089,7 +591995,7 @@
],
"parameters": [
{
- "id": 31969,
+ "id": 14680,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -591100,14 +592006,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31970,
+ "id": 14681,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31971,
+ "id": 14682,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -591131,7 +592037,7 @@
{
"title": "Properties",
"children": [
- 31971
+ 14682
]
}
],
@@ -591213,7 +592119,7 @@
{
"title": "Methods",
"children": [
- 31967
+ 14678
]
}
],
@@ -591254,7 +592160,7 @@
}
},
{
- "id": 31972,
+ "id": 14683,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -591277,7 +592183,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31973,
+ "id": 14684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -591291,7 +592197,7 @@
],
"signatures": [
{
- "id": 31974,
+ "id": 14685,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -591319,7 +592225,7 @@
],
"typeParameters": [
{
- "id": 31975,
+ "id": 14686,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -591330,7 +592236,7 @@
}
},
{
- "id": 31976,
+ "id": 14687,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -591343,7 +592249,7 @@
],
"parameters": [
{
- "id": 31977,
+ "id": 14688,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -591376,7 +592282,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -591410,7 +592316,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -591443,7 +592349,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -591463,7 +592369,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -591483,7 +592389,7 @@
}
},
{
- "id": 31978,
+ "id": 14689,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -591506,7 +592412,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31979,
+ "id": 14690,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -591520,7 +592426,7 @@
],
"signatures": [
{
- "id": 31980,
+ "id": 14691,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -591542,7 +592448,7 @@
}
},
{
- "id": 31981,
+ "id": 14692,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -591565,7 +592471,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31982,
+ "id": 14693,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -591579,7 +592485,7 @@
],
"signatures": [
{
- "id": 31983,
+ "id": 14694,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -591593,7 +592499,7 @@
],
"parameters": [
{
- "id": 31984,
+ "id": 14695,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -591619,7 +592525,7 @@
}
},
{
- "id": 31985,
+ "id": 14696,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -591642,14 +592548,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31986,
+ "id": 14697,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31987,
+ "id": 14698,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -591657,7 +592563,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 31988,
+ "id": 14699,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -591671,7 +592577,7 @@
],
"signatures": [
{
- "id": 31989,
+ "id": 14700,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -591685,7 +592591,7 @@
],
"typeParameters": [
{
- "id": 31990,
+ "id": 14701,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -591694,7 +592600,7 @@
],
"parameters": [
{
- "id": 31991,
+ "id": 14702,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -591709,14 +592615,14 @@
{
"type": "reflection",
"declaration": {
- "id": 31992,
+ "id": 14703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31993,
+ "id": 14704,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -591726,7 +592632,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 197,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L197"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L197"
}
],
"type": {
@@ -591736,7 +592642,7 @@
"defaultValue": "order"
},
{
- "id": 31994,
+ "id": 14705,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -591746,7 +592652,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L198"
}
],
"type": {
@@ -591756,7 +592662,7 @@
"defaultValue": "orderChange"
},
{
- "id": 31995,
+ "id": 14706,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -591774,7 +592680,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L199"
}
],
"type": {
@@ -591797,9 +592703,9 @@
{
"title": "Properties",
"children": [
- 31993,
- 31994,
- 31995
+ 14704,
+ 14705,
+ 14706
]
}
],
@@ -591808,7 +592714,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 196,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L196"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L196"
}
]
}
@@ -591843,7 +592749,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -591854,7 +592760,7 @@
}
},
{
- "id": 31996,
+ "id": 14707,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -591870,7 +592776,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -591891,7 +592797,7 @@
}
},
{
- "id": 42842,
+ "id": 25783,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -591958,14 +592864,14 @@
},
"signatures": [
{
- "id": 42843,
+ "id": 25784,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42844,
+ "id": 25785,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -591980,7 +592886,7 @@
},
"type": {
"type": "reference",
- "target": 31992,
+ "target": 14703,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -591994,13 +592900,13 @@
{
"title": "Properties",
"children": [
- 31987
+ 14698
]
},
{
"title": "Functions",
"children": [
- 42842
+ 25783
]
}
],
@@ -592017,7 +592923,7 @@
],
"documents": [
{
- "id": 42845,
+ "id": 25786,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -592043,7 +592949,7 @@
"frontmatter": {}
},
{
- "id": 42847,
+ "id": 25788,
"name": "updateOrderEditShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -592069,7 +592975,7 @@
"frontmatter": {}
},
{
- "id": 42848,
+ "id": 25789,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -592095,7 +593001,7 @@
"frontmatter": {}
},
{
- "id": 42849,
+ "id": 25790,
"name": "updateOrderShippingMethodsStep",
"variant": "document",
"kind": 8388608,
@@ -592122,21 +593028,21 @@
}
],
"childrenIncludingDocuments": [
- 31877,
- 31972,
- 31978,
- 31981,
- 31985
+ 14588,
+ 14683,
+ 14689,
+ 14692,
+ 14696
],
"groups": [
{
"title": "Properties",
"children": [
- 31877,
- 31972,
- 31978,
- 31981,
- 31985
+ 14588,
+ 14683,
+ 14689,
+ 14692,
+ 14696
]
}
],
@@ -592145,12 +593051,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 158,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L158"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L158"
}
],
"signatures": [
{
- "id": 31870,
+ "id": 14581,
"name": "updateOrderEditShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -592197,12 +593103,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 158,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L158"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L158"
}
],
"typeParameters": [
{
- "id": 31871,
+ "id": 14582,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -592213,7 +593119,7 @@
}
},
{
- "id": 31872,
+ "id": 14583,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -592226,7 +593132,7 @@
],
"parameters": [
{
- "id": 31873,
+ "id": 14584,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -592250,14 +593156,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 31874,
+ "id": 14585,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31875,
+ "id": 14586,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -592280,7 +593186,7 @@
}
},
{
- "id": 31876,
+ "id": 14587,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -592307,8 +593213,8 @@
{
"title": "Properties",
"children": [
- 31875,
- 31876
+ 14586,
+ 14587
]
}
],
@@ -592415,14 +593321,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -592437,14 +593343,14 @@
]
},
{
- "id": 31992,
+ "id": 14703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 31993,
+ "id": 14704,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -592454,7 +593360,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 197,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L197"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L197"
}
],
"type": {
@@ -592464,7 +593370,7 @@
"defaultValue": "order"
},
{
- "id": 31994,
+ "id": 14705,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -592474,7 +593380,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L198"
}
],
"type": {
@@ -592484,7 +593390,7 @@
"defaultValue": "orderChange"
},
{
- "id": 31995,
+ "id": 14706,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -592502,7 +593408,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L199"
}
],
"type": {
@@ -592525,9 +593431,9 @@
{
"title": "Properties",
"children": [
- 31993,
- 31994,
- 31995
+ 14704,
+ 14705,
+ 14706
]
}
],
@@ -592536,12 +593442,12 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 196,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L196"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L196"
}
]
},
{
- "id": 31993,
+ "id": 14704,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -592551,7 +593457,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 197,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L197"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L197"
}
],
"type": {
@@ -592561,7 +593467,7 @@
"defaultValue": "order"
},
{
- "id": 31994,
+ "id": 14705,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -592571,7 +593477,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L198"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L198"
}
],
"type": {
@@ -592581,7 +593487,7 @@
"defaultValue": "orderChange"
},
{
- "id": 31995,
+ "id": 14706,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -592599,7 +593505,7 @@
"fileName": "core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L199"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/order-edit/update-order-edit-shipping-method.ts#L199"
}
],
"type": {
@@ -592618,7 +593524,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 31999,
+ "id": 14710,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -592636,7 +593542,7 @@
"fileName": "core-flows/src/order/workflows/return/begin-receive-return.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L25"
}
],
"type": {
@@ -592650,7 +593556,7 @@
}
},
{
- "id": 32000,
+ "id": 14711,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -592668,7 +593574,7 @@
"fileName": "core-flows/src/order/workflows/return/begin-receive-return.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L29"
}
],
"type": {
@@ -592682,7 +593588,7 @@
}
},
{
- "id": 32001,
+ "id": 14712,
"name": "beginReceiveReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -592717,7 +593623,7 @@
},
"children": [
{
- "id": 32010,
+ "id": 14721,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -592735,7 +593641,7 @@
}
},
{
- "id": 32011,
+ "id": 14722,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -592757,8 +593663,8 @@
{
"title": "Properties",
"children": [
- 32010,
- 32011
+ 14721,
+ 14722
]
}
],
@@ -592767,12 +593673,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-receive-return.ts",
"line": 55,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L55"
}
],
"signatures": [
{
- "id": 32002,
+ "id": 14713,
"name": "beginReceiveReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -592810,12 +593716,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-receive-return.ts",
"line": 55,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L55"
}
],
"parameters": [
{
- "id": 32003,
+ "id": 14714,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -592825,7 +593731,7 @@
"types": [
{
"type": "reference",
- "target": 31997,
+ "target": 14708,
"name": "BeginReceiveReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -592838,7 +593744,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 31997,
+ "target": 14708,
"name": "BeginReceiveReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -592871,14 +593777,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32004,
+ "id": 14715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32005,
+ "id": 14716,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -592892,7 +593798,7 @@
],
"signatures": [
{
- "id": 32006,
+ "id": 14717,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -592906,7 +593812,7 @@
],
"parameters": [
{
- "id": 32007,
+ "id": 14718,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -592917,14 +593823,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32008,
+ "id": 14719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32009,
+ "id": 14720,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -592948,7 +593854,7 @@
{
"title": "Properties",
"children": [
- 32009
+ 14720
]
}
],
@@ -593025,7 +593931,7 @@
{
"title": "Methods",
"children": [
- 32005
+ 14716
]
}
],
@@ -593059,7 +593965,7 @@
]
},
{
- "id": 32012,
+ "id": 14723,
"name": "beginReceiveReturnWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -593071,7 +593977,7 @@
"fileName": "core-flows/src/order/workflows/return/begin-receive-return.ts",
"line": 69,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L69"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L69"
}
],
"type": {
@@ -593081,7 +593987,7 @@
"defaultValue": "\"begin-receive-return\""
},
{
- "id": 32013,
+ "id": 14724,
"name": "beginReceiveReturnWorkflow",
"variant": "declaration",
"kind": 64,
@@ -593134,7 +594040,7 @@
},
"children": [
{
- "id": 32021,
+ "id": 14732,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -593157,7 +594063,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32022,
+ "id": 14733,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -593171,7 +594077,7 @@
],
"signatures": [
{
- "id": 32023,
+ "id": 14734,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -593199,7 +594105,7 @@
],
"parameters": [
{
- "id": 32024,
+ "id": 14735,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -593215,14 +594121,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32025,
+ "id": 14736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32026,
+ "id": 14737,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -593282,7 +594188,7 @@
{
"title": "Properties",
"children": [
- 32026
+ 14737
]
}
],
@@ -593303,14 +594209,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32027,
+ "id": 14738,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32028,
+ "id": 14739,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -593356,7 +594262,7 @@
}
},
{
- "id": 32029,
+ "id": 14740,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -593402,7 +594308,7 @@
}
},
{
- "id": 32030,
+ "id": 14741,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -593491,7 +594397,7 @@
}
},
{
- "id": 32031,
+ "id": 14742,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -593556,7 +594462,7 @@
}
},
{
- "id": 32032,
+ "id": 14743,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -593602,7 +594508,7 @@
}
},
{
- "id": 32033,
+ "id": 14744,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -593648,7 +594554,7 @@
}
},
{
- "id": 32034,
+ "id": 14745,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -593694,7 +594600,7 @@
}
},
{
- "id": 32035,
+ "id": 14746,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -593740,7 +594646,7 @@
}
},
{
- "id": 32036,
+ "id": 14747,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -593799,7 +594705,7 @@
}
},
{
- "id": 32037,
+ "id": 14748,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -593858,7 +594764,7 @@
}
},
{
- "id": 32038,
+ "id": 14749,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -593917,7 +594823,7 @@
}
},
{
- "id": 32039,
+ "id": 14750,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -593976,7 +594882,7 @@
}
},
{
- "id": 32040,
+ "id": 14751,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -594041,7 +594947,7 @@
}
},
{
- "id": 32041,
+ "id": 14752,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -594097,7 +595003,7 @@
}
},
{
- "id": 32042,
+ "id": 14753,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -594156,7 +595062,7 @@
}
},
{
- "id": 32043,
+ "id": 14754,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -594233,7 +595139,7 @@
}
},
{
- "id": 32044,
+ "id": 14755,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -594292,7 +595198,7 @@
}
},
{
- "id": 32045,
+ "id": 14756,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -594369,7 +595275,7 @@
}
},
{
- "id": 32046,
+ "id": 14757,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -594428,7 +595334,7 @@
}
},
{
- "id": 32047,
+ "id": 14758,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -594487,7 +595393,7 @@
}
},
{
- "id": 32048,
+ "id": 14759,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -594576,7 +595482,7 @@
}
},
{
- "id": 32049,
+ "id": 14760,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -594653,7 +595559,7 @@
}
},
{
- "id": 32050,
+ "id": 14761,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -594712,7 +595618,7 @@
}
},
{
- "id": 32051,
+ "id": 14762,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -594789,7 +595695,7 @@
}
},
{
- "id": 32052,
+ "id": 14763,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -594858,7 +595764,7 @@
}
},
{
- "id": 32053,
+ "id": 14764,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -594931,32 +595837,32 @@
{
"title": "Properties",
"children": [
- 32028,
- 32029,
- 32030,
- 32031,
- 32032,
- 32033,
- 32034,
- 32035,
- 32036,
- 32037,
- 32038,
- 32039,
- 32040,
- 32041,
- 32042,
- 32043,
- 32044,
- 32045,
- 32046,
- 32047,
- 32048,
- 32049,
- 32050,
- 32051,
- 32052,
- 32053
+ 14739,
+ 14740,
+ 14741,
+ 14742,
+ 14743,
+ 14744,
+ 14745,
+ 14746,
+ 14747,
+ 14748,
+ 14749,
+ 14750,
+ 14751,
+ 14752,
+ 14753,
+ 14754,
+ 14755,
+ 14756,
+ 14757,
+ 14758,
+ 14759,
+ 14760,
+ 14761,
+ 14762,
+ 14763,
+ 14764
]
}
],
@@ -595001,14 +595907,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32054,
+ "id": 14765,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32055,
+ "id": 14766,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -595022,7 +595928,7 @@
],
"signatures": [
{
- "id": 32056,
+ "id": 14767,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -595036,7 +595942,7 @@
],
"parameters": [
{
- "id": 32057,
+ "id": 14768,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -595047,14 +595953,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32058,
+ "id": 14769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32059,
+ "id": 14770,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -595078,7 +595984,7 @@
{
"title": "Properties",
"children": [
- 32059
+ 14770
]
}
],
@@ -595160,7 +596066,7 @@
{
"title": "Methods",
"children": [
- 32055
+ 14766
]
}
],
@@ -595201,7 +596107,7 @@
}
},
{
- "id": 32060,
+ "id": 14771,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -595224,7 +596130,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32061,
+ "id": 14772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -595238,7 +596144,7 @@
],
"signatures": [
{
- "id": 32062,
+ "id": 14773,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -595266,7 +596172,7 @@
],
"typeParameters": [
{
- "id": 32063,
+ "id": 14774,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -595277,7 +596183,7 @@
}
},
{
- "id": 32064,
+ "id": 14775,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -595290,7 +596196,7 @@
],
"parameters": [
{
- "id": 32065,
+ "id": 14776,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -595323,7 +596229,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -595343,7 +596249,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -595376,7 +596282,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -595396,7 +596302,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -595416,7 +596322,7 @@
}
},
{
- "id": 32066,
+ "id": 14777,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -595439,7 +596345,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32067,
+ "id": 14778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -595453,7 +596359,7 @@
],
"signatures": [
{
- "id": 32068,
+ "id": 14779,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -595475,7 +596381,7 @@
}
},
{
- "id": 32069,
+ "id": 14780,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -595498,7 +596404,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32070,
+ "id": 14781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -595512,7 +596418,7 @@
],
"signatures": [
{
- "id": 32071,
+ "id": 14782,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -595526,7 +596432,7 @@
],
"parameters": [
{
- "id": 32072,
+ "id": 14783,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -595552,7 +596458,7 @@
}
},
{
- "id": 32073,
+ "id": 14784,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -595575,7 +596481,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32074,
+ "id": 14785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -595586,7 +596492,7 @@
],
"documents": [
{
- "id": 42850,
+ "id": 25791,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -595612,7 +596518,7 @@
"frontmatter": {}
},
{
- "id": 42851,
+ "id": 25792,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -595638,7 +596544,7 @@
"frontmatter": {}
},
{
- "id": 42852,
+ "id": 25793,
"name": "beginReceiveReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -595664,7 +596570,7 @@
"frontmatter": {}
},
{
- "id": 42853,
+ "id": 25794,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -595691,21 +596597,21 @@
}
],
"childrenIncludingDocuments": [
- 32021,
- 32060,
- 32066,
- 32069,
- 32073
+ 14732,
+ 14771,
+ 14777,
+ 14780,
+ 14784
],
"groups": [
{
"title": "Properties",
"children": [
- 32021,
- 32060,
- 32066,
- 32069,
- 32073
+ 14732,
+ 14771,
+ 14777,
+ 14780,
+ 14784
]
}
],
@@ -595714,12 +596620,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-receive-return.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L91"
}
],
"signatures": [
{
- "id": 32014,
+ "id": 14725,
"name": "beginReceiveReturnWorkflow",
"variant": "signature",
"kind": 4096,
@@ -595775,12 +596681,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-receive-return.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-receive-return.ts#L91"
}
],
"typeParameters": [
{
- "id": 32015,
+ "id": 14726,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -595791,7 +596697,7 @@
}
},
{
- "id": 32016,
+ "id": 14727,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -595804,7 +596710,7 @@
],
"parameters": [
{
- "id": 32017,
+ "id": 14728,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -595828,14 +596734,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32018,
+ "id": 14729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32019,
+ "id": 14730,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -595858,7 +596764,7 @@
}
},
{
- "id": 32020,
+ "id": 14731,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -595885,8 +596791,8 @@
{
"title": "Properties",
"children": [
- 32019,
- 32020
+ 14730,
+ 14731
]
}
],
@@ -595979,14 +596885,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -596001,7 +596907,7 @@
]
},
{
- "id": 32077,
+ "id": 14788,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -596019,7 +596925,7 @@
"fileName": "core-flows/src/order/workflows/return/begin-return.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L24"
}
],
"type": {
@@ -596033,7 +596939,7 @@
}
},
{
- "id": 32078,
+ "id": 14789,
"name": "beginReturnOrderValidationStep",
"variant": "declaration",
"kind": 64,
@@ -596068,7 +596974,7 @@
},
"children": [
{
- "id": 32087,
+ "id": 14798,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -596086,7 +596992,7 @@
}
},
{
- "id": 32088,
+ "id": 14799,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -596108,8 +597014,8 @@
{
"title": "Properties",
"children": [
- 32087,
- 32088
+ 14798,
+ 14799
]
}
],
@@ -596118,12 +597024,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-return.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L46"
}
],
"signatures": [
{
- "id": 32079,
+ "id": 14790,
"name": "beginReturnOrderValidationStep",
"variant": "signature",
"kind": 4096,
@@ -596161,12 +597067,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-return.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L46"
}
],
"parameters": [
{
- "id": 32080,
+ "id": 14791,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -596176,7 +597082,7 @@
"types": [
{
"type": "reference",
- "target": 32075,
+ "target": 14786,
"name": "BeginReturnOrderValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -596189,7 +597095,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32075,
+ "target": 14786,
"name": "BeginReturnOrderValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -596222,14 +597128,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32081,
+ "id": 14792,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32082,
+ "id": 14793,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -596243,7 +597149,7 @@
],
"signatures": [
{
- "id": 32083,
+ "id": 14794,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -596257,7 +597163,7 @@
],
"parameters": [
{
- "id": 32084,
+ "id": 14795,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -596268,14 +597174,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32085,
+ "id": 14796,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32086,
+ "id": 14797,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -596299,7 +597205,7 @@
{
"title": "Properties",
"children": [
- 32086
+ 14797
]
}
],
@@ -596376,7 +597282,7 @@
{
"title": "Methods",
"children": [
- 32082
+ 14793
]
}
],
@@ -596410,7 +597316,7 @@
]
},
{
- "id": 32089,
+ "id": 14800,
"name": "beginReturnOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -596422,7 +597328,7 @@
"fileName": "core-flows/src/order/workflows/return/begin-return.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L53"
}
],
"type": {
@@ -596432,7 +597338,7 @@
"defaultValue": "\"begin-return-order\""
},
{
- "id": 32090,
+ "id": 14801,
"name": "beginReturnOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -596485,7 +597391,7 @@
},
"children": [
{
- "id": 32098,
+ "id": 14809,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -596508,7 +597414,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32099,
+ "id": 14810,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -596522,7 +597428,7 @@
],
"signatures": [
{
- "id": 32100,
+ "id": 14811,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -596550,7 +597456,7 @@
],
"parameters": [
{
- "id": 32101,
+ "id": 14812,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -596566,14 +597472,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32102,
+ "id": 14813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32103,
+ "id": 14814,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -596633,7 +597539,7 @@
{
"title": "Properties",
"children": [
- 32103
+ 14814
]
}
],
@@ -596654,14 +597560,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32104,
+ "id": 14815,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32105,
+ "id": 14816,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -596707,7 +597613,7 @@
}
},
{
- "id": 32106,
+ "id": 14817,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -596753,7 +597659,7 @@
}
},
{
- "id": 32107,
+ "id": 14818,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -596842,7 +597748,7 @@
}
},
{
- "id": 32108,
+ "id": 14819,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -596907,7 +597813,7 @@
}
},
{
- "id": 32109,
+ "id": 14820,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -596953,7 +597859,7 @@
}
},
{
- "id": 32110,
+ "id": 14821,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -596999,7 +597905,7 @@
}
},
{
- "id": 32111,
+ "id": 14822,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -597045,7 +597951,7 @@
}
},
{
- "id": 32112,
+ "id": 14823,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -597091,7 +597997,7 @@
}
},
{
- "id": 32113,
+ "id": 14824,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -597150,7 +598056,7 @@
}
},
{
- "id": 32114,
+ "id": 14825,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -597209,7 +598115,7 @@
}
},
{
- "id": 32115,
+ "id": 14826,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -597268,7 +598174,7 @@
}
},
{
- "id": 32116,
+ "id": 14827,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -597327,7 +598233,7 @@
}
},
{
- "id": 32117,
+ "id": 14828,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -597392,7 +598298,7 @@
}
},
{
- "id": 32118,
+ "id": 14829,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -597448,7 +598354,7 @@
}
},
{
- "id": 32119,
+ "id": 14830,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -597507,7 +598413,7 @@
}
},
{
- "id": 32120,
+ "id": 14831,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -597584,7 +598490,7 @@
}
},
{
- "id": 32121,
+ "id": 14832,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -597643,7 +598549,7 @@
}
},
{
- "id": 32122,
+ "id": 14833,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -597720,7 +598626,7 @@
}
},
{
- "id": 32123,
+ "id": 14834,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -597779,7 +598685,7 @@
}
},
{
- "id": 32124,
+ "id": 14835,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -597838,7 +598744,7 @@
}
},
{
- "id": 32125,
+ "id": 14836,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -597927,7 +598833,7 @@
}
},
{
- "id": 32126,
+ "id": 14837,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -598004,7 +598910,7 @@
}
},
{
- "id": 32127,
+ "id": 14838,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -598063,7 +598969,7 @@
}
},
{
- "id": 32128,
+ "id": 14839,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -598140,7 +599046,7 @@
}
},
{
- "id": 32129,
+ "id": 14840,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -598209,7 +599115,7 @@
}
},
{
- "id": 32130,
+ "id": 14841,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -598282,32 +599188,32 @@
{
"title": "Properties",
"children": [
- 32105,
- 32106,
- 32107,
- 32108,
- 32109,
- 32110,
- 32111,
- 32112,
- 32113,
- 32114,
- 32115,
- 32116,
- 32117,
- 32118,
- 32119,
- 32120,
- 32121,
- 32122,
- 32123,
- 32124,
- 32125,
- 32126,
- 32127,
- 32128,
- 32129,
- 32130
+ 14816,
+ 14817,
+ 14818,
+ 14819,
+ 14820,
+ 14821,
+ 14822,
+ 14823,
+ 14824,
+ 14825,
+ 14826,
+ 14827,
+ 14828,
+ 14829,
+ 14830,
+ 14831,
+ 14832,
+ 14833,
+ 14834,
+ 14835,
+ 14836,
+ 14837,
+ 14838,
+ 14839,
+ 14840,
+ 14841
]
}
],
@@ -598352,14 +599258,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32131,
+ "id": 14842,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32132,
+ "id": 14843,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -598373,7 +599279,7 @@
],
"signatures": [
{
- "id": 32133,
+ "id": 14844,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -598387,7 +599293,7 @@
],
"parameters": [
{
- "id": 32134,
+ "id": 14845,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -598398,14 +599304,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32135,
+ "id": 14846,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32136,
+ "id": 14847,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -598429,7 +599335,7 @@
{
"title": "Properties",
"children": [
- 32136
+ 14847
]
}
],
@@ -598511,7 +599417,7 @@
{
"title": "Methods",
"children": [
- 32132
+ 14843
]
}
],
@@ -598552,7 +599458,7 @@
}
},
{
- "id": 32137,
+ "id": 14848,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -598575,7 +599481,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32138,
+ "id": 14849,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -598589,7 +599495,7 @@
],
"signatures": [
{
- "id": 32139,
+ "id": 14850,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -598617,7 +599523,7 @@
],
"typeParameters": [
{
- "id": 32140,
+ "id": 14851,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -598628,7 +599534,7 @@
}
},
{
- "id": 32141,
+ "id": 14852,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -598641,7 +599547,7 @@
],
"parameters": [
{
- "id": 32142,
+ "id": 14853,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -598674,7 +599580,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -598694,7 +599600,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -598727,7 +599633,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -598747,7 +599653,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -598767,7 +599673,7 @@
}
},
{
- "id": 32143,
+ "id": 14854,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -598790,7 +599696,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32144,
+ "id": 14855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -598804,7 +599710,7 @@
],
"signatures": [
{
- "id": 32145,
+ "id": 14856,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -598826,7 +599732,7 @@
}
},
{
- "id": 32146,
+ "id": 14857,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -598849,7 +599755,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32147,
+ "id": 14858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -598863,7 +599769,7 @@
],
"signatures": [
{
- "id": 32148,
+ "id": 14859,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -598877,7 +599783,7 @@
],
"parameters": [
{
- "id": 32149,
+ "id": 14860,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -598903,7 +599809,7 @@
}
},
{
- "id": 32150,
+ "id": 14861,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -598926,7 +599832,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32151,
+ "id": 14862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -598937,7 +599843,7 @@
],
"documents": [
{
- "id": 42854,
+ "id": 25795,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -598963,7 +599869,7 @@
"frontmatter": {}
},
{
- "id": 42855,
+ "id": 25796,
"name": "beginReturnOrderValidationStep",
"variant": "document",
"kind": 8388608,
@@ -598989,7 +599895,7 @@
"frontmatter": {}
},
{
- "id": 42856,
+ "id": 25797,
"name": "createReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -599015,7 +599921,7 @@
"frontmatter": {}
},
{
- "id": 42857,
+ "id": 25798,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -599042,21 +599948,21 @@
}
],
"childrenIncludingDocuments": [
- 32098,
- 32137,
- 32143,
- 32146,
- 32150
+ 14809,
+ 14848,
+ 14854,
+ 14857,
+ 14861
],
"groups": [
{
"title": "Properties",
"children": [
- 32098,
- 32137,
- 32143,
- 32146,
- 32150
+ 14809,
+ 14848,
+ 14854,
+ 14857,
+ 14861
]
}
],
@@ -599065,12 +599971,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-return.ts",
"line": 75,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L75"
}
],
"signatures": [
{
- "id": 32091,
+ "id": 14802,
"name": "beginReturnOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -599126,12 +600032,12 @@
"fileName": "core-flows/src/order/workflows/return/begin-return.ts",
"line": 75,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/begin-return.ts#L75"
}
],
"typeParameters": [
{
- "id": 32092,
+ "id": 14803,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -599142,7 +600048,7 @@
}
},
{
- "id": 32093,
+ "id": 14804,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -599155,7 +600061,7 @@
],
"parameters": [
{
- "id": 32094,
+ "id": 14805,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -599179,14 +600085,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32095,
+ "id": 14806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32096,
+ "id": 14807,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -599209,7 +600115,7 @@
}
},
{
- "id": 32097,
+ "id": 14808,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -599236,8 +600142,8 @@
{
"title": "Properties",
"children": [
- 32096,
- 32097
+ 14807,
+ 14808
]
}
],
@@ -599330,14 +600236,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -599352,7 +600258,7 @@
]
},
{
- "id": 32154,
+ "id": 14865,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -599370,7 +600276,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L26"
}
],
"type": {
@@ -599384,7 +600290,7 @@
}
},
{
- "id": 32155,
+ "id": 14866,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -599402,7 +600308,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L30"
}
],
"type": {
@@ -599416,7 +600322,7 @@
}
},
{
- "id": 32156,
+ "id": 14867,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -599434,7 +600340,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L34"
}
],
"type": {
@@ -599448,7 +600354,7 @@
}
},
{
- "id": 32157,
+ "id": 14868,
"name": "cancelReceiveReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -599483,7 +600389,7 @@
},
"children": [
{
- "id": 32166,
+ "id": 14877,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -599501,7 +600407,7 @@
}
},
{
- "id": 32167,
+ "id": 14878,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -599523,8 +600429,8 @@
{
"title": "Properties",
"children": [
- 32166,
- 32167
+ 14877,
+ 14878
]
}
],
@@ -599533,12 +600439,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L64"
}
],
"signatures": [
{
- "id": 32158,
+ "id": 14869,
"name": "cancelReceiveReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -599576,12 +600482,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L64"
}
],
"parameters": [
{
- "id": 32159,
+ "id": 14870,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -599591,7 +600497,7 @@
"types": [
{
"type": "reference",
- "target": 32152,
+ "target": 14863,
"name": "CancelReceiveReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -599604,7 +600510,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32152,
+ "target": 14863,
"name": "CancelReceiveReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -599637,14 +600543,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32160,
+ "id": 14871,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32161,
+ "id": 14872,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -599658,7 +600564,7 @@
],
"signatures": [
{
- "id": 32162,
+ "id": 14873,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -599672,7 +600578,7 @@
],
"parameters": [
{
- "id": 32163,
+ "id": 14874,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -599683,14 +600589,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32164,
+ "id": 14875,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32165,
+ "id": 14876,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -599714,7 +600620,7 @@
{
"title": "Properties",
"children": [
- 32165
+ 14876
]
}
],
@@ -599791,7 +600697,7 @@
{
"title": "Methods",
"children": [
- 32161
+ 14872
]
}
],
@@ -599825,7 +600731,7 @@
]
},
{
- "id": 32170,
+ "id": 14881,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -599843,7 +600749,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L84"
}
],
"type": {
@@ -599852,7 +600758,7 @@
}
},
{
- "id": 32171,
+ "id": 14882,
"name": "cancelReturnReceiveWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -599864,7 +600770,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 87,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L87"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L87"
}
],
"type": {
@@ -599874,7 +600780,7 @@
"defaultValue": "\"cancel-receive-return\""
},
{
- "id": 32172,
+ "id": 14883,
"name": "cancelReturnReceiveWorkflow",
"variant": "declaration",
"kind": 64,
@@ -599918,7 +600824,7 @@
},
"children": [
{
- "id": 32180,
+ "id": 14891,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -599941,7 +600847,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32181,
+ "id": 14892,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -599955,7 +600861,7 @@
],
"signatures": [
{
- "id": 32182,
+ "id": 14893,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -599983,7 +600889,7 @@
],
"parameters": [
{
- "id": 32183,
+ "id": 14894,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -599999,14 +600905,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32184,
+ "id": 14895,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32185,
+ "id": 14896,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -600031,7 +600937,7 @@
"types": [
{
"type": "reference",
- "target": 32168,
+ "target": 14879,
"name": "CancelReturnReceiveWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -600044,7 +600950,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32168,
+ "target": 14879,
"name": "CancelReturnReceiveWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -600060,7 +600966,7 @@
{
"title": "Properties",
"children": [
- 32185
+ 14896
]
}
],
@@ -600096,14 +601002,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32186,
+ "id": 14897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32187,
+ "id": 14898,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -600117,7 +601023,7 @@
],
"signatures": [
{
- "id": 32188,
+ "id": 14899,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -600131,7 +601037,7 @@
],
"parameters": [
{
- "id": 32189,
+ "id": 14900,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -600142,14 +601048,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32190,
+ "id": 14901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32191,
+ "id": 14902,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -600173,7 +601079,7 @@
{
"title": "Properties",
"children": [
- 32191
+ 14902
]
}
],
@@ -600250,7 +601156,7 @@
{
"title": "Methods",
"children": [
- 32187
+ 14898
]
}
],
@@ -600286,7 +601192,7 @@
}
},
{
- "id": 32192,
+ "id": 14903,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -600309,7 +601215,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32193,
+ "id": 14904,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -600323,7 +601229,7 @@
],
"signatures": [
{
- "id": 32194,
+ "id": 14905,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -600351,7 +601257,7 @@
],
"typeParameters": [
{
- "id": 32195,
+ "id": 14906,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -600362,7 +601268,7 @@
}
},
{
- "id": 32196,
+ "id": 14907,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -600375,7 +601281,7 @@
],
"parameters": [
{
- "id": 32197,
+ "id": 14908,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -600408,7 +601314,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -600419,13 +601325,13 @@
},
"trueType": {
"type": "reference",
- "target": 32168,
+ "target": 14879,
"name": "CancelReturnReceiveWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -600458,7 +601364,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -600473,7 +601379,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -600493,7 +601399,7 @@
}
},
{
- "id": 32198,
+ "id": 14909,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -600516,7 +601422,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32199,
+ "id": 14910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -600530,7 +601436,7 @@
],
"signatures": [
{
- "id": 32200,
+ "id": 14911,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -600552,7 +601458,7 @@
}
},
{
- "id": 32201,
+ "id": 14912,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -600575,7 +601481,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32202,
+ "id": 14913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -600589,7 +601495,7 @@
],
"signatures": [
{
- "id": 32203,
+ "id": 14914,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -600603,7 +601509,7 @@
],
"parameters": [
{
- "id": 32204,
+ "id": 14915,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -600629,7 +601535,7 @@
}
},
{
- "id": 32205,
+ "id": 14916,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -600652,7 +601558,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32206,
+ "id": 14917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -600663,7 +601569,7 @@
],
"documents": [
{
- "id": 42858,
+ "id": 25799,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -600689,7 +601595,7 @@
"frontmatter": {}
},
{
- "id": 42859,
+ "id": 25800,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -600715,7 +601621,7 @@
"frontmatter": {}
},
{
- "id": 42860,
+ "id": 25801,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -600741,7 +601647,7 @@
"frontmatter": {}
},
{
- "id": 42861,
+ "id": 25802,
"name": "cancelReceiveReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -600767,7 +601673,7 @@
"frontmatter": {}
},
{
- "id": 42862,
+ "id": 25803,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -600794,21 +601700,21 @@
}
],
"childrenIncludingDocuments": [
- 32180,
- 32192,
- 32198,
- 32201,
- 32205
+ 14891,
+ 14903,
+ 14909,
+ 14912,
+ 14916
],
"groups": [
{
"title": "Properties",
"children": [
- 32180,
- 32192,
- 32198,
- 32201,
- 32205
+ 14891,
+ 14903,
+ 14909,
+ 14912,
+ 14916
]
}
],
@@ -600817,12 +601723,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 107,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L107"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L107"
}
],
"signatures": [
{
- "id": 32173,
+ "id": 14884,
"name": "cancelReturnReceiveWorkflow",
"variant": "signature",
"kind": 4096,
@@ -600869,12 +601775,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-receive-return.ts",
"line": 107,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L107"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-receive-return.ts#L107"
}
],
"typeParameters": [
{
- "id": 32174,
+ "id": 14885,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -600885,7 +601791,7 @@
}
},
{
- "id": 32175,
+ "id": 14886,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -600898,7 +601804,7 @@
],
"parameters": [
{
- "id": 32176,
+ "id": 14887,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -600922,14 +601828,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32177,
+ "id": 14888,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32178,
+ "id": 14889,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -600952,7 +601858,7 @@
}
},
{
- "id": 32179,
+ "id": 14890,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -600979,8 +601885,8 @@
{
"title": "Properties",
"children": [
- 32178,
- 32179
+ 14889,
+ 14890
]
}
],
@@ -601055,7 +601961,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32168,
+ "target": 14879,
"name": "CancelReturnReceiveWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -601065,14 +601971,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -601087,7 +601993,7 @@
]
},
{
- "id": 32209,
+ "id": 14920,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -601105,7 +602011,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L32"
}
],
"type": {
@@ -601119,7 +602025,7 @@
}
},
{
- "id": 32210,
+ "id": 14921,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -601137,7 +602043,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L36"
}
],
"type": {
@@ -601151,7 +602057,7 @@
}
},
{
- "id": 32211,
+ "id": 14922,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -601169,7 +602075,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L40"
}
],
"type": {
@@ -601183,7 +602089,7 @@
}
},
{
- "id": 32212,
+ "id": 14923,
"name": "cancelRequestReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -601218,7 +602124,7 @@
},
"children": [
{
- "id": 32221,
+ "id": 14932,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -601236,7 +602142,7 @@
}
},
{
- "id": 32222,
+ "id": 14933,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -601258,8 +602164,8 @@
{
"title": "Properties",
"children": [
- 32221,
- 32222
+ 14932,
+ 14933
]
}
],
@@ -601268,12 +602174,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L71"
}
],
"signatures": [
{
- "id": 32213,
+ "id": 14924,
"name": "cancelRequestReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -601311,12 +602217,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L71"
}
],
"parameters": [
{
- "id": 32214,
+ "id": 14925,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -601326,7 +602232,7 @@
"types": [
{
"type": "reference",
- "target": 32207,
+ "target": 14918,
"name": "CancelRequestReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -601339,7 +602245,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32207,
+ "target": 14918,
"name": "CancelRequestReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -601372,14 +602278,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32215,
+ "id": 14926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32216,
+ "id": 14927,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -601393,7 +602299,7 @@
],
"signatures": [
{
- "id": 32217,
+ "id": 14928,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -601407,7 +602313,7 @@
],
"parameters": [
{
- "id": 32218,
+ "id": 14929,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -601418,14 +602324,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32219,
+ "id": 14930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32220,
+ "id": 14931,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -601449,7 +602355,7 @@
{
"title": "Properties",
"children": [
- 32220
+ 14931
]
}
],
@@ -601526,7 +602432,7 @@
{
"title": "Methods",
"children": [
- 32216
+ 14927
]
}
],
@@ -601560,7 +602466,7 @@
]
},
{
- "id": 32225,
+ "id": 14936,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -601578,7 +602484,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L91"
}
],
"type": {
@@ -601587,7 +602493,7 @@
}
},
{
- "id": 32226,
+ "id": 14937,
"name": "cancelReturnRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -601599,7 +602505,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 94,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L94"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L94"
}
],
"type": {
@@ -601609,7 +602515,7 @@
"defaultValue": "\"cancel-return-request\""
},
{
- "id": 32227,
+ "id": 14938,
"name": "cancelReturnRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -601653,7 +602559,7 @@
},
"children": [
{
- "id": 32235,
+ "id": 14946,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -601676,7 +602582,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32236,
+ "id": 14947,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -601690,7 +602596,7 @@
],
"signatures": [
{
- "id": 32237,
+ "id": 14948,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -601718,7 +602624,7 @@
],
"parameters": [
{
- "id": 32238,
+ "id": 14949,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -601734,14 +602640,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32239,
+ "id": 14950,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32240,
+ "id": 14951,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -601766,7 +602672,7 @@
"types": [
{
"type": "reference",
- "target": 32223,
+ "target": 14934,
"name": "CancelRequestReturnWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -601779,7 +602685,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32223,
+ "target": 14934,
"name": "CancelRequestReturnWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -601795,7 +602701,7 @@
{
"title": "Properties",
"children": [
- 32240
+ 14951
]
}
],
@@ -601831,14 +602737,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32241,
+ "id": 14952,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32242,
+ "id": 14953,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -601852,7 +602758,7 @@
],
"signatures": [
{
- "id": 32243,
+ "id": 14954,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -601866,7 +602772,7 @@
],
"parameters": [
{
- "id": 32244,
+ "id": 14955,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -601877,14 +602783,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32245,
+ "id": 14956,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32246,
+ "id": 14957,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -601908,7 +602814,7 @@
{
"title": "Properties",
"children": [
- 32246
+ 14957
]
}
],
@@ -601985,7 +602891,7 @@
{
"title": "Methods",
"children": [
- 32242
+ 14953
]
}
],
@@ -602021,7 +602927,7 @@
}
},
{
- "id": 32247,
+ "id": 14958,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -602044,7 +602950,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32248,
+ "id": 14959,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -602058,7 +602964,7 @@
],
"signatures": [
{
- "id": 32249,
+ "id": 14960,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -602086,7 +602992,7 @@
],
"typeParameters": [
{
- "id": 32250,
+ "id": 14961,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -602097,7 +603003,7 @@
}
},
{
- "id": 32251,
+ "id": 14962,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -602110,7 +603016,7 @@
],
"parameters": [
{
- "id": 32252,
+ "id": 14963,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -602143,7 +603049,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -602154,13 +603060,13 @@
},
"trueType": {
"type": "reference",
- "target": 32223,
+ "target": 14934,
"name": "CancelRequestReturnWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -602193,7 +603099,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -602208,7 +603114,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -602228,7 +603134,7 @@
}
},
{
- "id": 32253,
+ "id": 14964,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -602251,7 +603157,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32254,
+ "id": 14965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -602265,7 +603171,7 @@
],
"signatures": [
{
- "id": 32255,
+ "id": 14966,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -602287,7 +603193,7 @@
}
},
{
- "id": 32256,
+ "id": 14967,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -602310,7 +603216,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32257,
+ "id": 14968,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -602324,7 +603230,7 @@
],
"signatures": [
{
- "id": 32258,
+ "id": 14969,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -602338,7 +603244,7 @@
],
"parameters": [
{
- "id": 32259,
+ "id": 14970,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -602364,7 +603270,7 @@
}
},
{
- "id": 32260,
+ "id": 14971,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -602387,7 +603293,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32261,
+ "id": 14972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -602398,7 +603304,7 @@
],
"documents": [
{
- "id": 42863,
+ "id": 25804,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -602424,7 +603330,7 @@
"frontmatter": {}
},
{
- "id": 42864,
+ "id": 25805,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -602450,7 +603356,7 @@
"frontmatter": {}
},
{
- "id": 42865,
+ "id": 25806,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -602476,7 +603382,7 @@
"frontmatter": {}
},
{
- "id": 42866,
+ "id": 25807,
"name": "cancelRequestReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -602502,7 +603408,7 @@
"frontmatter": {}
},
{
- "id": 42867,
+ "id": 25808,
"name": "deleteReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -602528,7 +603434,7 @@
"frontmatter": {}
},
{
- "id": 42868,
+ "id": 25809,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -602554,7 +603460,7 @@
"frontmatter": {}
},
{
- "id": 42869,
+ "id": 25810,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -602581,21 +603487,21 @@
}
],
"childrenIncludingDocuments": [
- 32235,
- 32247,
- 32253,
- 32256,
- 32260
+ 14946,
+ 14958,
+ 14964,
+ 14967,
+ 14971
],
"groups": [
{
"title": "Properties",
"children": [
- 32235,
- 32247,
- 32253,
- 32256,
- 32260
+ 14946,
+ 14958,
+ 14964,
+ 14967,
+ 14971
]
}
],
@@ -602604,12 +603510,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L114"
}
],
"signatures": [
{
- "id": 32228,
+ "id": 14939,
"name": "cancelReturnRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -602656,12 +603562,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-request-return.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-request-return.ts#L114"
}
],
"typeParameters": [
{
- "id": 32229,
+ "id": 14940,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -602672,7 +603578,7 @@
}
},
{
- "id": 32230,
+ "id": 14941,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -602685,7 +603591,7 @@
],
"parameters": [
{
- "id": 32231,
+ "id": 14942,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -602709,14 +603615,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32232,
+ "id": 14943,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32233,
+ "id": 14944,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -602739,7 +603645,7 @@
}
},
{
- "id": 32234,
+ "id": 14945,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -602766,8 +603672,8 @@
{
"title": "Properties",
"children": [
- 32233,
- 32234
+ 14944,
+ 14945
]
}
],
@@ -602842,7 +603748,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32223,
+ "target": 14934,
"name": "CancelRequestReturnWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -602852,14 +603758,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -602874,7 +603780,7 @@
]
},
{
- "id": 32264,
+ "id": 14975,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -602892,7 +603798,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-return.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L24"
}
],
"type": {
@@ -602906,7 +603812,7 @@
}
},
{
- "id": 32265,
+ "id": 14976,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -602924,7 +603830,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-return.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L28"
}
],
"type": {
@@ -602939,7 +603845,7 @@
}
},
{
- "id": 32266,
+ "id": 14977,
"name": "cancelReturnValidateOrder",
"variant": "declaration",
"kind": 64,
@@ -602974,7 +603880,7 @@
},
"children": [
{
- "id": 32275,
+ "id": 14986,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -602992,7 +603898,7 @@
}
},
{
- "id": 32276,
+ "id": 14987,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -603014,8 +603920,8 @@
{
"title": "Properties",
"children": [
- 32275,
- 32276
+ 14986,
+ 14987
]
}
],
@@ -603024,12 +603930,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-return.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L54"
}
],
"signatures": [
{
- "id": 32267,
+ "id": 14978,
"name": "cancelReturnValidateOrder",
"variant": "signature",
"kind": 4096,
@@ -603067,12 +603973,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-return.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L54"
}
],
"parameters": [
{
- "id": 32268,
+ "id": 14979,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -603082,7 +603988,7 @@
"types": [
{
"type": "reference",
- "target": 32262,
+ "target": 14973,
"name": "CancelReturnValidateOrderInput",
"package": "@medusajs/core-flows"
},
@@ -603095,7 +604001,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32262,
+ "target": 14973,
"name": "CancelReturnValidateOrderInput",
"package": "@medusajs/core-flows"
}
@@ -603128,14 +604034,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32269,
+ "id": 14980,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32270,
+ "id": 14981,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -603149,7 +604055,7 @@
],
"signatures": [
{
- "id": 32271,
+ "id": 14982,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -603163,7 +604069,7 @@
],
"parameters": [
{
- "id": 32272,
+ "id": 14983,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -603174,14 +604080,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32273,
+ "id": 14984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32274,
+ "id": 14985,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -603205,7 +604111,7 @@
{
"title": "Properties",
"children": [
- 32274
+ 14985
]
}
],
@@ -603282,7 +604188,7 @@
{
"title": "Methods",
"children": [
- 32270
+ 14981
]
}
],
@@ -603316,7 +604222,7 @@
]
},
{
- "id": 32277,
+ "id": 14988,
"name": "cancelReturnWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -603328,7 +604234,7 @@
"fileName": "core-flows/src/order/workflows/return/cancel-return.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L91"
}
],
"type": {
@@ -603338,7 +604244,7 @@
"defaultValue": "\"cancel-return\""
},
{
- "id": 32278,
+ "id": 14989,
"name": "cancelReturnWorkflow",
"variant": "declaration",
"kind": 64,
@@ -603382,7 +604288,7 @@
},
"children": [
{
- "id": 32286,
+ "id": 14997,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -603405,7 +604311,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32287,
+ "id": 14998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -603419,7 +604325,7 @@
],
"signatures": [
{
- "id": 32288,
+ "id": 14999,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -603447,7 +604353,7 @@
],
"parameters": [
{
- "id": 32289,
+ "id": 15000,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -603463,14 +604369,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32290,
+ "id": 15001,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32291,
+ "id": 15002,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -603530,7 +604436,7 @@
{
"title": "Properties",
"children": [
- 32291
+ 15002
]
}
],
@@ -603566,14 +604472,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32292,
+ "id": 15003,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32293,
+ "id": 15004,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -603587,7 +604493,7 @@
],
"signatures": [
{
- "id": 32294,
+ "id": 15005,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -603601,7 +604507,7 @@
],
"parameters": [
{
- "id": 32295,
+ "id": 15006,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -603612,14 +604518,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32296,
+ "id": 15007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32297,
+ "id": 15008,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -603643,7 +604549,7 @@
{
"title": "Properties",
"children": [
- 32297
+ 15008
]
}
],
@@ -603720,7 +604626,7 @@
{
"title": "Methods",
"children": [
- 32293
+ 15004
]
}
],
@@ -603756,7 +604662,7 @@
}
},
{
- "id": 32298,
+ "id": 15009,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -603779,7 +604685,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32299,
+ "id": 15010,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -603793,7 +604699,7 @@
],
"signatures": [
{
- "id": 32300,
+ "id": 15011,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -603821,7 +604727,7 @@
],
"typeParameters": [
{
- "id": 32301,
+ "id": 15012,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -603832,7 +604738,7 @@
}
},
{
- "id": 32302,
+ "id": 15013,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -603845,7 +604751,7 @@
],
"parameters": [
{
- "id": 32303,
+ "id": 15014,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -603878,7 +604784,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -603898,7 +604804,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -603931,7 +604837,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -603946,7 +604852,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -603966,7 +604872,7 @@
}
},
{
- "id": 32304,
+ "id": 15015,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -603989,7 +604895,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32305,
+ "id": 15016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -604003,7 +604909,7 @@
],
"signatures": [
{
- "id": 32306,
+ "id": 15017,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -604025,7 +604931,7 @@
}
},
{
- "id": 32307,
+ "id": 15018,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -604048,7 +604954,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32308,
+ "id": 15019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -604062,7 +604968,7 @@
],
"signatures": [
{
- "id": 32309,
+ "id": 15020,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -604076,7 +604982,7 @@
],
"parameters": [
{
- "id": 32310,
+ "id": 15021,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -604102,7 +605008,7 @@
}
},
{
- "id": 32311,
+ "id": 15022,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -604125,7 +605031,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32312,
+ "id": 15023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -604136,7 +605042,7 @@
],
"documents": [
{
- "id": 42870,
+ "id": 25811,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -604162,7 +605068,7 @@
"frontmatter": {}
},
{
- "id": 42871,
+ "id": 25812,
"name": "cancelReturnValidateOrder",
"variant": "document",
"kind": 8388608,
@@ -604188,7 +605094,7 @@
"frontmatter": {}
},
{
- "id": 42872,
+ "id": 25813,
"name": "cancelOrderReturnStep",
"variant": "document",
"kind": 8388608,
@@ -604215,21 +605121,21 @@
}
],
"childrenIncludingDocuments": [
- 32286,
- 32298,
- 32304,
- 32307,
- 32311
+ 14997,
+ 15009,
+ 15015,
+ 15018,
+ 15022
],
"groups": [
{
"title": "Properties",
"children": [
- 32286,
- 32298,
- 32304,
- 32307,
- 32311
+ 14997,
+ 15009,
+ 15015,
+ 15018,
+ 15022
]
}
],
@@ -604238,12 +605144,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-return.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L111"
}
],
"signatures": [
{
- "id": 32279,
+ "id": 14990,
"name": "cancelReturnWorkflow",
"variant": "signature",
"kind": 4096,
@@ -604290,12 +605196,12 @@
"fileName": "core-flows/src/order/workflows/return/cancel-return.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/cancel-return.ts#L111"
}
],
"typeParameters": [
{
- "id": 32280,
+ "id": 14991,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -604306,7 +605212,7 @@
}
},
{
- "id": 32281,
+ "id": 14992,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -604319,7 +605225,7 @@
],
"parameters": [
{
- "id": 32282,
+ "id": 14993,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -604343,14 +605249,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32283,
+ "id": 14994,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32284,
+ "id": 14995,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -604373,7 +605279,7 @@
}
},
{
- "id": 32285,
+ "id": 14996,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -604400,8 +605306,8 @@
{
"title": "Properties",
"children": [
- 32284,
- 32285
+ 14995,
+ 14996
]
}
],
@@ -604489,14 +605395,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -604511,7 +605417,7 @@
]
},
{
- "id": 32315,
+ "id": 15026,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -604529,7 +605435,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L46"
}
],
"type": {
@@ -604543,7 +605449,7 @@
}
},
{
- "id": 32316,
+ "id": 15027,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -604561,7 +605467,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L50"
}
],
"type": {
@@ -604575,7 +605481,7 @@
}
},
{
- "id": 32317,
+ "id": 15028,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -604593,7 +605499,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L54"
}
],
"type": {
@@ -604607,7 +605513,7 @@
}
},
{
- "id": 32318,
+ "id": 15029,
"name": "confirmReceiveReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -604642,7 +605548,7 @@
},
"children": [
{
- "id": 32327,
+ "id": 15038,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -604660,7 +605566,7 @@
}
},
{
- "id": 32328,
+ "id": 15039,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -604682,8 +605588,8 @@
{
"title": "Properties",
"children": [
- 32327,
- 32328
+ 15038,
+ 15039
]
}
],
@@ -604692,12 +605598,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 84,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L84"
}
],
"signatures": [
{
- "id": 32319,
+ "id": 15030,
"name": "confirmReceiveReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -604735,12 +605641,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 84,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L84"
}
],
"parameters": [
{
- "id": 32320,
+ "id": 15031,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -604750,7 +605656,7 @@
"types": [
{
"type": "reference",
- "target": 32313,
+ "target": 15024,
"name": "ConfirmReceiveReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -604763,7 +605669,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32313,
+ "target": 15024,
"name": "ConfirmReceiveReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -604796,14 +605702,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32321,
+ "id": 15032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32322,
+ "id": 15033,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -604817,7 +605723,7 @@
],
"signatures": [
{
- "id": 32323,
+ "id": 15034,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -604831,7 +605737,7 @@
],
"parameters": [
{
- "id": 32324,
+ "id": 15035,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -604842,14 +605748,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32325,
+ "id": 15036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32326,
+ "id": 15037,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -604873,7 +605779,7 @@
{
"title": "Properties",
"children": [
- 32326
+ 15037
]
}
],
@@ -604950,7 +605856,7 @@
{
"title": "Methods",
"children": [
- 32322
+ 15033
]
}
],
@@ -604984,7 +605890,7 @@
]
},
{
- "id": 32331,
+ "id": 15042,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -605002,7 +605908,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L175"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L175"
}
],
"type": {
@@ -605011,7 +605917,7 @@
}
},
{
- "id": 32332,
+ "id": 15043,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -605031,7 +605937,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L179"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L179"
}
],
"type": {
@@ -605040,7 +605946,7 @@
}
},
{
- "id": 32333,
+ "id": 15044,
"name": "confirmReturnReceiveWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -605052,7 +605958,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 182,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L182"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L182"
}
],
"type": {
@@ -605062,7 +605968,7 @@
"defaultValue": "\"confirm-return-receive\""
},
{
- "id": 32334,
+ "id": 15045,
"name": "confirmReturnReceiveWorkflow",
"variant": "declaration",
"kind": 64,
@@ -605124,7 +606030,7 @@
},
"children": [
{
- "id": 32342,
+ "id": 15053,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -605147,7 +606053,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32343,
+ "id": 15054,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -605161,7 +606067,7 @@
],
"signatures": [
{
- "id": 32344,
+ "id": 15055,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -605189,7 +606095,7 @@
],
"parameters": [
{
- "id": 32345,
+ "id": 15056,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -605205,14 +606111,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32346,
+ "id": 15057,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32347,
+ "id": 15058,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -605237,7 +606143,7 @@
"types": [
{
"type": "reference",
- "target": 32329,
+ "target": 15040,
"name": "ConfirmReceiveReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -605250,7 +606156,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32329,
+ "target": 15040,
"name": "ConfirmReceiveReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -605266,7 +606172,7 @@
{
"title": "Properties",
"children": [
- 32347
+ 15058
]
}
],
@@ -605287,14 +606193,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32348,
+ "id": 15059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32361,
+ "id": 15072,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -605340,7 +606246,7 @@
}
},
{
- "id": 32421,
+ "id": 15132,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -605386,7 +606292,7 @@
}
},
{
- "id": 32422,
+ "id": 15133,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -605432,7 +606338,7 @@
}
},
{
- "id": 32423,
+ "id": 15134,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -605489,7 +606395,7 @@
}
},
{
- "id": 32424,
+ "id": 15135,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -605545,7 +606451,7 @@
}
},
{
- "id": 32389,
+ "id": 15100,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -605602,7 +606508,7 @@
}
},
{
- "id": 32390,
+ "id": 15101,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -605659,7 +606565,7 @@
}
},
{
- "id": 32391,
+ "id": 15102,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -605716,7 +606622,7 @@
}
},
{
- "id": 32366,
+ "id": 15077,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -605773,7 +606679,7 @@
}
},
{
- "id": 32392,
+ "id": 15103,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -605819,7 +606725,7 @@
}
},
{
- "id": 32393,
+ "id": 15104,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -605889,7 +606795,7 @@
}
},
{
- "id": 32394,
+ "id": 15105,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -605959,7 +606865,7 @@
}
},
{
- "id": 32425,
+ "id": 15136,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -606035,7 +606941,7 @@
}
},
{
- "id": 32395,
+ "id": 15106,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -606111,7 +607017,7 @@
}
},
{
- "id": 32426,
+ "id": 15137,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -606181,7 +607087,7 @@
}
},
{
- "id": 32427,
+ "id": 15138,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -606238,7 +607144,7 @@
}
},
{
- "id": 32365,
+ "id": 15076,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -606333,7 +607239,7 @@
}
},
{
- "id": 32420,
+ "id": 15131,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -606408,7 +607314,7 @@
}
},
{
- "id": 32362,
+ "id": 15073,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -606477,7 +607383,7 @@
}
},
{
- "id": 32363,
+ "id": 15074,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -606546,7 +607452,7 @@
}
},
{
- "id": 32364,
+ "id": 15075,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -606621,7 +607527,7 @@
}
},
{
- "id": 32396,
+ "id": 15107,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -606677,7 +607583,7 @@
}
},
{
- "id": 32397,
+ "id": 15108,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -606733,7 +607639,7 @@
}
},
{
- "id": 32398,
+ "id": 15109,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -606789,7 +607695,7 @@
}
},
{
- "id": 32370,
+ "id": 15081,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -606845,7 +607751,7 @@
}
},
{
- "id": 32371,
+ "id": 15082,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -606901,7 +607807,7 @@
}
},
{
- "id": 32372,
+ "id": 15083,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -606957,7 +607863,7 @@
}
},
{
- "id": 32428,
+ "id": 15139,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -607013,7 +607919,7 @@
}
},
{
- "id": 32367,
+ "id": 15078,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -607069,7 +607975,7 @@
}
},
{
- "id": 32368,
+ "id": 15079,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -607125,7 +608031,7 @@
}
},
{
- "id": 32369,
+ "id": 15080,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -607181,7 +608087,7 @@
}
},
{
- "id": 32373,
+ "id": 15084,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -607237,7 +608143,7 @@
}
},
{
- "id": 32374,
+ "id": 15085,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -607293,7 +608199,7 @@
}
},
{
- "id": 32375,
+ "id": 15086,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -607349,7 +608255,7 @@
}
},
{
- "id": 32429,
+ "id": 15140,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -607405,7 +608311,7 @@
}
},
{
- "id": 32376,
+ "id": 15087,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -607461,7 +608367,7 @@
}
},
{
- "id": 32377,
+ "id": 15088,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -607517,7 +608423,7 @@
}
},
{
- "id": 32419,
+ "id": 15130,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -607573,7 +608479,7 @@
}
},
{
- "id": 32399,
+ "id": 15110,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -607629,7 +608535,7 @@
}
},
{
- "id": 32400,
+ "id": 15111,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -607685,7 +608591,7 @@
}
},
{
- "id": 32401,
+ "id": 15112,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -607741,7 +608647,7 @@
}
},
{
- "id": 32402,
+ "id": 15113,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -607797,7 +608703,7 @@
}
},
{
- "id": 32403,
+ "id": 15114,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -607853,7 +608759,7 @@
}
},
{
- "id": 32430,
+ "id": 15141,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -607909,7 +608815,7 @@
}
},
{
- "id": 32404,
+ "id": 15115,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -607965,7 +608871,7 @@
}
},
{
- "id": 32405,
+ "id": 15116,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -608021,7 +608927,7 @@
}
},
{
- "id": 32406,
+ "id": 15117,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -608077,7 +608983,7 @@
}
},
{
- "id": 32349,
+ "id": 15060,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -608133,7 +609039,7 @@
}
},
{
- "id": 32350,
+ "id": 15061,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -608173,14 +609079,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32351,
+ "id": 15062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32352,
+ "id": 15063,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -608212,7 +609118,7 @@
{
"title": "Properties",
"children": [
- 32352
+ 15063
]
}
],
@@ -608252,14 +609158,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32353,
+ "id": 15064,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32354,
+ "id": 15065,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -608291,7 +609197,7 @@
{
"title": "Properties",
"children": [
- 32354
+ 15065
]
}
],
@@ -608315,7 +609221,7 @@
}
},
{
- "id": 32355,
+ "id": 15066,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -608355,14 +609261,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32356,
+ "id": 15067,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32357,
+ "id": 15068,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -608394,7 +609300,7 @@
{
"title": "Properties",
"children": [
- 32357
+ 15068
]
}
],
@@ -608434,14 +609340,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32358,
+ "id": 15069,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32359,
+ "id": 15070,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -608473,7 +609379,7 @@
{
"title": "Properties",
"children": [
- 32359
+ 15070
]
}
],
@@ -608497,7 +609403,7 @@
}
},
{
- "id": 32360,
+ "id": 15071,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -608547,57 +609453,57 @@
{
"title": "Properties",
"children": [
- 32361,
- 32421,
- 32422,
- 32423,
- 32424,
- 32389,
- 32390,
- 32391,
- 32366,
- 32392,
- 32393,
- 32394,
- 32425,
- 32395,
- 32426,
- 32427,
- 32365,
- 32420,
- 32362,
- 32363,
- 32364,
- 32396,
- 32397,
- 32398,
- 32370,
- 32371,
- 32372,
- 32428,
- 32367,
- 32368,
- 32369,
- 32373,
- 32374,
- 32375,
- 32429,
- 32376,
- 32377,
- 32419,
- 32399,
- 32400,
- 32401,
- 32402,
- 32403,
- 32430,
- 32404,
- 32405,
- 32406,
- 32349,
- 32350,
- 32355,
- 32360
+ 15072,
+ 15132,
+ 15133,
+ 15134,
+ 15135,
+ 15100,
+ 15101,
+ 15102,
+ 15077,
+ 15103,
+ 15104,
+ 15105,
+ 15136,
+ 15106,
+ 15137,
+ 15138,
+ 15076,
+ 15131,
+ 15073,
+ 15074,
+ 15075,
+ 15107,
+ 15108,
+ 15109,
+ 15081,
+ 15082,
+ 15083,
+ 15139,
+ 15078,
+ 15079,
+ 15080,
+ 15084,
+ 15085,
+ 15086,
+ 15140,
+ 15087,
+ 15088,
+ 15130,
+ 15110,
+ 15111,
+ 15112,
+ 15113,
+ 15114,
+ 15141,
+ 15115,
+ 15116,
+ 15117,
+ 15060,
+ 15061,
+ 15066,
+ 15071
]
}
],
@@ -608642,14 +609548,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32431,
+ "id": 15142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32432,
+ "id": 15143,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -608663,7 +609569,7 @@
],
"signatures": [
{
- "id": 32433,
+ "id": 15144,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -608677,7 +609583,7 @@
],
"parameters": [
{
- "id": 32434,
+ "id": 15145,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -608688,14 +609594,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32435,
+ "id": 15146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32436,
+ "id": 15147,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -608719,7 +609625,7 @@
{
"title": "Properties",
"children": [
- 32436
+ 15147
]
}
],
@@ -608801,7 +609707,7 @@
{
"title": "Methods",
"children": [
- 32432
+ 15143
]
}
],
@@ -608842,7 +609748,7 @@
}
},
{
- "id": 32437,
+ "id": 15148,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -608865,7 +609771,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32438,
+ "id": 15149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -608879,7 +609785,7 @@
],
"signatures": [
{
- "id": 32439,
+ "id": 15150,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -608907,7 +609813,7 @@
],
"typeParameters": [
{
- "id": 32440,
+ "id": 15151,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -608918,7 +609824,7 @@
}
},
{
- "id": 32441,
+ "id": 15152,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -608931,7 +609837,7 @@
],
"parameters": [
{
- "id": 32442,
+ "id": 15153,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -608964,7 +609870,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -608975,13 +609881,13 @@
},
"trueType": {
"type": "reference",
- "target": 32329,
+ "target": 15040,
"name": "ConfirmReceiveReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -609014,7 +609920,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -609034,7 +609940,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -609054,7 +609960,7 @@
}
},
{
- "id": 32443,
+ "id": 15154,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -609077,7 +609983,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32444,
+ "id": 15155,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -609091,7 +609997,7 @@
],
"signatures": [
{
- "id": 32445,
+ "id": 15156,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -609113,7 +610019,7 @@
}
},
{
- "id": 32446,
+ "id": 15157,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -609136,7 +610042,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32447,
+ "id": 15158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -609150,7 +610056,7 @@
],
"signatures": [
{
- "id": 32448,
+ "id": 15159,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -609164,7 +610070,7 @@
],
"parameters": [
{
- "id": 32449,
+ "id": 15160,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -609190,7 +610096,7 @@
}
},
{
- "id": 32450,
+ "id": 15161,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -609213,7 +610119,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32451,
+ "id": 15162,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -609224,7 +610130,7 @@
],
"documents": [
{
- "id": 42873,
+ "id": 25814,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -609250,7 +610156,7 @@
"frontmatter": {}
},
{
- "id": 42874,
+ "id": 25815,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -609276,7 +610182,7 @@
"frontmatter": {}
},
{
- "id": 42875,
+ "id": 25816,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -609302,7 +610208,7 @@
"frontmatter": {}
},
{
- "id": 42876,
+ "id": 25817,
"name": "confirmReceiveReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -609328,7 +610234,7 @@
"frontmatter": {}
},
{
- "id": 42877,
+ "id": 25818,
"name": "updateReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -609354,7 +610260,7 @@
"frontmatter": {}
},
{
- "id": 42878,
+ "id": 25819,
"name": "updateReturnItemsStep",
"variant": "document",
"kind": 8388608,
@@ -609380,7 +610286,7 @@
"frontmatter": {}
},
{
- "id": 42879,
+ "id": 25820,
"name": "adjustInventoryLevelsStep",
"variant": "document",
"kind": 8388608,
@@ -609406,7 +610312,7 @@
"frontmatter": {}
},
{
- "id": 42880,
+ "id": 25821,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -609432,7 +610338,7 @@
"frontmatter": {}
},
{
- "id": 42881,
+ "id": 25822,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -609458,7 +610364,7 @@
"frontmatter": {}
},
{
- "id": 42882,
+ "id": 25823,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -609485,21 +610391,21 @@
}
],
"childrenIncludingDocuments": [
- 32342,
- 32437,
- 32443,
- 32446,
- 32450
+ 15053,
+ 15148,
+ 15154,
+ 15157,
+ 15161
],
"groups": [
{
"title": "Properties",
"children": [
- 32342,
- 32437,
- 32443,
- 32446,
- 32450
+ 15053,
+ 15148,
+ 15154,
+ 15157,
+ 15161
]
}
],
@@ -609508,12 +610414,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 202,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L202"
}
],
"signatures": [
{
- "id": 32335,
+ "id": 15046,
"name": "confirmReturnReceiveWorkflow",
"variant": "signature",
"kind": 4096,
@@ -609578,12 +610484,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-receive-return-request.ts",
"line": 202,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-receive-return-request.ts#L202"
}
],
"typeParameters": [
{
- "id": 32336,
+ "id": 15047,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -609594,7 +610500,7 @@
}
},
{
- "id": 32337,
+ "id": 15048,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -609607,7 +610513,7 @@
],
"parameters": [
{
- "id": 32338,
+ "id": 15049,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -609631,14 +610537,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32339,
+ "id": 15050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32340,
+ "id": 15051,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -609661,7 +610567,7 @@
}
},
{
- "id": 32341,
+ "id": 15052,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -609688,8 +610594,8 @@
{
"title": "Properties",
"children": [
- 32340,
- 32341
+ 15051,
+ 15052
]
}
],
@@ -609764,7 +610670,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32329,
+ "target": 15040,
"name": "ConfirmReceiveReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -609779,14 +610685,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -609801,7 +610707,7 @@
]
},
{
- "id": 32454,
+ "id": 15165,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -609819,7 +610725,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 47,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L47"
}
],
"type": {
@@ -609833,7 +610739,7 @@
}
},
{
- "id": 32455,
+ "id": 15166,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -609851,7 +610757,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L51"
}
],
"type": {
@@ -609865,7 +610771,7 @@
}
},
{
- "id": 32456,
+ "id": 15167,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -609883,7 +610789,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L55"
}
],
"type": {
@@ -609897,7 +610803,7 @@
}
},
{
- "id": 32457,
+ "id": 15168,
"name": "confirmReturnRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -609932,7 +610838,7 @@
},
"children": [
{
- "id": 32466,
+ "id": 15177,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -609950,7 +610856,7 @@
}
},
{
- "id": 32467,
+ "id": 15178,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -609972,8 +610878,8 @@
{
"title": "Properties",
"children": [
- 32466,
- 32467
+ 15177,
+ 15178
]
}
],
@@ -609982,12 +610888,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L85"
}
],
"signatures": [
{
- "id": 32458,
+ "id": 15169,
"name": "confirmReturnRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -610025,12 +610931,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L85"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L85"
}
],
"parameters": [
{
- "id": 32459,
+ "id": 15170,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -610040,7 +610946,7 @@
"types": [
{
"type": "reference",
- "target": 32452,
+ "target": 15163,
"name": "ConfirmReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -610053,7 +610959,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32452,
+ "target": 15163,
"name": "ConfirmReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -610086,14 +610992,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32460,
+ "id": 15171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32461,
+ "id": 15172,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -610107,7 +611013,7 @@
],
"signatures": [
{
- "id": 32462,
+ "id": 15173,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -610121,7 +611027,7 @@
],
"parameters": [
{
- "id": 32463,
+ "id": 15174,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -610132,14 +611038,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32464,
+ "id": 15175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32465,
+ "id": 15176,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -610163,7 +611069,7 @@
{
"title": "Properties",
"children": [
- 32465
+ 15176
]
}
],
@@ -610240,7 +611146,7 @@
{
"title": "Methods",
"children": [
- 32461
+ 15172
]
}
],
@@ -610274,7 +611180,7 @@
]
},
{
- "id": 32470,
+ "id": 15181,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -610292,7 +611198,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 212,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L212"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L212"
}
],
"type": {
@@ -610301,7 +611207,7 @@
}
},
{
- "id": 32471,
+ "id": 15182,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -610321,7 +611227,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L216"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L216"
}
],
"type": {
@@ -610330,7 +611236,7 @@
}
},
{
- "id": 32472,
+ "id": 15183,
"name": "confirmReturnRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -610342,7 +611248,7 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 219,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L219"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L219"
}
],
"type": {
@@ -610352,7 +611258,7 @@
"defaultValue": "\"confirm-return-request\""
},
{
- "id": 32473,
+ "id": 15184,
"name": "confirmReturnRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -610414,7 +611320,7 @@
},
"children": [
{
- "id": 32481,
+ "id": 15192,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -610437,7 +611343,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32482,
+ "id": 15193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -610451,7 +611357,7 @@
],
"signatures": [
{
- "id": 32483,
+ "id": 15194,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -610479,7 +611385,7 @@
],
"parameters": [
{
- "id": 32484,
+ "id": 15195,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -610495,14 +611401,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32485,
+ "id": 15196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32486,
+ "id": 15197,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -610527,7 +611433,7 @@
"types": [
{
"type": "reference",
- "target": 32468,
+ "target": 15179,
"name": "ConfirmReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -610540,7 +611446,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32468,
+ "target": 15179,
"name": "ConfirmReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -610556,7 +611462,7 @@
{
"title": "Properties",
"children": [
- 32486
+ 15197
]
}
],
@@ -610577,14 +611483,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32487,
+ "id": 15198,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32500,
+ "id": 15211,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -610630,7 +611536,7 @@
}
},
{
- "id": 32560,
+ "id": 15271,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -610676,7 +611582,7 @@
}
},
{
- "id": 32561,
+ "id": 15272,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -610722,7 +611628,7 @@
}
},
{
- "id": 32562,
+ "id": 15273,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -610779,7 +611685,7 @@
}
},
{
- "id": 32563,
+ "id": 15274,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -610835,7 +611741,7 @@
}
},
{
- "id": 32528,
+ "id": 15239,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -610892,7 +611798,7 @@
}
},
{
- "id": 32529,
+ "id": 15240,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -610949,7 +611855,7 @@
}
},
{
- "id": 32530,
+ "id": 15241,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -611006,7 +611912,7 @@
}
},
{
- "id": 32505,
+ "id": 15216,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -611063,7 +611969,7 @@
}
},
{
- "id": 32531,
+ "id": 15242,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -611109,7 +612015,7 @@
}
},
{
- "id": 32532,
+ "id": 15243,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -611179,7 +612085,7 @@
}
},
{
- "id": 32533,
+ "id": 15244,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -611249,7 +612155,7 @@
}
},
{
- "id": 32564,
+ "id": 15275,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -611325,7 +612231,7 @@
}
},
{
- "id": 32534,
+ "id": 15245,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -611401,7 +612307,7 @@
}
},
{
- "id": 32565,
+ "id": 15276,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -611471,7 +612377,7 @@
}
},
{
- "id": 32566,
+ "id": 15277,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -611528,7 +612434,7 @@
}
},
{
- "id": 32504,
+ "id": 15215,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -611623,7 +612529,7 @@
}
},
{
- "id": 32559,
+ "id": 15270,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -611698,7 +612604,7 @@
}
},
{
- "id": 32501,
+ "id": 15212,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -611767,7 +612673,7 @@
}
},
{
- "id": 32502,
+ "id": 15213,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -611836,7 +612742,7 @@
}
},
{
- "id": 32503,
+ "id": 15214,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -611911,7 +612817,7 @@
}
},
{
- "id": 32535,
+ "id": 15246,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -611967,7 +612873,7 @@
}
},
{
- "id": 32536,
+ "id": 15247,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -612023,7 +612929,7 @@
}
},
{
- "id": 32537,
+ "id": 15248,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -612079,7 +612985,7 @@
}
},
{
- "id": 32509,
+ "id": 15220,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -612135,7 +613041,7 @@
}
},
{
- "id": 32510,
+ "id": 15221,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -612191,7 +613097,7 @@
}
},
{
- "id": 32511,
+ "id": 15222,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -612247,7 +613153,7 @@
}
},
{
- "id": 32567,
+ "id": 15278,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -612303,7 +613209,7 @@
}
},
{
- "id": 32506,
+ "id": 15217,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -612359,7 +613265,7 @@
}
},
{
- "id": 32507,
+ "id": 15218,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -612415,7 +613321,7 @@
}
},
{
- "id": 32508,
+ "id": 15219,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -612471,7 +613377,7 @@
}
},
{
- "id": 32512,
+ "id": 15223,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -612527,7 +613433,7 @@
}
},
{
- "id": 32513,
+ "id": 15224,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -612583,7 +613489,7 @@
}
},
{
- "id": 32514,
+ "id": 15225,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -612639,7 +613545,7 @@
}
},
{
- "id": 32568,
+ "id": 15279,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -612695,7 +613601,7 @@
}
},
{
- "id": 32515,
+ "id": 15226,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -612751,7 +613657,7 @@
}
},
{
- "id": 32516,
+ "id": 15227,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -612807,7 +613713,7 @@
}
},
{
- "id": 32558,
+ "id": 15269,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -612863,7 +613769,7 @@
}
},
{
- "id": 32538,
+ "id": 15249,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -612919,7 +613825,7 @@
}
},
{
- "id": 32539,
+ "id": 15250,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -612975,7 +613881,7 @@
}
},
{
- "id": 32540,
+ "id": 15251,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -613031,7 +613937,7 @@
}
},
{
- "id": 32541,
+ "id": 15252,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -613087,7 +613993,7 @@
}
},
{
- "id": 32542,
+ "id": 15253,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -613143,7 +614049,7 @@
}
},
{
- "id": 32569,
+ "id": 15280,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -613199,7 +614105,7 @@
}
},
{
- "id": 32543,
+ "id": 15254,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -613255,7 +614161,7 @@
}
},
{
- "id": 32544,
+ "id": 15255,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -613311,7 +614217,7 @@
}
},
{
- "id": 32545,
+ "id": 15256,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -613367,7 +614273,7 @@
}
},
{
- "id": 32488,
+ "id": 15199,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -613423,7 +614329,7 @@
}
},
{
- "id": 32489,
+ "id": 15200,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -613463,14 +614369,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32490,
+ "id": 15201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32491,
+ "id": 15202,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -613502,7 +614408,7 @@
{
"title": "Properties",
"children": [
- 32491
+ 15202
]
}
],
@@ -613542,14 +614448,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32492,
+ "id": 15203,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32493,
+ "id": 15204,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -613581,7 +614487,7 @@
{
"title": "Properties",
"children": [
- 32493
+ 15204
]
}
],
@@ -613605,7 +614511,7 @@
}
},
{
- "id": 32494,
+ "id": 15205,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -613645,14 +614551,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32495,
+ "id": 15206,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32496,
+ "id": 15207,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -613684,7 +614590,7 @@
{
"title": "Properties",
"children": [
- 32496
+ 15207
]
}
],
@@ -613724,14 +614630,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32497,
+ "id": 15208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32498,
+ "id": 15209,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -613763,7 +614669,7 @@
{
"title": "Properties",
"children": [
- 32498
+ 15209
]
}
],
@@ -613787,7 +614693,7 @@
}
},
{
- "id": 32499,
+ "id": 15210,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -613837,57 +614743,57 @@
{
"title": "Properties",
"children": [
- 32500,
- 32560,
- 32561,
- 32562,
- 32563,
- 32528,
- 32529,
- 32530,
- 32505,
- 32531,
- 32532,
- 32533,
- 32564,
- 32534,
- 32565,
- 32566,
- 32504,
- 32559,
- 32501,
- 32502,
- 32503,
- 32535,
- 32536,
- 32537,
- 32509,
- 32510,
- 32511,
- 32567,
- 32506,
- 32507,
- 32508,
- 32512,
- 32513,
- 32514,
- 32568,
- 32515,
- 32516,
- 32558,
- 32538,
- 32539,
- 32540,
- 32541,
- 32542,
- 32569,
- 32543,
- 32544,
- 32545,
- 32488,
- 32489,
- 32494,
- 32499
+ 15211,
+ 15271,
+ 15272,
+ 15273,
+ 15274,
+ 15239,
+ 15240,
+ 15241,
+ 15216,
+ 15242,
+ 15243,
+ 15244,
+ 15275,
+ 15245,
+ 15276,
+ 15277,
+ 15215,
+ 15270,
+ 15212,
+ 15213,
+ 15214,
+ 15246,
+ 15247,
+ 15248,
+ 15220,
+ 15221,
+ 15222,
+ 15278,
+ 15217,
+ 15218,
+ 15219,
+ 15223,
+ 15224,
+ 15225,
+ 15279,
+ 15226,
+ 15227,
+ 15269,
+ 15249,
+ 15250,
+ 15251,
+ 15252,
+ 15253,
+ 15280,
+ 15254,
+ 15255,
+ 15256,
+ 15199,
+ 15200,
+ 15205,
+ 15210
]
}
],
@@ -613932,14 +614838,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32570,
+ "id": 15281,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32571,
+ "id": 15282,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -613953,7 +614859,7 @@
],
"signatures": [
{
- "id": 32572,
+ "id": 15283,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -613967,7 +614873,7 @@
],
"parameters": [
{
- "id": 32573,
+ "id": 15284,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -613978,14 +614884,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32574,
+ "id": 15285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32575,
+ "id": 15286,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -614009,7 +614915,7 @@
{
"title": "Properties",
"children": [
- 32575
+ 15286
]
}
],
@@ -614091,7 +614997,7 @@
{
"title": "Methods",
"children": [
- 32571
+ 15282
]
}
],
@@ -614132,7 +615038,7 @@
}
},
{
- "id": 32576,
+ "id": 15287,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -614155,7 +615061,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32577,
+ "id": 15288,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -614169,7 +615075,7 @@
],
"signatures": [
{
- "id": 32578,
+ "id": 15289,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -614197,7 +615103,7 @@
],
"typeParameters": [
{
- "id": 32579,
+ "id": 15290,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -614208,7 +615114,7 @@
}
},
{
- "id": 32580,
+ "id": 15291,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -614221,7 +615127,7 @@
],
"parameters": [
{
- "id": 32581,
+ "id": 15292,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -614254,7 +615160,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -614265,13 +615171,13 @@
},
"trueType": {
"type": "reference",
- "target": 32468,
+ "target": 15179,
"name": "ConfirmReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -614304,7 +615210,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -614324,7 +615230,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -614344,7 +615250,7 @@
}
},
{
- "id": 32582,
+ "id": 15293,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -614367,7 +615273,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32583,
+ "id": 15294,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -614381,7 +615287,7 @@
],
"signatures": [
{
- "id": 32584,
+ "id": 15295,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -614403,7 +615309,7 @@
}
},
{
- "id": 32585,
+ "id": 15296,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -614426,7 +615332,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32586,
+ "id": 15297,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -614440,7 +615346,7 @@
],
"signatures": [
{
- "id": 32587,
+ "id": 15298,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -614454,7 +615360,7 @@
],
"parameters": [
{
- "id": 32588,
+ "id": 15299,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -614480,7 +615386,7 @@
}
},
{
- "id": 32589,
+ "id": 15300,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -614503,7 +615409,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32590,
+ "id": 15301,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -614514,7 +615420,7 @@
],
"documents": [
{
- "id": 42883,
+ "id": 25824,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -614540,7 +615446,7 @@
"frontmatter": {}
},
{
- "id": 42884,
+ "id": 25825,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -614566,7 +615472,7 @@
"frontmatter": {}
},
{
- "id": 42885,
+ "id": 25826,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -614592,7 +615498,7 @@
"frontmatter": {}
},
{
- "id": 42886,
+ "id": 25827,
"name": "confirmReturnRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -614618,7 +615524,7 @@
"frontmatter": {}
},
{
- "id": 42887,
+ "id": 25828,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -614644,7 +615550,7 @@
"frontmatter": {}
},
{
- "id": 42888,
+ "id": 25829,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -614679,7 +615585,7 @@
"frontmatter": {},
"children": [
{
- "id": 42889,
+ "id": 25830,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -614705,7 +615611,7 @@
"frontmatter": {}
},
{
- "id": 42890,
+ "id": 25831,
"name": "createReturnFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -614731,7 +615637,7 @@
"frontmatter": {}
},
{
- "id": 42891,
+ "id": 25832,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -614759,7 +615665,7 @@
]
},
{
- "id": 42892,
+ "id": 25833,
"name": "updateReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -614785,7 +615691,7 @@
"frontmatter": {}
},
{
- "id": 42893,
+ "id": 25834,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -614811,7 +615717,7 @@
"frontmatter": {}
},
{
- "id": 42894,
+ "id": 25835,
"name": "createOrUpdateOrderPaymentCollectionWorkflow",
"variant": "document",
"kind": 8388608,
@@ -614838,21 +615744,21 @@
}
],
"childrenIncludingDocuments": [
- 32481,
- 32576,
- 32582,
- 32585,
- 32589
+ 15192,
+ 15287,
+ 15293,
+ 15296,
+ 15300
],
"groups": [
{
"title": "Properties",
"children": [
- 32481,
- 32576,
- 32582,
- 32585,
- 32589
+ 15192,
+ 15287,
+ 15293,
+ 15296,
+ 15300
]
}
],
@@ -614861,12 +615767,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 239,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L239"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L239"
}
],
"signatures": [
{
- "id": 32474,
+ "id": 15185,
"name": "confirmReturnRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -614931,12 +615837,12 @@
"fileName": "core-flows/src/order/workflows/return/confirm-return-request.ts",
"line": 239,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L239"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/confirm-return-request.ts#L239"
}
],
"typeParameters": [
{
- "id": 32475,
+ "id": 15186,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -614947,7 +615853,7 @@
}
},
{
- "id": 32476,
+ "id": 15187,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -614960,7 +615866,7 @@
],
"parameters": [
{
- "id": 32477,
+ "id": 15188,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -614984,14 +615890,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32478,
+ "id": 15189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32479,
+ "id": 15190,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -615014,7 +615920,7 @@
}
},
{
- "id": 32480,
+ "id": 15191,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -615041,8 +615947,8 @@
{
"title": "Properties",
"children": [
- 32479,
- 32480
+ 15190,
+ 15191
]
}
],
@@ -615117,7 +616023,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32468,
+ "target": 15179,
"name": "ConfirmReturnRequestWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -615132,14 +616038,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -615154,7 +616060,7 @@
]
},
{
- "id": 32593,
+ "id": 15304,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -615172,7 +616078,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 227,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L227"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L227"
}
],
"type": {
@@ -615181,7 +616087,7 @@
}
},
{
- "id": 32594,
+ "id": 15305,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -615199,7 +616105,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L231"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L231"
}
],
"type": {
@@ -615214,7 +616120,7 @@
}
},
{
- "id": 32595,
+ "id": 15306,
"name": "createCompleteReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -615249,7 +616155,7 @@
},
"children": [
{
- "id": 32604,
+ "id": 15315,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -615267,7 +616173,7 @@
}
},
{
- "id": 32605,
+ "id": 15316,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -615289,8 +616195,8 @@
{
"title": "Properties",
"children": [
- 32604,
- 32605
+ 15315,
+ 15316
]
}
],
@@ -615299,12 +616205,12 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 264,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L264"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L264"
}
],
"signatures": [
{
- "id": 32596,
+ "id": 15307,
"name": "createCompleteReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -615342,12 +616248,12 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 264,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L264"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L264"
}
],
"parameters": [
{
- "id": 32597,
+ "id": 15308,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -615357,7 +616263,7 @@
"types": [
{
"type": "reference",
- "target": 32591,
+ "target": 15302,
"name": "CreateCompleteReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -615370,7 +616276,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32591,
+ "target": 15302,
"name": "CreateCompleteReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -615403,14 +616309,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32598,
+ "id": 15309,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32599,
+ "id": 15310,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -615424,7 +616330,7 @@
],
"signatures": [
{
- "id": 32600,
+ "id": 15311,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -615438,7 +616344,7 @@
],
"parameters": [
{
- "id": 32601,
+ "id": 15312,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -615449,14 +616355,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32602,
+ "id": 15313,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32603,
+ "id": 15314,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -615480,7 +616386,7 @@
{
"title": "Properties",
"children": [
- 32603
+ 15314
]
}
],
@@ -615557,7 +616463,7 @@
{
"title": "Methods",
"children": [
- 32599
+ 15310
]
}
],
@@ -615591,7 +616497,7 @@
]
},
{
- "id": 32606,
+ "id": 15317,
"name": "createAndCompleteReturnOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -615603,7 +616509,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 287,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L287"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L287"
}
],
"type": {
@@ -615613,7 +616519,7 @@
"defaultValue": "\"create-complete-return-order\""
},
{
- "id": 32607,
+ "id": 15318,
"name": "createAndCompleteReturnOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -615684,7 +616590,7 @@
},
"children": [
{
- "id": 32615,
+ "id": 15326,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -615707,7 +616613,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32616,
+ "id": 15327,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -615721,7 +616627,7 @@
],
"signatures": [
{
- "id": 32617,
+ "id": 15328,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -615749,7 +616655,7 @@
],
"parameters": [
{
- "id": 32618,
+ "id": 15329,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -615765,14 +616671,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32619,
+ "id": 15330,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32620,
+ "id": 15331,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -615860,7 +616766,7 @@
{
"title": "Properties",
"children": [
- 32620
+ 15331
]
}
],
@@ -615881,14 +616787,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32621,
+ "id": 15332,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32622,
+ "id": 15333,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -615934,7 +616840,7 @@
}
},
{
- "id": 32623,
+ "id": 15334,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -615990,7 +616896,7 @@
}
},
{
- "id": 32624,
+ "id": 15335,
"name": "refund_amount",
"variant": "declaration",
"kind": 1024,
@@ -616043,7 +616949,7 @@
}
},
{
- "id": 32625,
+ "id": 15336,
"name": "raw_refund_amount",
"variant": "declaration",
"kind": 1024,
@@ -616096,7 +617002,7 @@
}
},
{
- "id": 32626,
+ "id": 15337,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -616142,7 +617048,7 @@
}
},
{
- "id": 32627,
+ "id": 15338,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -616209,7 +617115,7 @@
}
},
{
- "id": 32628,
+ "id": 15339,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -616271,7 +617177,7 @@
}
},
{
- "id": 32629,
+ "id": 15340,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -616328,7 +617234,7 @@
}
},
{
- "id": 32630,
+ "id": 15341,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -616395,7 +617301,7 @@
}
},
{
- "id": 32631,
+ "id": 15342,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -616452,7 +617358,7 @@
}
},
{
- "id": 32632,
+ "id": 15343,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -616519,7 +617425,7 @@
}
},
{
- "id": 32633,
+ "id": 15344,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -616565,7 +617471,7 @@
}
},
{
- "id": 32634,
+ "id": 15345,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -616622,7 +617528,7 @@
}
},
{
- "id": 32635,
+ "id": 15346,
"name": "no_notification",
"variant": "declaration",
"kind": 1024,
@@ -616679,7 +617585,7 @@
}
},
{
- "id": 32636,
+ "id": 15347,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -616744,7 +617650,7 @@
}
},
{
- "id": 32637,
+ "id": 15348,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -616817,7 +617723,7 @@
}
},
{
- "id": 32638,
+ "id": 15349,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -616890,7 +617796,7 @@
}
},
{
- "id": 32639,
+ "id": 15350,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -616979,7 +617885,7 @@
}
},
{
- "id": 32640,
+ "id": 15351,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -617054,7 +617960,7 @@
}
},
{
- "id": 32641,
+ "id": 15352,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -617129,7 +618035,7 @@
}
},
{
- "id": 32642,
+ "id": 15353,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -617204,7 +618110,7 @@
}
},
{
- "id": 32643,
+ "id": 15354,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -617279,7 +618185,7 @@
}
},
{
- "id": 32644,
+ "id": 15355,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -617354,7 +618260,7 @@
}
},
{
- "id": 32645,
+ "id": 15356,
"name": "received_at",
"variant": "declaration",
"kind": 1024,
@@ -617433,30 +618339,30 @@
{
"title": "Properties",
"children": [
- 32622,
- 32623,
- 32624,
- 32625,
- 32626,
- 32627,
- 32628,
- 32629,
- 32630,
- 32631,
- 32632,
- 32633,
- 32634,
- 32635,
- 32636,
- 32637,
- 32638,
- 32639,
- 32640,
- 32641,
- 32642,
- 32643,
- 32644,
- 32645
+ 15333,
+ 15334,
+ 15335,
+ 15336,
+ 15337,
+ 15338,
+ 15339,
+ 15340,
+ 15341,
+ 15342,
+ 15343,
+ 15344,
+ 15345,
+ 15346,
+ 15347,
+ 15348,
+ 15349,
+ 15350,
+ 15351,
+ 15352,
+ 15353,
+ 15354,
+ 15355,
+ 15356
]
}
],
@@ -617501,14 +618407,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32646,
+ "id": 15357,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32647,
+ "id": 15358,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -617522,7 +618428,7 @@
],
"signatures": [
{
- "id": 32648,
+ "id": 15359,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -617536,7 +618442,7 @@
],
"parameters": [
{
- "id": 32649,
+ "id": 15360,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -617547,14 +618453,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32650,
+ "id": 15361,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32651,
+ "id": 15362,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -617578,7 +618484,7 @@
{
"title": "Properties",
"children": [
- 32651
+ 15362
]
}
],
@@ -617660,7 +618566,7 @@
{
"title": "Methods",
"children": [
- 32647
+ 15358
]
}
],
@@ -617701,7 +618607,7 @@
}
},
{
- "id": 32652,
+ "id": 15363,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -617724,7 +618630,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32653,
+ "id": 15364,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -617738,7 +618644,7 @@
],
"signatures": [
{
- "id": 32654,
+ "id": 15365,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -617766,7 +618672,7 @@
],
"typeParameters": [
{
- "id": 32655,
+ "id": 15366,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -617777,7 +618683,7 @@
}
},
{
- "id": 32656,
+ "id": 15367,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -617790,7 +618696,7 @@
],
"parameters": [
{
- "id": 32657,
+ "id": 15368,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -617823,7 +618729,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -617857,7 +618763,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -617890,7 +618796,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -617910,7 +618816,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -617930,7 +618836,7 @@
}
},
{
- "id": 32658,
+ "id": 15369,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -617953,7 +618859,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32659,
+ "id": 15370,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -617967,7 +618873,7 @@
],
"signatures": [
{
- "id": 32660,
+ "id": 15371,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -617989,7 +618895,7 @@
}
},
{
- "id": 32661,
+ "id": 15372,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -618012,7 +618918,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32662,
+ "id": 15373,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -618026,7 +618932,7 @@
],
"signatures": [
{
- "id": 32663,
+ "id": 15374,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -618040,7 +618946,7 @@
],
"parameters": [
{
- "id": 32664,
+ "id": 15375,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -618066,7 +618972,7 @@
}
},
{
- "id": 32665,
+ "id": 15376,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -618089,14 +618995,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32666,
+ "id": 15377,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32667,
+ "id": 15378,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -618104,7 +619010,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32668,
+ "id": 15379,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -618118,7 +619024,7 @@
],
"signatures": [
{
- "id": 32669,
+ "id": 15380,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -618132,7 +619038,7 @@
],
"typeParameters": [
{
- "id": 32670,
+ "id": 15381,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -618141,7 +619047,7 @@
],
"parameters": [
{
- "id": 32671,
+ "id": 15382,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -618156,14 +619062,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32672,
+ "id": 15383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32673,
+ "id": 15384,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -618173,7 +619079,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 378,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L378"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L378"
}
],
"type": {
@@ -618187,7 +619093,7 @@
}
},
{
- "id": 32674,
+ "id": 15385,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -618205,7 +619111,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 379,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L379"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L379"
}
],
"type": {
@@ -618228,8 +619134,8 @@
{
"title": "Properties",
"children": [
- 32673,
- 32674
+ 15384,
+ 15385
]
}
],
@@ -618238,7 +619144,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 377,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L377"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L377"
}
]
}
@@ -618273,7 +619179,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -618284,7 +619190,7 @@
}
},
{
- "id": 32675,
+ "id": 15386,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -618300,7 +619206,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -618321,7 +619227,7 @@
}
},
{
- "id": 42897,
+ "id": 25838,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -618388,14 +619294,14 @@
},
"signatures": [
{
- "id": 42898,
+ "id": 25839,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42899,
+ "id": 25840,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -618410,7 +619316,7 @@
},
"type": {
"type": "reference",
- "target": 32672,
+ "target": 15383,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -618424,13 +619330,13 @@
{
"title": "Properties",
"children": [
- 32667
+ 15378
]
},
{
"title": "Functions",
"children": [
- 42897
+ 25838
]
}
],
@@ -618447,7 +619353,7 @@
],
"documents": [
{
- "id": 42895,
+ "id": 25836,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -618473,7 +619379,7 @@
"frontmatter": {}
},
{
- "id": 42896,
+ "id": 25837,
"name": "createCompleteReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -618499,7 +619405,7 @@
"frontmatter": {}
},
{
- "id": 42900,
+ "id": 25841,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -618525,7 +619431,7 @@
"frontmatter": {}
},
{
- "id": 42901,
+ "id": 25842,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -618551,7 +619457,7 @@
"frontmatter": {}
},
{
- "id": 42902,
+ "id": 25843,
"name": "createReturnFulfillmentWorkflow",
"variant": "document",
"kind": 8388608,
@@ -618577,7 +619483,7 @@
"frontmatter": {}
},
{
- "id": 42903,
+ "id": 25844,
"name": "createCompleteReturnStep",
"variant": "document",
"kind": 8388608,
@@ -618603,7 +619509,7 @@
"frontmatter": {}
},
{
- "id": 42904,
+ "id": 25845,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -618630,21 +619536,21 @@
}
],
"childrenIncludingDocuments": [
- 32615,
- 32652,
- 32658,
- 32661,
- 32665
+ 15326,
+ 15363,
+ 15369,
+ 15372,
+ 15376
],
"groups": [
{
"title": "Properties",
"children": [
- 32615,
- 32652,
- 32658,
- 32661,
- 32665
+ 15326,
+ 15363,
+ 15369,
+ 15372,
+ 15376
]
}
],
@@ -618653,12 +619559,12 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 350,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L350"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L350"
}
],
"signatures": [
{
- "id": 32608,
+ "id": 15319,
"name": "createAndCompleteReturnOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -618732,12 +619638,12 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 350,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L350"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L350"
}
],
"typeParameters": [
{
- "id": 32609,
+ "id": 15320,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -618748,7 +619654,7 @@
}
},
{
- "id": 32610,
+ "id": 15321,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -618761,7 +619667,7 @@
],
"parameters": [
{
- "id": 32611,
+ "id": 15322,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -618785,14 +619691,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32612,
+ "id": 15323,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32613,
+ "id": 15324,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -618815,7 +619721,7 @@
}
},
{
- "id": 32614,
+ "id": 15325,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -618842,8 +619748,8 @@
{
"title": "Properties",
"children": [
- 32613,
- 32614
+ 15324,
+ 15325
]
}
],
@@ -618950,14 +619856,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -618972,14 +619878,14 @@
]
},
{
- "id": 32672,
+ "id": 15383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32673,
+ "id": 15384,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -618989,7 +619895,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 378,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L378"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L378"
}
],
"type": {
@@ -619003,7 +619909,7 @@
}
},
{
- "id": 32674,
+ "id": 15385,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -619021,7 +619927,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 379,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L379"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L379"
}
],
"type": {
@@ -619044,8 +619950,8 @@
{
"title": "Properties",
"children": [
- 32673,
- 32674
+ 15384,
+ 15385
]
}
],
@@ -619054,12 +619960,12 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 377,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L377"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L377"
}
]
},
{
- "id": 32673,
+ "id": 15384,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -619069,7 +619975,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 378,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L378"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L378"
}
],
"type": {
@@ -619083,7 +619989,7 @@
}
},
{
- "id": 32674,
+ "id": 15385,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -619101,7 +620007,7 @@
"fileName": "core-flows/src/order/workflows/return/create-complete-return.ts",
"line": 379,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L379"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-complete-return.ts#L379"
}
],
"type": {
@@ -619120,7 +620026,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 32678,
+ "id": 15389,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -619138,7 +620044,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L34"
}
],
"type": {
@@ -619152,7 +620058,7 @@
}
},
{
- "id": 32679,
+ "id": 15390,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -619170,7 +620076,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L38"
}
],
"type": {
@@ -619184,7 +620090,7 @@
}
},
{
- "id": 32680,
+ "id": 15391,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -619202,7 +620108,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L42"
}
],
"type": {
@@ -619216,7 +620122,7 @@
}
},
{
- "id": 32681,
+ "id": 15392,
"name": "createReturnShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -619251,7 +620157,7 @@
},
"children": [
{
- "id": 32690,
+ "id": 15401,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -619269,7 +620175,7 @@
}
},
{
- "id": 32691,
+ "id": 15402,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -619291,8 +620197,8 @@
{
"title": "Properties",
"children": [
- 32690,
- 32691
+ 15401,
+ 15402
]
}
],
@@ -619301,12 +620207,12 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L72"
}
],
"signatures": [
{
- "id": 32682,
+ "id": 15393,
"name": "createReturnShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -619344,12 +620250,12 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 72,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L72"
}
],
"parameters": [
{
- "id": 32683,
+ "id": 15394,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -619359,7 +620265,7 @@
"types": [
{
"type": "reference",
- "target": 32676,
+ "target": 15387,
"name": "CreateReturnShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -619372,7 +620278,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32676,
+ "target": 15387,
"name": "CreateReturnShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -619405,14 +620311,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32684,
+ "id": 15395,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32685,
+ "id": 15396,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -619426,7 +620332,7 @@
],
"signatures": [
{
- "id": 32686,
+ "id": 15397,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -619440,7 +620346,7 @@
],
"parameters": [
{
- "id": 32687,
+ "id": 15398,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -619451,14 +620357,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32688,
+ "id": 15399,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32689,
+ "id": 15400,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -619482,7 +620388,7 @@
{
"title": "Properties",
"children": [
- 32689
+ 15400
]
}
],
@@ -619559,7 +620465,7 @@
{
"title": "Methods",
"children": [
- 32685
+ 15396
]
}
],
@@ -619593,7 +620499,7 @@
]
},
{
- "id": 32694,
+ "id": 15405,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -619611,7 +620517,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L92"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L92"
}
],
"type": {
@@ -619620,7 +620526,7 @@
}
},
{
- "id": 32695,
+ "id": 15406,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -619640,7 +620546,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L96"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L96"
}
],
"type": {
@@ -619649,7 +620555,7 @@
}
},
{
- "id": 32696,
+ "id": 15407,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -619669,7 +620575,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L100"
}
],
"type": {
@@ -619678,7 +620584,7 @@
}
},
{
- "id": 32697,
+ "id": 15408,
"name": "shipping_option_id",
"variant": "declaration",
"kind": 1024,
@@ -619696,7 +620602,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L104"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L104"
}
],
"type": {
@@ -619705,7 +620611,7 @@
}
},
{
- "id": 32698,
+ "id": 15409,
"name": "custom_amount",
"variant": "declaration",
"kind": 1024,
@@ -619725,7 +620631,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L109"
}
],
"type": {
@@ -619748,7 +620654,7 @@
}
},
{
- "id": 32699,
+ "id": 15410,
"name": "createReturnShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -619760,7 +620666,7 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L112"
}
],
"type": {
@@ -619770,7 +620676,7 @@
"defaultValue": "\"create-return-shipping-method\""
},
{
- "id": 32700,
+ "id": 15411,
"name": "createReturnShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -619823,7 +620729,7 @@
},
"children": [
{
- "id": 32708,
+ "id": 15419,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -619846,7 +620752,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32709,
+ "id": 15420,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -619860,7 +620766,7 @@
],
"signatures": [
{
- "id": 32710,
+ "id": 15421,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -619888,7 +620794,7 @@
],
"parameters": [
{
- "id": 32711,
+ "id": 15422,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -619904,14 +620810,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32712,
+ "id": 15423,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32713,
+ "id": 15424,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -619936,7 +620842,7 @@
"types": [
{
"type": "reference",
- "target": 32692,
+ "target": 15403,
"name": "CreateReturnShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -619949,7 +620855,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32692,
+ "target": 15403,
"name": "CreateReturnShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -619965,7 +620871,7 @@
{
"title": "Properties",
"children": [
- 32713
+ 15424
]
}
],
@@ -619986,14 +620892,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32714,
+ "id": 15425,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32727,
+ "id": 15438,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -620039,7 +620945,7 @@
}
},
{
- "id": 32787,
+ "id": 15498,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -620085,7 +620991,7 @@
}
},
{
- "id": 32788,
+ "id": 15499,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -620131,7 +621037,7 @@
}
},
{
- "id": 32789,
+ "id": 15500,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -620188,7 +621094,7 @@
}
},
{
- "id": 32790,
+ "id": 15501,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -620244,7 +621150,7 @@
}
},
{
- "id": 32755,
+ "id": 15466,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -620301,7 +621207,7 @@
}
},
{
- "id": 32756,
+ "id": 15467,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -620358,7 +621264,7 @@
}
},
{
- "id": 32757,
+ "id": 15468,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -620415,7 +621321,7 @@
}
},
{
- "id": 32732,
+ "id": 15443,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -620472,7 +621378,7 @@
}
},
{
- "id": 32758,
+ "id": 15469,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -620518,7 +621424,7 @@
}
},
{
- "id": 32759,
+ "id": 15470,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -620588,7 +621494,7 @@
}
},
{
- "id": 32760,
+ "id": 15471,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -620658,7 +621564,7 @@
}
},
{
- "id": 32791,
+ "id": 15502,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -620734,7 +621640,7 @@
}
},
{
- "id": 32761,
+ "id": 15472,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -620810,7 +621716,7 @@
}
},
{
- "id": 32792,
+ "id": 15503,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -620880,7 +621786,7 @@
}
},
{
- "id": 32793,
+ "id": 15504,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -620937,7 +621843,7 @@
}
},
{
- "id": 32731,
+ "id": 15442,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -621032,7 +621938,7 @@
}
},
{
- "id": 32786,
+ "id": 15497,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -621107,7 +622013,7 @@
}
},
{
- "id": 32728,
+ "id": 15439,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -621176,7 +622082,7 @@
}
},
{
- "id": 32729,
+ "id": 15440,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -621245,7 +622151,7 @@
}
},
{
- "id": 32730,
+ "id": 15441,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -621320,7 +622226,7 @@
}
},
{
- "id": 32762,
+ "id": 15473,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -621376,7 +622282,7 @@
}
},
{
- "id": 32763,
+ "id": 15474,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -621432,7 +622338,7 @@
}
},
{
- "id": 32764,
+ "id": 15475,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -621488,7 +622394,7 @@
}
},
{
- "id": 32736,
+ "id": 15447,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -621544,7 +622450,7 @@
}
},
{
- "id": 32737,
+ "id": 15448,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -621600,7 +622506,7 @@
}
},
{
- "id": 32738,
+ "id": 15449,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -621656,7 +622562,7 @@
}
},
{
- "id": 32794,
+ "id": 15505,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -621712,7 +622618,7 @@
}
},
{
- "id": 32733,
+ "id": 15444,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -621768,7 +622674,7 @@
}
},
{
- "id": 32734,
+ "id": 15445,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -621824,7 +622730,7 @@
}
},
{
- "id": 32735,
+ "id": 15446,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -621880,7 +622786,7 @@
}
},
{
- "id": 32739,
+ "id": 15450,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -621936,7 +622842,7 @@
}
},
{
- "id": 32740,
+ "id": 15451,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -621992,7 +622898,7 @@
}
},
{
- "id": 32741,
+ "id": 15452,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -622048,7 +622954,7 @@
}
},
{
- "id": 32795,
+ "id": 15506,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -622104,7 +623010,7 @@
}
},
{
- "id": 32742,
+ "id": 15453,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -622160,7 +623066,7 @@
}
},
{
- "id": 32743,
+ "id": 15454,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -622216,7 +623122,7 @@
}
},
{
- "id": 32785,
+ "id": 15496,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -622272,7 +623178,7 @@
}
},
{
- "id": 32765,
+ "id": 15476,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -622328,7 +623234,7 @@
}
},
{
- "id": 32766,
+ "id": 15477,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -622384,7 +623290,7 @@
}
},
{
- "id": 32767,
+ "id": 15478,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -622440,7 +623346,7 @@
}
},
{
- "id": 32768,
+ "id": 15479,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -622496,7 +623402,7 @@
}
},
{
- "id": 32769,
+ "id": 15480,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -622552,7 +623458,7 @@
}
},
{
- "id": 32796,
+ "id": 15507,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -622608,7 +623514,7 @@
}
},
{
- "id": 32770,
+ "id": 15481,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -622664,7 +623570,7 @@
}
},
{
- "id": 32771,
+ "id": 15482,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -622720,7 +623626,7 @@
}
},
{
- "id": 32772,
+ "id": 15483,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -622776,7 +623682,7 @@
}
},
{
- "id": 32715,
+ "id": 15426,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -622832,7 +623738,7 @@
}
},
{
- "id": 32716,
+ "id": 15427,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -622872,14 +623778,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32717,
+ "id": 15428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32718,
+ "id": 15429,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -622911,7 +623817,7 @@
{
"title": "Properties",
"children": [
- 32718
+ 15429
]
}
],
@@ -622951,14 +623857,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32719,
+ "id": 15430,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32720,
+ "id": 15431,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -622990,7 +623896,7 @@
{
"title": "Properties",
"children": [
- 32720
+ 15431
]
}
],
@@ -623014,7 +623920,7 @@
}
},
{
- "id": 32721,
+ "id": 15432,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -623054,14 +623960,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32722,
+ "id": 15433,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32723,
+ "id": 15434,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -623093,7 +623999,7 @@
{
"title": "Properties",
"children": [
- 32723
+ 15434
]
}
],
@@ -623133,14 +624039,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32724,
+ "id": 15435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32725,
+ "id": 15436,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -623172,7 +624078,7 @@
{
"title": "Properties",
"children": [
- 32725
+ 15436
]
}
],
@@ -623196,7 +624102,7 @@
}
},
{
- "id": 32726,
+ "id": 15437,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -623246,57 +624152,57 @@
{
"title": "Properties",
"children": [
- 32727,
- 32787,
- 32788,
- 32789,
- 32790,
- 32755,
- 32756,
- 32757,
- 32732,
- 32758,
- 32759,
- 32760,
- 32791,
- 32761,
- 32792,
- 32793,
- 32731,
- 32786,
- 32728,
- 32729,
- 32730,
- 32762,
- 32763,
- 32764,
- 32736,
- 32737,
- 32738,
- 32794,
- 32733,
- 32734,
- 32735,
- 32739,
- 32740,
- 32741,
- 32795,
- 32742,
- 32743,
- 32785,
- 32765,
- 32766,
- 32767,
- 32768,
- 32769,
- 32796,
- 32770,
- 32771,
- 32772,
- 32715,
- 32716,
- 32721,
- 32726
+ 15438,
+ 15498,
+ 15499,
+ 15500,
+ 15501,
+ 15466,
+ 15467,
+ 15468,
+ 15443,
+ 15469,
+ 15470,
+ 15471,
+ 15502,
+ 15472,
+ 15503,
+ 15504,
+ 15442,
+ 15497,
+ 15439,
+ 15440,
+ 15441,
+ 15473,
+ 15474,
+ 15475,
+ 15447,
+ 15448,
+ 15449,
+ 15505,
+ 15444,
+ 15445,
+ 15446,
+ 15450,
+ 15451,
+ 15452,
+ 15506,
+ 15453,
+ 15454,
+ 15496,
+ 15476,
+ 15477,
+ 15478,
+ 15479,
+ 15480,
+ 15507,
+ 15481,
+ 15482,
+ 15483,
+ 15426,
+ 15427,
+ 15432,
+ 15437
]
}
],
@@ -623341,14 +624247,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32797,
+ "id": 15508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32798,
+ "id": 15509,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -623362,7 +624268,7 @@
],
"signatures": [
{
- "id": 32799,
+ "id": 15510,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -623376,7 +624282,7 @@
],
"parameters": [
{
- "id": 32800,
+ "id": 15511,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -623387,14 +624293,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32801,
+ "id": 15512,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32802,
+ "id": 15513,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -623418,7 +624324,7 @@
{
"title": "Properties",
"children": [
- 32802
+ 15513
]
}
],
@@ -623500,7 +624406,7 @@
{
"title": "Methods",
"children": [
- 32798
+ 15509
]
}
],
@@ -623541,7 +624447,7 @@
}
},
{
- "id": 32803,
+ "id": 15514,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -623564,7 +624470,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32804,
+ "id": 15515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -623578,7 +624484,7 @@
],
"signatures": [
{
- "id": 32805,
+ "id": 15516,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -623606,7 +624512,7 @@
],
"typeParameters": [
{
- "id": 32806,
+ "id": 15517,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -623617,7 +624523,7 @@
}
},
{
- "id": 32807,
+ "id": 15518,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -623630,7 +624536,7 @@
],
"parameters": [
{
- "id": 32808,
+ "id": 15519,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -623663,7 +624569,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -623674,13 +624580,13 @@
},
"trueType": {
"type": "reference",
- "target": 32692,
+ "target": 15403,
"name": "CreateReturnShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -623713,7 +624619,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -623733,7 +624639,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -623753,7 +624659,7 @@
}
},
{
- "id": 32809,
+ "id": 15520,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -623776,7 +624682,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32810,
+ "id": 15521,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -623790,7 +624696,7 @@
],
"signatures": [
{
- "id": 32811,
+ "id": 15522,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -623812,7 +624718,7 @@
}
},
{
- "id": 32812,
+ "id": 15523,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -623835,7 +624741,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32813,
+ "id": 15524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -623849,7 +624755,7 @@
],
"signatures": [
{
- "id": 32814,
+ "id": 15525,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -623863,7 +624769,7 @@
],
"parameters": [
{
- "id": 32815,
+ "id": 15526,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -623889,7 +624795,7 @@
}
},
{
- "id": 32816,
+ "id": 15527,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -623912,7 +624818,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32817,
+ "id": 15528,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -623923,7 +624829,7 @@
],
"documents": [
{
- "id": 42905,
+ "id": 25846,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -623949,7 +624855,7 @@
"frontmatter": {}
},
{
- "id": 42906,
+ "id": 25847,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -623975,7 +624881,7 @@
"frontmatter": {}
},
{
- "id": 42907,
+ "id": 25848,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -624001,7 +624907,7 @@
"frontmatter": {}
},
{
- "id": 42908,
+ "id": 25849,
"name": "fetchShippingOptionForOrderWorkflow",
"variant": "document",
"kind": 8388608,
@@ -624027,7 +624933,7 @@
"frontmatter": {}
},
{
- "id": 42909,
+ "id": 25850,
"name": "createReturnShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -624053,7 +624959,7 @@
"frontmatter": {}
},
{
- "id": 42910,
+ "id": 25851,
"name": "updateOrderTaxLinesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -624079,7 +624985,7 @@
"frontmatter": {}
},
{
- "id": 42911,
+ "id": 25852,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -624105,7 +625011,7 @@
"frontmatter": {}
},
{
- "id": 42912,
+ "id": 25853,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -624132,21 +625038,21 @@
}
],
"childrenIncludingDocuments": [
- 32708,
- 32803,
- 32809,
- 32812,
- 32816
+ 15419,
+ 15514,
+ 15520,
+ 15523,
+ 15527
],
"groups": [
{
"title": "Properties",
"children": [
- 32708,
- 32803,
- 32809,
- 32812,
- 32816
+ 15419,
+ 15514,
+ 15520,
+ 15523,
+ 15527
]
}
],
@@ -624155,12 +625061,12 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 134,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L134"
}
],
"signatures": [
{
- "id": 32701,
+ "id": 15412,
"name": "createReturnShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -624216,12 +625122,12 @@
"fileName": "core-flows/src/order/workflows/return/create-return-shipping-method.ts",
"line": 134,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/create-return-shipping-method.ts#L134"
}
],
"typeParameters": [
{
- "id": 32702,
+ "id": 15413,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -624232,7 +625138,7 @@
}
},
{
- "id": 32703,
+ "id": 15414,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -624245,7 +625151,7 @@
],
"parameters": [
{
- "id": 32704,
+ "id": 15415,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -624269,14 +625175,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32705,
+ "id": 15416,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32706,
+ "id": 15417,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -624299,7 +625205,7 @@
}
},
{
- "id": 32707,
+ "id": 15418,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -624326,8 +625232,8 @@
{
"title": "Properties",
"children": [
- 32706,
- 32707
+ 15417,
+ 15418
]
}
],
@@ -624402,7 +625308,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32692,
+ "target": 15403,
"name": "CreateReturnShippingMethodWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -624417,14 +625323,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -624439,7 +625345,7 @@
]
},
{
- "id": 32820,
+ "id": 15531,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -624457,7 +625363,7 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L32"
}
],
"type": {
@@ -624495,7 +625401,7 @@
}
},
{
- "id": 32821,
+ "id": 15532,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -624513,7 +625419,7 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L36"
}
],
"type": {
@@ -624527,7 +625433,7 @@
}
},
{
- "id": 32822,
+ "id": 15533,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -624545,7 +625451,7 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L40"
}
],
"type": {
@@ -624559,7 +625465,7 @@
}
},
{
- "id": 32823,
+ "id": 15534,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -624577,7 +625483,7 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L44"
}
],
"type": {
@@ -624599,7 +625505,7 @@
}
},
{
- "id": 32824,
+ "id": 15535,
"name": "dismissItemReturnRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -624634,7 +625540,7 @@
},
"children": [
{
- "id": 32833,
+ "id": 15544,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -624652,7 +625558,7 @@
}
},
{
- "id": 32834,
+ "id": 15545,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -624674,8 +625580,8 @@
{
"title": "Properties",
"children": [
- 32833,
- 32834
+ 15544,
+ 15545
]
}
],
@@ -624684,12 +625590,12 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L86"
}
],
"signatures": [
{
- "id": 32825,
+ "id": 15536,
"name": "dismissItemReturnRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -624727,12 +625633,12 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L86"
}
],
"parameters": [
{
- "id": 32826,
+ "id": 15537,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -624742,7 +625648,7 @@
"types": [
{
"type": "reference",
- "target": 32818,
+ "target": 15529,
"name": "DismissItemReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -624755,7 +625661,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32818,
+ "target": 15529,
"name": "DismissItemReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -624788,14 +625694,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32827,
+ "id": 15538,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32828,
+ "id": 15539,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -624809,7 +625715,7 @@
],
"signatures": [
{
- "id": 32829,
+ "id": 15540,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -624823,7 +625729,7 @@
],
"parameters": [
{
- "id": 32830,
+ "id": 15541,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -624834,14 +625740,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32831,
+ "id": 15542,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32832,
+ "id": 15543,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -624865,7 +625771,7 @@
{
"title": "Properties",
"children": [
- 32832
+ 15543
]
}
],
@@ -624942,7 +625848,7 @@
{
"title": "Methods",
"children": [
- 32828
+ 15539
]
}
],
@@ -624976,7 +625882,7 @@
]
},
{
- "id": 32836,
+ "id": 15547,
"name": "dismissItemReturnRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -624988,7 +625894,7 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L112"
}
],
"type": {
@@ -624998,7 +625904,7 @@
"defaultValue": "\"dismiss-item-return-request\""
},
{
- "id": 32837,
+ "id": 15548,
"name": "dismissItemReturnRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -625051,7 +625957,7 @@
},
"children": [
{
- "id": 32845,
+ "id": 15556,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -625074,7 +625980,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32846,
+ "id": 15557,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -625088,7 +625994,7 @@
],
"signatures": [
{
- "id": 32847,
+ "id": 15558,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -625116,7 +626022,7 @@
],
"parameters": [
{
- "id": 32848,
+ "id": 15559,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -625132,14 +626038,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32849,
+ "id": 15560,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32850,
+ "id": 15561,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -625199,7 +626105,7 @@
{
"title": "Properties",
"children": [
- 32850
+ 15561
]
}
],
@@ -625220,14 +626126,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32851,
+ "id": 15562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32864,
+ "id": 15575,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -625273,7 +626179,7 @@
}
},
{
- "id": 32924,
+ "id": 15635,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -625319,7 +626225,7 @@
}
},
{
- "id": 32925,
+ "id": 15636,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -625365,7 +626271,7 @@
}
},
{
- "id": 32926,
+ "id": 15637,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -625422,7 +626328,7 @@
}
},
{
- "id": 32927,
+ "id": 15638,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -625478,7 +626384,7 @@
}
},
{
- "id": 32892,
+ "id": 15603,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -625535,7 +626441,7 @@
}
},
{
- "id": 32893,
+ "id": 15604,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -625592,7 +626498,7 @@
}
},
{
- "id": 32894,
+ "id": 15605,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -625649,7 +626555,7 @@
}
},
{
- "id": 32869,
+ "id": 15580,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -625706,7 +626612,7 @@
}
},
{
- "id": 32895,
+ "id": 15606,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -625752,7 +626658,7 @@
}
},
{
- "id": 32896,
+ "id": 15607,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -625822,7 +626728,7 @@
}
},
{
- "id": 32897,
+ "id": 15608,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -625892,7 +626798,7 @@
}
},
{
- "id": 32928,
+ "id": 15639,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -625968,7 +626874,7 @@
}
},
{
- "id": 32898,
+ "id": 15609,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -626044,7 +626950,7 @@
}
},
{
- "id": 32929,
+ "id": 15640,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -626114,7 +627020,7 @@
}
},
{
- "id": 32930,
+ "id": 15641,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -626171,7 +627077,7 @@
}
},
{
- "id": 32868,
+ "id": 15579,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -626266,7 +627172,7 @@
}
},
{
- "id": 32923,
+ "id": 15634,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -626341,7 +627247,7 @@
}
},
{
- "id": 32865,
+ "id": 15576,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -626410,7 +627316,7 @@
}
},
{
- "id": 32866,
+ "id": 15577,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -626479,7 +627385,7 @@
}
},
{
- "id": 32867,
+ "id": 15578,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -626554,7 +627460,7 @@
}
},
{
- "id": 32899,
+ "id": 15610,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -626610,7 +627516,7 @@
}
},
{
- "id": 32900,
+ "id": 15611,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -626666,7 +627572,7 @@
}
},
{
- "id": 32901,
+ "id": 15612,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -626722,7 +627628,7 @@
}
},
{
- "id": 32873,
+ "id": 15584,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -626778,7 +627684,7 @@
}
},
{
- "id": 32874,
+ "id": 15585,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -626834,7 +627740,7 @@
}
},
{
- "id": 32875,
+ "id": 15586,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -626890,7 +627796,7 @@
}
},
{
- "id": 32931,
+ "id": 15642,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -626946,7 +627852,7 @@
}
},
{
- "id": 32870,
+ "id": 15581,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -627002,7 +627908,7 @@
}
},
{
- "id": 32871,
+ "id": 15582,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -627058,7 +627964,7 @@
}
},
{
- "id": 32872,
+ "id": 15583,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -627114,7 +628020,7 @@
}
},
{
- "id": 32876,
+ "id": 15587,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -627170,7 +628076,7 @@
}
},
{
- "id": 32877,
+ "id": 15588,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -627226,7 +628132,7 @@
}
},
{
- "id": 32878,
+ "id": 15589,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -627282,7 +628188,7 @@
}
},
{
- "id": 32932,
+ "id": 15643,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -627338,7 +628244,7 @@
}
},
{
- "id": 32879,
+ "id": 15590,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -627394,7 +628300,7 @@
}
},
{
- "id": 32880,
+ "id": 15591,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -627450,7 +628356,7 @@
}
},
{
- "id": 32922,
+ "id": 15633,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -627506,7 +628412,7 @@
}
},
{
- "id": 32902,
+ "id": 15613,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -627562,7 +628468,7 @@
}
},
{
- "id": 32903,
+ "id": 15614,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -627618,7 +628524,7 @@
}
},
{
- "id": 32904,
+ "id": 15615,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -627674,7 +628580,7 @@
}
},
{
- "id": 32905,
+ "id": 15616,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -627730,7 +628636,7 @@
}
},
{
- "id": 32906,
+ "id": 15617,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -627786,7 +628692,7 @@
}
},
{
- "id": 32933,
+ "id": 15644,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -627842,7 +628748,7 @@
}
},
{
- "id": 32907,
+ "id": 15618,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -627898,7 +628804,7 @@
}
},
{
- "id": 32908,
+ "id": 15619,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -627954,7 +628860,7 @@
}
},
{
- "id": 32909,
+ "id": 15620,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -628010,7 +628916,7 @@
}
},
{
- "id": 32852,
+ "id": 15563,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -628066,7 +628972,7 @@
}
},
{
- "id": 32853,
+ "id": 15564,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -628106,14 +629012,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32854,
+ "id": 15565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32855,
+ "id": 15566,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -628145,7 +629051,7 @@
{
"title": "Properties",
"children": [
- 32855
+ 15566
]
}
],
@@ -628185,14 +629091,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32856,
+ "id": 15567,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32857,
+ "id": 15568,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -628224,7 +629130,7 @@
{
"title": "Properties",
"children": [
- 32857
+ 15568
]
}
],
@@ -628248,7 +629154,7 @@
}
},
{
- "id": 32858,
+ "id": 15569,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -628288,14 +629194,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32859,
+ "id": 15570,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32860,
+ "id": 15571,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -628327,7 +629233,7 @@
{
"title": "Properties",
"children": [
- 32860
+ 15571
]
}
],
@@ -628367,14 +629273,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32861,
+ "id": 15572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32862,
+ "id": 15573,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -628406,7 +629312,7 @@
{
"title": "Properties",
"children": [
- 32862
+ 15573
]
}
],
@@ -628430,7 +629336,7 @@
}
},
{
- "id": 32863,
+ "id": 15574,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -628480,57 +629386,57 @@
{
"title": "Properties",
"children": [
- 32864,
- 32924,
- 32925,
- 32926,
- 32927,
- 32892,
- 32893,
- 32894,
- 32869,
- 32895,
- 32896,
- 32897,
- 32928,
- 32898,
- 32929,
- 32930,
- 32868,
- 32923,
- 32865,
- 32866,
- 32867,
- 32899,
- 32900,
- 32901,
- 32873,
- 32874,
- 32875,
- 32931,
- 32870,
- 32871,
- 32872,
- 32876,
- 32877,
- 32878,
- 32932,
- 32879,
- 32880,
- 32922,
- 32902,
- 32903,
- 32904,
- 32905,
- 32906,
- 32933,
- 32907,
- 32908,
- 32909,
- 32852,
- 32853,
- 32858,
- 32863
+ 15575,
+ 15635,
+ 15636,
+ 15637,
+ 15638,
+ 15603,
+ 15604,
+ 15605,
+ 15580,
+ 15606,
+ 15607,
+ 15608,
+ 15639,
+ 15609,
+ 15640,
+ 15641,
+ 15579,
+ 15634,
+ 15576,
+ 15577,
+ 15578,
+ 15610,
+ 15611,
+ 15612,
+ 15584,
+ 15585,
+ 15586,
+ 15642,
+ 15581,
+ 15582,
+ 15583,
+ 15587,
+ 15588,
+ 15589,
+ 15643,
+ 15590,
+ 15591,
+ 15633,
+ 15613,
+ 15614,
+ 15615,
+ 15616,
+ 15617,
+ 15644,
+ 15618,
+ 15619,
+ 15620,
+ 15563,
+ 15564,
+ 15569,
+ 15574
]
}
],
@@ -628575,14 +629481,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32934,
+ "id": 15645,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32935,
+ "id": 15646,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -628596,7 +629502,7 @@
],
"signatures": [
{
- "id": 32936,
+ "id": 15647,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -628610,7 +629516,7 @@
],
"parameters": [
{
- "id": 32937,
+ "id": 15648,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -628621,14 +629527,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32938,
+ "id": 15649,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32939,
+ "id": 15650,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -628652,7 +629558,7 @@
{
"title": "Properties",
"children": [
- 32939
+ 15650
]
}
],
@@ -628734,7 +629640,7 @@
{
"title": "Methods",
"children": [
- 32935
+ 15646
]
}
],
@@ -628775,7 +629681,7 @@
}
},
{
- "id": 32940,
+ "id": 15651,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -628798,7 +629704,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32941,
+ "id": 15652,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -628812,7 +629718,7 @@
],
"signatures": [
{
- "id": 32942,
+ "id": 15653,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -628840,7 +629746,7 @@
],
"typeParameters": [
{
- "id": 32943,
+ "id": 15654,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -628851,7 +629757,7 @@
}
},
{
- "id": 32944,
+ "id": 15655,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -628864,7 +629770,7 @@
],
"parameters": [
{
- "id": 32945,
+ "id": 15656,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -628897,7 +629803,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -628917,7 +629823,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -628950,7 +629856,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -628970,7 +629876,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -628990,7 +629896,7 @@
}
},
{
- "id": 32946,
+ "id": 15657,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -629013,7 +629919,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32947,
+ "id": 15658,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -629027,7 +629933,7 @@
],
"signatures": [
{
- "id": 32948,
+ "id": 15659,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -629049,7 +629955,7 @@
}
},
{
- "id": 32949,
+ "id": 15660,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -629072,7 +629978,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32950,
+ "id": 15661,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -629086,7 +629992,7 @@
],
"signatures": [
{
- "id": 32951,
+ "id": 15662,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -629100,7 +630006,7 @@
],
"parameters": [
{
- "id": 32952,
+ "id": 15663,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -629126,7 +630032,7 @@
}
},
{
- "id": 32953,
+ "id": 15664,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -629149,7 +630055,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32954,
+ "id": 15665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -629160,7 +630066,7 @@
],
"documents": [
{
- "id": 42913,
+ "id": 25854,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -629186,7 +630092,7 @@
"frontmatter": {}
},
{
- "id": 42914,
+ "id": 25855,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -629212,7 +630118,7 @@
"frontmatter": {}
},
{
- "id": 42915,
+ "id": 25856,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -629238,7 +630144,7 @@
"frontmatter": {}
},
{
- "id": 42916,
+ "id": 25857,
"name": "dismissItemReturnRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -629264,7 +630170,7 @@
"frontmatter": {}
},
{
- "id": 42917,
+ "id": 25858,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -629290,7 +630196,7 @@
"frontmatter": {}
},
{
- "id": 42918,
+ "id": 25859,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -629317,21 +630223,21 @@
}
],
"childrenIncludingDocuments": [
- 32845,
- 32940,
- 32946,
- 32949,
- 32953
+ 15556,
+ 15651,
+ 15657,
+ 15660,
+ 15664
],
"groups": [
{
"title": "Properties",
"children": [
- 32845,
- 32940,
- 32946,
- 32949,
- 32953
+ 15556,
+ 15651,
+ 15657,
+ 15660,
+ 15664
]
}
],
@@ -629340,12 +630246,12 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L140"
}
],
"signatures": [
{
- "id": 32838,
+ "id": 15549,
"name": "dismissItemReturnRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -629401,12 +630307,12 @@
"fileName": "core-flows/src/order/workflows/return/dismiss-item-return-request.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/dismiss-item-return-request.ts#L140"
}
],
"typeParameters": [
{
- "id": 32839,
+ "id": 15550,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -629417,7 +630323,7 @@
}
},
{
- "id": 32840,
+ "id": 15551,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -629430,7 +630336,7 @@
],
"parameters": [
{
- "id": 32841,
+ "id": 15552,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -629454,14 +630360,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32842,
+ "id": 15553,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32843,
+ "id": 15554,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -629484,7 +630390,7 @@
}
},
{
- "id": 32844,
+ "id": 15555,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -629511,8 +630417,8 @@
{
"title": "Properties",
"children": [
- 32843,
- 32844
+ 15554,
+ 15555
]
}
],
@@ -629605,14 +630511,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -629627,7 +630533,7 @@
]
},
{
- "id": 32957,
+ "id": 15668,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -629645,7 +630551,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-complete-return.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L24"
}
],
"type": {
@@ -629659,7 +630565,7 @@
}
},
{
- "id": 32958,
+ "id": 15669,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -629677,7 +630583,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-complete-return.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L28"
}
],
"type": {
@@ -629692,7 +630598,7 @@
}
},
{
- "id": 32959,
+ "id": 15670,
"name": "receiveCompleteReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -629727,7 +630633,7 @@
},
"children": [
{
- "id": 32968,
+ "id": 15679,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -629745,7 +630651,7 @@
}
},
{
- "id": 32969,
+ "id": 15680,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -629767,8 +630673,8 @@
{
"title": "Properties",
"children": [
- 32968,
- 32969
+ 15679,
+ 15680
]
}
],
@@ -629777,12 +630683,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-complete-return.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L59"
}
],
"signatures": [
{
- "id": 32960,
+ "id": 15671,
"name": "receiveCompleteReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -629820,12 +630726,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-complete-return.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L59"
}
],
"parameters": [
{
- "id": 32961,
+ "id": 15672,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -629835,7 +630741,7 @@
"types": [
{
"type": "reference",
- "target": 32955,
+ "target": 15666,
"name": "ReceiveCompleteReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -629848,7 +630754,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 32955,
+ "target": 15666,
"name": "ReceiveCompleteReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -629881,14 +630787,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32962,
+ "id": 15673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32963,
+ "id": 15674,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -629902,7 +630808,7 @@
],
"signatures": [
{
- "id": 32964,
+ "id": 15675,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -629916,7 +630822,7 @@
],
"parameters": [
{
- "id": 32965,
+ "id": 15676,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -629927,14 +630833,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32966,
+ "id": 15677,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32967,
+ "id": 15678,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -629958,7 +630864,7 @@
{
"title": "Properties",
"children": [
- 32967
+ 15678
]
}
],
@@ -630035,7 +630941,7 @@
{
"title": "Methods",
"children": [
- 32963
+ 15674
]
}
],
@@ -630069,7 +630975,7 @@
]
},
{
- "id": 32970,
+ "id": 15681,
"name": "receiveAndCompleteReturnOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -630081,7 +630987,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-complete-return.ts",
"line": 70,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L70"
}
],
"type": {
@@ -630091,7 +630997,7 @@
"defaultValue": "\"receive-return-order\""
},
{
- "id": 32971,
+ "id": 15682,
"name": "receiveAndCompleteReturnOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -630135,7 +631041,7 @@
},
"children": [
{
- "id": 32979,
+ "id": 15690,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -630158,7 +631064,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32980,
+ "id": 15691,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -630172,7 +631078,7 @@
],
"signatures": [
{
- "id": 32981,
+ "id": 15692,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -630200,7 +631106,7 @@
],
"parameters": [
{
- "id": 32982,
+ "id": 15693,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -630216,14 +631122,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 32983,
+ "id": 15694,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32984,
+ "id": 15695,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -630283,7 +631189,7 @@
{
"title": "Properties",
"children": [
- 32984
+ 15695
]
}
],
@@ -630304,14 +631210,14 @@
{
"type": "reflection",
"declaration": {
- "id": 32985,
+ "id": 15696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32986,
+ "id": 15697,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -630357,7 +631263,7 @@
}
},
{
- "id": 32987,
+ "id": 15698,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -630413,7 +631319,7 @@
}
},
{
- "id": 32988,
+ "id": 15699,
"name": "refund_amount",
"variant": "declaration",
"kind": 1024,
@@ -630466,7 +631372,7 @@
}
},
{
- "id": 32989,
+ "id": 15700,
"name": "raw_refund_amount",
"variant": "declaration",
"kind": 1024,
@@ -630519,7 +631425,7 @@
}
},
{
- "id": 32990,
+ "id": 15701,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -630565,7 +631471,7 @@
}
},
{
- "id": 32991,
+ "id": 15702,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -630632,7 +631538,7 @@
}
},
{
- "id": 32992,
+ "id": 15703,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -630694,7 +631600,7 @@
}
},
{
- "id": 32993,
+ "id": 15704,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -630751,7 +631657,7 @@
}
},
{
- "id": 32994,
+ "id": 15705,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -630818,7 +631724,7 @@
}
},
{
- "id": 32995,
+ "id": 15706,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -630875,7 +631781,7 @@
}
},
{
- "id": 32996,
+ "id": 15707,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -630942,7 +631848,7 @@
}
},
{
- "id": 32997,
+ "id": 15708,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -630988,7 +631894,7 @@
}
},
{
- "id": 32998,
+ "id": 15709,
"name": "location_id",
"variant": "declaration",
"kind": 1024,
@@ -631045,7 +631951,7 @@
}
},
{
- "id": 32999,
+ "id": 15710,
"name": "no_notification",
"variant": "declaration",
"kind": 1024,
@@ -631102,7 +632008,7 @@
}
},
{
- "id": 33000,
+ "id": 15711,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -631167,7 +632073,7 @@
}
},
{
- "id": 33001,
+ "id": 15712,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -631240,7 +632146,7 @@
}
},
{
- "id": 33002,
+ "id": 15713,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -631313,7 +632219,7 @@
}
},
{
- "id": 33003,
+ "id": 15714,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -631402,7 +632308,7 @@
}
},
{
- "id": 33004,
+ "id": 15715,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -631477,7 +632383,7 @@
}
},
{
- "id": 33005,
+ "id": 15716,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -631552,7 +632458,7 @@
}
},
{
- "id": 33006,
+ "id": 15717,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -631627,7 +632533,7 @@
}
},
{
- "id": 33007,
+ "id": 15718,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -631702,7 +632608,7 @@
}
},
{
- "id": 33008,
+ "id": 15719,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -631777,7 +632683,7 @@
}
},
{
- "id": 33009,
+ "id": 15720,
"name": "received_at",
"variant": "declaration",
"kind": 1024,
@@ -631856,30 +632762,30 @@
{
"title": "Properties",
"children": [
- 32986,
- 32987,
- 32988,
- 32989,
- 32990,
- 32991,
- 32992,
- 32993,
- 32994,
- 32995,
- 32996,
- 32997,
- 32998,
- 32999,
- 33000,
- 33001,
- 33002,
- 33003,
- 33004,
- 33005,
- 33006,
- 33007,
- 33008,
- 33009
+ 15697,
+ 15698,
+ 15699,
+ 15700,
+ 15701,
+ 15702,
+ 15703,
+ 15704,
+ 15705,
+ 15706,
+ 15707,
+ 15708,
+ 15709,
+ 15710,
+ 15711,
+ 15712,
+ 15713,
+ 15714,
+ 15715,
+ 15716,
+ 15717,
+ 15718,
+ 15719,
+ 15720
]
}
],
@@ -631933,14 +632839,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33010,
+ "id": 15721,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33011,
+ "id": 15722,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -631954,7 +632860,7 @@
],
"signatures": [
{
- "id": 33012,
+ "id": 15723,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -631968,7 +632874,7 @@
],
"parameters": [
{
- "id": 33013,
+ "id": 15724,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -631979,14 +632885,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33014,
+ "id": 15725,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33015,
+ "id": 15726,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -632010,7 +632916,7 @@
{
"title": "Properties",
"children": [
- 33015
+ 15726
]
}
],
@@ -632101,7 +633007,7 @@
{
"title": "Methods",
"children": [
- 33011
+ 15722
]
}
],
@@ -632151,7 +633057,7 @@
}
},
{
- "id": 33016,
+ "id": 15727,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -632174,7 +633080,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33017,
+ "id": 15728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -632188,7 +633094,7 @@
],
"signatures": [
{
- "id": 33018,
+ "id": 15729,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -632216,7 +633122,7 @@
],
"typeParameters": [
{
- "id": 33019,
+ "id": 15730,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -632227,7 +633133,7 @@
}
},
{
- "id": 33020,
+ "id": 15731,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -632240,7 +633146,7 @@
],
"parameters": [
{
- "id": 33021,
+ "id": 15732,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -632273,7 +633179,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -632293,7 +633199,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -632326,7 +633232,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -632355,7 +633261,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -632375,7 +633281,7 @@
}
},
{
- "id": 33022,
+ "id": 15733,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -632398,7 +633304,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33023,
+ "id": 15734,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -632412,7 +633318,7 @@
],
"signatures": [
{
- "id": 33024,
+ "id": 15735,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -632434,7 +633340,7 @@
}
},
{
- "id": 33025,
+ "id": 15736,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -632457,7 +633363,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33026,
+ "id": 15737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -632471,7 +633377,7 @@
],
"signatures": [
{
- "id": 33027,
+ "id": 15738,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -632485,7 +633391,7 @@
],
"parameters": [
{
- "id": 33028,
+ "id": 15739,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -632511,7 +633417,7 @@
}
},
{
- "id": 33029,
+ "id": 15740,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -632534,7 +633440,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33030,
+ "id": 15741,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -632545,7 +633451,7 @@
],
"documents": [
{
- "id": 42919,
+ "id": 25860,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -632571,7 +633477,7 @@
"frontmatter": {}
},
{
- "id": 42920,
+ "id": 25861,
"name": "receiveCompleteReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -632598,21 +633504,21 @@
}
],
"childrenIncludingDocuments": [
- 32979,
- 33016,
- 33022,
- 33025,
- 33029
+ 15690,
+ 15727,
+ 15733,
+ 15736,
+ 15740
],
"groups": [
{
"title": "Properties",
"children": [
- 32979,
- 33016,
- 33022,
- 33025,
- 33029
+ 15690,
+ 15727,
+ 15733,
+ 15736,
+ 15740
]
}
],
@@ -632621,12 +633527,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-complete-return.ts",
"line": 95,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L95"
}
],
"signatures": [
{
- "id": 32972,
+ "id": 15683,
"name": "receiveAndCompleteReturnOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -632673,12 +633579,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-complete-return.ts",
"line": 95,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-complete-return.ts#L95"
}
],
"typeParameters": [
{
- "id": 32973,
+ "id": 15684,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -632689,7 +633595,7 @@
}
},
{
- "id": 32974,
+ "id": 15685,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -632702,7 +633608,7 @@
],
"parameters": [
{
- "id": 32975,
+ "id": 15686,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -632726,14 +633632,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 32976,
+ "id": 15687,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 32977,
+ "id": 15688,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -632756,7 +633662,7 @@
}
},
{
- "id": 32978,
+ "id": 15689,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -632783,8 +633689,8 @@
{
"title": "Properties",
"children": [
- 32977,
- 32978
+ 15688,
+ 15689
]
}
],
@@ -632886,14 +633792,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -632908,7 +633814,7 @@
]
},
{
- "id": 33033,
+ "id": 15744,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -632926,7 +633832,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L32"
}
],
"type": {
@@ -632964,7 +633870,7 @@
}
},
{
- "id": 33034,
+ "id": 15745,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -632982,7 +633888,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L36"
}
],
"type": {
@@ -632996,7 +633902,7 @@
}
},
{
- "id": 33035,
+ "id": 15746,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -633014,7 +633920,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L40"
}
],
"type": {
@@ -633028,7 +633934,7 @@
}
},
{
- "id": 33036,
+ "id": 15747,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -633046,7 +633952,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L44"
}
],
"type": {
@@ -633068,7 +633974,7 @@
}
},
{
- "id": 33037,
+ "id": 15748,
"name": "receiveItemReturnRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -633103,7 +634009,7 @@
},
"children": [
{
- "id": 33046,
+ "id": 15757,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -633121,7 +634027,7 @@
}
},
{
- "id": 33047,
+ "id": 15758,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -633143,8 +634049,8 @@
{
"title": "Properties",
"children": [
- 33046,
- 33047
+ 15757,
+ 15758
]
}
],
@@ -633153,12 +634059,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L81"
}
],
"signatures": [
{
- "id": 33038,
+ "id": 15749,
"name": "receiveItemReturnRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -633196,12 +634102,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L81"
}
],
"parameters": [
{
- "id": 33039,
+ "id": 15750,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -633211,7 +634117,7 @@
"types": [
{
"type": "reference",
- "target": 33031,
+ "target": 15742,
"name": "ReceiveItemReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -633224,7 +634130,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33031,
+ "target": 15742,
"name": "ReceiveItemReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -633257,14 +634163,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33040,
+ "id": 15751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33041,
+ "id": 15752,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -633278,7 +634184,7 @@
],
"signatures": [
{
- "id": 33042,
+ "id": 15753,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -633292,7 +634198,7 @@
],
"parameters": [
{
- "id": 33043,
+ "id": 15754,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -633303,14 +634209,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33044,
+ "id": 15755,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33045,
+ "id": 15756,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -633334,7 +634240,7 @@
{
"title": "Properties",
"children": [
- 33045
+ 15756
]
}
],
@@ -633411,7 +634317,7 @@
{
"title": "Methods",
"children": [
- 33041
+ 15752
]
}
],
@@ -633445,7 +634351,7 @@
]
},
{
- "id": 33048,
+ "id": 15759,
"name": "receiveItemReturnRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -633457,7 +634363,7 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L99"
}
],
"type": {
@@ -633467,7 +634373,7 @@
"defaultValue": "\"receive-item-return-request\""
},
{
- "id": 33049,
+ "id": 15760,
"name": "receiveItemReturnRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -633520,7 +634426,7 @@
},
"children": [
{
- "id": 33057,
+ "id": 15768,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -633543,7 +634449,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33058,
+ "id": 15769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -633557,7 +634463,7 @@
],
"signatures": [
{
- "id": 33059,
+ "id": 15770,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -633585,7 +634491,7 @@
],
"parameters": [
{
- "id": 33060,
+ "id": 15771,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -633601,14 +634507,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33061,
+ "id": 15772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33062,
+ "id": 15773,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -633668,7 +634574,7 @@
{
"title": "Properties",
"children": [
- 33062
+ 15773
]
}
],
@@ -633689,14 +634595,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33063,
+ "id": 15774,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33076,
+ "id": 15787,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -633742,7 +634648,7 @@
}
},
{
- "id": 33136,
+ "id": 15847,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -633788,7 +634694,7 @@
}
},
{
- "id": 33137,
+ "id": 15848,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -633834,7 +634740,7 @@
}
},
{
- "id": 33138,
+ "id": 15849,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -633891,7 +634797,7 @@
}
},
{
- "id": 33139,
+ "id": 15850,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -633947,7 +634853,7 @@
}
},
{
- "id": 33104,
+ "id": 15815,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -634004,7 +634910,7 @@
}
},
{
- "id": 33105,
+ "id": 15816,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -634061,7 +634967,7 @@
}
},
{
- "id": 33106,
+ "id": 15817,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -634118,7 +635024,7 @@
}
},
{
- "id": 33081,
+ "id": 15792,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -634175,7 +635081,7 @@
}
},
{
- "id": 33107,
+ "id": 15818,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -634221,7 +635127,7 @@
}
},
{
- "id": 33108,
+ "id": 15819,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -634291,7 +635197,7 @@
}
},
{
- "id": 33109,
+ "id": 15820,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -634361,7 +635267,7 @@
}
},
{
- "id": 33140,
+ "id": 15851,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -634437,7 +635343,7 @@
}
},
{
- "id": 33110,
+ "id": 15821,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -634513,7 +635419,7 @@
}
},
{
- "id": 33141,
+ "id": 15852,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -634583,7 +635489,7 @@
}
},
{
- "id": 33142,
+ "id": 15853,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -634640,7 +635546,7 @@
}
},
{
- "id": 33080,
+ "id": 15791,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -634735,7 +635641,7 @@
}
},
{
- "id": 33135,
+ "id": 15846,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -634810,7 +635716,7 @@
}
},
{
- "id": 33077,
+ "id": 15788,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -634879,7 +635785,7 @@
}
},
{
- "id": 33078,
+ "id": 15789,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -634948,7 +635854,7 @@
}
},
{
- "id": 33079,
+ "id": 15790,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -635023,7 +635929,7 @@
}
},
{
- "id": 33111,
+ "id": 15822,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -635079,7 +635985,7 @@
}
},
{
- "id": 33112,
+ "id": 15823,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -635135,7 +636041,7 @@
}
},
{
- "id": 33113,
+ "id": 15824,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -635191,7 +636097,7 @@
}
},
{
- "id": 33085,
+ "id": 15796,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -635247,7 +636153,7 @@
}
},
{
- "id": 33086,
+ "id": 15797,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -635303,7 +636209,7 @@
}
},
{
- "id": 33087,
+ "id": 15798,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -635359,7 +636265,7 @@
}
},
{
- "id": 33143,
+ "id": 15854,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -635415,7 +636321,7 @@
}
},
{
- "id": 33082,
+ "id": 15793,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -635471,7 +636377,7 @@
}
},
{
- "id": 33083,
+ "id": 15794,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -635527,7 +636433,7 @@
}
},
{
- "id": 33084,
+ "id": 15795,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -635583,7 +636489,7 @@
}
},
{
- "id": 33088,
+ "id": 15799,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -635639,7 +636545,7 @@
}
},
{
- "id": 33089,
+ "id": 15800,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -635695,7 +636601,7 @@
}
},
{
- "id": 33090,
+ "id": 15801,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -635751,7 +636657,7 @@
}
},
{
- "id": 33144,
+ "id": 15855,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -635807,7 +636713,7 @@
}
},
{
- "id": 33091,
+ "id": 15802,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -635863,7 +636769,7 @@
}
},
{
- "id": 33092,
+ "id": 15803,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -635919,7 +636825,7 @@
}
},
{
- "id": 33134,
+ "id": 15845,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -635975,7 +636881,7 @@
}
},
{
- "id": 33114,
+ "id": 15825,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -636031,7 +636937,7 @@
}
},
{
- "id": 33115,
+ "id": 15826,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -636087,7 +636993,7 @@
}
},
{
- "id": 33116,
+ "id": 15827,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -636143,7 +637049,7 @@
}
},
{
- "id": 33117,
+ "id": 15828,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -636199,7 +637105,7 @@
}
},
{
- "id": 33118,
+ "id": 15829,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -636255,7 +637161,7 @@
}
},
{
- "id": 33145,
+ "id": 15856,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -636311,7 +637217,7 @@
}
},
{
- "id": 33119,
+ "id": 15830,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -636367,7 +637273,7 @@
}
},
{
- "id": 33120,
+ "id": 15831,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -636423,7 +637329,7 @@
}
},
{
- "id": 33121,
+ "id": 15832,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -636479,7 +637385,7 @@
}
},
{
- "id": 33064,
+ "id": 15775,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -636535,7 +637441,7 @@
}
},
{
- "id": 33065,
+ "id": 15776,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -636575,14 +637481,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33066,
+ "id": 15777,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33067,
+ "id": 15778,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -636614,7 +637520,7 @@
{
"title": "Properties",
"children": [
- 33067
+ 15778
]
}
],
@@ -636654,14 +637560,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33068,
+ "id": 15779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33069,
+ "id": 15780,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -636693,7 +637599,7 @@
{
"title": "Properties",
"children": [
- 33069
+ 15780
]
}
],
@@ -636717,7 +637623,7 @@
}
},
{
- "id": 33070,
+ "id": 15781,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -636757,14 +637663,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33071,
+ "id": 15782,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33072,
+ "id": 15783,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -636796,7 +637702,7 @@
{
"title": "Properties",
"children": [
- 33072
+ 15783
]
}
],
@@ -636836,14 +637742,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33073,
+ "id": 15784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33074,
+ "id": 15785,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -636875,7 +637781,7 @@
{
"title": "Properties",
"children": [
- 33074
+ 15785
]
}
],
@@ -636899,7 +637805,7 @@
}
},
{
- "id": 33075,
+ "id": 15786,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -636949,57 +637855,57 @@
{
"title": "Properties",
"children": [
- 33076,
- 33136,
- 33137,
- 33138,
- 33139,
- 33104,
- 33105,
- 33106,
- 33081,
- 33107,
- 33108,
- 33109,
- 33140,
- 33110,
- 33141,
- 33142,
- 33080,
- 33135,
- 33077,
- 33078,
- 33079,
- 33111,
- 33112,
- 33113,
- 33085,
- 33086,
- 33087,
- 33143,
- 33082,
- 33083,
- 33084,
- 33088,
- 33089,
- 33090,
- 33144,
- 33091,
- 33092,
- 33134,
- 33114,
- 33115,
- 33116,
- 33117,
- 33118,
- 33145,
- 33119,
- 33120,
- 33121,
- 33064,
- 33065,
- 33070,
- 33075
+ 15787,
+ 15847,
+ 15848,
+ 15849,
+ 15850,
+ 15815,
+ 15816,
+ 15817,
+ 15792,
+ 15818,
+ 15819,
+ 15820,
+ 15851,
+ 15821,
+ 15852,
+ 15853,
+ 15791,
+ 15846,
+ 15788,
+ 15789,
+ 15790,
+ 15822,
+ 15823,
+ 15824,
+ 15796,
+ 15797,
+ 15798,
+ 15854,
+ 15793,
+ 15794,
+ 15795,
+ 15799,
+ 15800,
+ 15801,
+ 15855,
+ 15802,
+ 15803,
+ 15845,
+ 15825,
+ 15826,
+ 15827,
+ 15828,
+ 15829,
+ 15856,
+ 15830,
+ 15831,
+ 15832,
+ 15775,
+ 15776,
+ 15781,
+ 15786
]
}
],
@@ -637044,14 +637950,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33146,
+ "id": 15857,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33147,
+ "id": 15858,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -637065,7 +637971,7 @@
],
"signatures": [
{
- "id": 33148,
+ "id": 15859,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -637079,7 +637985,7 @@
],
"parameters": [
{
- "id": 33149,
+ "id": 15860,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -637090,14 +637996,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33150,
+ "id": 15861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33151,
+ "id": 15862,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -637121,7 +638027,7 @@
{
"title": "Properties",
"children": [
- 33151
+ 15862
]
}
],
@@ -637203,7 +638109,7 @@
{
"title": "Methods",
"children": [
- 33147
+ 15858
]
}
],
@@ -637244,7 +638150,7 @@
}
},
{
- "id": 33152,
+ "id": 15863,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -637267,7 +638173,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33153,
+ "id": 15864,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -637281,7 +638187,7 @@
],
"signatures": [
{
- "id": 33154,
+ "id": 15865,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -637309,7 +638215,7 @@
],
"typeParameters": [
{
- "id": 33155,
+ "id": 15866,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -637320,7 +638226,7 @@
}
},
{
- "id": 33156,
+ "id": 15867,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -637333,7 +638239,7 @@
],
"parameters": [
{
- "id": 33157,
+ "id": 15868,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -637366,7 +638272,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -637386,7 +638292,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -637419,7 +638325,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -637439,7 +638345,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -637459,7 +638365,7 @@
}
},
{
- "id": 33158,
+ "id": 15869,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -637482,7 +638388,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33159,
+ "id": 15870,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -637496,7 +638402,7 @@
],
"signatures": [
{
- "id": 33160,
+ "id": 15871,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -637518,7 +638424,7 @@
}
},
{
- "id": 33161,
+ "id": 15872,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -637541,7 +638447,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33162,
+ "id": 15873,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -637555,7 +638461,7 @@
],
"signatures": [
{
- "id": 33163,
+ "id": 15874,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -637569,7 +638475,7 @@
],
"parameters": [
{
- "id": 33164,
+ "id": 15875,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -637595,7 +638501,7 @@
}
},
{
- "id": 33165,
+ "id": 15876,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -637618,7 +638524,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33166,
+ "id": 15877,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -637629,7 +638535,7 @@
],
"documents": [
{
- "id": 42921,
+ "id": 25862,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -637655,7 +638561,7 @@
"frontmatter": {}
},
{
- "id": 42922,
+ "id": 25863,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -637681,7 +638587,7 @@
"frontmatter": {}
},
{
- "id": 42923,
+ "id": 25864,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -637707,7 +638613,7 @@
"frontmatter": {}
},
{
- "id": 42924,
+ "id": 25865,
"name": "receiveItemReturnRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -637733,7 +638639,7 @@
"frontmatter": {}
},
{
- "id": 42925,
+ "id": 25866,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -637759,7 +638665,7 @@
"frontmatter": {}
},
{
- "id": 42926,
+ "id": 25867,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -637786,21 +638692,21 @@
}
],
"childrenIncludingDocuments": [
- 33057,
- 33152,
- 33158,
- 33161,
- 33165
+ 15768,
+ 15863,
+ 15869,
+ 15872,
+ 15876
],
"groups": [
{
"title": "Properties",
"children": [
- 33057,
- 33152,
- 33158,
- 33161,
- 33165
+ 15768,
+ 15863,
+ 15869,
+ 15872,
+ 15876
]
}
],
@@ -637809,12 +638715,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 125,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L125"
}
],
"signatures": [
{
- "id": 33050,
+ "id": 15761,
"name": "receiveItemReturnRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -637870,12 +638776,12 @@
"fileName": "core-flows/src/order/workflows/return/receive-item-return-request.ts",
"line": 125,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/receive-item-return-request.ts#L125"
}
],
"typeParameters": [
{
- "id": 33051,
+ "id": 15762,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -637886,7 +638792,7 @@
}
},
{
- "id": 33052,
+ "id": 15763,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -637899,7 +638805,7 @@
],
"parameters": [
{
- "id": 33053,
+ "id": 15764,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -637923,14 +638829,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 33054,
+ "id": 15765,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33055,
+ "id": 15766,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -637953,7 +638859,7 @@
}
},
{
- "id": 33056,
+ "id": 15767,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -637980,8 +638886,8 @@
{
"title": "Properties",
"children": [
- 33055,
- 33056
+ 15766,
+ 15767
]
}
],
@@ -638074,14 +638980,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -638096,7 +639002,7 @@
]
},
{
- "id": 33169,
+ "id": 15880,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -638114,7 +639020,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L33"
}
],
"type": {
@@ -638128,7 +639034,7 @@
}
},
{
- "id": 33170,
+ "id": 15881,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -638146,7 +639052,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L37"
}
],
"type": {
@@ -638160,7 +639066,7 @@
}
},
{
- "id": 33171,
+ "id": 15882,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -638178,7 +639084,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L41"
}
],
"type": {
@@ -638192,7 +639098,7 @@
}
},
{
- "id": 33172,
+ "id": 15883,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -638210,7 +639116,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L45"
}
],
"type": {
@@ -638225,7 +639131,7 @@
}
},
{
- "id": 33173,
+ "id": 15884,
"name": "removeItemReceiveReturnActionValidationStep",
"variant": "declaration",
"kind": 64,
@@ -638260,7 +639166,7 @@
},
"children": [
{
- "id": 33182,
+ "id": 15893,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -638278,7 +639184,7 @@
}
},
{
- "id": 33183,
+ "id": 15894,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -638300,8 +639206,8 @@
{
"title": "Properties",
"children": [
- 33182,
- 33183
+ 15893,
+ 15894
]
}
],
@@ -638310,12 +639216,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L81"
}
],
"signatures": [
{
- "id": 33174,
+ "id": 15885,
"name": "removeItemReceiveReturnActionValidationStep",
"variant": "signature",
"kind": 4096,
@@ -638353,12 +639259,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L81"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L81"
}
],
"parameters": [
{
- "id": 33175,
+ "id": 15886,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -638368,7 +639274,7 @@
"types": [
{
"type": "reference",
- "target": 33167,
+ "target": 15878,
"name": "RemoveItemReceiveReturnActionValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -638381,7 +639287,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33167,
+ "target": 15878,
"name": "RemoveItemReceiveReturnActionValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -638414,14 +639320,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33176,
+ "id": 15887,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33177,
+ "id": 15888,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -638435,7 +639341,7 @@
],
"signatures": [
{
- "id": 33178,
+ "id": 15889,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -638449,7 +639355,7 @@
],
"parameters": [
{
- "id": 33179,
+ "id": 15890,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -638460,14 +639366,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33180,
+ "id": 15891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33181,
+ "id": 15892,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -638491,7 +639397,7 @@
{
"title": "Properties",
"children": [
- 33181
+ 15892
]
}
],
@@ -638568,7 +639474,7 @@
{
"title": "Methods",
"children": [
- 33177
+ 15888
]
}
],
@@ -638602,7 +639508,7 @@
]
},
{
- "id": 33184,
+ "id": 15895,
"name": "removeItemReceiveReturnActionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -638614,7 +639520,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L114"
}
],
"type": {
@@ -638624,7 +639530,7 @@
"defaultValue": "\"remove-item-receive-return-action\""
},
{
- "id": 33185,
+ "id": 15896,
"name": "removeItemReceiveReturnActionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -638668,7 +639574,7 @@
},
"children": [
{
- "id": 33193,
+ "id": 15904,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -638691,7 +639597,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33194,
+ "id": 15905,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -638705,7 +639611,7 @@
],
"signatures": [
{
- "id": 33195,
+ "id": 15906,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -638733,7 +639639,7 @@
],
"parameters": [
{
- "id": 33196,
+ "id": 15907,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -638749,14 +639655,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33197,
+ "id": 15908,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33198,
+ "id": 15909,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -638816,7 +639722,7 @@
{
"title": "Properties",
"children": [
- 33198
+ 15909
]
}
],
@@ -638837,14 +639743,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33199,
+ "id": 15910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33212,
+ "id": 15923,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -638890,7 +639796,7 @@
}
},
{
- "id": 33272,
+ "id": 15983,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -638936,7 +639842,7 @@
}
},
{
- "id": 33273,
+ "id": 15984,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -638982,7 +639888,7 @@
}
},
{
- "id": 33274,
+ "id": 15985,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -639039,7 +639945,7 @@
}
},
{
- "id": 33275,
+ "id": 15986,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -639095,7 +640001,7 @@
}
},
{
- "id": 33240,
+ "id": 15951,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -639152,7 +640058,7 @@
}
},
{
- "id": 33241,
+ "id": 15952,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -639209,7 +640115,7 @@
}
},
{
- "id": 33242,
+ "id": 15953,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -639266,7 +640172,7 @@
}
},
{
- "id": 33217,
+ "id": 15928,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -639323,7 +640229,7 @@
}
},
{
- "id": 33243,
+ "id": 15954,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -639369,7 +640275,7 @@
}
},
{
- "id": 33244,
+ "id": 15955,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -639439,7 +640345,7 @@
}
},
{
- "id": 33245,
+ "id": 15956,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -639509,7 +640415,7 @@
}
},
{
- "id": 33276,
+ "id": 15987,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -639585,7 +640491,7 @@
}
},
{
- "id": 33246,
+ "id": 15957,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -639661,7 +640567,7 @@
}
},
{
- "id": 33277,
+ "id": 15988,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -639731,7 +640637,7 @@
}
},
{
- "id": 33278,
+ "id": 15989,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -639788,7 +640694,7 @@
}
},
{
- "id": 33216,
+ "id": 15927,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -639883,7 +640789,7 @@
}
},
{
- "id": 33271,
+ "id": 15982,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -639958,7 +640864,7 @@
}
},
{
- "id": 33213,
+ "id": 15924,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -640027,7 +640933,7 @@
}
},
{
- "id": 33214,
+ "id": 15925,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -640096,7 +641002,7 @@
}
},
{
- "id": 33215,
+ "id": 15926,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -640171,7 +641077,7 @@
}
},
{
- "id": 33247,
+ "id": 15958,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -640227,7 +641133,7 @@
}
},
{
- "id": 33248,
+ "id": 15959,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -640283,7 +641189,7 @@
}
},
{
- "id": 33249,
+ "id": 15960,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -640339,7 +641245,7 @@
}
},
{
- "id": 33221,
+ "id": 15932,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -640395,7 +641301,7 @@
}
},
{
- "id": 33222,
+ "id": 15933,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -640451,7 +641357,7 @@
}
},
{
- "id": 33223,
+ "id": 15934,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -640507,7 +641413,7 @@
}
},
{
- "id": 33279,
+ "id": 15990,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -640563,7 +641469,7 @@
}
},
{
- "id": 33218,
+ "id": 15929,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -640619,7 +641525,7 @@
}
},
{
- "id": 33219,
+ "id": 15930,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -640675,7 +641581,7 @@
}
},
{
- "id": 33220,
+ "id": 15931,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -640731,7 +641637,7 @@
}
},
{
- "id": 33224,
+ "id": 15935,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -640787,7 +641693,7 @@
}
},
{
- "id": 33225,
+ "id": 15936,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -640843,7 +641749,7 @@
}
},
{
- "id": 33226,
+ "id": 15937,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -640899,7 +641805,7 @@
}
},
{
- "id": 33280,
+ "id": 15991,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -640955,7 +641861,7 @@
}
},
{
- "id": 33227,
+ "id": 15938,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -641011,7 +641917,7 @@
}
},
{
- "id": 33228,
+ "id": 15939,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -641067,7 +641973,7 @@
}
},
{
- "id": 33270,
+ "id": 15981,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -641123,7 +642029,7 @@
}
},
{
- "id": 33250,
+ "id": 15961,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -641179,7 +642085,7 @@
}
},
{
- "id": 33251,
+ "id": 15962,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -641235,7 +642141,7 @@
}
},
{
- "id": 33252,
+ "id": 15963,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -641291,7 +642197,7 @@
}
},
{
- "id": 33253,
+ "id": 15964,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -641347,7 +642253,7 @@
}
},
{
- "id": 33254,
+ "id": 15965,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -641403,7 +642309,7 @@
}
},
{
- "id": 33281,
+ "id": 15992,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -641459,7 +642365,7 @@
}
},
{
- "id": 33255,
+ "id": 15966,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -641515,7 +642421,7 @@
}
},
{
- "id": 33256,
+ "id": 15967,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -641571,7 +642477,7 @@
}
},
{
- "id": 33257,
+ "id": 15968,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -641627,7 +642533,7 @@
}
},
{
- "id": 33200,
+ "id": 15911,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -641683,7 +642589,7 @@
}
},
{
- "id": 33201,
+ "id": 15912,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -641723,14 +642629,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33202,
+ "id": 15913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33203,
+ "id": 15914,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -641762,7 +642668,7 @@
{
"title": "Properties",
"children": [
- 33203
+ 15914
]
}
],
@@ -641802,14 +642708,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33204,
+ "id": 15915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33205,
+ "id": 15916,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -641841,7 +642747,7 @@
{
"title": "Properties",
"children": [
- 33205
+ 15916
]
}
],
@@ -641865,7 +642771,7 @@
}
},
{
- "id": 33206,
+ "id": 15917,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -641905,14 +642811,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33207,
+ "id": 15918,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33208,
+ "id": 15919,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -641944,7 +642850,7 @@
{
"title": "Properties",
"children": [
- 33208
+ 15919
]
}
],
@@ -641984,14 +642890,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33209,
+ "id": 15920,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33210,
+ "id": 15921,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -642023,7 +642929,7 @@
{
"title": "Properties",
"children": [
- 33210
+ 15921
]
}
],
@@ -642047,7 +642953,7 @@
}
},
{
- "id": 33211,
+ "id": 15922,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -642097,57 +643003,57 @@
{
"title": "Properties",
"children": [
- 33212,
- 33272,
- 33273,
- 33274,
- 33275,
- 33240,
- 33241,
- 33242,
- 33217,
- 33243,
- 33244,
- 33245,
- 33276,
- 33246,
- 33277,
- 33278,
- 33216,
- 33271,
- 33213,
- 33214,
- 33215,
- 33247,
- 33248,
- 33249,
- 33221,
- 33222,
- 33223,
- 33279,
- 33218,
- 33219,
- 33220,
- 33224,
- 33225,
- 33226,
- 33280,
- 33227,
- 33228,
- 33270,
- 33250,
- 33251,
- 33252,
- 33253,
- 33254,
- 33281,
- 33255,
- 33256,
- 33257,
- 33200,
- 33201,
- 33206,
- 33211
+ 15923,
+ 15983,
+ 15984,
+ 15985,
+ 15986,
+ 15951,
+ 15952,
+ 15953,
+ 15928,
+ 15954,
+ 15955,
+ 15956,
+ 15987,
+ 15957,
+ 15988,
+ 15989,
+ 15927,
+ 15982,
+ 15924,
+ 15925,
+ 15926,
+ 15958,
+ 15959,
+ 15960,
+ 15932,
+ 15933,
+ 15934,
+ 15990,
+ 15929,
+ 15930,
+ 15931,
+ 15935,
+ 15936,
+ 15937,
+ 15991,
+ 15938,
+ 15939,
+ 15981,
+ 15961,
+ 15962,
+ 15963,
+ 15964,
+ 15965,
+ 15992,
+ 15966,
+ 15967,
+ 15968,
+ 15911,
+ 15912,
+ 15917,
+ 15922
]
}
],
@@ -642192,14 +643098,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33282,
+ "id": 15993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33283,
+ "id": 15994,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -642213,7 +643119,7 @@
],
"signatures": [
{
- "id": 33284,
+ "id": 15995,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -642227,7 +643133,7 @@
],
"parameters": [
{
- "id": 33285,
+ "id": 15996,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -642238,14 +643144,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33286,
+ "id": 15997,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33287,
+ "id": 15998,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -642269,7 +643175,7 @@
{
"title": "Properties",
"children": [
- 33287
+ 15998
]
}
],
@@ -642351,7 +643257,7 @@
{
"title": "Methods",
"children": [
- 33283
+ 15994
]
}
],
@@ -642392,7 +643298,7 @@
}
},
{
- "id": 33288,
+ "id": 15999,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -642415,7 +643321,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33289,
+ "id": 16000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -642429,7 +643335,7 @@
],
"signatures": [
{
- "id": 33290,
+ "id": 16001,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -642457,7 +643363,7 @@
],
"typeParameters": [
{
- "id": 33291,
+ "id": 16002,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -642468,7 +643374,7 @@
}
},
{
- "id": 33292,
+ "id": 16003,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -642481,7 +643387,7 @@
],
"parameters": [
{
- "id": 33293,
+ "id": 16004,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -642514,7 +643420,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -642534,7 +643440,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -642567,7 +643473,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -642587,7 +643493,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -642607,7 +643513,7 @@
}
},
{
- "id": 33294,
+ "id": 16005,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -642630,7 +643536,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33295,
+ "id": 16006,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -642644,7 +643550,7 @@
],
"signatures": [
{
- "id": 33296,
+ "id": 16007,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -642666,7 +643572,7 @@
}
},
{
- "id": 33297,
+ "id": 16008,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -642689,7 +643595,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33298,
+ "id": 16009,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -642703,7 +643609,7 @@
],
"signatures": [
{
- "id": 33299,
+ "id": 16010,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -642717,7 +643623,7 @@
],
"parameters": [
{
- "id": 33300,
+ "id": 16011,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -642743,7 +643649,7 @@
}
},
{
- "id": 33301,
+ "id": 16012,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -642766,7 +643672,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33302,
+ "id": 16013,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -642777,7 +643683,7 @@
],
"documents": [
{
- "id": 42927,
+ "id": 25868,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -642803,7 +643709,7 @@
"frontmatter": {}
},
{
- "id": 42928,
+ "id": 25869,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -642829,7 +643735,7 @@
"frontmatter": {}
},
{
- "id": 42929,
+ "id": 25870,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -642855,7 +643761,7 @@
"frontmatter": {}
},
{
- "id": 42930,
+ "id": 25871,
"name": "removeItemReceiveReturnActionValidationStep",
"variant": "document",
"kind": 8388608,
@@ -642881,7 +643787,7 @@
"frontmatter": {}
},
{
- "id": 42931,
+ "id": 25872,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -642907,7 +643813,7 @@
"frontmatter": {}
},
{
- "id": 42932,
+ "id": 25873,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -642934,21 +643840,21 @@
}
],
"childrenIncludingDocuments": [
- 33193,
- 33288,
- 33294,
- 33297,
- 33301
+ 15904,
+ 15999,
+ 16005,
+ 16008,
+ 16012
],
"groups": [
{
"title": "Properties",
"children": [
- 33193,
- 33288,
- 33294,
- 33297,
- 33301
+ 15904,
+ 15999,
+ 16005,
+ 16008,
+ 16012
]
}
],
@@ -642957,12 +643863,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 136,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L136"
}
],
"signatures": [
{
- "id": 33186,
+ "id": 15897,
"name": "removeItemReceiveReturnActionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -643009,12 +643915,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-receive-return-action.ts",
"line": 136,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L136"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-receive-return-action.ts#L136"
}
],
"typeParameters": [
{
- "id": 33187,
+ "id": 15898,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -643025,7 +643931,7 @@
}
},
{
- "id": 33188,
+ "id": 15899,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -643038,7 +643944,7 @@
],
"parameters": [
{
- "id": 33189,
+ "id": 15900,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -643062,14 +643968,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 33190,
+ "id": 15901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33191,
+ "id": 15902,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -643092,7 +643998,7 @@
}
},
{
- "id": 33192,
+ "id": 15903,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -643119,8 +644025,8 @@
{
"title": "Properties",
"children": [
- 33191,
- 33192
+ 15902,
+ 15903
]
}
],
@@ -643213,14 +644119,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -643235,7 +644141,7 @@
]
},
{
- "id": 33305,
+ "id": 16016,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -643253,7 +644159,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L38"
}
],
"type": {
@@ -643267,7 +644173,7 @@
}
},
{
- "id": 33306,
+ "id": 16017,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -643285,7 +644191,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L42"
}
],
"type": {
@@ -643299,7 +644205,7 @@
}
},
{
- "id": 33307,
+ "id": 16018,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -643317,7 +644223,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L46"
}
],
"type": {
@@ -643331,7 +644237,7 @@
}
},
{
- "id": 33308,
+ "id": 16019,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -643349,7 +644255,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L50"
}
],
"type": {
@@ -643364,7 +644270,7 @@
}
},
{
- "id": 33309,
+ "id": 16020,
"name": "removeReturnItemActionValidationStep",
"variant": "declaration",
"kind": 64,
@@ -643399,7 +644305,7 @@
},
"children": [
{
- "id": 33318,
+ "id": 16029,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -643417,7 +644323,7 @@
}
},
{
- "id": 33319,
+ "id": 16030,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -643439,8 +644345,8 @@
{
"title": "Properties",
"children": [
- 33318,
- 33319
+ 16029,
+ 16030
]
}
],
@@ -643449,12 +644355,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L86"
}
],
"signatures": [
{
- "id": 33310,
+ "id": 16021,
"name": "removeReturnItemActionValidationStep",
"variant": "signature",
"kind": 4096,
@@ -643492,12 +644398,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L86"
}
],
"parameters": [
{
- "id": 33311,
+ "id": 16022,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -643507,7 +644413,7 @@
"types": [
{
"type": "reference",
- "target": 33303,
+ "target": 16014,
"name": "RemoveItemReturnActionValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -643520,7 +644426,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33303,
+ "target": 16014,
"name": "RemoveItemReturnActionValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -643553,14 +644459,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33312,
+ "id": 16023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33313,
+ "id": 16024,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -643574,7 +644480,7 @@
],
"signatures": [
{
- "id": 33314,
+ "id": 16025,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -643588,7 +644494,7 @@
],
"parameters": [
{
- "id": 33315,
+ "id": 16026,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -643599,14 +644505,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33316,
+ "id": 16027,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33317,
+ "id": 16028,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -643630,7 +644536,7 @@
{
"title": "Properties",
"children": [
- 33317
+ 16028
]
}
],
@@ -643707,7 +644613,7 @@
{
"title": "Methods",
"children": [
- 33313
+ 16024
]
}
],
@@ -643741,7 +644647,7 @@
]
},
{
- "id": 33320,
+ "id": 16031,
"name": "removeItemReturnActionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -643753,7 +644659,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 114,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L114"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L114"
}
],
"type": {
@@ -643763,7 +644669,7 @@
"defaultValue": "\"remove-item-return-action\""
},
{
- "id": 33321,
+ "id": 16032,
"name": "removeItemReturnActionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -643816,7 +644722,7 @@
},
"children": [
{
- "id": 33329,
+ "id": 16040,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -643839,7 +644745,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33330,
+ "id": 16041,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -643853,7 +644759,7 @@
],
"signatures": [
{
- "id": 33331,
+ "id": 16042,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -643881,7 +644787,7 @@
],
"parameters": [
{
- "id": 33332,
+ "id": 16043,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -643897,14 +644803,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33333,
+ "id": 16044,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33334,
+ "id": 16045,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -643964,7 +644870,7 @@
{
"title": "Properties",
"children": [
- 33334
+ 16045
]
}
],
@@ -643985,14 +644891,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33335,
+ "id": 16046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33348,
+ "id": 16059,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -644038,7 +644944,7 @@
}
},
{
- "id": 33408,
+ "id": 16119,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -644084,7 +644990,7 @@
}
},
{
- "id": 33409,
+ "id": 16120,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -644130,7 +645036,7 @@
}
},
{
- "id": 33410,
+ "id": 16121,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -644187,7 +645093,7 @@
}
},
{
- "id": 33411,
+ "id": 16122,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -644243,7 +645149,7 @@
}
},
{
- "id": 33376,
+ "id": 16087,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -644300,7 +645206,7 @@
}
},
{
- "id": 33377,
+ "id": 16088,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -644357,7 +645263,7 @@
}
},
{
- "id": 33378,
+ "id": 16089,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -644414,7 +645320,7 @@
}
},
{
- "id": 33353,
+ "id": 16064,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -644471,7 +645377,7 @@
}
},
{
- "id": 33379,
+ "id": 16090,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -644517,7 +645423,7 @@
}
},
{
- "id": 33380,
+ "id": 16091,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -644587,7 +645493,7 @@
}
},
{
- "id": 33381,
+ "id": 16092,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -644657,7 +645563,7 @@
}
},
{
- "id": 33412,
+ "id": 16123,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -644733,7 +645639,7 @@
}
},
{
- "id": 33382,
+ "id": 16093,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -644809,7 +645715,7 @@
}
},
{
- "id": 33413,
+ "id": 16124,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -644879,7 +645785,7 @@
}
},
{
- "id": 33414,
+ "id": 16125,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -644936,7 +645842,7 @@
}
},
{
- "id": 33352,
+ "id": 16063,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -645031,7 +645937,7 @@
}
},
{
- "id": 33407,
+ "id": 16118,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -645106,7 +646012,7 @@
}
},
{
- "id": 33349,
+ "id": 16060,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -645175,7 +646081,7 @@
}
},
{
- "id": 33350,
+ "id": 16061,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -645244,7 +646150,7 @@
}
},
{
- "id": 33351,
+ "id": 16062,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -645319,7 +646225,7 @@
}
},
{
- "id": 33383,
+ "id": 16094,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -645375,7 +646281,7 @@
}
},
{
- "id": 33384,
+ "id": 16095,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -645431,7 +646337,7 @@
}
},
{
- "id": 33385,
+ "id": 16096,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -645487,7 +646393,7 @@
}
},
{
- "id": 33357,
+ "id": 16068,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -645543,7 +646449,7 @@
}
},
{
- "id": 33358,
+ "id": 16069,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -645599,7 +646505,7 @@
}
},
{
- "id": 33359,
+ "id": 16070,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -645655,7 +646561,7 @@
}
},
{
- "id": 33415,
+ "id": 16126,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -645711,7 +646617,7 @@
}
},
{
- "id": 33354,
+ "id": 16065,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -645767,7 +646673,7 @@
}
},
{
- "id": 33355,
+ "id": 16066,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -645823,7 +646729,7 @@
}
},
{
- "id": 33356,
+ "id": 16067,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -645879,7 +646785,7 @@
}
},
{
- "id": 33360,
+ "id": 16071,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -645935,7 +646841,7 @@
}
},
{
- "id": 33361,
+ "id": 16072,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -645991,7 +646897,7 @@
}
},
{
- "id": 33362,
+ "id": 16073,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -646047,7 +646953,7 @@
}
},
{
- "id": 33416,
+ "id": 16127,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -646103,7 +647009,7 @@
}
},
{
- "id": 33363,
+ "id": 16074,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -646159,7 +647065,7 @@
}
},
{
- "id": 33364,
+ "id": 16075,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -646215,7 +647121,7 @@
}
},
{
- "id": 33406,
+ "id": 16117,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -646271,7 +647177,7 @@
}
},
{
- "id": 33386,
+ "id": 16097,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -646327,7 +647233,7 @@
}
},
{
- "id": 33387,
+ "id": 16098,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -646383,7 +647289,7 @@
}
},
{
- "id": 33388,
+ "id": 16099,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -646439,7 +647345,7 @@
}
},
{
- "id": 33389,
+ "id": 16100,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -646495,7 +647401,7 @@
}
},
{
- "id": 33390,
+ "id": 16101,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -646551,7 +647457,7 @@
}
},
{
- "id": 33417,
+ "id": 16128,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -646607,7 +647513,7 @@
}
},
{
- "id": 33391,
+ "id": 16102,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -646663,7 +647569,7 @@
}
},
{
- "id": 33392,
+ "id": 16103,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -646719,7 +647625,7 @@
}
},
{
- "id": 33393,
+ "id": 16104,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -646775,7 +647681,7 @@
}
},
{
- "id": 33336,
+ "id": 16047,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -646831,7 +647737,7 @@
}
},
{
- "id": 33337,
+ "id": 16048,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -646871,14 +647777,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33338,
+ "id": 16049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33339,
+ "id": 16050,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -646910,7 +647816,7 @@
{
"title": "Properties",
"children": [
- 33339
+ 16050
]
}
],
@@ -646950,14 +647856,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33340,
+ "id": 16051,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33341,
+ "id": 16052,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -646989,7 +647895,7 @@
{
"title": "Properties",
"children": [
- 33341
+ 16052
]
}
],
@@ -647013,7 +647919,7 @@
}
},
{
- "id": 33342,
+ "id": 16053,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -647053,14 +647959,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33343,
+ "id": 16054,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33344,
+ "id": 16055,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -647092,7 +647998,7 @@
{
"title": "Properties",
"children": [
- 33344
+ 16055
]
}
],
@@ -647132,14 +648038,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33345,
+ "id": 16056,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33346,
+ "id": 16057,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -647171,7 +648077,7 @@
{
"title": "Properties",
"children": [
- 33346
+ 16057
]
}
],
@@ -647195,7 +648101,7 @@
}
},
{
- "id": 33347,
+ "id": 16058,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -647245,57 +648151,57 @@
{
"title": "Properties",
"children": [
- 33348,
- 33408,
- 33409,
- 33410,
- 33411,
- 33376,
- 33377,
- 33378,
- 33353,
- 33379,
- 33380,
- 33381,
- 33412,
- 33382,
- 33413,
- 33414,
- 33352,
- 33407,
- 33349,
- 33350,
- 33351,
- 33383,
- 33384,
- 33385,
- 33357,
- 33358,
- 33359,
- 33415,
- 33354,
- 33355,
- 33356,
- 33360,
- 33361,
- 33362,
- 33416,
- 33363,
- 33364,
- 33406,
- 33386,
- 33387,
- 33388,
- 33389,
- 33390,
- 33417,
- 33391,
- 33392,
- 33393,
- 33336,
- 33337,
- 33342,
- 33347
+ 16059,
+ 16119,
+ 16120,
+ 16121,
+ 16122,
+ 16087,
+ 16088,
+ 16089,
+ 16064,
+ 16090,
+ 16091,
+ 16092,
+ 16123,
+ 16093,
+ 16124,
+ 16125,
+ 16063,
+ 16118,
+ 16060,
+ 16061,
+ 16062,
+ 16094,
+ 16095,
+ 16096,
+ 16068,
+ 16069,
+ 16070,
+ 16126,
+ 16065,
+ 16066,
+ 16067,
+ 16071,
+ 16072,
+ 16073,
+ 16127,
+ 16074,
+ 16075,
+ 16117,
+ 16097,
+ 16098,
+ 16099,
+ 16100,
+ 16101,
+ 16128,
+ 16102,
+ 16103,
+ 16104,
+ 16047,
+ 16048,
+ 16053,
+ 16058
]
}
],
@@ -647340,14 +648246,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33418,
+ "id": 16129,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33419,
+ "id": 16130,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -647361,7 +648267,7 @@
],
"signatures": [
{
- "id": 33420,
+ "id": 16131,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -647375,7 +648281,7 @@
],
"parameters": [
{
- "id": 33421,
+ "id": 16132,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -647386,14 +648292,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33422,
+ "id": 16133,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33423,
+ "id": 16134,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -647417,7 +648323,7 @@
{
"title": "Properties",
"children": [
- 33423
+ 16134
]
}
],
@@ -647499,7 +648405,7 @@
{
"title": "Methods",
"children": [
- 33419
+ 16130
]
}
],
@@ -647540,7 +648446,7 @@
}
},
{
- "id": 33424,
+ "id": 16135,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -647563,7 +648469,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33425,
+ "id": 16136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -647577,7 +648483,7 @@
],
"signatures": [
{
- "id": 33426,
+ "id": 16137,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -647605,7 +648511,7 @@
],
"typeParameters": [
{
- "id": 33427,
+ "id": 16138,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -647616,7 +648522,7 @@
}
},
{
- "id": 33428,
+ "id": 16139,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -647629,7 +648535,7 @@
],
"parameters": [
{
- "id": 33429,
+ "id": 16140,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -647662,7 +648568,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -647682,7 +648588,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -647715,7 +648621,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -647735,7 +648641,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -647755,7 +648661,7 @@
}
},
{
- "id": 33430,
+ "id": 16141,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -647778,7 +648684,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33431,
+ "id": 16142,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -647792,7 +648698,7 @@
],
"signatures": [
{
- "id": 33432,
+ "id": 16143,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -647814,7 +648720,7 @@
}
},
{
- "id": 33433,
+ "id": 16144,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -647837,7 +648743,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33434,
+ "id": 16145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -647851,7 +648757,7 @@
],
"signatures": [
{
- "id": 33435,
+ "id": 16146,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -647865,7 +648771,7 @@
],
"parameters": [
{
- "id": 33436,
+ "id": 16147,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -647891,7 +648797,7 @@
}
},
{
- "id": 33437,
+ "id": 16148,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -647914,7 +648820,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33438,
+ "id": 16149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -647925,7 +648831,7 @@
],
"documents": [
{
- "id": 42933,
+ "id": 25874,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -647951,7 +648857,7 @@
"frontmatter": {}
},
{
- "id": 42934,
+ "id": 25875,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -647977,7 +648883,7 @@
"frontmatter": {}
},
{
- "id": 42935,
+ "id": 25876,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -648003,7 +648909,7 @@
"frontmatter": {}
},
{
- "id": 42936,
+ "id": 25877,
"name": "removeReturnItemActionValidationStep",
"variant": "document",
"kind": 8388608,
@@ -648029,7 +648935,7 @@
"frontmatter": {}
},
{
- "id": 42937,
+ "id": 25878,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -648055,7 +648961,7 @@
"frontmatter": {}
},
{
- "id": 42938,
+ "id": 25879,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -648081,7 +648987,7 @@
"frontmatter": {}
},
{
- "id": 42939,
+ "id": 25880,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -648116,7 +649022,7 @@
"frontmatter": {},
"children": [
{
- "id": 42940,
+ "id": 25881,
"name": "removeReturnShippingMethodWorkflow",
"variant": "document",
"kind": 8388608,
@@ -648142,7 +649048,7 @@
"frontmatter": {}
},
{
- "id": 42941,
+ "id": 25882,
"name": "updateReturnWorkflow",
"variant": "document",
"kind": 8388608,
@@ -648170,7 +649076,7 @@
]
},
{
- "id": 42943,
+ "id": 25884,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -648197,21 +649103,21 @@
}
],
"childrenIncludingDocuments": [
- 33329,
- 33424,
- 33430,
- 33433,
- 33437
+ 16040,
+ 16135,
+ 16141,
+ 16144,
+ 16148
],
"groups": [
{
"title": "Properties",
"children": [
- 33329,
- 33424,
- 33430,
- 33433,
- 33437
+ 16040,
+ 16135,
+ 16141,
+ 16144,
+ 16148
]
}
],
@@ -648220,12 +649126,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 135,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L135"
}
],
"signatures": [
{
- "id": 33322,
+ "id": 16033,
"name": "removeItemReturnActionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -648281,12 +649187,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-item-return-action.ts",
"line": 135,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L135"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-item-return-action.ts#L135"
}
],
"typeParameters": [
{
- "id": 33323,
+ "id": 16034,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -648297,7 +649203,7 @@
}
},
{
- "id": 33324,
+ "id": 16035,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -648310,7 +649216,7 @@
],
"parameters": [
{
- "id": 33325,
+ "id": 16036,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -648334,14 +649240,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 33326,
+ "id": 16037,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33327,
+ "id": 16038,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -648364,7 +649270,7 @@
}
},
{
- "id": 33328,
+ "id": 16039,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -648391,8 +649297,8 @@
{
"title": "Properties",
"children": [
- 33327,
- 33328
+ 16038,
+ 16039
]
}
],
@@ -648485,14 +649391,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -648507,7 +649413,7 @@
]
},
{
- "id": 33441,
+ "id": 16152,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -648525,7 +649431,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L33"
}
],
"type": {
@@ -648539,7 +649445,7 @@
}
},
{
- "id": 33442,
+ "id": 16153,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -648557,7 +649463,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L37"
}
],
"type": {
@@ -648571,7 +649477,7 @@
}
},
{
- "id": 33443,
+ "id": 16154,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -648589,7 +649495,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L41"
}
],
"type": {
@@ -648628,7 +649534,7 @@
}
},
{
- "id": 33444,
+ "id": 16155,
"name": "removeReturnShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -648663,7 +649569,7 @@
},
"children": [
{
- "id": 33453,
+ "id": 16164,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -648681,7 +649587,7 @@
}
},
{
- "id": 33454,
+ "id": 16165,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -648703,8 +649609,8 @@
{
"title": "Properties",
"children": [
- 33453,
- 33454
+ 16164,
+ 16165
]
}
],
@@ -648713,12 +649619,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L73"
}
],
"signatures": [
{
- "id": 33445,
+ "id": 16156,
"name": "removeReturnShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -648756,12 +649662,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L73"
}
],
"parameters": [
{
- "id": 33446,
+ "id": 16157,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -648771,7 +649677,7 @@
"types": [
{
"type": "reference",
- "target": 33439,
+ "target": 16150,
"name": "RemoveReturnShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -648784,7 +649690,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33439,
+ "target": 16150,
"name": "RemoveReturnShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -648817,14 +649723,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33447,
+ "id": 16158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33448,
+ "id": 16159,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -648838,7 +649744,7 @@
],
"signatures": [
{
- "id": 33449,
+ "id": 16160,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -648852,7 +649758,7 @@
],
"parameters": [
{
- "id": 33450,
+ "id": 16161,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -648863,14 +649769,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33451,
+ "id": 16162,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33452,
+ "id": 16163,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -648894,7 +649800,7 @@
{
"title": "Properties",
"children": [
- 33452
+ 16163
]
}
],
@@ -648971,7 +649877,7 @@
{
"title": "Methods",
"children": [
- 33448
+ 16159
]
}
],
@@ -649005,7 +649911,7 @@
]
},
{
- "id": 33455,
+ "id": 16166,
"name": "removeReturnShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -649017,7 +649923,7 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L99"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L99"
}
],
"type": {
@@ -649027,7 +649933,7 @@
"defaultValue": "\"remove-return-shipping-method\""
},
{
- "id": 33456,
+ "id": 16167,
"name": "removeReturnShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -649071,7 +649977,7 @@
},
"children": [
{
- "id": 33464,
+ "id": 16175,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -649094,7 +650000,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33465,
+ "id": 16176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -649108,7 +650014,7 @@
],
"signatures": [
{
- "id": 33466,
+ "id": 16177,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -649136,7 +650042,7 @@
],
"parameters": [
{
- "id": 33467,
+ "id": 16178,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -649152,14 +650058,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33468,
+ "id": 16179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33469,
+ "id": 16180,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -649219,7 +650125,7 @@
{
"title": "Properties",
"children": [
- 33469
+ 16180
]
}
],
@@ -649240,14 +650146,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33470,
+ "id": 16181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33483,
+ "id": 16194,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -649293,7 +650199,7 @@
}
},
{
- "id": 33543,
+ "id": 16254,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -649339,7 +650245,7 @@
}
},
{
- "id": 33544,
+ "id": 16255,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -649385,7 +650291,7 @@
}
},
{
- "id": 33545,
+ "id": 16256,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -649442,7 +650348,7 @@
}
},
{
- "id": 33546,
+ "id": 16257,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -649498,7 +650404,7 @@
}
},
{
- "id": 33511,
+ "id": 16222,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -649555,7 +650461,7 @@
}
},
{
- "id": 33512,
+ "id": 16223,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -649612,7 +650518,7 @@
}
},
{
- "id": 33513,
+ "id": 16224,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -649669,7 +650575,7 @@
}
},
{
- "id": 33488,
+ "id": 16199,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -649726,7 +650632,7 @@
}
},
{
- "id": 33514,
+ "id": 16225,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -649772,7 +650678,7 @@
}
},
{
- "id": 33515,
+ "id": 16226,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -649842,7 +650748,7 @@
}
},
{
- "id": 33516,
+ "id": 16227,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -649912,7 +650818,7 @@
}
},
{
- "id": 33547,
+ "id": 16258,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -649988,7 +650894,7 @@
}
},
{
- "id": 33517,
+ "id": 16228,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -650064,7 +650970,7 @@
}
},
{
- "id": 33548,
+ "id": 16259,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -650134,7 +651040,7 @@
}
},
{
- "id": 33549,
+ "id": 16260,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -650191,7 +651097,7 @@
}
},
{
- "id": 33487,
+ "id": 16198,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -650286,7 +651192,7 @@
}
},
{
- "id": 33542,
+ "id": 16253,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -650361,7 +651267,7 @@
}
},
{
- "id": 33484,
+ "id": 16195,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -650430,7 +651336,7 @@
}
},
{
- "id": 33485,
+ "id": 16196,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -650499,7 +651405,7 @@
}
},
{
- "id": 33486,
+ "id": 16197,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -650574,7 +651480,7 @@
}
},
{
- "id": 33518,
+ "id": 16229,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -650630,7 +651536,7 @@
}
},
{
- "id": 33519,
+ "id": 16230,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -650686,7 +651592,7 @@
}
},
{
- "id": 33520,
+ "id": 16231,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -650742,7 +651648,7 @@
}
},
{
- "id": 33492,
+ "id": 16203,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -650798,7 +651704,7 @@
}
},
{
- "id": 33493,
+ "id": 16204,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -650854,7 +651760,7 @@
}
},
{
- "id": 33494,
+ "id": 16205,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -650910,7 +651816,7 @@
}
},
{
- "id": 33550,
+ "id": 16261,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -650966,7 +651872,7 @@
}
},
{
- "id": 33489,
+ "id": 16200,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -651022,7 +651928,7 @@
}
},
{
- "id": 33490,
+ "id": 16201,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -651078,7 +651984,7 @@
}
},
{
- "id": 33491,
+ "id": 16202,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -651134,7 +652040,7 @@
}
},
{
- "id": 33495,
+ "id": 16206,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -651190,7 +652096,7 @@
}
},
{
- "id": 33496,
+ "id": 16207,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -651246,7 +652152,7 @@
}
},
{
- "id": 33497,
+ "id": 16208,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -651302,7 +652208,7 @@
}
},
{
- "id": 33551,
+ "id": 16262,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -651358,7 +652264,7 @@
}
},
{
- "id": 33498,
+ "id": 16209,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -651414,7 +652320,7 @@
}
},
{
- "id": 33499,
+ "id": 16210,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -651470,7 +652376,7 @@
}
},
{
- "id": 33541,
+ "id": 16252,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -651526,7 +652432,7 @@
}
},
{
- "id": 33521,
+ "id": 16232,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -651582,7 +652488,7 @@
}
},
{
- "id": 33522,
+ "id": 16233,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -651638,7 +652544,7 @@
}
},
{
- "id": 33523,
+ "id": 16234,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -651694,7 +652600,7 @@
}
},
{
- "id": 33524,
+ "id": 16235,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -651750,7 +652656,7 @@
}
},
{
- "id": 33525,
+ "id": 16236,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -651806,7 +652712,7 @@
}
},
{
- "id": 33552,
+ "id": 16263,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -651862,7 +652768,7 @@
}
},
{
- "id": 33526,
+ "id": 16237,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -651918,7 +652824,7 @@
}
},
{
- "id": 33527,
+ "id": 16238,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -651974,7 +652880,7 @@
}
},
{
- "id": 33528,
+ "id": 16239,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -652030,7 +652936,7 @@
}
},
{
- "id": 33471,
+ "id": 16182,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -652086,7 +652992,7 @@
}
},
{
- "id": 33472,
+ "id": 16183,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -652126,14 +653032,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33473,
+ "id": 16184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33474,
+ "id": 16185,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -652165,7 +653071,7 @@
{
"title": "Properties",
"children": [
- 33474
+ 16185
]
}
],
@@ -652205,14 +653111,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33475,
+ "id": 16186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33476,
+ "id": 16187,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -652244,7 +653150,7 @@
{
"title": "Properties",
"children": [
- 33476
+ 16187
]
}
],
@@ -652268,7 +653174,7 @@
}
},
{
- "id": 33477,
+ "id": 16188,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -652308,14 +653214,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33478,
+ "id": 16189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33479,
+ "id": 16190,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -652347,7 +653253,7 @@
{
"title": "Properties",
"children": [
- 33479
+ 16190
]
}
],
@@ -652387,14 +653293,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33480,
+ "id": 16191,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33481,
+ "id": 16192,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -652426,7 +653332,7 @@
{
"title": "Properties",
"children": [
- 33481
+ 16192
]
}
],
@@ -652450,7 +653356,7 @@
}
},
{
- "id": 33482,
+ "id": 16193,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -652500,57 +653406,57 @@
{
"title": "Properties",
"children": [
- 33483,
- 33543,
- 33544,
- 33545,
- 33546,
- 33511,
- 33512,
- 33513,
- 33488,
- 33514,
- 33515,
- 33516,
- 33547,
- 33517,
- 33548,
- 33549,
- 33487,
- 33542,
- 33484,
- 33485,
- 33486,
- 33518,
- 33519,
- 33520,
- 33492,
- 33493,
- 33494,
- 33550,
- 33489,
- 33490,
- 33491,
- 33495,
- 33496,
- 33497,
- 33551,
- 33498,
- 33499,
- 33541,
- 33521,
- 33522,
- 33523,
- 33524,
- 33525,
- 33552,
- 33526,
- 33527,
- 33528,
- 33471,
- 33472,
- 33477,
- 33482
+ 16194,
+ 16254,
+ 16255,
+ 16256,
+ 16257,
+ 16222,
+ 16223,
+ 16224,
+ 16199,
+ 16225,
+ 16226,
+ 16227,
+ 16258,
+ 16228,
+ 16259,
+ 16260,
+ 16198,
+ 16253,
+ 16195,
+ 16196,
+ 16197,
+ 16229,
+ 16230,
+ 16231,
+ 16203,
+ 16204,
+ 16205,
+ 16261,
+ 16200,
+ 16201,
+ 16202,
+ 16206,
+ 16207,
+ 16208,
+ 16262,
+ 16209,
+ 16210,
+ 16252,
+ 16232,
+ 16233,
+ 16234,
+ 16235,
+ 16236,
+ 16263,
+ 16237,
+ 16238,
+ 16239,
+ 16182,
+ 16183,
+ 16188,
+ 16193
]
}
],
@@ -652595,14 +653501,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33553,
+ "id": 16264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33554,
+ "id": 16265,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -652616,7 +653522,7 @@
],
"signatures": [
{
- "id": 33555,
+ "id": 16266,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -652630,7 +653536,7 @@
],
"parameters": [
{
- "id": 33556,
+ "id": 16267,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -652641,14 +653547,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33557,
+ "id": 16268,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33558,
+ "id": 16269,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -652672,7 +653578,7 @@
{
"title": "Properties",
"children": [
- 33558
+ 16269
]
}
],
@@ -652754,7 +653660,7 @@
{
"title": "Methods",
"children": [
- 33554
+ 16265
]
}
],
@@ -652795,7 +653701,7 @@
}
},
{
- "id": 33559,
+ "id": 16270,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -652818,7 +653724,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33560,
+ "id": 16271,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -652832,7 +653738,7 @@
],
"signatures": [
{
- "id": 33561,
+ "id": 16272,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -652860,7 +653766,7 @@
],
"typeParameters": [
{
- "id": 33562,
+ "id": 16273,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -652871,7 +653777,7 @@
}
},
{
- "id": 33563,
+ "id": 16274,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -652884,7 +653790,7 @@
],
"parameters": [
{
- "id": 33564,
+ "id": 16275,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -652917,7 +653823,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -652937,7 +653843,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -652970,7 +653876,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -652990,7 +653896,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -653010,7 +653916,7 @@
}
},
{
- "id": 33565,
+ "id": 16276,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -653033,7 +653939,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33566,
+ "id": 16277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -653047,7 +653953,7 @@
],
"signatures": [
{
- "id": 33567,
+ "id": 16278,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -653069,7 +653975,7 @@
}
},
{
- "id": 33568,
+ "id": 16279,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -653092,7 +653998,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33569,
+ "id": 16280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -653106,7 +654012,7 @@
],
"signatures": [
{
- "id": 33570,
+ "id": 16281,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -653120,7 +654026,7 @@
],
"parameters": [
{
- "id": 33571,
+ "id": 16282,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -653146,7 +654052,7 @@
}
},
{
- "id": 33572,
+ "id": 16283,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -653169,7 +654075,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33573,
+ "id": 16284,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -653180,7 +654086,7 @@
],
"documents": [
{
- "id": 42944,
+ "id": 25885,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -653206,7 +654112,7 @@
"frontmatter": {}
},
{
- "id": 42945,
+ "id": 25886,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -653232,7 +654138,7 @@
"frontmatter": {}
},
{
- "id": 42946,
+ "id": 25887,
"name": "removeReturnShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -653258,7 +654164,7 @@
"frontmatter": {}
},
{
- "id": 42947,
+ "id": 25888,
"name": "deleteOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -653284,7 +654190,7 @@
"frontmatter": {}
},
{
- "id": 42948,
+ "id": 25889,
"name": "deleteOrderShippingMethods",
"variant": "document",
"kind": 8388608,
@@ -653310,7 +654216,7 @@
"frontmatter": {}
},
{
- "id": 42949,
+ "id": 25890,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -653337,21 +654243,21 @@
}
],
"childrenIncludingDocuments": [
- 33464,
- 33559,
- 33565,
- 33568,
- 33572
+ 16175,
+ 16270,
+ 16276,
+ 16279,
+ 16283
],
"groups": [
{
"title": "Properties",
"children": [
- 33464,
- 33559,
- 33565,
- 33568,
- 33572
+ 16175,
+ 16270,
+ 16276,
+ 16279,
+ 16283
]
}
],
@@ -653360,12 +654266,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L121"
}
],
"signatures": [
{
- "id": 33457,
+ "id": 16168,
"name": "removeReturnShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -653412,12 +654318,12 @@
"fileName": "core-flows/src/order/workflows/return/remove-return-shipping-method.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L121"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/remove-return-shipping-method.ts#L121"
}
],
"typeParameters": [
{
- "id": 33458,
+ "id": 16169,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -653428,7 +654334,7 @@
}
},
{
- "id": 33459,
+ "id": 16170,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -653441,7 +654347,7 @@
],
"parameters": [
{
- "id": 33460,
+ "id": 16171,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -653465,14 +654371,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 33461,
+ "id": 16172,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33462,
+ "id": 16173,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -653495,7 +654401,7 @@
}
},
{
- "id": 33463,
+ "id": 16174,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -653522,8 +654428,8 @@
{
"title": "Properties",
"children": [
- 33462,
- 33463
+ 16173,
+ 16174
]
}
],
@@ -653616,14 +654522,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -653638,7 +654544,7 @@
]
},
{
- "id": 33576,
+ "id": 16287,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -653656,7 +654562,7 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L33"
}
],
"type": {
@@ -653694,7 +654600,7 @@
}
},
{
- "id": 33577,
+ "id": 16288,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -653712,7 +654618,7 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L37"
}
],
"type": {
@@ -653726,7 +654632,7 @@
}
},
{
- "id": 33578,
+ "id": 16289,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -653744,7 +654650,7 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L41"
}
],
"type": {
@@ -653758,7 +654664,7 @@
}
},
{
- "id": 33579,
+ "id": 16290,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -653776,7 +654682,7 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L45"
}
],
"type": {
@@ -653798,7 +654704,7 @@
}
},
{
- "id": 33580,
+ "id": 16291,
"name": "requestItemReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -653833,7 +654739,7 @@
},
"children": [
{
- "id": 33589,
+ "id": 16300,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -653851,7 +654757,7 @@
}
},
{
- "id": 33590,
+ "id": 16301,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -653873,8 +654779,8 @@
{
"title": "Properties",
"children": [
- 33589,
- 33590
+ 16300,
+ 16301
]
}
],
@@ -653883,12 +654789,12 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 88,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L88"
}
],
"signatures": [
{
- "id": 33581,
+ "id": 16292,
"name": "requestItemReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -653926,12 +654832,12 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 88,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L88"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L88"
}
],
"parameters": [
{
- "id": 33582,
+ "id": 16293,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -653941,7 +654847,7 @@
"types": [
{
"type": "reference",
- "target": 33574,
+ "target": 16285,
"name": "RequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -653954,7 +654860,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33574,
+ "target": 16285,
"name": "RequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -653987,14 +654893,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33583,
+ "id": 16294,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33584,
+ "id": 16295,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -654008,7 +654914,7 @@
],
"signatures": [
{
- "id": 33585,
+ "id": 16296,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -654022,7 +654928,7 @@
],
"parameters": [
{
- "id": 33586,
+ "id": 16297,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -654033,14 +654939,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33587,
+ "id": 16298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33588,
+ "id": 16299,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -654064,7 +654970,7 @@
{
"title": "Properties",
"children": [
- 33588
+ 16299
]
}
],
@@ -654141,7 +655047,7 @@
{
"title": "Methods",
"children": [
- 33584
+ 16295
]
}
],
@@ -654175,7 +655081,7 @@
]
},
{
- "id": 33591,
+ "id": 16302,
"name": "requestItemReturnWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -654187,7 +655093,7 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L111"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L111"
}
],
"type": {
@@ -654197,7 +655103,7 @@
"defaultValue": "\"request-item-return\""
},
{
- "id": 33592,
+ "id": 16303,
"name": "requestItemReturnWorkflow",
"variant": "declaration",
"kind": 64,
@@ -654250,7 +655156,7 @@
},
"children": [
{
- "id": 33600,
+ "id": 16311,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -654273,7 +655179,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33601,
+ "id": 16312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -654287,7 +655193,7 @@
],
"signatures": [
{
- "id": 33602,
+ "id": 16313,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -654315,7 +655221,7 @@
],
"parameters": [
{
- "id": 33603,
+ "id": 16314,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -654331,14 +655237,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33604,
+ "id": 16315,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33605,
+ "id": 16316,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -654398,7 +655304,7 @@
{
"title": "Properties",
"children": [
- 33605
+ 16316
]
}
],
@@ -654419,14 +655325,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33606,
+ "id": 16317,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33619,
+ "id": 16330,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -654472,7 +655378,7 @@
}
},
{
- "id": 33679,
+ "id": 16390,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -654518,7 +655424,7 @@
}
},
{
- "id": 33680,
+ "id": 16391,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -654564,7 +655470,7 @@
}
},
{
- "id": 33681,
+ "id": 16392,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -654621,7 +655527,7 @@
}
},
{
- "id": 33682,
+ "id": 16393,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -654677,7 +655583,7 @@
}
},
{
- "id": 33647,
+ "id": 16358,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -654734,7 +655640,7 @@
}
},
{
- "id": 33648,
+ "id": 16359,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -654791,7 +655697,7 @@
}
},
{
- "id": 33649,
+ "id": 16360,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -654848,7 +655754,7 @@
}
},
{
- "id": 33624,
+ "id": 16335,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -654905,7 +655811,7 @@
}
},
{
- "id": 33650,
+ "id": 16361,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -654951,7 +655857,7 @@
}
},
{
- "id": 33651,
+ "id": 16362,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -655021,7 +655927,7 @@
}
},
{
- "id": 33652,
+ "id": 16363,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -655091,7 +655997,7 @@
}
},
{
- "id": 33683,
+ "id": 16394,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -655167,7 +656073,7 @@
}
},
{
- "id": 33653,
+ "id": 16364,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -655243,7 +656149,7 @@
}
},
{
- "id": 33684,
+ "id": 16395,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -655313,7 +656219,7 @@
}
},
{
- "id": 33685,
+ "id": 16396,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -655370,7 +656276,7 @@
}
},
{
- "id": 33623,
+ "id": 16334,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -655465,7 +656371,7 @@
}
},
{
- "id": 33678,
+ "id": 16389,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -655540,7 +656446,7 @@
}
},
{
- "id": 33620,
+ "id": 16331,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -655609,7 +656515,7 @@
}
},
{
- "id": 33621,
+ "id": 16332,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -655678,7 +656584,7 @@
}
},
{
- "id": 33622,
+ "id": 16333,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -655753,7 +656659,7 @@
}
},
{
- "id": 33654,
+ "id": 16365,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -655809,7 +656715,7 @@
}
},
{
- "id": 33655,
+ "id": 16366,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -655865,7 +656771,7 @@
}
},
{
- "id": 33656,
+ "id": 16367,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -655921,7 +656827,7 @@
}
},
{
- "id": 33628,
+ "id": 16339,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -655977,7 +656883,7 @@
}
},
{
- "id": 33629,
+ "id": 16340,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -656033,7 +656939,7 @@
}
},
{
- "id": 33630,
+ "id": 16341,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -656089,7 +656995,7 @@
}
},
{
- "id": 33686,
+ "id": 16397,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -656145,7 +657051,7 @@
}
},
{
- "id": 33625,
+ "id": 16336,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -656201,7 +657107,7 @@
}
},
{
- "id": 33626,
+ "id": 16337,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -656257,7 +657163,7 @@
}
},
{
- "id": 33627,
+ "id": 16338,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -656313,7 +657219,7 @@
}
},
{
- "id": 33631,
+ "id": 16342,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -656369,7 +657275,7 @@
}
},
{
- "id": 33632,
+ "id": 16343,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -656425,7 +657331,7 @@
}
},
{
- "id": 33633,
+ "id": 16344,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -656481,7 +657387,7 @@
}
},
{
- "id": 33687,
+ "id": 16398,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -656537,7 +657443,7 @@
}
},
{
- "id": 33634,
+ "id": 16345,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -656593,7 +657499,7 @@
}
},
{
- "id": 33635,
+ "id": 16346,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -656649,7 +657555,7 @@
}
},
{
- "id": 33677,
+ "id": 16388,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -656705,7 +657611,7 @@
}
},
{
- "id": 33657,
+ "id": 16368,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -656761,7 +657667,7 @@
}
},
{
- "id": 33658,
+ "id": 16369,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -656817,7 +657723,7 @@
}
},
{
- "id": 33659,
+ "id": 16370,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -656873,7 +657779,7 @@
}
},
{
- "id": 33660,
+ "id": 16371,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -656929,7 +657835,7 @@
}
},
{
- "id": 33661,
+ "id": 16372,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -656985,7 +657891,7 @@
}
},
{
- "id": 33688,
+ "id": 16399,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -657041,7 +657947,7 @@
}
},
{
- "id": 33662,
+ "id": 16373,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -657097,7 +658003,7 @@
}
},
{
- "id": 33663,
+ "id": 16374,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -657153,7 +658059,7 @@
}
},
{
- "id": 33664,
+ "id": 16375,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -657209,7 +658115,7 @@
}
},
{
- "id": 33607,
+ "id": 16318,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -657265,7 +658171,7 @@
}
},
{
- "id": 33608,
+ "id": 16319,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -657305,14 +658211,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33609,
+ "id": 16320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33610,
+ "id": 16321,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -657344,7 +658250,7 @@
{
"title": "Properties",
"children": [
- 33610
+ 16321
]
}
],
@@ -657384,14 +658290,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33611,
+ "id": 16322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33612,
+ "id": 16323,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -657423,7 +658329,7 @@
{
"title": "Properties",
"children": [
- 33612
+ 16323
]
}
],
@@ -657447,7 +658353,7 @@
}
},
{
- "id": 33613,
+ "id": 16324,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -657487,14 +658393,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33614,
+ "id": 16325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33615,
+ "id": 16326,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -657526,7 +658432,7 @@
{
"title": "Properties",
"children": [
- 33615
+ 16326
]
}
],
@@ -657566,14 +658472,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33616,
+ "id": 16327,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33617,
+ "id": 16328,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -657605,7 +658511,7 @@
{
"title": "Properties",
"children": [
- 33617
+ 16328
]
}
],
@@ -657629,7 +658535,7 @@
}
},
{
- "id": 33618,
+ "id": 16329,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -657679,57 +658585,57 @@
{
"title": "Properties",
"children": [
- 33619,
- 33679,
- 33680,
- 33681,
- 33682,
- 33647,
- 33648,
- 33649,
- 33624,
- 33650,
- 33651,
- 33652,
- 33683,
- 33653,
- 33684,
- 33685,
- 33623,
- 33678,
- 33620,
- 33621,
- 33622,
- 33654,
- 33655,
- 33656,
- 33628,
- 33629,
- 33630,
- 33686,
- 33625,
- 33626,
- 33627,
- 33631,
- 33632,
- 33633,
- 33687,
- 33634,
- 33635,
- 33677,
- 33657,
- 33658,
- 33659,
- 33660,
- 33661,
- 33688,
- 33662,
- 33663,
- 33664,
- 33607,
- 33608,
- 33613,
- 33618
+ 16330,
+ 16390,
+ 16391,
+ 16392,
+ 16393,
+ 16358,
+ 16359,
+ 16360,
+ 16335,
+ 16361,
+ 16362,
+ 16363,
+ 16394,
+ 16364,
+ 16395,
+ 16396,
+ 16334,
+ 16389,
+ 16331,
+ 16332,
+ 16333,
+ 16365,
+ 16366,
+ 16367,
+ 16339,
+ 16340,
+ 16341,
+ 16397,
+ 16336,
+ 16337,
+ 16338,
+ 16342,
+ 16343,
+ 16344,
+ 16398,
+ 16345,
+ 16346,
+ 16388,
+ 16368,
+ 16369,
+ 16370,
+ 16371,
+ 16372,
+ 16399,
+ 16373,
+ 16374,
+ 16375,
+ 16318,
+ 16319,
+ 16324,
+ 16329
]
}
],
@@ -657774,14 +658680,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33689,
+ "id": 16400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33690,
+ "id": 16401,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -657795,7 +658701,7 @@
],
"signatures": [
{
- "id": 33691,
+ "id": 16402,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -657809,7 +658715,7 @@
],
"parameters": [
{
- "id": 33692,
+ "id": 16403,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -657820,14 +658726,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33693,
+ "id": 16404,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33694,
+ "id": 16405,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -657851,7 +658757,7 @@
{
"title": "Properties",
"children": [
- 33694
+ 16405
]
}
],
@@ -657933,7 +658839,7 @@
{
"title": "Methods",
"children": [
- 33690
+ 16401
]
}
],
@@ -657974,7 +658880,7 @@
}
},
{
- "id": 33695,
+ "id": 16406,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -657997,7 +658903,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33696,
+ "id": 16407,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -658011,7 +658917,7 @@
],
"signatures": [
{
- "id": 33697,
+ "id": 16408,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -658039,7 +658945,7 @@
],
"typeParameters": [
{
- "id": 33698,
+ "id": 16409,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -658050,7 +658956,7 @@
}
},
{
- "id": 33699,
+ "id": 16410,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -658063,7 +658969,7 @@
],
"parameters": [
{
- "id": 33700,
+ "id": 16411,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -658096,7 +659002,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -658116,7 +659022,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -658149,7 +659055,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -658169,7 +659075,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -658189,7 +659095,7 @@
}
},
{
- "id": 33701,
+ "id": 16412,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -658212,7 +659118,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33702,
+ "id": 16413,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -658226,7 +659132,7 @@
],
"signatures": [
{
- "id": 33703,
+ "id": 16414,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -658248,7 +659154,7 @@
}
},
{
- "id": 33704,
+ "id": 16415,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -658271,7 +659177,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33705,
+ "id": 16416,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -658285,7 +659191,7 @@
],
"signatures": [
{
- "id": 33706,
+ "id": 16417,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -658299,7 +659205,7 @@
],
"parameters": [
{
- "id": 33707,
+ "id": 16418,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -658325,7 +659231,7 @@
}
},
{
- "id": 33708,
+ "id": 16419,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -658348,7 +659254,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33709,
+ "id": 16420,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -658359,7 +659265,7 @@
],
"documents": [
{
- "id": 42950,
+ "id": 25891,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -658385,7 +659291,7 @@
"frontmatter": {}
},
{
- "id": 42951,
+ "id": 25892,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -658411,7 +659317,7 @@
"frontmatter": {}
},
{
- "id": 42952,
+ "id": 25893,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -658437,7 +659343,7 @@
"frontmatter": {}
},
{
- "id": 42953,
+ "id": 25894,
"name": "requestItemReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -658463,7 +659369,7 @@
"frontmatter": {}
},
{
- "id": 42954,
+ "id": 25895,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -658489,7 +659395,7 @@
"frontmatter": {}
},
{
- "id": 42955,
+ "id": 25896,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -658516,21 +659422,21 @@
}
],
"childrenIncludingDocuments": [
- 33600,
- 33695,
- 33701,
- 33704,
- 33708
+ 16311,
+ 16406,
+ 16412,
+ 16415,
+ 16419
],
"groups": [
{
"title": "Properties",
"children": [
- 33600,
- 33695,
- 33701,
- 33704,
- 33708
+ 16311,
+ 16406,
+ 16412,
+ 16415,
+ 16419
]
}
],
@@ -658539,12 +659445,12 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 137,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L137"
}
],
"signatures": [
{
- "id": 33593,
+ "id": 16304,
"name": "requestItemReturnWorkflow",
"variant": "signature",
"kind": 4096,
@@ -658600,12 +659506,12 @@
"fileName": "core-flows/src/order/workflows/return/request-item-return.ts",
"line": 137,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L137"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/request-item-return.ts#L137"
}
],
"typeParameters": [
{
- "id": 33594,
+ "id": 16305,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -658616,7 +659522,7 @@
}
},
{
- "id": 33595,
+ "id": 16306,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -658629,7 +659535,7 @@
],
"parameters": [
{
- "id": 33596,
+ "id": 16307,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -658653,14 +659559,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 33597,
+ "id": 16308,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33598,
+ "id": 16309,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -658683,7 +659589,7 @@
}
},
{
- "id": 33599,
+ "id": 16310,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -658710,8 +659616,8 @@
{
"title": "Properties",
"children": [
- 33598,
- 33599
+ 16309,
+ 16310
]
}
],
@@ -658804,14 +659710,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -658826,7 +659732,7 @@
]
},
{
- "id": 33712,
+ "id": 16423,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -658844,7 +659750,7 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L34"
}
],
"type": {
@@ -658858,7 +659764,7 @@
}
},
{
- "id": 33713,
+ "id": 16424,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -658876,7 +659782,7 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L38"
}
],
"type": {
@@ -658890,7 +659796,7 @@
}
},
{
- "id": 33714,
+ "id": 16425,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -658908,7 +659814,7 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L42"
}
],
"type": {
@@ -658922,7 +659828,7 @@
}
},
{
- "id": 33715,
+ "id": 16426,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -658940,7 +659846,7 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L46"
}
],
"type": {
@@ -658955,7 +659861,7 @@
}
},
{
- "id": 33716,
+ "id": 16427,
"name": "updateReceiveItemReturnRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -658990,7 +659896,7 @@
},
"children": [
{
- "id": 33725,
+ "id": 16436,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -659008,7 +659914,7 @@
}
},
{
- "id": 33726,
+ "id": 16437,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -659030,8 +659936,8 @@
{
"title": "Properties",
"children": [
- 33725,
- 33726
+ 16436,
+ 16437
]
}
],
@@ -659040,12 +659946,12 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 90,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L90"
}
],
"signatures": [
{
- "id": 33717,
+ "id": 16428,
"name": "updateReceiveItemReturnRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -659083,12 +659989,12 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 90,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L90"
}
],
"parameters": [
{
- "id": 33718,
+ "id": 16429,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -659098,7 +660004,7 @@
"types": [
{
"type": "reference",
- "target": 33710,
+ "target": 16421,
"name": "UpdateReceiveItemReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -659111,7 +660017,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33710,
+ "target": 16421,
"name": "UpdateReceiveItemReturnRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -659144,14 +660050,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33719,
+ "id": 16430,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33720,
+ "id": 16431,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -659165,7 +660071,7 @@
],
"signatures": [
{
- "id": 33721,
+ "id": 16432,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -659179,7 +660085,7 @@
],
"parameters": [
{
- "id": 33722,
+ "id": 16433,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -659190,14 +660096,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33723,
+ "id": 16434,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33724,
+ "id": 16435,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -659221,7 +660127,7 @@
{
"title": "Properties",
"children": [
- 33724
+ 16435
]
}
],
@@ -659298,7 +660204,7 @@
{
"title": "Methods",
"children": [
- 33720
+ 16431
]
}
],
@@ -659332,7 +660238,7 @@
]
},
{
- "id": 33727,
+ "id": 16438,
"name": "updateReceiveItemReturnRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -659344,7 +660250,7 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 126,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L126"
}
],
"type": {
@@ -659354,7 +660260,7 @@
"defaultValue": "\"update-receive-item-return-request\""
},
{
- "id": 33728,
+ "id": 16439,
"name": "updateReceiveItemReturnRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -659398,7 +660304,7 @@
},
"children": [
{
- "id": 33736,
+ "id": 16447,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -659421,7 +660327,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33737,
+ "id": 16448,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -659435,7 +660341,7 @@
],
"signatures": [
{
- "id": 33738,
+ "id": 16449,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -659463,7 +660369,7 @@
],
"parameters": [
{
- "id": 33739,
+ "id": 16450,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -659479,14 +660385,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33740,
+ "id": 16451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33741,
+ "id": 16452,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -659546,7 +660452,7 @@
{
"title": "Properties",
"children": [
- 33741
+ 16452
]
}
],
@@ -659567,14 +660473,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33742,
+ "id": 16453,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33755,
+ "id": 16466,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -659620,7 +660526,7 @@
}
},
{
- "id": 33815,
+ "id": 16526,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -659666,7 +660572,7 @@
}
},
{
- "id": 33816,
+ "id": 16527,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -659712,7 +660618,7 @@
}
},
{
- "id": 33817,
+ "id": 16528,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -659769,7 +660675,7 @@
}
},
{
- "id": 33818,
+ "id": 16529,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -659825,7 +660731,7 @@
}
},
{
- "id": 33783,
+ "id": 16494,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -659882,7 +660788,7 @@
}
},
{
- "id": 33784,
+ "id": 16495,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -659939,7 +660845,7 @@
}
},
{
- "id": 33785,
+ "id": 16496,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -659996,7 +660902,7 @@
}
},
{
- "id": 33760,
+ "id": 16471,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -660053,7 +660959,7 @@
}
},
{
- "id": 33786,
+ "id": 16497,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -660099,7 +661005,7 @@
}
},
{
- "id": 33787,
+ "id": 16498,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -660169,7 +661075,7 @@
}
},
{
- "id": 33788,
+ "id": 16499,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -660239,7 +661145,7 @@
}
},
{
- "id": 33819,
+ "id": 16530,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -660315,7 +661221,7 @@
}
},
{
- "id": 33789,
+ "id": 16500,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -660391,7 +661297,7 @@
}
},
{
- "id": 33820,
+ "id": 16531,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -660461,7 +661367,7 @@
}
},
{
- "id": 33821,
+ "id": 16532,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -660518,7 +661424,7 @@
}
},
{
- "id": 33759,
+ "id": 16470,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -660613,7 +661519,7 @@
}
},
{
- "id": 33814,
+ "id": 16525,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -660688,7 +661594,7 @@
}
},
{
- "id": 33756,
+ "id": 16467,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -660757,7 +661663,7 @@
}
},
{
- "id": 33757,
+ "id": 16468,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -660826,7 +661732,7 @@
}
},
{
- "id": 33758,
+ "id": 16469,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -660901,7 +661807,7 @@
}
},
{
- "id": 33790,
+ "id": 16501,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -660957,7 +661863,7 @@
}
},
{
- "id": 33791,
+ "id": 16502,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -661013,7 +661919,7 @@
}
},
{
- "id": 33792,
+ "id": 16503,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -661069,7 +661975,7 @@
}
},
{
- "id": 33764,
+ "id": 16475,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -661125,7 +662031,7 @@
}
},
{
- "id": 33765,
+ "id": 16476,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -661181,7 +662087,7 @@
}
},
{
- "id": 33766,
+ "id": 16477,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -661237,7 +662143,7 @@
}
},
{
- "id": 33822,
+ "id": 16533,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -661293,7 +662199,7 @@
}
},
{
- "id": 33761,
+ "id": 16472,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -661349,7 +662255,7 @@
}
},
{
- "id": 33762,
+ "id": 16473,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -661405,7 +662311,7 @@
}
},
{
- "id": 33763,
+ "id": 16474,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -661461,7 +662367,7 @@
}
},
{
- "id": 33767,
+ "id": 16478,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -661517,7 +662423,7 @@
}
},
{
- "id": 33768,
+ "id": 16479,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -661573,7 +662479,7 @@
}
},
{
- "id": 33769,
+ "id": 16480,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -661629,7 +662535,7 @@
}
},
{
- "id": 33823,
+ "id": 16534,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -661685,7 +662591,7 @@
}
},
{
- "id": 33770,
+ "id": 16481,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -661741,7 +662647,7 @@
}
},
{
- "id": 33771,
+ "id": 16482,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -661797,7 +662703,7 @@
}
},
{
- "id": 33813,
+ "id": 16524,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -661853,7 +662759,7 @@
}
},
{
- "id": 33793,
+ "id": 16504,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -661909,7 +662815,7 @@
}
},
{
- "id": 33794,
+ "id": 16505,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -661965,7 +662871,7 @@
}
},
{
- "id": 33795,
+ "id": 16506,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -662021,7 +662927,7 @@
}
},
{
- "id": 33796,
+ "id": 16507,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -662077,7 +662983,7 @@
}
},
{
- "id": 33797,
+ "id": 16508,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -662133,7 +663039,7 @@
}
},
{
- "id": 33824,
+ "id": 16535,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -662189,7 +663095,7 @@
}
},
{
- "id": 33798,
+ "id": 16509,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -662245,7 +663151,7 @@
}
},
{
- "id": 33799,
+ "id": 16510,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -662301,7 +663207,7 @@
}
},
{
- "id": 33800,
+ "id": 16511,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -662357,7 +663263,7 @@
}
},
{
- "id": 33743,
+ "id": 16454,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -662413,7 +663319,7 @@
}
},
{
- "id": 33744,
+ "id": 16455,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -662453,14 +663359,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33745,
+ "id": 16456,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33746,
+ "id": 16457,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -662492,7 +663398,7 @@
{
"title": "Properties",
"children": [
- 33746
+ 16457
]
}
],
@@ -662532,14 +663438,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33747,
+ "id": 16458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33748,
+ "id": 16459,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -662571,7 +663477,7 @@
{
"title": "Properties",
"children": [
- 33748
+ 16459
]
}
],
@@ -662595,7 +663501,7 @@
}
},
{
- "id": 33749,
+ "id": 16460,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -662635,14 +663541,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33750,
+ "id": 16461,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33751,
+ "id": 16462,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -662674,7 +663580,7 @@
{
"title": "Properties",
"children": [
- 33751
+ 16462
]
}
],
@@ -662714,14 +663620,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33752,
+ "id": 16463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33753,
+ "id": 16464,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -662753,7 +663659,7 @@
{
"title": "Properties",
"children": [
- 33753
+ 16464
]
}
],
@@ -662777,7 +663683,7 @@
}
},
{
- "id": 33754,
+ "id": 16465,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -662827,57 +663733,57 @@
{
"title": "Properties",
"children": [
- 33755,
- 33815,
- 33816,
- 33817,
- 33818,
- 33783,
- 33784,
- 33785,
- 33760,
- 33786,
- 33787,
- 33788,
- 33819,
- 33789,
- 33820,
- 33821,
- 33759,
- 33814,
- 33756,
- 33757,
- 33758,
- 33790,
- 33791,
- 33792,
- 33764,
- 33765,
- 33766,
- 33822,
- 33761,
- 33762,
- 33763,
- 33767,
- 33768,
- 33769,
- 33823,
- 33770,
- 33771,
- 33813,
- 33793,
- 33794,
- 33795,
- 33796,
- 33797,
- 33824,
- 33798,
- 33799,
- 33800,
- 33743,
- 33744,
- 33749,
- 33754
+ 16466,
+ 16526,
+ 16527,
+ 16528,
+ 16529,
+ 16494,
+ 16495,
+ 16496,
+ 16471,
+ 16497,
+ 16498,
+ 16499,
+ 16530,
+ 16500,
+ 16531,
+ 16532,
+ 16470,
+ 16525,
+ 16467,
+ 16468,
+ 16469,
+ 16501,
+ 16502,
+ 16503,
+ 16475,
+ 16476,
+ 16477,
+ 16533,
+ 16472,
+ 16473,
+ 16474,
+ 16478,
+ 16479,
+ 16480,
+ 16534,
+ 16481,
+ 16482,
+ 16524,
+ 16504,
+ 16505,
+ 16506,
+ 16507,
+ 16508,
+ 16535,
+ 16509,
+ 16510,
+ 16511,
+ 16454,
+ 16455,
+ 16460,
+ 16465
]
}
],
@@ -662922,14 +663828,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33825,
+ "id": 16536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33826,
+ "id": 16537,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -662943,7 +663849,7 @@
],
"signatures": [
{
- "id": 33827,
+ "id": 16538,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -662957,7 +663863,7 @@
],
"parameters": [
{
- "id": 33828,
+ "id": 16539,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -662968,14 +663874,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33829,
+ "id": 16540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33830,
+ "id": 16541,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -662999,7 +663905,7 @@
{
"title": "Properties",
"children": [
- 33830
+ 16541
]
}
],
@@ -663081,7 +663987,7 @@
{
"title": "Methods",
"children": [
- 33826
+ 16537
]
}
],
@@ -663122,7 +664028,7 @@
}
},
{
- "id": 33831,
+ "id": 16542,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -663145,7 +664051,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33832,
+ "id": 16543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -663159,7 +664065,7 @@
],
"signatures": [
{
- "id": 33833,
+ "id": 16544,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -663187,7 +664093,7 @@
],
"typeParameters": [
{
- "id": 33834,
+ "id": 16545,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -663198,7 +664104,7 @@
}
},
{
- "id": 33835,
+ "id": 16546,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -663211,7 +664117,7 @@
],
"parameters": [
{
- "id": 33836,
+ "id": 16547,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -663244,7 +664150,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -663264,7 +664170,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -663297,7 +664203,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -663317,7 +664223,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -663337,7 +664243,7 @@
}
},
{
- "id": 33837,
+ "id": 16548,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -663360,7 +664266,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33838,
+ "id": 16549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -663374,7 +664280,7 @@
],
"signatures": [
{
- "id": 33839,
+ "id": 16550,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -663396,7 +664302,7 @@
}
},
{
- "id": 33840,
+ "id": 16551,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -663419,7 +664325,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33841,
+ "id": 16552,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -663433,7 +664339,7 @@
],
"signatures": [
{
- "id": 33842,
+ "id": 16553,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -663447,7 +664353,7 @@
],
"parameters": [
{
- "id": 33843,
+ "id": 16554,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -663473,7 +664379,7 @@
}
},
{
- "id": 33844,
+ "id": 16555,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -663496,7 +664402,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33845,
+ "id": 16556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -663507,7 +664413,7 @@
],
"documents": [
{
- "id": 42956,
+ "id": 25897,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -663533,7 +664439,7 @@
"frontmatter": {}
},
{
- "id": 42957,
+ "id": 25898,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -663559,7 +664465,7 @@
"frontmatter": {}
},
{
- "id": 42958,
+ "id": 25899,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -663585,7 +664491,7 @@
"frontmatter": {}
},
{
- "id": 42959,
+ "id": 25900,
"name": "updateReceiveItemReturnRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -663611,7 +664517,7 @@
"frontmatter": {}
},
{
- "id": 42960,
+ "id": 25901,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -663637,7 +664543,7 @@
"frontmatter": {}
},
{
- "id": 42961,
+ "id": 25902,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -663664,21 +664570,21 @@
}
],
"childrenIncludingDocuments": [
- 33736,
- 33831,
- 33837,
- 33840,
- 33844
+ 16447,
+ 16542,
+ 16548,
+ 16551,
+ 16555
],
"groups": [
{
"title": "Properties",
"children": [
- 33736,
- 33831,
- 33837,
- 33840,
- 33844
+ 16447,
+ 16542,
+ 16548,
+ 16551,
+ 16555
]
}
],
@@ -663687,12 +664593,12 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 151,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L151"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L151"
}
],
"signatures": [
{
- "id": 33729,
+ "id": 16440,
"name": "updateReceiveItemReturnRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -663739,12 +664645,12 @@
"fileName": "core-flows/src/order/workflows/return/update-receive-item-return-request.ts",
"line": 151,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L151"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-receive-item-return-request.ts#L151"
}
],
"typeParameters": [
{
- "id": 33730,
+ "id": 16441,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -663755,7 +664661,7 @@
}
},
{
- "id": 33731,
+ "id": 16442,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -663768,7 +664674,7 @@
],
"parameters": [
{
- "id": 33732,
+ "id": 16443,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -663792,14 +664698,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 33733,
+ "id": 16444,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33734,
+ "id": 16445,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -663822,7 +664728,7 @@
}
},
{
- "id": 33735,
+ "id": 16446,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -663849,8 +664755,8 @@
{
"title": "Properties",
"children": [
- 33734,
- 33735
+ 16445,
+ 16446
]
}
],
@@ -663943,14 +664849,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -663965,7 +664871,7 @@
]
},
{
- "id": 33848,
+ "id": 16559,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -663983,7 +664889,7 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L40"
}
],
"type": {
@@ -663997,7 +664903,7 @@
}
},
{
- "id": 33849,
+ "id": 16560,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -664015,7 +664921,7 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L44"
}
],
"type": {
@@ -664029,7 +664935,7 @@
}
},
{
- "id": 33850,
+ "id": 16561,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -664047,7 +664953,7 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L48"
}
],
"type": {
@@ -664061,7 +664967,7 @@
}
},
{
- "id": 33851,
+ "id": 16562,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -664079,7 +664985,7 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L52"
}
],
"type": {
@@ -664094,7 +665000,7 @@
}
},
{
- "id": 33852,
+ "id": 16563,
"name": "updateRequestItemReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -664129,7 +665035,7 @@
},
"children": [
{
- "id": 33861,
+ "id": 16572,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -664147,7 +665053,7 @@
}
},
{
- "id": 33862,
+ "id": 16573,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -664169,8 +665075,8 @@
{
"title": "Properties",
"children": [
- 33861,
- 33862
+ 16572,
+ 16573
]
}
],
@@ -664179,12 +665085,12 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L91"
}
],
"signatures": [
{
- "id": 33853,
+ "id": 16564,
"name": "updateRequestItemReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -664222,12 +665128,12 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L91"
}
],
"parameters": [
{
- "id": 33854,
+ "id": 16565,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -664237,7 +665143,7 @@
"types": [
{
"type": "reference",
- "target": 33846,
+ "target": 16557,
"name": "UpdateRequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -664250,7 +665156,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33846,
+ "target": 16557,
"name": "UpdateRequestItemReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -664283,14 +665189,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33855,
+ "id": 16566,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33856,
+ "id": 16567,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -664304,7 +665210,7 @@
],
"signatures": [
{
- "id": 33857,
+ "id": 16568,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -664318,7 +665224,7 @@
],
"parameters": [
{
- "id": 33858,
+ "id": 16569,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -664329,14 +665235,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33859,
+ "id": 16570,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33860,
+ "id": 16571,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -664360,7 +665266,7 @@
{
"title": "Properties",
"children": [
- 33860
+ 16571
]
}
],
@@ -664437,7 +665343,7 @@
{
"title": "Methods",
"children": [
- 33856
+ 16567
]
}
],
@@ -664471,7 +665377,7 @@
]
},
{
- "id": 33863,
+ "id": 16574,
"name": "updateRequestItemReturnWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -664483,7 +665389,7 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 132,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L132"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L132"
}
],
"type": {
@@ -664493,7 +665399,7 @@
"defaultValue": "\"update-request-item-return\""
},
{
- "id": 33864,
+ "id": 16575,
"name": "updateRequestItemReturnWorkflow",
"variant": "declaration",
"kind": 64,
@@ -664537,7 +665443,7 @@
},
"children": [
{
- "id": 33872,
+ "id": 16583,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -664560,7 +665466,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33873,
+ "id": 16584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -664574,7 +665480,7 @@
],
"signatures": [
{
- "id": 33874,
+ "id": 16585,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -664602,7 +665508,7 @@
],
"parameters": [
{
- "id": 33875,
+ "id": 16586,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -664618,14 +665524,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33876,
+ "id": 16587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33877,
+ "id": 16588,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -664685,7 +665591,7 @@
{
"title": "Properties",
"children": [
- 33877
+ 16588
]
}
],
@@ -664706,14 +665612,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33878,
+ "id": 16589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33891,
+ "id": 16602,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -664759,7 +665665,7 @@
}
},
{
- "id": 33951,
+ "id": 16662,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -664805,7 +665711,7 @@
}
},
{
- "id": 33952,
+ "id": 16663,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -664851,7 +665757,7 @@
}
},
{
- "id": 33953,
+ "id": 16664,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -664908,7 +665814,7 @@
}
},
{
- "id": 33954,
+ "id": 16665,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -664964,7 +665870,7 @@
}
},
{
- "id": 33919,
+ "id": 16630,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -665021,7 +665927,7 @@
}
},
{
- "id": 33920,
+ "id": 16631,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -665078,7 +665984,7 @@
}
},
{
- "id": 33921,
+ "id": 16632,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -665135,7 +666041,7 @@
}
},
{
- "id": 33896,
+ "id": 16607,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -665192,7 +666098,7 @@
}
},
{
- "id": 33922,
+ "id": 16633,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -665238,7 +666144,7 @@
}
},
{
- "id": 33923,
+ "id": 16634,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -665308,7 +666214,7 @@
}
},
{
- "id": 33924,
+ "id": 16635,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -665378,7 +666284,7 @@
}
},
{
- "id": 33955,
+ "id": 16666,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -665454,7 +666360,7 @@
}
},
{
- "id": 33925,
+ "id": 16636,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -665530,7 +666436,7 @@
}
},
{
- "id": 33956,
+ "id": 16667,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -665600,7 +666506,7 @@
}
},
{
- "id": 33957,
+ "id": 16668,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -665657,7 +666563,7 @@
}
},
{
- "id": 33895,
+ "id": 16606,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -665752,7 +666658,7 @@
}
},
{
- "id": 33950,
+ "id": 16661,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -665827,7 +666733,7 @@
}
},
{
- "id": 33892,
+ "id": 16603,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -665896,7 +666802,7 @@
}
},
{
- "id": 33893,
+ "id": 16604,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -665965,7 +666871,7 @@
}
},
{
- "id": 33894,
+ "id": 16605,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -666040,7 +666946,7 @@
}
},
{
- "id": 33926,
+ "id": 16637,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -666096,7 +667002,7 @@
}
},
{
- "id": 33927,
+ "id": 16638,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -666152,7 +667058,7 @@
}
},
{
- "id": 33928,
+ "id": 16639,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -666208,7 +667114,7 @@
}
},
{
- "id": 33900,
+ "id": 16611,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -666264,7 +667170,7 @@
}
},
{
- "id": 33901,
+ "id": 16612,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -666320,7 +667226,7 @@
}
},
{
- "id": 33902,
+ "id": 16613,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -666376,7 +667282,7 @@
}
},
{
- "id": 33958,
+ "id": 16669,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -666432,7 +667338,7 @@
}
},
{
- "id": 33897,
+ "id": 16608,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -666488,7 +667394,7 @@
}
},
{
- "id": 33898,
+ "id": 16609,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -666544,7 +667450,7 @@
}
},
{
- "id": 33899,
+ "id": 16610,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -666600,7 +667506,7 @@
}
},
{
- "id": 33903,
+ "id": 16614,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -666656,7 +667562,7 @@
}
},
{
- "id": 33904,
+ "id": 16615,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -666712,7 +667618,7 @@
}
},
{
- "id": 33905,
+ "id": 16616,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -666768,7 +667674,7 @@
}
},
{
- "id": 33959,
+ "id": 16670,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -666824,7 +667730,7 @@
}
},
{
- "id": 33906,
+ "id": 16617,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -666880,7 +667786,7 @@
}
},
{
- "id": 33907,
+ "id": 16618,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -666936,7 +667842,7 @@
}
},
{
- "id": 33949,
+ "id": 16660,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -666992,7 +667898,7 @@
}
},
{
- "id": 33929,
+ "id": 16640,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -667048,7 +667954,7 @@
}
},
{
- "id": 33930,
+ "id": 16641,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -667104,7 +668010,7 @@
}
},
{
- "id": 33931,
+ "id": 16642,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -667160,7 +668066,7 @@
}
},
{
- "id": 33932,
+ "id": 16643,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -667216,7 +668122,7 @@
}
},
{
- "id": 33933,
+ "id": 16644,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -667272,7 +668178,7 @@
}
},
{
- "id": 33960,
+ "id": 16671,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -667328,7 +668234,7 @@
}
},
{
- "id": 33934,
+ "id": 16645,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -667384,7 +668290,7 @@
}
},
{
- "id": 33935,
+ "id": 16646,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -667440,7 +668346,7 @@
}
},
{
- "id": 33936,
+ "id": 16647,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -667496,7 +668402,7 @@
}
},
{
- "id": 33879,
+ "id": 16590,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -667552,7 +668458,7 @@
}
},
{
- "id": 33880,
+ "id": 16591,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -667592,14 +668498,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33881,
+ "id": 16592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33882,
+ "id": 16593,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -667631,7 +668537,7 @@
{
"title": "Properties",
"children": [
- 33882
+ 16593
]
}
],
@@ -667671,14 +668577,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33883,
+ "id": 16594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33884,
+ "id": 16595,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -667710,7 +668616,7 @@
{
"title": "Properties",
"children": [
- 33884
+ 16595
]
}
],
@@ -667734,7 +668640,7 @@
}
},
{
- "id": 33885,
+ "id": 16596,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -667774,14 +668680,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33886,
+ "id": 16597,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33887,
+ "id": 16598,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -667813,7 +668719,7 @@
{
"title": "Properties",
"children": [
- 33887
+ 16598
]
}
],
@@ -667853,14 +668759,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33888,
+ "id": 16599,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33889,
+ "id": 16600,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -667892,7 +668798,7 @@
{
"title": "Properties",
"children": [
- 33889
+ 16600
]
}
],
@@ -667916,7 +668822,7 @@
}
},
{
- "id": 33890,
+ "id": 16601,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -667966,57 +668872,57 @@
{
"title": "Properties",
"children": [
- 33891,
- 33951,
- 33952,
- 33953,
- 33954,
- 33919,
- 33920,
- 33921,
- 33896,
- 33922,
- 33923,
- 33924,
- 33955,
- 33925,
- 33956,
- 33957,
- 33895,
- 33950,
- 33892,
- 33893,
- 33894,
- 33926,
- 33927,
- 33928,
- 33900,
- 33901,
- 33902,
- 33958,
- 33897,
- 33898,
- 33899,
- 33903,
- 33904,
- 33905,
- 33959,
- 33906,
- 33907,
- 33949,
- 33929,
- 33930,
- 33931,
- 33932,
- 33933,
- 33960,
- 33934,
- 33935,
- 33936,
- 33879,
- 33880,
- 33885,
- 33890
+ 16602,
+ 16662,
+ 16663,
+ 16664,
+ 16665,
+ 16630,
+ 16631,
+ 16632,
+ 16607,
+ 16633,
+ 16634,
+ 16635,
+ 16666,
+ 16636,
+ 16667,
+ 16668,
+ 16606,
+ 16661,
+ 16603,
+ 16604,
+ 16605,
+ 16637,
+ 16638,
+ 16639,
+ 16611,
+ 16612,
+ 16613,
+ 16669,
+ 16608,
+ 16609,
+ 16610,
+ 16614,
+ 16615,
+ 16616,
+ 16670,
+ 16617,
+ 16618,
+ 16660,
+ 16640,
+ 16641,
+ 16642,
+ 16643,
+ 16644,
+ 16671,
+ 16645,
+ 16646,
+ 16647,
+ 16590,
+ 16591,
+ 16596,
+ 16601
]
}
],
@@ -668061,14 +668967,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33961,
+ "id": 16672,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33962,
+ "id": 16673,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -668082,7 +668988,7 @@
],
"signatures": [
{
- "id": 33963,
+ "id": 16674,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -668096,7 +669002,7 @@
],
"parameters": [
{
- "id": 33964,
+ "id": 16675,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -668107,14 +669013,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33965,
+ "id": 16676,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33966,
+ "id": 16677,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -668138,7 +669044,7 @@
{
"title": "Properties",
"children": [
- 33966
+ 16677
]
}
],
@@ -668220,7 +669126,7 @@
{
"title": "Methods",
"children": [
- 33962
+ 16673
]
}
],
@@ -668261,7 +669167,7 @@
}
},
{
- "id": 33967,
+ "id": 16678,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -668284,7 +669190,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33968,
+ "id": 16679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -668298,7 +669204,7 @@
],
"signatures": [
{
- "id": 33969,
+ "id": 16680,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -668326,7 +669232,7 @@
],
"typeParameters": [
{
- "id": 33970,
+ "id": 16681,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -668337,7 +669243,7 @@
}
},
{
- "id": 33971,
+ "id": 16682,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -668350,7 +669256,7 @@
],
"parameters": [
{
- "id": 33972,
+ "id": 16683,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -668383,7 +669289,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -668403,7 +669309,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -668436,7 +669342,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -668456,7 +669362,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -668476,7 +669382,7 @@
}
},
{
- "id": 33973,
+ "id": 16684,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -668499,7 +669405,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33974,
+ "id": 16685,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -668513,7 +669419,7 @@
],
"signatures": [
{
- "id": 33975,
+ "id": 16686,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -668535,7 +669441,7 @@
}
},
{
- "id": 33976,
+ "id": 16687,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -668558,7 +669464,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33977,
+ "id": 16688,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -668572,7 +669478,7 @@
],
"signatures": [
{
- "id": 33978,
+ "id": 16689,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -668586,7 +669492,7 @@
],
"parameters": [
{
- "id": 33979,
+ "id": 16690,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -668612,7 +669518,7 @@
}
},
{
- "id": 33980,
+ "id": 16691,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -668635,7 +669541,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 33981,
+ "id": 16692,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -668646,7 +669552,7 @@
],
"documents": [
{
- "id": 42962,
+ "id": 25903,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -668672,7 +669578,7 @@
"frontmatter": {}
},
{
- "id": 42963,
+ "id": 25904,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -668698,7 +669604,7 @@
"frontmatter": {}
},
{
- "id": 42964,
+ "id": 25905,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -668724,7 +669630,7 @@
"frontmatter": {}
},
{
- "id": 42965,
+ "id": 25906,
"name": "updateRequestItemReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -668750,7 +669656,7 @@
"frontmatter": {}
},
{
- "id": 42966,
+ "id": 25907,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -668776,7 +669682,7 @@
"frontmatter": {}
},
{
- "id": 42967,
+ "id": 25908,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -668803,21 +669709,21 @@
}
],
"childrenIncludingDocuments": [
- 33872,
- 33967,
- 33973,
- 33976,
- 33980
+ 16583,
+ 16678,
+ 16684,
+ 16687,
+ 16691
],
"groups": [
{
"title": "Properties",
"children": [
- 33872,
- 33967,
- 33973,
- 33976,
- 33980
+ 16583,
+ 16678,
+ 16684,
+ 16687,
+ 16691
]
}
],
@@ -668826,12 +669732,12 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L156"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L156"
}
],
"signatures": [
{
- "id": 33865,
+ "id": 16576,
"name": "updateRequestItemReturnWorkflow",
"variant": "signature",
"kind": 4096,
@@ -668878,12 +669784,12 @@
"fileName": "core-flows/src/order/workflows/return/update-request-item-return.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L156"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-request-item-return.ts#L156"
}
],
"typeParameters": [
{
- "id": 33866,
+ "id": 16577,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -668894,7 +669800,7 @@
}
},
{
- "id": 33867,
+ "id": 16578,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -668907,7 +669813,7 @@
],
"parameters": [
{
- "id": 33868,
+ "id": 16579,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -668931,14 +669837,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 33869,
+ "id": 16580,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33870,
+ "id": 16581,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -668961,7 +669867,7 @@
}
},
{
- "id": 33871,
+ "id": 16582,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -668988,8 +669894,8 @@
{
"title": "Properties",
"children": [
- 33870,
- 33871
+ 16581,
+ 16582
]
}
],
@@ -669082,14 +669988,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -669104,7 +670010,7 @@
]
},
{
- "id": 33984,
+ "id": 16695,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -669122,7 +670028,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return.ts#L30"
}
],
"type": {
@@ -669136,7 +670042,7 @@
}
},
{
- "id": 33985,
+ "id": 16696,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -669154,7 +670060,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return.ts#L34"
}
],
"type": {
@@ -669168,7 +670074,7 @@
}
},
{
- "id": 33986,
+ "id": 16697,
"name": "updateReturnValidationStep",
"variant": "declaration",
"kind": 64,
@@ -669203,7 +670109,7 @@
},
"children": [
{
- "id": 33995,
+ "id": 16706,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -669221,7 +670127,7 @@
}
},
{
- "id": 33996,
+ "id": 16707,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -669243,8 +670149,8 @@
{
"title": "Properties",
"children": [
- 33995,
- 33996
+ 16706,
+ 16707
]
}
],
@@ -669253,12 +670159,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return.ts",
"line": 60,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return.ts#L60"
}
],
"signatures": [
{
- "id": 33987,
+ "id": 16698,
"name": "updateReturnValidationStep",
"variant": "signature",
"kind": 4096,
@@ -669296,12 +670202,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return.ts",
"line": 60,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return.ts#L60"
}
],
"parameters": [
{
- "id": 33988,
+ "id": 16699,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -669311,7 +670217,7 @@
"types": [
{
"type": "reference",
- "target": 33982,
+ "target": 16693,
"name": "UpdateReturnValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -669324,7 +670230,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 33982,
+ "target": 16693,
"name": "UpdateReturnValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -669357,14 +670263,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33989,
+ "id": 16700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33990,
+ "id": 16701,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -669378,7 +670284,7 @@
],
"signatures": [
{
- "id": 33991,
+ "id": 16702,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -669392,7 +670298,7 @@
],
"parameters": [
{
- "id": 33992,
+ "id": 16703,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -669403,14 +670309,14 @@
{
"type": "reflection",
"declaration": {
- "id": 33993,
+ "id": 16704,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 33994,
+ "id": 16705,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -669434,7 +670340,7 @@
{
"title": "Properties",
"children": [
- 33994
+ 16705
]
}
],
@@ -669511,7 +670417,7 @@
{
"title": "Methods",
"children": [
- 33990
+ 16701
]
}
],
@@ -669545,7 +670451,7 @@
]
},
{
- "id": 33997,
+ "id": 16708,
"name": "updateReturnWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -669557,7 +670463,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return.ts#L71"
}
],
"type": {
@@ -669567,7 +670473,7 @@
"defaultValue": "\"update-return\""
},
{
- "id": 33998,
+ "id": 16709,
"name": "updateReturnWorkflow",
"variant": "declaration",
"kind": 64,
@@ -669611,7 +670517,7 @@
},
"children": [
{
- "id": 34006,
+ "id": 16717,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -669634,7 +670540,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34007,
+ "id": 16718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -669648,7 +670554,7 @@
],
"signatures": [
{
- "id": 34008,
+ "id": 16719,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -669676,7 +670582,7 @@
],
"parameters": [
{
- "id": 34009,
+ "id": 16720,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -669692,14 +670598,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34010,
+ "id": 16721,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34011,
+ "id": 16722,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -669759,7 +670665,7 @@
{
"title": "Properties",
"children": [
- 34011
+ 16722
]
}
],
@@ -669780,14 +670686,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34012,
+ "id": 16723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34025,
+ "id": 16736,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -669833,7 +670739,7 @@
}
},
{
- "id": 34085,
+ "id": 16796,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -669879,7 +670785,7 @@
}
},
{
- "id": 34086,
+ "id": 16797,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -669925,7 +670831,7 @@
}
},
{
- "id": 34087,
+ "id": 16798,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -669982,7 +670888,7 @@
}
},
{
- "id": 34088,
+ "id": 16799,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -670038,7 +670944,7 @@
}
},
{
- "id": 34053,
+ "id": 16764,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -670095,7 +671001,7 @@
}
},
{
- "id": 34054,
+ "id": 16765,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -670152,7 +671058,7 @@
}
},
{
- "id": 34055,
+ "id": 16766,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -670209,7 +671115,7 @@
}
},
{
- "id": 34030,
+ "id": 16741,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -670266,7 +671172,7 @@
}
},
{
- "id": 34056,
+ "id": 16767,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -670312,7 +671218,7 @@
}
},
{
- "id": 34057,
+ "id": 16768,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -670382,7 +671288,7 @@
}
},
{
- "id": 34058,
+ "id": 16769,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -670452,7 +671358,7 @@
}
},
{
- "id": 34089,
+ "id": 16800,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -670528,7 +671434,7 @@
}
},
{
- "id": 34059,
+ "id": 16770,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -670604,7 +671510,7 @@
}
},
{
- "id": 34090,
+ "id": 16801,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -670674,7 +671580,7 @@
}
},
{
- "id": 34091,
+ "id": 16802,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -670731,7 +671637,7 @@
}
},
{
- "id": 34029,
+ "id": 16740,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -670826,7 +671732,7 @@
}
},
{
- "id": 34084,
+ "id": 16795,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -670901,7 +671807,7 @@
}
},
{
- "id": 34026,
+ "id": 16737,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -670970,7 +671876,7 @@
}
},
{
- "id": 34027,
+ "id": 16738,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -671039,7 +671945,7 @@
}
},
{
- "id": 34028,
+ "id": 16739,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -671114,7 +672020,7 @@
}
},
{
- "id": 34060,
+ "id": 16771,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -671170,7 +672076,7 @@
}
},
{
- "id": 34061,
+ "id": 16772,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -671226,7 +672132,7 @@
}
},
{
- "id": 34062,
+ "id": 16773,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -671282,7 +672188,7 @@
}
},
{
- "id": 34034,
+ "id": 16745,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -671338,7 +672244,7 @@
}
},
{
- "id": 34035,
+ "id": 16746,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -671394,7 +672300,7 @@
}
},
{
- "id": 34036,
+ "id": 16747,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -671450,7 +672356,7 @@
}
},
{
- "id": 34092,
+ "id": 16803,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -671506,7 +672412,7 @@
}
},
{
- "id": 34031,
+ "id": 16742,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -671562,7 +672468,7 @@
}
},
{
- "id": 34032,
+ "id": 16743,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -671618,7 +672524,7 @@
}
},
{
- "id": 34033,
+ "id": 16744,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -671674,7 +672580,7 @@
}
},
{
- "id": 34037,
+ "id": 16748,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -671730,7 +672636,7 @@
}
},
{
- "id": 34038,
+ "id": 16749,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -671786,7 +672692,7 @@
}
},
{
- "id": 34039,
+ "id": 16750,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -671842,7 +672748,7 @@
}
},
{
- "id": 34093,
+ "id": 16804,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -671898,7 +672804,7 @@
}
},
{
- "id": 34040,
+ "id": 16751,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -671954,7 +672860,7 @@
}
},
{
- "id": 34041,
+ "id": 16752,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -672010,7 +672916,7 @@
}
},
{
- "id": 34083,
+ "id": 16794,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -672066,7 +672972,7 @@
}
},
{
- "id": 34063,
+ "id": 16774,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -672122,7 +673028,7 @@
}
},
{
- "id": 34064,
+ "id": 16775,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -672178,7 +673084,7 @@
}
},
{
- "id": 34065,
+ "id": 16776,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -672234,7 +673140,7 @@
}
},
{
- "id": 34066,
+ "id": 16777,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -672290,7 +673196,7 @@
}
},
{
- "id": 34067,
+ "id": 16778,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -672346,7 +673252,7 @@
}
},
{
- "id": 34094,
+ "id": 16805,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -672402,7 +673308,7 @@
}
},
{
- "id": 34068,
+ "id": 16779,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -672458,7 +673364,7 @@
}
},
{
- "id": 34069,
+ "id": 16780,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -672514,7 +673420,7 @@
}
},
{
- "id": 34070,
+ "id": 16781,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -672570,7 +673476,7 @@
}
},
{
- "id": 34013,
+ "id": 16724,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -672626,7 +673532,7 @@
}
},
{
- "id": 34014,
+ "id": 16725,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -672666,14 +673572,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34015,
+ "id": 16726,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34016,
+ "id": 16727,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -672705,7 +673611,7 @@
{
"title": "Properties",
"children": [
- 34016
+ 16727
]
}
],
@@ -672745,14 +673651,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34017,
+ "id": 16728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34018,
+ "id": 16729,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -672784,7 +673690,7 @@
{
"title": "Properties",
"children": [
- 34018
+ 16729
]
}
],
@@ -672808,7 +673714,7 @@
}
},
{
- "id": 34019,
+ "id": 16730,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -672848,14 +673754,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34020,
+ "id": 16731,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34021,
+ "id": 16732,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -672887,7 +673793,7 @@
{
"title": "Properties",
"children": [
- 34021
+ 16732
]
}
],
@@ -672927,14 +673833,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34022,
+ "id": 16733,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34023,
+ "id": 16734,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -672966,7 +673872,7 @@
{
"title": "Properties",
"children": [
- 34023
+ 16734
]
}
],
@@ -672990,7 +673896,7 @@
}
},
{
- "id": 34024,
+ "id": 16735,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -673040,57 +673946,57 @@
{
"title": "Properties",
"children": [
- 34025,
- 34085,
- 34086,
- 34087,
- 34088,
- 34053,
- 34054,
- 34055,
- 34030,
- 34056,
- 34057,
- 34058,
- 34089,
- 34059,
- 34090,
- 34091,
- 34029,
- 34084,
- 34026,
- 34027,
- 34028,
- 34060,
- 34061,
- 34062,
- 34034,
- 34035,
- 34036,
- 34092,
- 34031,
- 34032,
- 34033,
- 34037,
- 34038,
- 34039,
- 34093,
- 34040,
- 34041,
- 34083,
- 34063,
- 34064,
- 34065,
- 34066,
- 34067,
- 34094,
- 34068,
- 34069,
- 34070,
- 34013,
- 34014,
- 34019,
- 34024
+ 16736,
+ 16796,
+ 16797,
+ 16798,
+ 16799,
+ 16764,
+ 16765,
+ 16766,
+ 16741,
+ 16767,
+ 16768,
+ 16769,
+ 16800,
+ 16770,
+ 16801,
+ 16802,
+ 16740,
+ 16795,
+ 16737,
+ 16738,
+ 16739,
+ 16771,
+ 16772,
+ 16773,
+ 16745,
+ 16746,
+ 16747,
+ 16803,
+ 16742,
+ 16743,
+ 16744,
+ 16748,
+ 16749,
+ 16750,
+ 16804,
+ 16751,
+ 16752,
+ 16794,
+ 16774,
+ 16775,
+ 16776,
+ 16777,
+ 16778,
+ 16805,
+ 16779,
+ 16780,
+ 16781,
+ 16724,
+ 16725,
+ 16730,
+ 16735
]
}
],
@@ -673135,14 +674041,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34095,
+ "id": 16806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34096,
+ "id": 16807,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -673156,7 +674062,7 @@
],
"signatures": [
{
- "id": 34097,
+ "id": 16808,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -673170,7 +674076,7 @@
],
"parameters": [
{
- "id": 34098,
+ "id": 16809,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -673181,14 +674087,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34099,
+ "id": 16810,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34100,
+ "id": 16811,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -673212,7 +674118,7 @@
{
"title": "Properties",
"children": [
- 34100
+ 16811
]
}
],
@@ -673294,7 +674200,7 @@
{
"title": "Methods",
"children": [
- 34096
+ 16807
]
}
],
@@ -673335,7 +674241,7 @@
}
},
{
- "id": 34101,
+ "id": 16812,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -673358,7 +674264,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34102,
+ "id": 16813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -673372,7 +674278,7 @@
],
"signatures": [
{
- "id": 34103,
+ "id": 16814,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -673400,7 +674306,7 @@
],
"typeParameters": [
{
- "id": 34104,
+ "id": 16815,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -673411,7 +674317,7 @@
}
},
{
- "id": 34105,
+ "id": 16816,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -673424,7 +674330,7 @@
],
"parameters": [
{
- "id": 34106,
+ "id": 16817,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -673457,7 +674363,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -673477,7 +674383,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -673510,7 +674416,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -673530,7 +674436,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -673550,7 +674456,7 @@
}
},
{
- "id": 34107,
+ "id": 16818,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -673573,7 +674479,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34108,
+ "id": 16819,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -673587,7 +674493,7 @@
],
"signatures": [
{
- "id": 34109,
+ "id": 16820,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -673609,7 +674515,7 @@
}
},
{
- "id": 34110,
+ "id": 16821,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -673632,7 +674538,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34111,
+ "id": 16822,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -673646,7 +674552,7 @@
],
"signatures": [
{
- "id": 34112,
+ "id": 16823,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -673660,7 +674566,7 @@
],
"parameters": [
{
- "id": 34113,
+ "id": 16824,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -673686,7 +674592,7 @@
}
},
{
- "id": 34114,
+ "id": 16825,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -673709,7 +674615,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34115,
+ "id": 16826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -673720,7 +674626,7 @@
],
"documents": [
{
- "id": 42968,
+ "id": 25909,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -673746,7 +674652,7 @@
"frontmatter": {}
},
{
- "id": 42969,
+ "id": 25910,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -673772,7 +674678,7 @@
"frontmatter": {}
},
{
- "id": 42970,
+ "id": 25911,
"name": "updateReturnValidationStep",
"variant": "document",
"kind": 8388608,
@@ -673798,7 +674704,7 @@
"frontmatter": {}
},
{
- "id": 42971,
+ "id": 25912,
"name": "updateReturnsStep",
"variant": "document",
"kind": 8388608,
@@ -673824,7 +674730,7 @@
"frontmatter": {}
},
{
- "id": 42972,
+ "id": 25913,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -673851,21 +674757,21 @@
}
],
"childrenIncludingDocuments": [
- 34006,
- 34101,
- 34107,
- 34110,
- 34114
+ 16717,
+ 16812,
+ 16818,
+ 16821,
+ 16825
],
"groups": [
{
"title": "Properties",
"children": [
- 34006,
- 34101,
- 34107,
- 34110,
- 34114
+ 16717,
+ 16812,
+ 16818,
+ 16821,
+ 16825
]
}
],
@@ -673874,12 +674780,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return.ts",
"line": 92,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return.ts#L92"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return.ts#L92"
}
],
"signatures": [
{
- "id": 33999,
+ "id": 16710,
"name": "updateReturnWorkflow",
"variant": "signature",
"kind": 4096,
@@ -673926,12 +674832,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return.ts",
"line": 92,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return.ts#L92"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return.ts#L92"
}
],
"typeParameters": [
{
- "id": 34000,
+ "id": 16711,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -673942,7 +674848,7 @@
}
},
{
- "id": 34001,
+ "id": 16712,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -673955,7 +674861,7 @@
],
"parameters": [
{
- "id": 34002,
+ "id": 16713,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -673979,14 +674885,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34003,
+ "id": 16714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34004,
+ "id": 16715,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -674009,7 +674915,7 @@
}
},
{
- "id": 34005,
+ "id": 16716,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -674036,8 +674942,8 @@
{
"title": "Properties",
"children": [
- 34004,
- 34005
+ 16715,
+ 16716
]
}
],
@@ -674130,14 +675036,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -674152,7 +675058,7 @@
]
},
{
- "id": 34118,
+ "id": 16829,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -674170,7 +675076,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L40"
}
],
"type": {
@@ -674184,7 +675090,7 @@
}
},
{
- "id": 34119,
+ "id": 16830,
"name": "orderReturn",
"variant": "declaration",
"kind": 1024,
@@ -674202,7 +675108,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L44"
}
],
"type": {
@@ -674216,7 +675122,7 @@
}
},
{
- "id": 34120,
+ "id": 16831,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -674234,7 +675140,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L48"
}
],
"type": {
@@ -674273,7 +675179,7 @@
}
},
{
- "id": 34121,
+ "id": 16832,
"name": "updateReturnShippingMethodValidationStep",
"variant": "declaration",
"kind": 64,
@@ -674308,7 +675214,7 @@
},
"children": [
{
- "id": 34130,
+ "id": 16841,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -674326,7 +675232,7 @@
}
},
{
- "id": 34131,
+ "id": 16842,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -674348,8 +675254,8 @@
{
"title": "Properties",
"children": [
- 34130,
- 34131
+ 16841,
+ 16842
]
}
],
@@ -674358,12 +675264,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 83,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L83"
}
],
"signatures": [
{
- "id": 34122,
+ "id": 16833,
"name": "updateReturnShippingMethodValidationStep",
"variant": "signature",
"kind": 4096,
@@ -674401,12 +675307,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 83,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L83"
}
],
"parameters": [
{
- "id": 34123,
+ "id": 16834,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -674416,7 +675322,7 @@
"types": [
{
"type": "reference",
- "target": 34116,
+ "target": 16827,
"name": "UpdateReturnShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -674429,7 +675335,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34116,
+ "target": 16827,
"name": "UpdateReturnShippingMethodValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -674462,14 +675368,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34124,
+ "id": 16835,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34125,
+ "id": 16836,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -674483,7 +675389,7 @@
],
"signatures": [
{
- "id": 34126,
+ "id": 16837,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -674497,7 +675403,7 @@
],
"parameters": [
{
- "id": 34127,
+ "id": 16838,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -674508,14 +675414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34128,
+ "id": 16839,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34129,
+ "id": 16840,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -674539,7 +675445,7 @@
{
"title": "Properties",
"children": [
- 34129
+ 16840
]
}
],
@@ -674616,7 +675522,7 @@
{
"title": "Methods",
"children": [
- 34125
+ 16836
]
}
],
@@ -674650,7 +675556,7 @@
]
},
{
- "id": 34132,
+ "id": 16843,
"name": "updateReturnShippingMethodWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -674662,7 +675568,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 109,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L109"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L109"
}
],
"type": {
@@ -674672,7 +675578,7 @@
"defaultValue": "\"update-return-shipping-method\""
},
{
- "id": 34133,
+ "id": 16844,
"name": "updateReturnShippingMethodWorkflow",
"variant": "declaration",
"kind": 64,
@@ -674716,7 +675622,7 @@
},
"children": [
{
- "id": 34141,
+ "id": 16852,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -674739,7 +675645,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34142,
+ "id": 16853,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -674753,7 +675659,7 @@
],
"signatures": [
{
- "id": 34143,
+ "id": 16854,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -674781,7 +675687,7 @@
],
"parameters": [
{
- "id": 34144,
+ "id": 16855,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -674797,14 +675703,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34145,
+ "id": 16856,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34146,
+ "id": 16857,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -674892,7 +675798,7 @@
{
"title": "Properties",
"children": [
- 34146
+ 16857
]
}
],
@@ -674913,14 +675819,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34147,
+ "id": 16858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34160,
+ "id": 16871,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -674966,7 +675872,7 @@
}
},
{
- "id": 34220,
+ "id": 16931,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -675012,7 +675918,7 @@
}
},
{
- "id": 34221,
+ "id": 16932,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -675058,7 +675964,7 @@
}
},
{
- "id": 34222,
+ "id": 16933,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -675115,7 +676021,7 @@
}
},
{
- "id": 34223,
+ "id": 16934,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -675171,7 +676077,7 @@
}
},
{
- "id": 34188,
+ "id": 16899,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -675228,7 +676134,7 @@
}
},
{
- "id": 34189,
+ "id": 16900,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -675285,7 +676191,7 @@
}
},
{
- "id": 34190,
+ "id": 16901,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -675342,7 +676248,7 @@
}
},
{
- "id": 34165,
+ "id": 16876,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -675399,7 +676305,7 @@
}
},
{
- "id": 34191,
+ "id": 16902,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -675445,7 +676351,7 @@
}
},
{
- "id": 34192,
+ "id": 16903,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -675515,7 +676421,7 @@
}
},
{
- "id": 34193,
+ "id": 16904,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -675585,7 +676491,7 @@
}
},
{
- "id": 34224,
+ "id": 16935,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -675661,7 +676567,7 @@
}
},
{
- "id": 34194,
+ "id": 16905,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -675737,7 +676643,7 @@
}
},
{
- "id": 34225,
+ "id": 16936,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -675807,7 +676713,7 @@
}
},
{
- "id": 34226,
+ "id": 16937,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -675864,7 +676770,7 @@
}
},
{
- "id": 34164,
+ "id": 16875,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -675959,7 +676865,7 @@
}
},
{
- "id": 34219,
+ "id": 16930,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -676034,7 +676940,7 @@
}
},
{
- "id": 34161,
+ "id": 16872,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -676103,7 +677009,7 @@
}
},
{
- "id": 34162,
+ "id": 16873,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -676172,7 +677078,7 @@
}
},
{
- "id": 34163,
+ "id": 16874,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -676247,7 +677153,7 @@
}
},
{
- "id": 34195,
+ "id": 16906,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -676303,7 +677209,7 @@
}
},
{
- "id": 34196,
+ "id": 16907,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -676359,7 +677265,7 @@
}
},
{
- "id": 34197,
+ "id": 16908,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -676415,7 +677321,7 @@
}
},
{
- "id": 34169,
+ "id": 16880,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -676471,7 +677377,7 @@
}
},
{
- "id": 34170,
+ "id": 16881,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -676527,7 +677433,7 @@
}
},
{
- "id": 34171,
+ "id": 16882,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -676583,7 +677489,7 @@
}
},
{
- "id": 34227,
+ "id": 16938,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -676639,7 +677545,7 @@
}
},
{
- "id": 34166,
+ "id": 16877,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -676695,7 +677601,7 @@
}
},
{
- "id": 34167,
+ "id": 16878,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -676751,7 +677657,7 @@
}
},
{
- "id": 34168,
+ "id": 16879,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -676807,7 +677713,7 @@
}
},
{
- "id": 34172,
+ "id": 16883,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -676863,7 +677769,7 @@
}
},
{
- "id": 34173,
+ "id": 16884,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -676919,7 +677825,7 @@
}
},
{
- "id": 34174,
+ "id": 16885,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -676975,7 +677881,7 @@
}
},
{
- "id": 34228,
+ "id": 16939,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -677031,7 +677937,7 @@
}
},
{
- "id": 34175,
+ "id": 16886,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -677087,7 +677993,7 @@
}
},
{
- "id": 34176,
+ "id": 16887,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -677143,7 +678049,7 @@
}
},
{
- "id": 34218,
+ "id": 16929,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -677199,7 +678105,7 @@
}
},
{
- "id": 34198,
+ "id": 16909,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -677255,7 +678161,7 @@
}
},
{
- "id": 34199,
+ "id": 16910,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -677311,7 +678217,7 @@
}
},
{
- "id": 34200,
+ "id": 16911,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -677367,7 +678273,7 @@
}
},
{
- "id": 34201,
+ "id": 16912,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -677423,7 +678329,7 @@
}
},
{
- "id": 34202,
+ "id": 16913,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -677479,7 +678385,7 @@
}
},
{
- "id": 34229,
+ "id": 16940,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -677535,7 +678441,7 @@
}
},
{
- "id": 34203,
+ "id": 16914,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -677591,7 +678497,7 @@
}
},
{
- "id": 34204,
+ "id": 16915,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -677647,7 +678553,7 @@
}
},
{
- "id": 34205,
+ "id": 16916,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -677703,7 +678609,7 @@
}
},
{
- "id": 34148,
+ "id": 16859,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -677759,7 +678665,7 @@
}
},
{
- "id": 34149,
+ "id": 16860,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -677799,14 +678705,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34150,
+ "id": 16861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34151,
+ "id": 16862,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -677838,7 +678744,7 @@
{
"title": "Properties",
"children": [
- 34151
+ 16862
]
}
],
@@ -677878,14 +678784,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34152,
+ "id": 16863,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34153,
+ "id": 16864,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -677917,7 +678823,7 @@
{
"title": "Properties",
"children": [
- 34153
+ 16864
]
}
],
@@ -677941,7 +678847,7 @@
}
},
{
- "id": 34154,
+ "id": 16865,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -677981,14 +678887,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34155,
+ "id": 16866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34156,
+ "id": 16867,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -678020,7 +678926,7 @@
{
"title": "Properties",
"children": [
- 34156
+ 16867
]
}
],
@@ -678060,14 +678966,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34157,
+ "id": 16868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34158,
+ "id": 16869,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -678099,7 +679005,7 @@
{
"title": "Properties",
"children": [
- 34158
+ 16869
]
}
],
@@ -678123,7 +679029,7 @@
}
},
{
- "id": 34159,
+ "id": 16870,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -678173,57 +679079,57 @@
{
"title": "Properties",
"children": [
- 34160,
- 34220,
- 34221,
- 34222,
- 34223,
- 34188,
- 34189,
- 34190,
- 34165,
- 34191,
- 34192,
- 34193,
- 34224,
- 34194,
- 34225,
- 34226,
- 34164,
- 34219,
- 34161,
- 34162,
- 34163,
- 34195,
- 34196,
- 34197,
- 34169,
- 34170,
- 34171,
- 34227,
- 34166,
- 34167,
- 34168,
- 34172,
- 34173,
- 34174,
- 34228,
- 34175,
- 34176,
- 34218,
- 34198,
- 34199,
- 34200,
- 34201,
- 34202,
- 34229,
- 34203,
- 34204,
- 34205,
- 34148,
- 34149,
- 34154,
- 34159
+ 16871,
+ 16931,
+ 16932,
+ 16933,
+ 16934,
+ 16899,
+ 16900,
+ 16901,
+ 16876,
+ 16902,
+ 16903,
+ 16904,
+ 16935,
+ 16905,
+ 16936,
+ 16937,
+ 16875,
+ 16930,
+ 16872,
+ 16873,
+ 16874,
+ 16906,
+ 16907,
+ 16908,
+ 16880,
+ 16881,
+ 16882,
+ 16938,
+ 16877,
+ 16878,
+ 16879,
+ 16883,
+ 16884,
+ 16885,
+ 16939,
+ 16886,
+ 16887,
+ 16929,
+ 16909,
+ 16910,
+ 16911,
+ 16912,
+ 16913,
+ 16940,
+ 16914,
+ 16915,
+ 16916,
+ 16859,
+ 16860,
+ 16865,
+ 16870
]
}
],
@@ -678268,14 +679174,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34230,
+ "id": 16941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34231,
+ "id": 16942,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -678289,7 +679195,7 @@
],
"signatures": [
{
- "id": 34232,
+ "id": 16943,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -678303,7 +679209,7 @@
],
"parameters": [
{
- "id": 34233,
+ "id": 16944,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -678314,14 +679220,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34234,
+ "id": 16945,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34235,
+ "id": 16946,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -678345,7 +679251,7 @@
{
"title": "Properties",
"children": [
- 34235
+ 16946
]
}
],
@@ -678427,7 +679333,7 @@
{
"title": "Methods",
"children": [
- 34231
+ 16942
]
}
],
@@ -678468,7 +679374,7 @@
}
},
{
- "id": 34236,
+ "id": 16947,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -678491,7 +679397,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34237,
+ "id": 16948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -678505,7 +679411,7 @@
],
"signatures": [
{
- "id": 34238,
+ "id": 16949,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -678533,7 +679439,7 @@
],
"typeParameters": [
{
- "id": 34239,
+ "id": 16950,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -678544,7 +679450,7 @@
}
},
{
- "id": 34240,
+ "id": 16951,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -678557,7 +679463,7 @@
],
"parameters": [
{
- "id": 34241,
+ "id": 16952,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -678590,7 +679496,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -678624,7 +679530,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -678657,7 +679563,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -678677,7 +679583,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -678697,7 +679603,7 @@
}
},
{
- "id": 34242,
+ "id": 16953,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -678720,7 +679626,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34243,
+ "id": 16954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -678734,7 +679640,7 @@
],
"signatures": [
{
- "id": 34244,
+ "id": 16955,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -678756,7 +679662,7 @@
}
},
{
- "id": 34245,
+ "id": 16956,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -678779,7 +679685,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34246,
+ "id": 16957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -678793,7 +679699,7 @@
],
"signatures": [
{
- "id": 34247,
+ "id": 16958,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -678807,7 +679713,7 @@
],
"parameters": [
{
- "id": 34248,
+ "id": 16959,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -678833,7 +679739,7 @@
}
},
{
- "id": 34249,
+ "id": 16960,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -678856,14 +679762,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34250,
+ "id": 16961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34251,
+ "id": 16962,
"name": "setPricingContext",
"variant": "declaration",
"kind": 1024,
@@ -678871,7 +679777,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34252,
+ "id": 16963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -678885,7 +679791,7 @@
],
"signatures": [
{
- "id": 34253,
+ "id": 16964,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -678899,7 +679805,7 @@
],
"typeParameters": [
{
- "id": 34254,
+ "id": 16965,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -678908,7 +679814,7 @@
],
"parameters": [
{
- "id": 34255,
+ "id": 16966,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -678923,14 +679829,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34256,
+ "id": 16967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34257,
+ "id": 16968,
"name": "order_return",
"variant": "declaration",
"kind": 1024,
@@ -678940,7 +679846,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L206"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L206"
}
],
"type": {
@@ -678955,7 +679861,7 @@
"defaultValue": "orderReturn"
},
{
- "id": 34258,
+ "id": 16969,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -678965,7 +679871,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 207,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L207"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L207"
}
],
"type": {
@@ -678980,7 +679886,7 @@
"defaultValue": "orderChange"
},
{
- "id": 34259,
+ "id": 16970,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -678998,7 +679904,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 208,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L208"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L208"
}
],
"type": {
@@ -679021,9 +679927,9 @@
{
"title": "Properties",
"children": [
- 34257,
- 34258,
- 34259
+ 16968,
+ 16969,
+ 16970
]
}
],
@@ -679032,7 +679938,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 205,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L205"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L205"
}
]
}
@@ -679067,7 +679973,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -679078,7 +679984,7 @@
}
},
{
- "id": 34260,
+ "id": 16971,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -679094,7 +680000,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -679115,7 +680021,7 @@
}
},
{
- "id": 42975,
+ "id": 25916,
"name": "setPricingContext",
"variant": "declaration",
"kind": 64,
@@ -679182,14 +680088,14 @@
},
"signatures": [
{
- "id": 42976,
+ "id": 25917,
"name": "setPricingContext",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 42977,
+ "id": 25918,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -679204,7 +680110,7 @@
},
"type": {
"type": "reference",
- "target": 34256,
+ "target": 16967,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -679218,13 +680124,13 @@
{
"title": "Properties",
"children": [
- 34251
+ 16962
]
},
{
"title": "Functions",
"children": [
- 42975
+ 25916
]
}
],
@@ -679241,7 +680147,7 @@
],
"documents": [
{
- "id": 42973,
+ "id": 25914,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -679267,7 +680173,7 @@
"frontmatter": {}
},
{
- "id": 42974,
+ "id": 25915,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -679293,7 +680199,7 @@
"frontmatter": {}
},
{
- "id": 42978,
+ "id": 25919,
"name": "setPricingContext",
"variant": "document",
"kind": 8388608,
@@ -679319,7 +680225,7 @@
"frontmatter": {}
},
{
- "id": 42979,
+ "id": 25920,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -679354,7 +680260,7 @@
"frontmatter": {},
"children": [
{
- "id": 42980,
+ "id": 25921,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -679380,7 +680286,7 @@
"frontmatter": {}
},
{
- "id": 42981,
+ "id": 25922,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -679408,7 +680314,7 @@
]
},
{
- "id": 42982,
+ "id": 25923,
"name": "updateReturnShippingMethodValidationStep",
"variant": "document",
"kind": 8388608,
@@ -679434,7 +680340,7 @@
"frontmatter": {}
},
{
- "id": 42983,
+ "id": 25924,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -679460,7 +680366,7 @@
"frontmatter": {}
},
{
- "id": 42984,
+ "id": 25925,
"name": "updateOrderShippingMethodsStep",
"variant": "document",
"kind": 8388608,
@@ -679487,21 +680393,21 @@
}
],
"childrenIncludingDocuments": [
- 34141,
- 34236,
- 34242,
- 34245,
- 34249
+ 16852,
+ 16947,
+ 16953,
+ 16956,
+ 16960
],
"groups": [
{
"title": "Properties",
"children": [
- 34141,
- 34236,
- 34242,
- 34245,
- 34249
+ 16852,
+ 16947,
+ 16953,
+ 16956,
+ 16960
]
}
],
@@ -679510,12 +680416,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L169"
}
],
"signatures": [
{
- "id": 34134,
+ "id": 16845,
"name": "updateReturnShippingMethodWorkflow",
"variant": "signature",
"kind": 4096,
@@ -679562,12 +680468,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L169"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L169"
}
],
"typeParameters": [
{
- "id": 34135,
+ "id": 16846,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -679578,7 +680484,7 @@
}
},
{
- "id": 34136,
+ "id": 16847,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -679591,7 +680497,7 @@
],
"parameters": [
{
- "id": 34137,
+ "id": 16848,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -679615,14 +680521,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34138,
+ "id": 16849,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34139,
+ "id": 16850,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -679645,7 +680551,7 @@
}
},
{
- "id": 34140,
+ "id": 16851,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -679672,8 +680578,8 @@
{
"title": "Properties",
"children": [
- 34139,
- 34140
+ 16850,
+ 16851
]
}
],
@@ -679780,14 +680686,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -679802,14 +680708,14 @@
]
},
{
- "id": 34256,
+ "id": 16967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34257,
+ "id": 16968,
"name": "order_return",
"variant": "declaration",
"kind": 1024,
@@ -679819,7 +680725,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L206"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L206"
}
],
"type": {
@@ -679834,7 +680740,7 @@
"defaultValue": "orderReturn"
},
{
- "id": 34258,
+ "id": 16969,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -679844,7 +680750,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 207,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L207"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L207"
}
],
"type": {
@@ -679859,7 +680765,7 @@
"defaultValue": "orderChange"
},
{
- "id": 34259,
+ "id": 16970,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -679877,7 +680783,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 208,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L208"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L208"
}
],
"type": {
@@ -679900,9 +680806,9 @@
{
"title": "Properties",
"children": [
- 34257,
- 34258,
- 34259
+ 16968,
+ 16969,
+ 16970
]
}
],
@@ -679911,12 +680817,12 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 205,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L205"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L205"
}
]
},
{
- "id": 34257,
+ "id": 16968,
"name": "order_return",
"variant": "declaration",
"kind": 1024,
@@ -679926,7 +680832,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L206"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L206"
}
],
"type": {
@@ -679941,7 +680847,7 @@
"defaultValue": "orderReturn"
},
{
- "id": 34258,
+ "id": 16969,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -679951,7 +680857,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 207,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L207"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L207"
}
],
"type": {
@@ -679966,7 +680872,7 @@
"defaultValue": "orderChange"
},
{
- "id": 34259,
+ "id": 16970,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -679984,7 +680890,7 @@
"fileName": "core-flows/src/order/workflows/return/update-return-shipping-method.ts",
"line": 208,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L208"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/return/update-return-shipping-method.ts#L208"
}
],
"type": {
@@ -680003,7 +680909,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 34263,
+ "id": 16974,
"name": "order_change_id",
"variant": "declaration",
"kind": 1024,
@@ -680021,7 +680927,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L29"
}
],
"type": {
@@ -680030,7 +680936,7 @@
}
},
{
- "id": 34264,
+ "id": 16975,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -680048,7 +680954,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L33"
}
],
"type": {
@@ -680057,7 +680963,7 @@
}
},
{
- "id": 34265,
+ "id": 16976,
"name": "validateCarryPromotionsFlagStep",
"variant": "declaration",
"kind": 64,
@@ -680101,7 +681007,7 @@
},
"children": [
{
- "id": 34286,
+ "id": 16997,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -680119,7 +681025,7 @@
}
},
{
- "id": 34287,
+ "id": 16998,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -680141,8 +681047,8 @@
{
"title": "Properties",
"children": [
- 34286,
- 34287
+ 16997,
+ 16998
]
}
],
@@ -680151,12 +681057,12 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L65"
}
],
"signatures": [
{
- "id": 34266,
+ "id": 16977,
"name": "validateCarryPromotionsFlagStep",
"variant": "signature",
"kind": 4096,
@@ -680203,12 +681109,12 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L65"
}
],
"parameters": [
{
- "id": 34267,
+ "id": 16978,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -680219,14 +681125,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34268,
+ "id": 16979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34269,
+ "id": 16980,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -680236,7 +681142,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 72,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
}
],
"type": {
@@ -680250,7 +681156,7 @@
}
},
{
- "id": 34270,
+ "id": 16981,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -680260,7 +681166,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680278,14 +681184,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34271,
+ "id": 16982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34272,
+ "id": 16983,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -680297,7 +681203,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680318,7 +681224,7 @@
{
"title": "Properties",
"children": [
- 34272
+ 16983
]
}
],
@@ -680327,7 +681233,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
]
}
@@ -680336,7 +681242,7 @@
}
},
{
- "id": 34273,
+ "id": 16984,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -680346,12 +681252,12 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -680361,9 +681267,9 @@
{
"title": "Properties",
"children": [
- 34269,
- 34270,
- 34273
+ 16980,
+ 16981,
+ 16984
]
}
],
@@ -680372,7 +681278,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 71,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L71"
}
]
}
@@ -680387,14 +681293,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34274,
+ "id": 16985,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34275,
+ "id": 16986,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -680404,7 +681310,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 72,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
}
],
"type": {
@@ -680418,7 +681324,7 @@
}
},
{
- "id": 34276,
+ "id": 16987,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -680428,7 +681334,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680446,14 +681352,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34277,
+ "id": 16988,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34278,
+ "id": 16989,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -680465,7 +681371,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680486,7 +681392,7 @@
{
"title": "Properties",
"children": [
- 34278
+ 16989
]
}
],
@@ -680495,7 +681401,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
]
}
@@ -680504,7 +681410,7 @@
}
},
{
- "id": 34279,
+ "id": 16990,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -680514,12 +681420,12 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -680529,9 +681435,9 @@
{
"title": "Properties",
"children": [
- 34275,
- 34276,
- 34279
+ 16986,
+ 16987,
+ 16990
]
}
],
@@ -680540,7 +681446,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 71,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L71"
}
]
}
@@ -680574,14 +681480,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34280,
+ "id": 16991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34281,
+ "id": 16992,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -680595,7 +681501,7 @@
],
"signatures": [
{
- "id": 34282,
+ "id": 16993,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -680609,7 +681515,7 @@
],
"parameters": [
{
- "id": 34283,
+ "id": 16994,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -680620,14 +681526,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34284,
+ "id": 16995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34285,
+ "id": 16996,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -680651,7 +681557,7 @@
{
"title": "Properties",
"children": [
- 34285
+ 16996
]
}
],
@@ -680728,7 +681634,7 @@
{
"title": "Methods",
"children": [
- 34281
+ 16992
]
}
],
@@ -680762,7 +681668,7 @@
]
},
{
- "id": 34269,
+ "id": 16980,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -680772,7 +681678,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 72,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
}
],
"type": {
@@ -680786,7 +681692,7 @@
}
},
{
- "id": 34272,
+ "id": 16983,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -680798,7 +681704,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680815,7 +681721,7 @@
}
},
{
- "id": 34270,
+ "id": 16981,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -680825,7 +681731,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680843,14 +681749,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34271,
+ "id": 16982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34272,
+ "id": 16983,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -680862,7 +681768,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680883,7 +681789,7 @@
{
"title": "Properties",
"children": [
- 34272
+ 16983
]
}
],
@@ -680892,7 +681798,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
]
}
@@ -680901,7 +681807,7 @@
}
},
{
- "id": 34273,
+ "id": 16984,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -680911,18 +681817,18 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
}
},
{
- "id": 34275,
+ "id": 16986,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -680932,7 +681838,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 72,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L72"
}
],
"type": {
@@ -680946,7 +681852,7 @@
}
},
{
- "id": 34278,
+ "id": 16989,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -680958,7 +681864,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -680975,7 +681881,7 @@
}
},
{
- "id": 34276,
+ "id": 16987,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -680985,7 +681891,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -681003,14 +681909,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34277,
+ "id": 16988,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34278,
+ "id": 16989,
"name": "promotions",
"variant": "declaration",
"kind": 1024,
@@ -681022,7 +681928,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
],
"type": {
@@ -681043,7 +681949,7 @@
{
"title": "Properties",
"children": [
- 34278
+ 16989
]
}
],
@@ -681052,7 +681958,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 73,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L73"
}
]
}
@@ -681061,7 +681967,7 @@
}
},
{
- "id": 34279,
+ "id": 16990,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -681071,18 +681977,18 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
}
},
{
- "id": 34288,
+ "id": 16999,
"name": "onCarryPromotionsFlagSetId",
"variant": "declaration",
"kind": 32,
@@ -681094,7 +682000,7 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L140"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L140"
}
],
"type": {
@@ -681104,7 +682010,7 @@
"defaultValue": "\"on-carry-promotions-flag-set\""
},
{
- "id": 34289,
+ "id": 17000,
"name": "onCarryPromotionsFlagSet",
"variant": "declaration",
"kind": 64,
@@ -681175,7 +682081,7 @@
},
"children": [
{
- "id": 34297,
+ "id": 17008,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -681198,7 +682104,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34298,
+ "id": 17009,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -681212,7 +682118,7 @@
],
"signatures": [
{
- "id": 34299,
+ "id": 17010,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -681240,7 +682146,7 @@
],
"parameters": [
{
- "id": 34300,
+ "id": 17011,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -681256,14 +682162,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34301,
+ "id": 17012,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34302,
+ "id": 17013,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -681288,7 +682194,7 @@
"types": [
{
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -681301,7 +682207,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -681317,7 +682223,7 @@
{
"title": "Properties",
"children": [
- 34302
+ 17013
]
}
],
@@ -681357,14 +682263,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34303,
+ "id": 17014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34304,
+ "id": 17015,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -681378,7 +682284,7 @@
],
"signatures": [
{
- "id": 34305,
+ "id": 17016,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -681392,7 +682298,7 @@
],
"parameters": [
{
- "id": 34306,
+ "id": 17017,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -681403,14 +682309,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34307,
+ "id": 17018,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34308,
+ "id": 17019,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -681434,7 +682340,7 @@
{
"title": "Properties",
"children": [
- 34308
+ 17019
]
}
],
@@ -681511,7 +682417,7 @@
{
"title": "Methods",
"children": [
- 34304
+ 17015
]
}
],
@@ -681547,7 +682453,7 @@
}
},
{
- "id": 34309,
+ "id": 17020,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -681570,7 +682476,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34310,
+ "id": 17021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -681584,7 +682490,7 @@
],
"signatures": [
{
- "id": 34311,
+ "id": 17022,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -681612,7 +682518,7 @@
],
"typeParameters": [
{
- "id": 34312,
+ "id": 17023,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -681623,7 +682529,7 @@
}
},
{
- "id": 34313,
+ "id": 17024,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -681636,7 +682542,7 @@
],
"parameters": [
{
- "id": 34314,
+ "id": 17025,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -681669,7 +682575,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -681680,13 +682586,13 @@
},
"trueType": {
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -681719,7 +682625,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -681734,7 +682640,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -681754,7 +682660,7 @@
}
},
{
- "id": 34315,
+ "id": 17026,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -681777,7 +682683,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34316,
+ "id": 17027,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -681791,7 +682697,7 @@
],
"signatures": [
{
- "id": 34317,
+ "id": 17028,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -681813,7 +682719,7 @@
}
},
{
- "id": 34318,
+ "id": 17029,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -681836,7 +682742,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34319,
+ "id": 17030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -681850,7 +682756,7 @@
],
"signatures": [
{
- "id": 34320,
+ "id": 17031,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -681864,7 +682770,7 @@
],
"parameters": [
{
- "id": 34321,
+ "id": 17032,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -681890,7 +682796,7 @@
}
},
{
- "id": 34322,
+ "id": 17033,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -681913,7 +682819,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34323,
+ "id": 17034,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -681924,7 +682830,7 @@
],
"documents": [
{
- "id": 42985,
+ "id": 25926,
"name": "validateCarryPromotionsFlagStep",
"variant": "document",
"kind": 8388608,
@@ -681950,7 +682856,7 @@
"frontmatter": {}
},
{
- "id": 42986,
+ "id": 25927,
"name": "computeAdjustmentsForPreviewWorkflow",
"variant": "document",
"kind": 8388608,
@@ -681977,21 +682883,21 @@
}
],
"childrenIncludingDocuments": [
- 34297,
- 34309,
- 34315,
- 34318,
- 34322
+ 17008,
+ 17020,
+ 17026,
+ 17029,
+ 17033
],
"groups": [
{
"title": "Properties",
"children": [
- 34297,
- 34309,
- 34315,
- 34318,
- 34322
+ 17008,
+ 17020,
+ 17026,
+ 17029,
+ 17033
]
}
],
@@ -682000,12 +682906,12 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 168,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L168"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L168"
}
],
"signatures": [
{
- "id": 34290,
+ "id": 17001,
"name": "onCarryPromotionsFlagSet",
"variant": "signature",
"kind": 4096,
@@ -682079,12 +682985,12 @@
"fileName": "core-flows/src/order/workflows/on-carry-promotions-flag-set.ts",
"line": 168,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L168"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/on-carry-promotions-flag-set.ts#L168"
}
],
"typeParameters": [
{
- "id": 34291,
+ "id": 17002,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -682095,7 +683001,7 @@
}
},
{
- "id": 34292,
+ "id": 17003,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -682108,7 +683014,7 @@
],
"parameters": [
{
- "id": 34293,
+ "id": 17004,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -682132,14 +683038,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34294,
+ "id": 17005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34295,
+ "id": 17006,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -682162,7 +683068,7 @@
}
},
{
- "id": 34296,
+ "id": 17007,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -682189,8 +683095,8 @@
{
"title": "Properties",
"children": [
- 34295,
- 34296
+ 17006,
+ 17007
]
}
],
@@ -682265,7 +683171,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34261,
+ "target": 16972,
"name": "OnCarryPromotionsFlagSetWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -682275,14 +683181,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -682297,7 +683203,7 @@
]
},
{
- "id": 34326,
+ "id": 17037,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -682315,7 +683221,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L32"
}
],
"type": {
@@ -682324,7 +683230,7 @@
}
},
{
- "id": 34327,
+ "id": 17038,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -682342,7 +683248,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L36"
}
],
"type": {
@@ -682356,7 +683262,7 @@
}
},
{
- "id": 34328,
+ "id": 17039,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -682374,7 +683280,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L40"
}
],
"type": {
@@ -682388,7 +683294,7 @@
}
},
{
- "id": 34329,
+ "id": 17040,
"name": "acceptOrderTransferValidationStep",
"variant": "declaration",
"kind": 64,
@@ -682423,7 +683329,7 @@
},
"children": [
{
- "id": 34346,
+ "id": 17057,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -682441,7 +683347,7 @@
}
},
{
- "id": 34347,
+ "id": 17058,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -682463,8 +683369,8 @@
{
"title": "Properties",
"children": [
- 34346,
- 34347
+ 17057,
+ 17058
]
}
],
@@ -682473,12 +683379,12 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L67"
}
],
"signatures": [
{
- "id": 34330,
+ "id": 17041,
"name": "acceptOrderTransferValidationStep",
"variant": "signature",
"kind": 4096,
@@ -682516,12 +683422,12 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 67,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L67"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L67"
}
],
"parameters": [
{
- "id": 34331,
+ "id": 17042,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -682532,14 +683438,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34332,
+ "id": 17043,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34333,
+ "id": 17044,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -682549,7 +683455,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
}
],
"type": {
@@ -682558,7 +683464,7 @@
}
},
{
- "id": 34334,
+ "id": 17045,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -682568,7 +683474,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 75,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
}
],
"type": {
@@ -682582,7 +683488,7 @@
}
},
{
- "id": 34335,
+ "id": 17046,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -682592,7 +683498,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
}
],
"type": {
@@ -682610,9 +683516,9 @@
{
"title": "Properties",
"children": [
- 34333,
- 34334,
- 34335
+ 17044,
+ 17045,
+ 17046
]
}
],
@@ -682621,7 +683527,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 73,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L73"
}
]
}
@@ -682636,14 +683542,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34336,
+ "id": 17047,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34337,
+ "id": 17048,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -682653,7 +683559,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
}
],
"type": {
@@ -682662,7 +683568,7 @@
}
},
{
- "id": 34338,
+ "id": 17049,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -682672,7 +683578,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 75,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
}
],
"type": {
@@ -682686,7 +683592,7 @@
}
},
{
- "id": 34339,
+ "id": 17050,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -682696,7 +683602,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
}
],
"type": {
@@ -682714,9 +683620,9 @@
{
"title": "Properties",
"children": [
- 34337,
- 34338,
- 34339
+ 17048,
+ 17049,
+ 17050
]
}
],
@@ -682725,7 +683631,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 73,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L73"
}
]
}
@@ -682759,14 +683665,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34340,
+ "id": 17051,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34341,
+ "id": 17052,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -682780,7 +683686,7 @@
],
"signatures": [
{
- "id": 34342,
+ "id": 17053,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -682794,7 +683700,7 @@
],
"parameters": [
{
- "id": 34343,
+ "id": 17054,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -682805,14 +683711,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34344,
+ "id": 17055,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34345,
+ "id": 17056,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -682836,7 +683742,7 @@
{
"title": "Properties",
"children": [
- 34345
+ 17056
]
}
],
@@ -682913,7 +683819,7 @@
{
"title": "Methods",
"children": [
- 34341
+ 17052
]
}
],
@@ -682947,7 +683853,7 @@
]
},
{
- "id": 34333,
+ "id": 17044,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -682957,7 +683863,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
}
],
"type": {
@@ -682966,7 +683872,7 @@
}
},
{
- "id": 34334,
+ "id": 17045,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -682976,7 +683882,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 75,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
}
],
"type": {
@@ -682990,7 +683896,7 @@
}
},
{
- "id": 34335,
+ "id": 17046,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -683000,7 +683906,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
}
],
"type": {
@@ -683014,7 +683920,7 @@
}
},
{
- "id": 34337,
+ "id": 17048,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -683024,7 +683930,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 74,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L74"
}
],
"type": {
@@ -683033,7 +683939,7 @@
}
},
{
- "id": 34338,
+ "id": 17049,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -683043,7 +683949,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 75,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L75"
}
],
"type": {
@@ -683057,7 +683963,7 @@
}
},
{
- "id": 34339,
+ "id": 17050,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -683067,7 +683973,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 76,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L76"
}
],
"type": {
@@ -683081,7 +683987,7 @@
}
},
{
- "id": 34348,
+ "id": 17059,
"name": "acceptOrderTransferWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -683093,7 +683999,7 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 96,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L96"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L96"
}
],
"type": {
@@ -683103,7 +684009,7 @@
"defaultValue": "\"accept-order-transfer-workflow\""
},
{
- "id": 34349,
+ "id": 17060,
"name": "acceptOrderTransferWorkflow",
"variant": "declaration",
"kind": 64,
@@ -683156,7 +684062,7 @@
},
"children": [
{
- "id": 34357,
+ "id": 17068,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -683179,7 +684085,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34358,
+ "id": 17069,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -683193,7 +684099,7 @@
],
"signatures": [
{
- "id": 34359,
+ "id": 17070,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -683221,7 +684127,7 @@
],
"parameters": [
{
- "id": 34360,
+ "id": 17071,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -683237,14 +684143,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34361,
+ "id": 17072,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34362,
+ "id": 17073,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -683304,7 +684210,7 @@
{
"title": "Properties",
"children": [
- 34362
+ 17073
]
}
],
@@ -683325,14 +684231,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34363,
+ "id": 17074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34376,
+ "id": 17087,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -683378,7 +684284,7 @@
}
},
{
- "id": 34436,
+ "id": 17147,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -683424,7 +684330,7 @@
}
},
{
- "id": 34437,
+ "id": 17148,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -683470,7 +684376,7 @@
}
},
{
- "id": 34438,
+ "id": 17149,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -683527,7 +684433,7 @@
}
},
{
- "id": 34439,
+ "id": 17150,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -683583,7 +684489,7 @@
}
},
{
- "id": 34404,
+ "id": 17115,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -683640,7 +684546,7 @@
}
},
{
- "id": 34405,
+ "id": 17116,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -683697,7 +684603,7 @@
}
},
{
- "id": 34406,
+ "id": 17117,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -683754,7 +684660,7 @@
}
},
{
- "id": 34381,
+ "id": 17092,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -683811,7 +684717,7 @@
}
},
{
- "id": 34407,
+ "id": 17118,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -683857,7 +684763,7 @@
}
},
{
- "id": 34408,
+ "id": 17119,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -683927,7 +684833,7 @@
}
},
{
- "id": 34409,
+ "id": 17120,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -683997,7 +684903,7 @@
}
},
{
- "id": 34440,
+ "id": 17151,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -684073,7 +684979,7 @@
}
},
{
- "id": 34410,
+ "id": 17121,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -684149,7 +685055,7 @@
}
},
{
- "id": 34441,
+ "id": 17152,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -684219,7 +685125,7 @@
}
},
{
- "id": 34442,
+ "id": 17153,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -684276,7 +685182,7 @@
}
},
{
- "id": 34380,
+ "id": 17091,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -684371,7 +685277,7 @@
}
},
{
- "id": 34435,
+ "id": 17146,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -684446,7 +685352,7 @@
}
},
{
- "id": 34377,
+ "id": 17088,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -684515,7 +685421,7 @@
}
},
{
- "id": 34378,
+ "id": 17089,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -684584,7 +685490,7 @@
}
},
{
- "id": 34379,
+ "id": 17090,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -684659,7 +685565,7 @@
}
},
{
- "id": 34411,
+ "id": 17122,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -684715,7 +685621,7 @@
}
},
{
- "id": 34412,
+ "id": 17123,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -684771,7 +685677,7 @@
}
},
{
- "id": 34413,
+ "id": 17124,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -684827,7 +685733,7 @@
}
},
{
- "id": 34385,
+ "id": 17096,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -684883,7 +685789,7 @@
}
},
{
- "id": 34386,
+ "id": 17097,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -684939,7 +685845,7 @@
}
},
{
- "id": 34387,
+ "id": 17098,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -684995,7 +685901,7 @@
}
},
{
- "id": 34443,
+ "id": 17154,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -685051,7 +685957,7 @@
}
},
{
- "id": 34382,
+ "id": 17093,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -685107,7 +686013,7 @@
}
},
{
- "id": 34383,
+ "id": 17094,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -685163,7 +686069,7 @@
}
},
{
- "id": 34384,
+ "id": 17095,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -685219,7 +686125,7 @@
}
},
{
- "id": 34388,
+ "id": 17099,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -685275,7 +686181,7 @@
}
},
{
- "id": 34389,
+ "id": 17100,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -685331,7 +686237,7 @@
}
},
{
- "id": 34390,
+ "id": 17101,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -685387,7 +686293,7 @@
}
},
{
- "id": 34444,
+ "id": 17155,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -685443,7 +686349,7 @@
}
},
{
- "id": 34391,
+ "id": 17102,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -685499,7 +686405,7 @@
}
},
{
- "id": 34392,
+ "id": 17103,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -685555,7 +686461,7 @@
}
},
{
- "id": 34434,
+ "id": 17145,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -685611,7 +686517,7 @@
}
},
{
- "id": 34414,
+ "id": 17125,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -685667,7 +686573,7 @@
}
},
{
- "id": 34415,
+ "id": 17126,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -685723,7 +686629,7 @@
}
},
{
- "id": 34416,
+ "id": 17127,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -685779,7 +686685,7 @@
}
},
{
- "id": 34417,
+ "id": 17128,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -685835,7 +686741,7 @@
}
},
{
- "id": 34418,
+ "id": 17129,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -685891,7 +686797,7 @@
}
},
{
- "id": 34445,
+ "id": 17156,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -685947,7 +686853,7 @@
}
},
{
- "id": 34419,
+ "id": 17130,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -686003,7 +686909,7 @@
}
},
{
- "id": 34420,
+ "id": 17131,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -686059,7 +686965,7 @@
}
},
{
- "id": 34421,
+ "id": 17132,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -686115,7 +687021,7 @@
}
},
{
- "id": 34364,
+ "id": 17075,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -686171,7 +687077,7 @@
}
},
{
- "id": 34365,
+ "id": 17076,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -686211,14 +687117,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34366,
+ "id": 17077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34367,
+ "id": 17078,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -686250,7 +687156,7 @@
{
"title": "Properties",
"children": [
- 34367
+ 17078
]
}
],
@@ -686290,14 +687196,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34368,
+ "id": 17079,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34369,
+ "id": 17080,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -686329,7 +687235,7 @@
{
"title": "Properties",
"children": [
- 34369
+ 17080
]
}
],
@@ -686353,7 +687259,7 @@
}
},
{
- "id": 34370,
+ "id": 17081,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -686393,14 +687299,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34371,
+ "id": 17082,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34372,
+ "id": 17083,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -686432,7 +687338,7 @@
{
"title": "Properties",
"children": [
- 34372
+ 17083
]
}
],
@@ -686472,14 +687378,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34373,
+ "id": 17084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34374,
+ "id": 17085,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -686511,7 +687417,7 @@
{
"title": "Properties",
"children": [
- 34374
+ 17085
]
}
],
@@ -686535,7 +687441,7 @@
}
},
{
- "id": 34375,
+ "id": 17086,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -686585,57 +687491,57 @@
{
"title": "Properties",
"children": [
- 34376,
- 34436,
- 34437,
- 34438,
- 34439,
- 34404,
- 34405,
- 34406,
- 34381,
- 34407,
- 34408,
- 34409,
- 34440,
- 34410,
- 34441,
- 34442,
- 34380,
- 34435,
- 34377,
- 34378,
- 34379,
- 34411,
- 34412,
- 34413,
- 34385,
- 34386,
- 34387,
- 34443,
- 34382,
- 34383,
- 34384,
- 34388,
- 34389,
- 34390,
- 34444,
- 34391,
- 34392,
- 34434,
- 34414,
- 34415,
- 34416,
- 34417,
- 34418,
- 34445,
- 34419,
- 34420,
- 34421,
- 34364,
- 34365,
- 34370,
- 34375
+ 17087,
+ 17147,
+ 17148,
+ 17149,
+ 17150,
+ 17115,
+ 17116,
+ 17117,
+ 17092,
+ 17118,
+ 17119,
+ 17120,
+ 17151,
+ 17121,
+ 17152,
+ 17153,
+ 17091,
+ 17146,
+ 17088,
+ 17089,
+ 17090,
+ 17122,
+ 17123,
+ 17124,
+ 17096,
+ 17097,
+ 17098,
+ 17154,
+ 17093,
+ 17094,
+ 17095,
+ 17099,
+ 17100,
+ 17101,
+ 17155,
+ 17102,
+ 17103,
+ 17145,
+ 17125,
+ 17126,
+ 17127,
+ 17128,
+ 17129,
+ 17156,
+ 17130,
+ 17131,
+ 17132,
+ 17075,
+ 17076,
+ 17081,
+ 17086
]
}
],
@@ -686680,14 +687586,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34446,
+ "id": 17157,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34447,
+ "id": 17158,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -686701,7 +687607,7 @@
],
"signatures": [
{
- "id": 34448,
+ "id": 17159,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -686715,7 +687621,7 @@
],
"parameters": [
{
- "id": 34449,
+ "id": 17160,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -686726,14 +687632,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34450,
+ "id": 17161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34451,
+ "id": 17162,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -686757,7 +687663,7 @@
{
"title": "Properties",
"children": [
- 34451
+ 17162
]
}
],
@@ -686839,7 +687745,7 @@
{
"title": "Methods",
"children": [
- 34447
+ 17158
]
}
],
@@ -686880,7 +687786,7 @@
}
},
{
- "id": 34452,
+ "id": 17163,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -686903,7 +687809,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34453,
+ "id": 17164,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -686917,7 +687823,7 @@
],
"signatures": [
{
- "id": 34454,
+ "id": 17165,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -686945,7 +687851,7 @@
],
"typeParameters": [
{
- "id": 34455,
+ "id": 17166,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -686956,7 +687862,7 @@
}
},
{
- "id": 34456,
+ "id": 17167,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -686969,7 +687875,7 @@
],
"parameters": [
{
- "id": 34457,
+ "id": 17168,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -687002,7 +687908,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -687022,7 +687928,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -687055,7 +687961,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -687075,7 +687981,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -687095,7 +688001,7 @@
}
},
{
- "id": 34458,
+ "id": 17169,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -687118,7 +688024,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34459,
+ "id": 17170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -687132,7 +688038,7 @@
],
"signatures": [
{
- "id": 34460,
+ "id": 17171,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -687154,7 +688060,7 @@
}
},
{
- "id": 34461,
+ "id": 17172,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -687177,7 +688083,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34462,
+ "id": 17173,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -687191,7 +688097,7 @@
],
"signatures": [
{
- "id": 34463,
+ "id": 17174,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -687205,7 +688111,7 @@
],
"parameters": [
{
- "id": 34464,
+ "id": 17175,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -687231,7 +688137,7 @@
}
},
{
- "id": 34465,
+ "id": 17176,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -687254,7 +688160,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34466,
+ "id": 17177,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -687265,7 +688171,7 @@
],
"documents": [
{
- "id": 42987,
+ "id": 25928,
"name": "acceptOrderTransferValidationStep",
"variant": "document",
"kind": 8388608,
@@ -687291,7 +688197,7 @@
"frontmatter": {}
},
{
- "id": 42988,
+ "id": 25929,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -687318,21 +688224,21 @@
}
],
"childrenIncludingDocuments": [
- 34357,
- 34452,
- 34458,
- 34461,
- 34465
+ 17068,
+ 17163,
+ 17169,
+ 17172,
+ 17176
],
"groups": [
{
"title": "Properties",
"children": [
- 34357,
- 34452,
- 34458,
- 34461,
- 34465
+ 17068,
+ 17163,
+ 17169,
+ 17172,
+ 17176
]
}
],
@@ -687341,12 +688247,12 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 117,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L117"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L117"
}
],
"signatures": [
{
- "id": 34350,
+ "id": 17061,
"name": "acceptOrderTransferWorkflow",
"variant": "signature",
"kind": 4096,
@@ -687402,12 +688308,12 @@
"fileName": "core-flows/src/order/workflows/transfer/accept-order-transfer.ts",
"line": 117,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L117"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/accept-order-transfer.ts#L117"
}
],
"typeParameters": [
{
- "id": 34351,
+ "id": 17062,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -687418,7 +688324,7 @@
}
},
{
- "id": 34352,
+ "id": 17063,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -687431,7 +688337,7 @@
],
"parameters": [
{
- "id": 34353,
+ "id": 17064,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -687455,14 +688361,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34354,
+ "id": 17065,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34355,
+ "id": 17066,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -687485,7 +688391,7 @@
}
},
{
- "id": 34356,
+ "id": 17067,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -687512,8 +688418,8 @@
{
"title": "Properties",
"children": [
- 34355,
- 34356
+ 17066,
+ 17067
]
}
],
@@ -687606,14 +688512,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -687628,7 +688534,7 @@
]
},
{
- "id": 34469,
+ "id": 17180,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -687646,7 +688552,7 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L31"
}
],
"type": {
@@ -687660,7 +688566,7 @@
}
},
{
- "id": 34470,
+ "id": 17181,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -687678,7 +688584,7 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L35"
}
],
"type": {
@@ -687692,7 +688598,7 @@
}
},
{
- "id": 34471,
+ "id": 17182,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -687710,7 +688616,7 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L39"
}
],
"type": {
@@ -687725,7 +688631,7 @@
}
},
{
- "id": 34472,
+ "id": 17183,
"name": "cancelTransferOrderRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -687760,7 +688666,7 @@
},
"children": [
{
- "id": 34481,
+ "id": 17192,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -687778,7 +688684,7 @@
}
},
{
- "id": 34482,
+ "id": 17193,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -687800,8 +688706,8 @@
{
"title": "Properties",
"children": [
- 34481,
- 34482
+ 17192,
+ 17193
]
}
],
@@ -687810,12 +688716,12 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L71"
}
],
"signatures": [
{
- "id": 34473,
+ "id": 17184,
"name": "cancelTransferOrderRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -687853,12 +688759,12 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L71"
}
],
"parameters": [
{
- "id": 34474,
+ "id": 17185,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -687868,7 +688774,7 @@
"types": [
{
"type": "reference",
- "target": 34467,
+ "target": 17178,
"name": "CancelTransferOrderRequestValidationStep",
"package": "@medusajs/core-flows"
},
@@ -687881,7 +688787,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34467,
+ "target": 17178,
"name": "CancelTransferOrderRequestValidationStep",
"package": "@medusajs/core-flows"
}
@@ -687914,14 +688820,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34475,
+ "id": 17186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34476,
+ "id": 17187,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -687935,7 +688841,7 @@
],
"signatures": [
{
- "id": 34477,
+ "id": 17188,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -687949,7 +688855,7 @@
],
"parameters": [
{
- "id": 34478,
+ "id": 17189,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -687960,14 +688866,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34479,
+ "id": 17190,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34480,
+ "id": 17191,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -687991,7 +688897,7 @@
{
"title": "Properties",
"children": [
- 34480
+ 17191
]
}
],
@@ -688068,7 +688974,7 @@
{
"title": "Methods",
"children": [
- 34476
+ 17187
]
}
],
@@ -688102,7 +689008,7 @@
]
},
{
- "id": 34483,
+ "id": 17194,
"name": "cancelTransferOrderRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -688114,7 +689020,7 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 98,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L98"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L98"
}
],
"type": {
@@ -688124,7 +689030,7 @@
"defaultValue": "\"cancel-transfer-order-request\""
},
{
- "id": 34484,
+ "id": 17195,
"name": "cancelOrderTransferRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -688168,7 +689074,7 @@
},
"children": [
{
- "id": 34492,
+ "id": 17203,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -688191,7 +689097,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34493,
+ "id": 17204,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -688205,7 +689111,7 @@
],
"signatures": [
{
- "id": 34494,
+ "id": 17205,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -688233,7 +689139,7 @@
],
"parameters": [
{
- "id": 34495,
+ "id": 17206,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -688249,14 +689155,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34496,
+ "id": 17207,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34497,
+ "id": 17208,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -688316,7 +689222,7 @@
{
"title": "Properties",
"children": [
- 34497
+ 17208
]
}
],
@@ -688352,14 +689258,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34498,
+ "id": 17209,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34499,
+ "id": 17210,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -688373,7 +689279,7 @@
],
"signatures": [
{
- "id": 34500,
+ "id": 17211,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -688387,7 +689293,7 @@
],
"parameters": [
{
- "id": 34501,
+ "id": 17212,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -688398,14 +689304,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34502,
+ "id": 17213,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34503,
+ "id": 17214,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -688429,7 +689335,7 @@
{
"title": "Properties",
"children": [
- 34503
+ 17214
]
}
],
@@ -688506,7 +689412,7 @@
{
"title": "Methods",
"children": [
- 34499
+ 17210
]
}
],
@@ -688542,7 +689448,7 @@
}
},
{
- "id": 34504,
+ "id": 17215,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -688565,7 +689471,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34505,
+ "id": 17216,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -688579,7 +689485,7 @@
],
"signatures": [
{
- "id": 34506,
+ "id": 17217,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -688607,7 +689513,7 @@
],
"typeParameters": [
{
- "id": 34507,
+ "id": 17218,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -688618,7 +689524,7 @@
}
},
{
- "id": 34508,
+ "id": 17219,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -688631,7 +689537,7 @@
],
"parameters": [
{
- "id": 34509,
+ "id": 17220,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -688664,7 +689570,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -688684,7 +689590,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -688717,7 +689623,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -688732,7 +689638,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -688752,7 +689658,7 @@
}
},
{
- "id": 34510,
+ "id": 17221,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -688775,7 +689681,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34511,
+ "id": 17222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -688789,7 +689695,7 @@
],
"signatures": [
{
- "id": 34512,
+ "id": 17223,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -688811,7 +689717,7 @@
}
},
{
- "id": 34513,
+ "id": 17224,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -688834,7 +689740,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34514,
+ "id": 17225,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -688848,7 +689754,7 @@
],
"signatures": [
{
- "id": 34515,
+ "id": 17226,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -688862,7 +689768,7 @@
],
"parameters": [
{
- "id": 34516,
+ "id": 17227,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -688888,7 +689794,7 @@
}
},
{
- "id": 34517,
+ "id": 17228,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -688911,7 +689817,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34518,
+ "id": 17229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -688922,7 +689828,7 @@
],
"documents": [
{
- "id": 42989,
+ "id": 25930,
"name": "cancelTransferOrderRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -688948,7 +689854,7 @@
"frontmatter": {}
},
{
- "id": 42990,
+ "id": 25931,
"name": "deleteOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -688975,21 +689881,21 @@
}
],
"childrenIncludingDocuments": [
- 34492,
- 34504,
- 34510,
- 34513,
- 34517
+ 17203,
+ 17215,
+ 17221,
+ 17224,
+ 17228
],
"groups": [
{
"title": "Properties",
"children": [
- 34492,
- 34504,
- 34510,
- 34513,
- 34517
+ 17203,
+ 17215,
+ 17221,
+ 17224,
+ 17228
]
}
],
@@ -688998,12 +689904,12 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 122,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L122"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L122"
}
],
"signatures": [
{
- "id": 34485,
+ "id": 17196,
"name": "cancelOrderTransferRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -689050,12 +689956,12 @@
"fileName": "core-flows/src/order/workflows/transfer/cancel-order-transfer.ts",
"line": 122,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L122"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/cancel-order-transfer.ts#L122"
}
],
"typeParameters": [
{
- "id": 34486,
+ "id": 17197,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -689066,7 +689972,7 @@
}
},
{
- "id": 34487,
+ "id": 17198,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -689079,7 +689985,7 @@
],
"parameters": [
{
- "id": 34488,
+ "id": 17199,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -689103,14 +690009,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34489,
+ "id": 17200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34490,
+ "id": 17201,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -689133,7 +690039,7 @@
}
},
{
- "id": 34491,
+ "id": 17202,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -689160,8 +690066,8 @@
{
"title": "Properties",
"children": [
- 34490,
- 34491
+ 17201,
+ 17202
]
}
],
@@ -689249,14 +690155,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -689271,7 +690177,7 @@
]
},
{
- "id": 34521,
+ "id": 17232,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -689289,7 +690195,7 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L32"
}
],
"type": {
@@ -689303,7 +690209,7 @@
}
},
{
- "id": 34522,
+ "id": 17233,
"name": "orderChange",
"variant": "declaration",
"kind": 1024,
@@ -689321,7 +690227,7 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L36"
}
],
"type": {
@@ -689335,7 +690241,7 @@
}
},
{
- "id": 34523,
+ "id": 17234,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -689353,7 +690259,7 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L40"
}
],
"type": {
@@ -689368,7 +690274,7 @@
}
},
{
- "id": 34524,
+ "id": 17235,
"name": "declineTransferOrderRequestValidationStep",
"variant": "declaration",
"kind": 64,
@@ -689403,7 +690309,7 @@
},
"children": [
{
- "id": 34533,
+ "id": 17244,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -689421,7 +690327,7 @@
}
},
{
- "id": 34534,
+ "id": 17245,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -689443,8 +690349,8 @@
{
"title": "Properties",
"children": [
- 34533,
- 34534
+ 17244,
+ 17245
]
}
],
@@ -689453,12 +690359,12 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L71"
}
],
"signatures": [
{
- "id": 34525,
+ "id": 17236,
"name": "declineTransferOrderRequestValidationStep",
"variant": "signature",
"kind": 4096,
@@ -689496,12 +690402,12 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L71"
}
],
"parameters": [
{
- "id": 34526,
+ "id": 17237,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -689511,7 +690417,7 @@
"types": [
{
"type": "reference",
- "target": 34519,
+ "target": 17230,
"name": "DeclineTransferOrderRequestValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -689524,7 +690430,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34519,
+ "target": 17230,
"name": "DeclineTransferOrderRequestValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -689557,14 +690463,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34527,
+ "id": 17238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34528,
+ "id": 17239,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -689578,7 +690484,7 @@
],
"signatures": [
{
- "id": 34529,
+ "id": 17240,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -689592,7 +690498,7 @@
],
"parameters": [
{
- "id": 34530,
+ "id": 17241,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -689603,14 +690509,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34531,
+ "id": 17242,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34532,
+ "id": 17243,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -689634,7 +690540,7 @@
{
"title": "Properties",
"children": [
- 34532
+ 17243
]
}
],
@@ -689711,7 +690617,7 @@
{
"title": "Methods",
"children": [
- 34528
+ 17239
]
}
],
@@ -689745,7 +690651,7 @@
]
},
{
- "id": 34535,
+ "id": 17246,
"name": "declineTransferOrderRequestWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -689757,7 +690663,7 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 91,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L91"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L91"
}
],
"type": {
@@ -689767,7 +690673,7 @@
"defaultValue": "\"decline-transfer-order-request\""
},
{
- "id": 34536,
+ "id": 17247,
"name": "declineOrderTransferRequestWorkflow",
"variant": "declaration",
"kind": 64,
@@ -689811,7 +690717,7 @@
},
"children": [
{
- "id": 34544,
+ "id": 17255,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -689834,7 +690740,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34545,
+ "id": 17256,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -689848,7 +690754,7 @@
],
"signatures": [
{
- "id": 34546,
+ "id": 17257,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -689876,7 +690782,7 @@
],
"parameters": [
{
- "id": 34547,
+ "id": 17258,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -689892,14 +690798,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34548,
+ "id": 17259,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34549,
+ "id": 17260,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -689959,7 +690865,7 @@
{
"title": "Properties",
"children": [
- 34549
+ 17260
]
}
],
@@ -689995,14 +690901,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34550,
+ "id": 17261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34551,
+ "id": 17262,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -690016,7 +690922,7 @@
],
"signatures": [
{
- "id": 34552,
+ "id": 17263,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -690030,7 +690936,7 @@
],
"parameters": [
{
- "id": 34553,
+ "id": 17264,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -690041,14 +690947,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34554,
+ "id": 17265,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34555,
+ "id": 17266,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -690072,7 +690978,7 @@
{
"title": "Properties",
"children": [
- 34555
+ 17266
]
}
],
@@ -690149,7 +691055,7 @@
{
"title": "Methods",
"children": [
- 34551
+ 17262
]
}
],
@@ -690185,7 +691091,7 @@
}
},
{
- "id": 34556,
+ "id": 17267,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -690208,7 +691114,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34557,
+ "id": 17268,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -690222,7 +691128,7 @@
],
"signatures": [
{
- "id": 34558,
+ "id": 17269,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -690250,7 +691156,7 @@
],
"typeParameters": [
{
- "id": 34559,
+ "id": 17270,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -690261,7 +691167,7 @@
}
},
{
- "id": 34560,
+ "id": 17271,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -690274,7 +691180,7 @@
],
"parameters": [
{
- "id": 34561,
+ "id": 17272,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -690307,7 +691213,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -690327,7 +691233,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -690360,7 +691266,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -690375,7 +691281,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -690395,7 +691301,7 @@
}
},
{
- "id": 34562,
+ "id": 17273,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -690418,7 +691324,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34563,
+ "id": 17274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -690432,7 +691338,7 @@
],
"signatures": [
{
- "id": 34564,
+ "id": 17275,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -690454,7 +691360,7 @@
}
},
{
- "id": 34565,
+ "id": 17276,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -690477,7 +691383,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34566,
+ "id": 17277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -690491,7 +691397,7 @@
],
"signatures": [
{
- "id": 34567,
+ "id": 17278,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -690505,7 +691411,7 @@
],
"parameters": [
{
- "id": 34568,
+ "id": 17279,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -690531,7 +691437,7 @@
}
},
{
- "id": 34569,
+ "id": 17280,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -690554,7 +691460,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34570,
+ "id": 17281,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -690565,7 +691471,7 @@
],
"documents": [
{
- "id": 42991,
+ "id": 25932,
"name": "declineTransferOrderRequestValidationStep",
"variant": "document",
"kind": 8388608,
@@ -690591,7 +691497,7 @@
"frontmatter": {}
},
{
- "id": 42992,
+ "id": 25933,
"name": "declineOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -690618,21 +691524,21 @@
}
],
"childrenIncludingDocuments": [
- 34544,
- 34556,
- 34562,
- 34565,
- 34569
+ 17255,
+ 17267,
+ 17273,
+ 17276,
+ 17280
],
"groups": [
{
"title": "Properties",
"children": [
- 34544,
- 34556,
- 34562,
- 34565,
- 34569
+ 17255,
+ 17267,
+ 17273,
+ 17276,
+ 17280
]
}
],
@@ -690641,12 +691547,12 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L112"
}
],
"signatures": [
{
- "id": 34537,
+ "id": 17248,
"name": "declineOrderTransferRequestWorkflow",
"variant": "signature",
"kind": 4096,
@@ -690693,12 +691599,12 @@
"fileName": "core-flows/src/order/workflows/transfer/decline-order-transfer.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L112"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/decline-order-transfer.ts#L112"
}
],
"typeParameters": [
{
- "id": 34538,
+ "id": 17249,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -690709,7 +691615,7 @@
}
},
{
- "id": 34539,
+ "id": 17250,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -690722,7 +691628,7 @@
],
"parameters": [
{
- "id": 34540,
+ "id": 17251,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -690746,14 +691652,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34541,
+ "id": 17252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34542,
+ "id": 17253,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -690776,7 +691682,7 @@
}
},
{
- "id": 34543,
+ "id": 17254,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -690803,8 +691709,8 @@
{
"title": "Properties",
"children": [
- 34542,
- 34543
+ 17253,
+ 17254
]
}
],
@@ -690892,14 +691798,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -690914,7 +691820,7 @@
]
},
{
- "id": 34573,
+ "id": 17284,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -690932,7 +691838,7 @@
"fileName": "core-flows/src/order/workflows/transfer/request-order-transfer.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L31"
}
],
"type": {
@@ -690946,7 +691852,7 @@
}
},
{
- "id": 34574,
+ "id": 17285,
"name": "customer",
"variant": "declaration",
"kind": 1024,
@@ -690964,7 +691870,7 @@
"fileName": "core-flows/src/order/workflows/transfer/request-order-transfer.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L35"
}
],
"type": {
@@ -690978,7 +691884,7 @@
}
},
{
- "id": 34575,
+ "id": 17286,
"name": "requestOrderTransferValidationStep",
"variant": "declaration",
"kind": 64,
@@ -691013,7 +691919,7 @@
},
"children": [
{
- "id": 34584,
+ "id": 17295,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -691031,7 +691937,7 @@
}
},
{
- "id": 34585,
+ "id": 17296,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -691053,8 +691959,8 @@
{
"title": "Properties",
"children": [
- 34584,
- 34585
+ 17295,
+ 17296
]
}
],
@@ -691063,12 +691969,12 @@
"fileName": "core-flows/src/order/workflows/transfer/request-order-transfer.ts",
"line": 62,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L62"
}
],
"signatures": [
{
- "id": 34576,
+ "id": 17287,
"name": "requestOrderTransferValidationStep",
"variant": "signature",
"kind": 4096,
@@ -691106,12 +692012,12 @@
"fileName": "core-flows/src/order/workflows/transfer/request-order-transfer.ts",
"line": 62,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L62"
}
],
"parameters": [
{
- "id": 34577,
+ "id": 17288,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -691121,7 +692027,7 @@
"types": [
{
"type": "reference",
- "target": 34571,
+ "target": 17282,
"name": "RequestOrderTransferValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -691134,7 +692040,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34571,
+ "target": 17282,
"name": "RequestOrderTransferValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -691167,14 +692073,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34578,
+ "id": 17289,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34579,
+ "id": 17290,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -691188,7 +692094,7 @@
],
"signatures": [
{
- "id": 34580,
+ "id": 17291,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -691202,7 +692108,7 @@
],
"parameters": [
{
- "id": 34581,
+ "id": 17292,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -691213,14 +692119,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34582,
+ "id": 17293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34583,
+ "id": 17294,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -691244,7 +692150,7 @@
{
"title": "Properties",
"children": [
- 34583
+ 17294
]
}
],
@@ -691321,7 +692227,7 @@
{
"title": "Methods",
"children": [
- 34579
+ 17290
]
}
],
@@ -691355,7 +692261,7 @@
]
},
{
- "id": 34586,
+ "id": 17297,
"name": "requestOrderTransferWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -691367,7 +692273,7 @@
"fileName": "core-flows/src/order/workflows/transfer/request-order-transfer.ts",
"line": 86,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L86"
}
],
"type": {
@@ -691377,7 +692283,7 @@
"defaultValue": "\"request-order-transfer-workflow\""
},
{
- "id": 34587,
+ "id": 17298,
"name": "requestOrderTransferWorkflow",
"variant": "declaration",
"kind": 64,
@@ -691447,7 +692353,7 @@
},
"children": [
{
- "id": 34595,
+ "id": 17306,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -691470,7 +692376,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34596,
+ "id": 17307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -691484,7 +692390,7 @@
],
"signatures": [
{
- "id": 34597,
+ "id": 17308,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -691512,7 +692418,7 @@
],
"parameters": [
{
- "id": 34598,
+ "id": 17309,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -691528,14 +692434,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34599,
+ "id": 17310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34600,
+ "id": 17311,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -691595,7 +692501,7 @@
{
"title": "Properties",
"children": [
- 34600
+ 17311
]
}
],
@@ -691616,14 +692522,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34601,
+ "id": 17312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34614,
+ "id": 17325,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -691669,7 +692575,7 @@
}
},
{
- "id": 34674,
+ "id": 17385,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -691715,7 +692621,7 @@
}
},
{
- "id": 34675,
+ "id": 17386,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -691761,7 +692667,7 @@
}
},
{
- "id": 34676,
+ "id": 17387,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -691818,7 +692724,7 @@
}
},
{
- "id": 34677,
+ "id": 17388,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -691874,7 +692780,7 @@
}
},
{
- "id": 34642,
+ "id": 17353,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -691931,7 +692837,7 @@
}
},
{
- "id": 34643,
+ "id": 17354,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -691988,7 +692894,7 @@
}
},
{
- "id": 34644,
+ "id": 17355,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -692045,7 +692951,7 @@
}
},
{
- "id": 34619,
+ "id": 17330,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -692102,7 +693008,7 @@
}
},
{
- "id": 34645,
+ "id": 17356,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -692148,7 +693054,7 @@
}
},
{
- "id": 34646,
+ "id": 17357,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -692218,7 +693124,7 @@
}
},
{
- "id": 34647,
+ "id": 17358,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -692288,7 +693194,7 @@
}
},
{
- "id": 34678,
+ "id": 17389,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -692364,7 +693270,7 @@
}
},
{
- "id": 34648,
+ "id": 17359,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -692440,7 +693346,7 @@
}
},
{
- "id": 34679,
+ "id": 17390,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -692510,7 +693416,7 @@
}
},
{
- "id": 34680,
+ "id": 17391,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -692567,7 +693473,7 @@
}
},
{
- "id": 34618,
+ "id": 17329,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -692662,7 +693568,7 @@
}
},
{
- "id": 34673,
+ "id": 17384,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -692737,7 +693643,7 @@
}
},
{
- "id": 34615,
+ "id": 17326,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -692806,7 +693712,7 @@
}
},
{
- "id": 34616,
+ "id": 17327,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -692875,7 +693781,7 @@
}
},
{
- "id": 34617,
+ "id": 17328,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -692950,7 +693856,7 @@
}
},
{
- "id": 34649,
+ "id": 17360,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -693006,7 +693912,7 @@
}
},
{
- "id": 34650,
+ "id": 17361,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -693062,7 +693968,7 @@
}
},
{
- "id": 34651,
+ "id": 17362,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -693118,7 +694024,7 @@
}
},
{
- "id": 34623,
+ "id": 17334,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -693174,7 +694080,7 @@
}
},
{
- "id": 34624,
+ "id": 17335,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -693230,7 +694136,7 @@
}
},
{
- "id": 34625,
+ "id": 17336,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -693286,7 +694192,7 @@
}
},
{
- "id": 34681,
+ "id": 17392,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -693342,7 +694248,7 @@
}
},
{
- "id": 34620,
+ "id": 17331,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -693398,7 +694304,7 @@
}
},
{
- "id": 34621,
+ "id": 17332,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -693454,7 +694360,7 @@
}
},
{
- "id": 34622,
+ "id": 17333,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -693510,7 +694416,7 @@
}
},
{
- "id": 34626,
+ "id": 17337,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -693566,7 +694472,7 @@
}
},
{
- "id": 34627,
+ "id": 17338,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -693622,7 +694528,7 @@
}
},
{
- "id": 34628,
+ "id": 17339,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -693678,7 +694584,7 @@
}
},
{
- "id": 34682,
+ "id": 17393,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -693734,7 +694640,7 @@
}
},
{
- "id": 34629,
+ "id": 17340,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -693790,7 +694696,7 @@
}
},
{
- "id": 34630,
+ "id": 17341,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -693846,7 +694752,7 @@
}
},
{
- "id": 34672,
+ "id": 17383,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -693902,7 +694808,7 @@
}
},
{
- "id": 34652,
+ "id": 17363,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -693958,7 +694864,7 @@
}
},
{
- "id": 34653,
+ "id": 17364,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -694014,7 +694920,7 @@
}
},
{
- "id": 34654,
+ "id": 17365,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -694070,7 +694976,7 @@
}
},
{
- "id": 34655,
+ "id": 17366,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -694126,7 +695032,7 @@
}
},
{
- "id": 34656,
+ "id": 17367,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -694182,7 +695088,7 @@
}
},
{
- "id": 34683,
+ "id": 17394,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -694238,7 +695144,7 @@
}
},
{
- "id": 34657,
+ "id": 17368,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -694294,7 +695200,7 @@
}
},
{
- "id": 34658,
+ "id": 17369,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -694350,7 +695256,7 @@
}
},
{
- "id": 34659,
+ "id": 17370,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -694406,7 +695312,7 @@
}
},
{
- "id": 34602,
+ "id": 17313,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -694462,7 +695368,7 @@
}
},
{
- "id": 34603,
+ "id": 17314,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -694502,14 +695408,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34604,
+ "id": 17315,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34605,
+ "id": 17316,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -694541,7 +695447,7 @@
{
"title": "Properties",
"children": [
- 34605
+ 17316
]
}
],
@@ -694581,14 +695487,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34606,
+ "id": 17317,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34607,
+ "id": 17318,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -694620,7 +695526,7 @@
{
"title": "Properties",
"children": [
- 34607
+ 17318
]
}
],
@@ -694644,7 +695550,7 @@
}
},
{
- "id": 34608,
+ "id": 17319,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -694684,14 +695590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34609,
+ "id": 17320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34610,
+ "id": 17321,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -694723,7 +695629,7 @@
{
"title": "Properties",
"children": [
- 34610
+ 17321
]
}
],
@@ -694763,14 +695669,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34611,
+ "id": 17322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34612,
+ "id": 17323,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -694802,7 +695708,7 @@
{
"title": "Properties",
"children": [
- 34612
+ 17323
]
}
],
@@ -694826,7 +695732,7 @@
}
},
{
- "id": 34613,
+ "id": 17324,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -694876,57 +695782,57 @@
{
"title": "Properties",
"children": [
- 34614,
- 34674,
- 34675,
- 34676,
- 34677,
- 34642,
- 34643,
- 34644,
- 34619,
- 34645,
- 34646,
- 34647,
- 34678,
- 34648,
- 34679,
- 34680,
- 34618,
- 34673,
- 34615,
- 34616,
- 34617,
- 34649,
- 34650,
- 34651,
- 34623,
- 34624,
- 34625,
- 34681,
- 34620,
- 34621,
- 34622,
- 34626,
- 34627,
- 34628,
- 34682,
- 34629,
- 34630,
- 34672,
- 34652,
- 34653,
- 34654,
- 34655,
- 34656,
- 34683,
- 34657,
- 34658,
- 34659,
- 34602,
- 34603,
- 34608,
- 34613
+ 17325,
+ 17385,
+ 17386,
+ 17387,
+ 17388,
+ 17353,
+ 17354,
+ 17355,
+ 17330,
+ 17356,
+ 17357,
+ 17358,
+ 17389,
+ 17359,
+ 17390,
+ 17391,
+ 17329,
+ 17384,
+ 17326,
+ 17327,
+ 17328,
+ 17360,
+ 17361,
+ 17362,
+ 17334,
+ 17335,
+ 17336,
+ 17392,
+ 17331,
+ 17332,
+ 17333,
+ 17337,
+ 17338,
+ 17339,
+ 17393,
+ 17340,
+ 17341,
+ 17383,
+ 17363,
+ 17364,
+ 17365,
+ 17366,
+ 17367,
+ 17394,
+ 17368,
+ 17369,
+ 17370,
+ 17313,
+ 17314,
+ 17319,
+ 17324
]
}
],
@@ -694971,14 +695877,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34684,
+ "id": 17395,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34685,
+ "id": 17396,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -694992,7 +695898,7 @@
],
"signatures": [
{
- "id": 34686,
+ "id": 17397,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -695006,7 +695912,7 @@
],
"parameters": [
{
- "id": 34687,
+ "id": 17398,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -695017,14 +695923,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34688,
+ "id": 17399,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34689,
+ "id": 17400,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -695048,7 +695954,7 @@
{
"title": "Properties",
"children": [
- 34689
+ 17400
]
}
],
@@ -695130,7 +696036,7 @@
{
"title": "Methods",
"children": [
- 34685
+ 17396
]
}
],
@@ -695171,7 +696077,7 @@
}
},
{
- "id": 34690,
+ "id": 17401,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -695194,7 +696100,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34691,
+ "id": 17402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -695208,7 +696114,7 @@
],
"signatures": [
{
- "id": 34692,
+ "id": 17403,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -695236,7 +696142,7 @@
],
"typeParameters": [
{
- "id": 34693,
+ "id": 17404,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -695247,7 +696153,7 @@
}
},
{
- "id": 34694,
+ "id": 17405,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -695260,7 +696166,7 @@
],
"parameters": [
{
- "id": 34695,
+ "id": 17406,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -695293,7 +696199,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -695313,7 +696219,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -695346,7 +696252,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -695366,7 +696272,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -695386,7 +696292,7 @@
}
},
{
- "id": 34696,
+ "id": 17407,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -695409,7 +696315,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34697,
+ "id": 17408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -695423,7 +696329,7 @@
],
"signatures": [
{
- "id": 34698,
+ "id": 17409,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -695445,7 +696351,7 @@
}
},
{
- "id": 34699,
+ "id": 17410,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -695468,7 +696374,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34700,
+ "id": 17411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -695482,7 +696388,7 @@
],
"signatures": [
{
- "id": 34701,
+ "id": 17412,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -695496,7 +696402,7 @@
],
"parameters": [
{
- "id": 34702,
+ "id": 17413,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -695522,7 +696428,7 @@
}
},
{
- "id": 34703,
+ "id": 17414,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -695545,7 +696451,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34704,
+ "id": 17415,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -695556,7 +696462,7 @@
],
"documents": [
{
- "id": 42993,
+ "id": 25934,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -695582,7 +696488,7 @@
"frontmatter": {}
},
{
- "id": 42994,
+ "id": 25935,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -695608,7 +696514,7 @@
"frontmatter": {}
},
{
- "id": 42995,
+ "id": 25936,
"name": "requestOrderTransferValidationStep",
"variant": "document",
"kind": 8388608,
@@ -695634,7 +696540,7 @@
"frontmatter": {}
},
{
- "id": 42996,
+ "id": 25937,
"name": "createOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -695660,7 +696566,7 @@
"frontmatter": {}
},
{
- "id": 42997,
+ "id": 25938,
"name": "createOrderChangeActionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -695686,7 +696592,7 @@
"frontmatter": {}
},
{
- "id": 42998,
+ "id": 25939,
"name": "updateOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -695712,7 +696618,7 @@
"frontmatter": {}
},
{
- "id": 42999,
+ "id": 25940,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -695738,7 +696644,7 @@
"frontmatter": {}
},
{
- "id": 43000,
+ "id": 25941,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -695765,21 +696671,21 @@
}
],
"childrenIncludingDocuments": [
- 34595,
- 34690,
- 34696,
- 34699,
- 34703
+ 17306,
+ 17401,
+ 17407,
+ 17410,
+ 17414
],
"groups": [
{
"title": "Properties",
"children": [
- 34595,
- 34690,
- 34696,
- 34699,
- 34703
+ 17306,
+ 17401,
+ 17407,
+ 17410,
+ 17414
]
}
],
@@ -695788,12 +696694,12 @@
"fileName": "core-flows/src/order/workflows/transfer/request-order-transfer.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L110"
}
],
"signatures": [
{
- "id": 34588,
+ "id": 17299,
"name": "requestOrderTransferWorkflow",
"variant": "signature",
"kind": 4096,
@@ -695866,12 +696772,12 @@
"fileName": "core-flows/src/order/workflows/transfer/request-order-transfer.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/transfer/request-order-transfer.ts#L110"
}
],
"typeParameters": [
{
- "id": 34589,
+ "id": 17300,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -695882,7 +696788,7 @@
}
},
{
- "id": 34590,
+ "id": 17301,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -695895,7 +696801,7 @@
],
"parameters": [
{
- "id": 34591,
+ "id": 17302,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -695919,14 +696825,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34592,
+ "id": 17303,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34593,
+ "id": 17304,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -695949,7 +696855,7 @@
}
},
{
- "id": 34594,
+ "id": 17305,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -695976,8 +696882,8 @@
{
"title": "Properties",
"children": [
- 34593,
- 34594
+ 17304,
+ 17305
]
}
],
@@ -696070,14 +696976,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -696092,7 +696998,7 @@
]
},
{
- "id": 34707,
+ "id": 17418,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -696110,7 +697016,7 @@
"fileName": "core-flows/src/order/workflows/update-order.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order.ts#L35"
}
],
"type": {
@@ -696124,7 +697030,7 @@
}
},
{
- "id": 34708,
+ "id": 17419,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -696142,7 +697048,7 @@
"fileName": "core-flows/src/order/workflows/update-order.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order.ts#L39"
}
],
"type": {
@@ -696157,7 +697063,7 @@
}
},
{
- "id": 34709,
+ "id": 17420,
"name": "updateOrderValidationStep",
"variant": "declaration",
"kind": 64,
@@ -696192,7 +697098,7 @@
},
"children": [
{
- "id": 34718,
+ "id": 17429,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -696210,7 +697116,7 @@
}
},
{
- "id": 34719,
+ "id": 17430,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -696232,8 +697138,8 @@
{
"title": "Properties",
"children": [
- 34718,
- 34719
+ 17429,
+ 17430
]
}
],
@@ -696242,12 +697148,12 @@
"fileName": "core-flows/src/order/workflows/update-order.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order.ts#L65"
}
],
"signatures": [
{
- "id": 34710,
+ "id": 17421,
"name": "updateOrderValidationStep",
"variant": "signature",
"kind": 4096,
@@ -696285,12 +697191,12 @@
"fileName": "core-flows/src/order/workflows/update-order.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order.ts#L65"
}
],
"parameters": [
{
- "id": 34711,
+ "id": 17422,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -696300,7 +697206,7 @@
"types": [
{
"type": "reference",
- "target": 34705,
+ "target": 17416,
"name": "UpdateOrderValidationStepInput",
"package": "@medusajs/core-flows"
},
@@ -696313,7 +697219,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34705,
+ "target": 17416,
"name": "UpdateOrderValidationStepInput",
"package": "@medusajs/core-flows"
}
@@ -696346,14 +697252,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34712,
+ "id": 17423,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34713,
+ "id": 17424,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -696367,7 +697273,7 @@
],
"signatures": [
{
- "id": 34714,
+ "id": 17425,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -696381,7 +697287,7 @@
],
"parameters": [
{
- "id": 34715,
+ "id": 17426,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -696392,14 +697298,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34716,
+ "id": 17427,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34717,
+ "id": 17428,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -696423,7 +697329,7 @@
{
"title": "Properties",
"children": [
- 34717
+ 17428
]
}
],
@@ -696500,7 +697406,7 @@
{
"title": "Methods",
"children": [
- 34713
+ 17424
]
}
],
@@ -696534,7 +697440,7 @@
]
},
{
- "id": 34720,
+ "id": 17431,
"name": "updateOrderWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -696546,7 +697452,7 @@
"fileName": "core-flows/src/order/workflows/update-order.ts",
"line": 98,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order.ts#L98"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order.ts#L98"
}
],
"type": {
@@ -696556,7 +697462,7 @@
"defaultValue": "\"update-order-workflow\""
},
{
- "id": 34721,
+ "id": 17432,
"name": "updateOrderWorkflow",
"variant": "declaration",
"kind": 64,
@@ -696609,7 +697515,7 @@
},
"children": [
{
- "id": 34729,
+ "id": 17440,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -696632,7 +697538,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34730,
+ "id": 17441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -696646,7 +697552,7 @@
],
"signatures": [
{
- "id": 34731,
+ "id": 17442,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -696674,7 +697580,7 @@
],
"parameters": [
{
- "id": 34732,
+ "id": 17443,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -696690,14 +697596,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34733,
+ "id": 17444,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34734,
+ "id": 17445,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -696757,7 +697663,7 @@
{
"title": "Properties",
"children": [
- 34734
+ 17445
]
}
],
@@ -696778,14 +697684,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34735,
+ "id": 17446,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34748,
+ "id": 17459,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -696831,7 +697737,7 @@
}
},
{
- "id": 34808,
+ "id": 17519,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -696877,7 +697783,7 @@
}
},
{
- "id": 34809,
+ "id": 17520,
"name": "display_id",
"variant": "declaration",
"kind": 1024,
@@ -696923,7 +697829,7 @@
}
},
{
- "id": 34810,
+ "id": 17521,
"name": "custom_display_id",
"variant": "declaration",
"kind": 1024,
@@ -696980,7 +697886,7 @@
}
},
{
- "id": 34811,
+ "id": 17522,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -697036,7 +697942,7 @@
}
},
{
- "id": 34776,
+ "id": 17487,
"name": "region_id",
"variant": "declaration",
"kind": 1024,
@@ -697093,7 +697999,7 @@
}
},
{
- "id": 34777,
+ "id": 17488,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -697150,7 +698056,7 @@
}
},
{
- "id": 34778,
+ "id": 17489,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -697207,7 +698113,7 @@
}
},
{
- "id": 34753,
+ "id": 17464,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -697264,7 +698170,7 @@
}
},
{
- "id": 34779,
+ "id": 17490,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -697310,7 +698216,7 @@
}
},
{
- "id": 34780,
+ "id": 17491,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -697380,7 +698286,7 @@
}
},
{
- "id": 34781,
+ "id": 17492,
"name": "billing_address",
"variant": "declaration",
"kind": 1024,
@@ -697450,7 +698356,7 @@
}
},
{
- "id": 34812,
+ "id": 17523,
"name": "transactions",
"variant": "declaration",
"kind": 1024,
@@ -697526,7 +698432,7 @@
}
},
{
- "id": 34782,
+ "id": 17493,
"name": "credit_lines",
"variant": "declaration",
"kind": 1024,
@@ -697602,7 +698508,7 @@
}
},
{
- "id": 34813,
+ "id": 17524,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -697672,7 +698578,7 @@
}
},
{
- "id": 34814,
+ "id": 17525,
"name": "is_draft_order",
"variant": "declaration",
"kind": 1024,
@@ -697729,7 +698635,7 @@
}
},
{
- "id": 34752,
+ "id": 17463,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -697824,7 +698730,7 @@
}
},
{
- "id": 34807,
+ "id": 17518,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -697899,7 +698805,7 @@
}
},
{
- "id": 34749,
+ "id": 17460,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -697968,7 +698874,7 @@
}
},
{
- "id": 34750,
+ "id": 17461,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -698037,7 +698943,7 @@
}
},
{
- "id": 34751,
+ "id": 17462,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -698112,7 +699018,7 @@
}
},
{
- "id": 34783,
+ "id": 17494,
"name": "original_item_total",
"variant": "declaration",
"kind": 1024,
@@ -698168,7 +699074,7 @@
}
},
{
- "id": 34784,
+ "id": 17495,
"name": "original_item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -698224,7 +699130,7 @@
}
},
{
- "id": 34785,
+ "id": 17496,
"name": "original_item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -698280,7 +699186,7 @@
}
},
{
- "id": 34757,
+ "id": 17468,
"name": "item_total",
"variant": "declaration",
"kind": 1024,
@@ -698336,7 +699242,7 @@
}
},
{
- "id": 34758,
+ "id": 17469,
"name": "item_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -698392,7 +699298,7 @@
}
},
{
- "id": 34759,
+ "id": 17470,
"name": "item_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -698448,7 +699354,7 @@
}
},
{
- "id": 34815,
+ "id": 17526,
"name": "item_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -698504,7 +699410,7 @@
}
},
{
- "id": 34754,
+ "id": 17465,
"name": "original_total",
"variant": "declaration",
"kind": 1024,
@@ -698560,7 +699466,7 @@
}
},
{
- "id": 34755,
+ "id": 17466,
"name": "original_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -698616,7 +699522,7 @@
}
},
{
- "id": 34756,
+ "id": 17467,
"name": "original_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -698672,7 +699578,7 @@
}
},
{
- "id": 34760,
+ "id": 17471,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -698728,7 +699634,7 @@
}
},
{
- "id": 34761,
+ "id": 17472,
"name": "subtotal",
"variant": "declaration",
"kind": 1024,
@@ -698784,7 +699690,7 @@
}
},
{
- "id": 34762,
+ "id": 17473,
"name": "tax_total",
"variant": "declaration",
"kind": 1024,
@@ -698840,7 +699746,7 @@
}
},
{
- "id": 34816,
+ "id": 17527,
"name": "discount_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -698896,7 +699802,7 @@
}
},
{
- "id": 34763,
+ "id": 17474,
"name": "discount_total",
"variant": "declaration",
"kind": 1024,
@@ -698952,7 +699858,7 @@
}
},
{
- "id": 34764,
+ "id": 17475,
"name": "discount_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -699008,7 +699914,7 @@
}
},
{
- "id": 34806,
+ "id": 17517,
"name": "credit_line_total",
"variant": "declaration",
"kind": 1024,
@@ -699064,7 +699970,7 @@
}
},
{
- "id": 34786,
+ "id": 17497,
"name": "gift_card_total",
"variant": "declaration",
"kind": 1024,
@@ -699120,7 +700026,7 @@
}
},
{
- "id": 34787,
+ "id": 17498,
"name": "gift_card_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -699176,7 +700082,7 @@
}
},
{
- "id": 34788,
+ "id": 17499,
"name": "shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -699232,7 +700138,7 @@
}
},
{
- "id": 34789,
+ "id": 17500,
"name": "shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -699288,7 +700194,7 @@
}
},
{
- "id": 34790,
+ "id": 17501,
"name": "shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -699344,7 +700250,7 @@
}
},
{
- "id": 34817,
+ "id": 17528,
"name": "shipping_discount_total",
"variant": "declaration",
"kind": 1024,
@@ -699400,7 +700306,7 @@
}
},
{
- "id": 34791,
+ "id": 17502,
"name": "original_shipping_total",
"variant": "declaration",
"kind": 1024,
@@ -699456,7 +700362,7 @@
}
},
{
- "id": 34792,
+ "id": 17503,
"name": "original_shipping_subtotal",
"variant": "declaration",
"kind": 1024,
@@ -699512,7 +700418,7 @@
}
},
{
- "id": 34793,
+ "id": 17504,
"name": "original_shipping_tax_total",
"variant": "declaration",
"kind": 1024,
@@ -699568,7 +700474,7 @@
}
},
{
- "id": 34736,
+ "id": 17447,
"name": "order_change",
"variant": "declaration",
"kind": 1024,
@@ -699624,7 +700530,7 @@
}
},
{
- "id": 34737,
+ "id": 17448,
"name": "items",
"variant": "declaration",
"kind": 1024,
@@ -699664,14 +700570,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34738,
+ "id": 17449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34739,
+ "id": 17450,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -699703,7 +700609,7 @@
{
"title": "Properties",
"children": [
- 34739
+ 17450
]
}
],
@@ -699743,14 +700649,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34740,
+ "id": 17451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34741,
+ "id": 17452,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -699782,7 +700688,7 @@
{
"title": "Properties",
"children": [
- 34741
+ 17452
]
}
],
@@ -699806,7 +700712,7 @@
}
},
{
- "id": 34742,
+ "id": 17453,
"name": "shipping_methods",
"variant": "declaration",
"kind": 1024,
@@ -699846,14 +700752,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34743,
+ "id": 17454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34744,
+ "id": 17455,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -699885,7 +700791,7 @@
{
"title": "Properties",
"children": [
- 34744
+ 17455
]
}
],
@@ -699925,14 +700831,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34745,
+ "id": 17456,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34746,
+ "id": 17457,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -699964,7 +700870,7 @@
{
"title": "Properties",
"children": [
- 34746
+ 17457
]
}
],
@@ -699988,7 +700894,7 @@
}
},
{
- "id": 34747,
+ "id": 17458,
"name": "return_requested_total",
"variant": "declaration",
"kind": 1024,
@@ -700038,57 +700944,57 @@
{
"title": "Properties",
"children": [
- 34748,
- 34808,
- 34809,
- 34810,
- 34811,
- 34776,
- 34777,
- 34778,
- 34753,
- 34779,
- 34780,
- 34781,
- 34812,
- 34782,
- 34813,
- 34814,
- 34752,
- 34807,
- 34749,
- 34750,
- 34751,
- 34783,
- 34784,
- 34785,
- 34757,
- 34758,
- 34759,
- 34815,
- 34754,
- 34755,
- 34756,
- 34760,
- 34761,
- 34762,
- 34816,
- 34763,
- 34764,
- 34806,
- 34786,
- 34787,
- 34788,
- 34789,
- 34790,
- 34817,
- 34791,
- 34792,
- 34793,
- 34736,
- 34737,
- 34742,
- 34747
+ 17459,
+ 17519,
+ 17520,
+ 17521,
+ 17522,
+ 17487,
+ 17488,
+ 17489,
+ 17464,
+ 17490,
+ 17491,
+ 17492,
+ 17523,
+ 17493,
+ 17524,
+ 17525,
+ 17463,
+ 17518,
+ 17460,
+ 17461,
+ 17462,
+ 17494,
+ 17495,
+ 17496,
+ 17468,
+ 17469,
+ 17470,
+ 17526,
+ 17465,
+ 17466,
+ 17467,
+ 17471,
+ 17472,
+ 17473,
+ 17527,
+ 17474,
+ 17475,
+ 17517,
+ 17497,
+ 17498,
+ 17499,
+ 17500,
+ 17501,
+ 17528,
+ 17502,
+ 17503,
+ 17504,
+ 17447,
+ 17448,
+ 17453,
+ 17458
]
}
],
@@ -700133,14 +701039,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34818,
+ "id": 17529,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34819,
+ "id": 17530,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -700154,7 +701060,7 @@
],
"signatures": [
{
- "id": 34820,
+ "id": 17531,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -700168,7 +701074,7 @@
],
"parameters": [
{
- "id": 34821,
+ "id": 17532,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -700179,14 +701085,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34822,
+ "id": 17533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34823,
+ "id": 17534,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -700210,7 +701116,7 @@
{
"title": "Properties",
"children": [
- 34823
+ 17534
]
}
],
@@ -700292,7 +701198,7 @@
{
"title": "Methods",
"children": [
- 34819
+ 17530
]
}
],
@@ -700333,7 +701239,7 @@
}
},
{
- "id": 34824,
+ "id": 17535,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -700356,7 +701262,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34825,
+ "id": 17536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -700370,7 +701276,7 @@
],
"signatures": [
{
- "id": 34826,
+ "id": 17537,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -700398,7 +701304,7 @@
],
"typeParameters": [
{
- "id": 34827,
+ "id": 17538,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -700409,7 +701315,7 @@
}
},
{
- "id": 34828,
+ "id": 17539,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -700422,7 +701328,7 @@
],
"parameters": [
{
- "id": 34829,
+ "id": 17540,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -700455,7 +701361,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -700475,7 +701381,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -700508,7 +701414,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -700528,7 +701434,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -700548,7 +701454,7 @@
}
},
{
- "id": 34830,
+ "id": 17541,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -700571,7 +701477,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34831,
+ "id": 17542,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -700585,7 +701491,7 @@
],
"signatures": [
{
- "id": 34832,
+ "id": 17543,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -700607,7 +701513,7 @@
}
},
{
- "id": 34833,
+ "id": 17544,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -700630,7 +701536,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34834,
+ "id": 17545,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -700644,7 +701550,7 @@
],
"signatures": [
{
- "id": 34835,
+ "id": 17546,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -700658,7 +701564,7 @@
],
"parameters": [
{
- "id": 34836,
+ "id": 17547,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -700684,7 +701590,7 @@
}
},
{
- "id": 34837,
+ "id": 17548,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -700707,7 +701613,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34838,
+ "id": 17549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -700718,7 +701624,7 @@
],
"documents": [
{
- "id": 43001,
+ "id": 25942,
"name": "updateOrderValidationStep",
"variant": "document",
"kind": 8388608,
@@ -700744,7 +701650,7 @@
"frontmatter": {}
},
{
- "id": 43002,
+ "id": 25943,
"name": "updateOrdersStep",
"variant": "document",
"kind": 8388608,
@@ -700770,7 +701676,7 @@
"frontmatter": {}
},
{
- "id": 43003,
+ "id": 25944,
"name": "registerOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -700796,7 +701702,7 @@
"frontmatter": {}
},
{
- "id": 43004,
+ "id": 25945,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -700822,7 +701728,7 @@
"frontmatter": {}
},
{
- "id": 43005,
+ "id": 25946,
"name": "previewOrderChangeStep",
"variant": "document",
"kind": 8388608,
@@ -700849,21 +701755,21 @@
}
],
"childrenIncludingDocuments": [
- 34729,
- 34824,
- 34830,
- 34833,
- 34837
+ 17440,
+ 17535,
+ 17541,
+ 17544,
+ 17548
],
"groups": [
{
"title": "Properties",
"children": [
- 34729,
- 34824,
- 34830,
- 34833,
- 34837
+ 17440,
+ 17535,
+ 17541,
+ 17544,
+ 17548
]
}
],
@@ -700872,12 +701778,12 @@
"fileName": "core-flows/src/order/workflows/update-order.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order.ts#L120"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order.ts#L120"
}
],
"signatures": [
{
- "id": 34722,
+ "id": 17433,
"name": "updateOrderWorkflow",
"variant": "signature",
"kind": 4096,
@@ -700933,12 +701839,12 @@
"fileName": "core-flows/src/order/workflows/update-order.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order.ts#L120"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order.ts#L120"
}
],
"typeParameters": [
{
- "id": 34723,
+ "id": 17434,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -700949,7 +701855,7 @@
}
},
{
- "id": 34724,
+ "id": 17435,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -700962,7 +701868,7 @@
],
"parameters": [
{
- "id": 34725,
+ "id": 17436,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -700986,14 +701892,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34726,
+ "id": 17437,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34727,
+ "id": 17438,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -701016,7 +701922,7 @@
}
},
{
- "id": 34728,
+ "id": 17439,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -701043,8 +701949,8 @@
{
"title": "Properties",
"children": [
- 34727,
- 34728
+ 17438,
+ 17439
]
}
],
@@ -701137,14 +702043,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -701159,7 +702065,7 @@
]
},
{
- "id": 34839,
+ "id": 17550,
"name": "updateOrderChangeWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -701171,7 +702077,7 @@
"fileName": "core-flows/src/order/workflows/update-order-change.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-change.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-change.ts#L12"
}
],
"type": {
@@ -701181,7 +702087,7 @@
"defaultValue": "\"update-order-change-workflow\""
},
{
- "id": 34840,
+ "id": 17551,
"name": "updateOrderChangeWorkflow",
"variant": "declaration",
"kind": 64,
@@ -701204,7 +702110,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "onCarryPromotionsFlagSet",
- "target": 34289
+ "target": 17000
},
{
"kind": "text",
@@ -701261,7 +702167,7 @@
},
"children": [
{
- "id": 34848,
+ "id": 17559,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -701284,7 +702190,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34849,
+ "id": 17560,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -701298,7 +702204,7 @@
],
"signatures": [
{
- "id": 34850,
+ "id": 17561,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -701326,7 +702232,7 @@
],
"parameters": [
{
- "id": 34851,
+ "id": 17562,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -701342,14 +702248,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34852,
+ "id": 17563,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34853,
+ "id": 17564,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -701409,7 +702315,7 @@
{
"title": "Properties",
"children": [
- 34853
+ 17564
]
}
],
@@ -701430,14 +702336,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34854,
+ "id": 17565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34855,
+ "id": 17566,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -701483,7 +702389,7 @@
}
},
{
- "id": 34856,
+ "id": 17567,
"name": "version",
"variant": "declaration",
"kind": 1024,
@@ -701529,7 +702435,7 @@
}
},
{
- "id": 34857,
+ "id": 17568,
"name": "change_type",
"variant": "declaration",
"kind": 1024,
@@ -701618,7 +702524,7 @@
}
},
{
- "id": 34858,
+ "id": 17569,
"name": "carry_over_promotions",
"variant": "declaration",
"kind": 1024,
@@ -701683,7 +702589,7 @@
}
},
{
- "id": 34859,
+ "id": 17570,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -701729,7 +702635,7 @@
}
},
{
- "id": 34860,
+ "id": 17571,
"name": "return_id",
"variant": "declaration",
"kind": 1024,
@@ -701775,7 +702681,7 @@
}
},
{
- "id": 34861,
+ "id": 17572,
"name": "exchange_id",
"variant": "declaration",
"kind": 1024,
@@ -701821,7 +702727,7 @@
}
},
{
- "id": 34862,
+ "id": 17573,
"name": "claim_id",
"variant": "declaration",
"kind": 1024,
@@ -701867,7 +702773,7 @@
}
},
{
- "id": 34863,
+ "id": 17574,
"name": "order",
"variant": "declaration",
"kind": 1024,
@@ -701926,7 +702832,7 @@
}
},
{
- "id": 34864,
+ "id": 17575,
"name": "return_order",
"variant": "declaration",
"kind": 1024,
@@ -701985,7 +702891,7 @@
}
},
{
- "id": 34865,
+ "id": 17576,
"name": "exchange",
"variant": "declaration",
"kind": 1024,
@@ -702044,7 +702950,7 @@
}
},
{
- "id": 34866,
+ "id": 17577,
"name": "claim",
"variant": "declaration",
"kind": 1024,
@@ -702103,7 +703009,7 @@
}
},
{
- "id": 34867,
+ "id": 17578,
"name": "actions",
"variant": "declaration",
"kind": 1024,
@@ -702168,7 +703074,7 @@
}
},
{
- "id": 34868,
+ "id": 17579,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -702224,7 +703130,7 @@
}
},
{
- "id": 34869,
+ "id": 17580,
"name": "requested_by",
"variant": "declaration",
"kind": 1024,
@@ -702283,7 +703189,7 @@
}
},
{
- "id": 34870,
+ "id": 17581,
"name": "requested_at",
"variant": "declaration",
"kind": 1024,
@@ -702360,7 +703266,7 @@
}
},
{
- "id": 34871,
+ "id": 17582,
"name": "confirmed_by",
"variant": "declaration",
"kind": 1024,
@@ -702419,7 +703325,7 @@
}
},
{
- "id": 34872,
+ "id": 17583,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -702496,7 +703402,7 @@
}
},
{
- "id": 34873,
+ "id": 17584,
"name": "declined_by",
"variant": "declaration",
"kind": 1024,
@@ -702555,7 +703461,7 @@
}
},
{
- "id": 34874,
+ "id": 17585,
"name": "declined_reason",
"variant": "declaration",
"kind": 1024,
@@ -702614,7 +703520,7 @@
}
},
{
- "id": 34875,
+ "id": 17586,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -702703,7 +703609,7 @@
}
},
{
- "id": 34876,
+ "id": 17587,
"name": "declined_at",
"variant": "declaration",
"kind": 1024,
@@ -702780,7 +703686,7 @@
}
},
{
- "id": 34877,
+ "id": 17588,
"name": "canceled_by",
"variant": "declaration",
"kind": 1024,
@@ -702839,7 +703745,7 @@
}
},
{
- "id": 34878,
+ "id": 17589,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -702916,7 +703822,7 @@
}
},
{
- "id": 34879,
+ "id": 17590,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -702985,7 +703891,7 @@
}
},
{
- "id": 34880,
+ "id": 17591,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -703058,32 +703964,32 @@
{
"title": "Properties",
"children": [
- 34855,
- 34856,
- 34857,
- 34858,
- 34859,
- 34860,
- 34861,
- 34862,
- 34863,
- 34864,
- 34865,
- 34866,
- 34867,
- 34868,
- 34869,
- 34870,
- 34871,
- 34872,
- 34873,
- 34874,
- 34875,
- 34876,
- 34877,
- 34878,
- 34879,
- 34880
+ 17566,
+ 17567,
+ 17568,
+ 17569,
+ 17570,
+ 17571,
+ 17572,
+ 17573,
+ 17574,
+ 17575,
+ 17576,
+ 17577,
+ 17578,
+ 17579,
+ 17580,
+ 17581,
+ 17582,
+ 17583,
+ 17584,
+ 17585,
+ 17586,
+ 17587,
+ 17588,
+ 17589,
+ 17590,
+ 17591
]
}
],
@@ -703128,14 +704034,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34881,
+ "id": 17592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34882,
+ "id": 17593,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -703149,7 +704055,7 @@
],
"signatures": [
{
- "id": 34883,
+ "id": 17594,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -703163,7 +704069,7 @@
],
"parameters": [
{
- "id": 34884,
+ "id": 17595,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -703174,14 +704080,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34885,
+ "id": 17596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34886,
+ "id": 17597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -703205,7 +704111,7 @@
{
"title": "Properties",
"children": [
- 34886
+ 17597
]
}
],
@@ -703287,7 +704193,7 @@
{
"title": "Methods",
"children": [
- 34882
+ 17593
]
}
],
@@ -703328,7 +704234,7 @@
}
},
{
- "id": 34887,
+ "id": 17598,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -703351,7 +704257,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34888,
+ "id": 17599,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -703365,7 +704271,7 @@
],
"signatures": [
{
- "id": 34889,
+ "id": 17600,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -703393,7 +704299,7 @@
],
"typeParameters": [
{
- "id": 34890,
+ "id": 17601,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -703404,7 +704310,7 @@
}
},
{
- "id": 34891,
+ "id": 17602,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -703417,7 +704323,7 @@
],
"parameters": [
{
- "id": 34892,
+ "id": 17603,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -703450,7 +704356,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -703470,7 +704376,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -703503,7 +704409,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -703523,7 +704429,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -703543,7 +704449,7 @@
}
},
{
- "id": 34893,
+ "id": 17604,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -703566,7 +704472,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34894,
+ "id": 17605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -703580,7 +704486,7 @@
],
"signatures": [
{
- "id": 34895,
+ "id": 17606,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -703602,7 +704508,7 @@
}
},
{
- "id": 34896,
+ "id": 17607,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -703625,7 +704531,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34897,
+ "id": 17608,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -703639,7 +704545,7 @@
],
"signatures": [
{
- "id": 34898,
+ "id": 17609,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -703653,7 +704559,7 @@
],
"parameters": [
{
- "id": 34899,
+ "id": 17610,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -703679,7 +704585,7 @@
}
},
{
- "id": 34900,
+ "id": 17611,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -703702,7 +704608,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34901,
+ "id": 17612,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -703713,7 +704619,7 @@
],
"documents": [
{
- "id": 43006,
+ "id": 25947,
"name": "updateOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -703739,7 +704645,7 @@
"frontmatter": {}
},
{
- "id": 43007,
+ "id": 25948,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -703774,7 +704680,7 @@
"frontmatter": {},
"children": [
{
- "id": 43008,
+ "id": 25949,
"name": "onCarryPromotionsFlagSet",
"variant": "document",
"kind": 8388608,
@@ -703803,21 +704709,21 @@
}
],
"childrenIncludingDocuments": [
- 34848,
- 34887,
- 34893,
- 34896,
- 34900
+ 17559,
+ 17598,
+ 17604,
+ 17607,
+ 17611
],
"groups": [
{
"title": "Properties",
"children": [
- 34848,
- 34887,
- 34893,
- 34896,
- 34900
+ 17559,
+ 17598,
+ 17604,
+ 17607,
+ 17611
]
}
],
@@ -703826,12 +704732,12 @@
"fileName": "core-flows/src/order/workflows/update-order-change.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-change.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-change.ts#L37"
}
],
"signatures": [
{
- "id": 34841,
+ "id": 17552,
"name": "updateOrderChangeWorkflow",
"variant": "signature",
"kind": 4096,
@@ -703854,7 +704760,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "onCarryPromotionsFlagSet",
- "target": 34289
+ "target": 17000
},
{
"kind": "text",
@@ -703914,12 +704820,12 @@
"fileName": "core-flows/src/order/workflows/update-order-change.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-change.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-change.ts#L37"
}
],
"typeParameters": [
{
- "id": 34842,
+ "id": 17553,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -703930,7 +704836,7 @@
}
},
{
- "id": 34843,
+ "id": 17554,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -703943,7 +704849,7 @@
],
"parameters": [
{
- "id": 34844,
+ "id": 17555,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -703967,14 +704873,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34845,
+ "id": 17556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34846,
+ "id": 17557,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -703997,7 +704903,7 @@
}
},
{
- "id": 34847,
+ "id": 17558,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -704024,8 +704930,8 @@
{
"title": "Properties",
"children": [
- 34846,
- 34847
+ 17557,
+ 17558
]
}
],
@@ -704118,14 +705024,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -704140,7 +705046,7 @@
]
},
{
- "id": 34902,
+ "id": 17613,
"name": "updateOrderChangeActionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -704152,7 +705058,7 @@
"fileName": "core-flows/src/order/workflows/update-order-change-actions.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-change-actions.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-change-actions.ts#L12"
}
],
"type": {
@@ -704162,7 +705068,7 @@
"defaultValue": "\"update-order-change-actions\""
},
{
- "id": 34903,
+ "id": 17614,
"name": "updateOrderChangeActionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -704197,7 +705103,7 @@
},
"children": [
{
- "id": 34911,
+ "id": 17622,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -704220,7 +705126,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34912,
+ "id": 17623,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -704234,7 +705140,7 @@
],
"signatures": [
{
- "id": 34913,
+ "id": 17624,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -704262,7 +705168,7 @@
],
"parameters": [
{
- "id": 34914,
+ "id": 17625,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -704278,14 +705184,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34915,
+ "id": 17626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34916,
+ "id": 17627,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -704351,7 +705257,7 @@
{
"title": "Properties",
"children": [
- 34916
+ 17627
]
}
],
@@ -704444,14 +705350,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34917,
+ "id": 17628,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34918,
+ "id": 17629,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -704465,7 +705371,7 @@
],
"signatures": [
{
- "id": 34919,
+ "id": 17630,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -704479,7 +705385,7 @@
],
"parameters": [
{
- "id": 34920,
+ "id": 17631,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -704490,14 +705396,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34921,
+ "id": 17632,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34922,
+ "id": 17633,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -704521,7 +705427,7 @@
{
"title": "Properties",
"children": [
- 34922
+ 17633
]
}
],
@@ -704606,7 +705512,7 @@
{
"title": "Methods",
"children": [
- 34918
+ 17629
]
}
],
@@ -704650,7 +705556,7 @@
}
},
{
- "id": 34923,
+ "id": 17634,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -704673,7 +705579,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34924,
+ "id": 17635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -704687,7 +705593,7 @@
],
"signatures": [
{
- "id": 34925,
+ "id": 17636,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -704715,7 +705621,7 @@
],
"typeParameters": [
{
- "id": 34926,
+ "id": 17637,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -704726,7 +705632,7 @@
}
},
{
- "id": 34927,
+ "id": 17638,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -704739,7 +705645,7 @@
],
"parameters": [
{
- "id": 34928,
+ "id": 17639,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -704772,7 +705678,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -704795,7 +705701,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -704828,7 +705734,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -704851,7 +705757,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -704871,7 +705777,7 @@
}
},
{
- "id": 34929,
+ "id": 17640,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -704894,7 +705800,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34930,
+ "id": 17641,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -704908,7 +705814,7 @@
],
"signatures": [
{
- "id": 34931,
+ "id": 17642,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -704930,7 +705836,7 @@
}
},
{
- "id": 34932,
+ "id": 17643,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -704953,7 +705859,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34933,
+ "id": 17644,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -704967,7 +705873,7 @@
],
"signatures": [
{
- "id": 34934,
+ "id": 17645,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -704981,7 +705887,7 @@
],
"parameters": [
{
- "id": 34935,
+ "id": 17646,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -705007,7 +705913,7 @@
}
},
{
- "id": 34936,
+ "id": 17647,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -705030,7 +705936,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34937,
+ "id": 17648,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -705041,7 +705947,7 @@
],
"documents": [
{
- "id": 43009,
+ "id": 25950,
"name": "updateOrderChangeActionsStep",
"variant": "document",
"kind": 8388608,
@@ -705068,21 +705974,21 @@
}
],
"childrenIncludingDocuments": [
- 34911,
- 34923,
- 34929,
- 34932,
- 34936
+ 17622,
+ 17634,
+ 17640,
+ 17643,
+ 17647
],
"groups": [
{
"title": "Properties",
"children": [
- 34911,
- 34923,
- 34929,
- 34932,
- 34936
+ 17622,
+ 17634,
+ 17640,
+ 17643,
+ 17647
]
}
],
@@ -705091,12 +705997,12 @@
"fileName": "core-flows/src/order/workflows/update-order-change-actions.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-change-actions.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-change-actions.ts#L23"
}
],
"signatures": [
{
- "id": 34904,
+ "id": 17615,
"name": "updateOrderChangeActionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -705134,12 +706040,12 @@
"fileName": "core-flows/src/order/workflows/update-order-change-actions.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-change-actions.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-change-actions.ts#L23"
}
],
"typeParameters": [
{
- "id": 34905,
+ "id": 17616,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -705150,7 +706056,7 @@
}
},
{
- "id": 34906,
+ "id": 17617,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -705163,7 +706069,7 @@
],
"parameters": [
{
- "id": 34907,
+ "id": 17618,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -705187,14 +706093,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34908,
+ "id": 17619,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34909,
+ "id": 17620,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -705217,7 +706123,7 @@
}
},
{
- "id": 34910,
+ "id": 17621,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -705244,8 +706150,8 @@
{
"title": "Properties",
"children": [
- 34909,
- 34910
+ 17620,
+ 17621
]
}
],
@@ -705344,14 +706250,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -705366,7 +706272,7 @@
]
},
{
- "id": 34938,
+ "id": 17649,
"name": "updateOrderChangesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -705378,7 +706284,7 @@
"fileName": "core-flows/src/order/workflows/update-order-changes.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-changes.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-changes.ts#L12"
}
],
"type": {
@@ -705388,7 +706294,7 @@
"defaultValue": "\"update-order-change\""
},
{
- "id": 34939,
+ "id": 17650,
"name": "updateOrderChangesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -705423,7 +706329,7 @@
},
"children": [
{
- "id": 34947,
+ "id": 17658,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -705446,7 +706352,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34948,
+ "id": 17659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -705460,7 +706366,7 @@
],
"signatures": [
{
- "id": 34949,
+ "id": 17660,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -705488,7 +706394,7 @@
],
"parameters": [
{
- "id": 34950,
+ "id": 17661,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -705504,14 +706410,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34951,
+ "id": 17662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34952,
+ "id": 17663,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -705577,7 +706483,7 @@
{
"title": "Properties",
"children": [
- 34952
+ 17663
]
}
],
@@ -705670,14 +706576,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34953,
+ "id": 17664,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34954,
+ "id": 17665,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -705691,7 +706597,7 @@
],
"signatures": [
{
- "id": 34955,
+ "id": 17666,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -705705,7 +706611,7 @@
],
"parameters": [
{
- "id": 34956,
+ "id": 17667,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -705716,14 +706622,14 @@
{
"type": "reflection",
"declaration": {
- "id": 34957,
+ "id": 17668,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34958,
+ "id": 17669,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -705747,7 +706653,7 @@
{
"title": "Properties",
"children": [
- 34958
+ 17669
]
}
],
@@ -705832,7 +706738,7 @@
{
"title": "Methods",
"children": [
- 34954
+ 17665
]
}
],
@@ -705876,7 +706782,7 @@
}
},
{
- "id": 34959,
+ "id": 17670,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -705899,7 +706805,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34960,
+ "id": 17671,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -705913,7 +706819,7 @@
],
"signatures": [
{
- "id": 34961,
+ "id": 17672,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -705941,7 +706847,7 @@
],
"typeParameters": [
{
- "id": 34962,
+ "id": 17673,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -705952,7 +706858,7 @@
}
},
{
- "id": 34963,
+ "id": 17674,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -705965,7 +706871,7 @@
],
"parameters": [
{
- "id": 34964,
+ "id": 17675,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -705998,7 +706904,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -706021,7 +706927,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -706054,7 +706960,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -706077,7 +706983,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -706097,7 +707003,7 @@
}
},
{
- "id": 34965,
+ "id": 17676,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -706120,7 +707026,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34966,
+ "id": 17677,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -706134,7 +707040,7 @@
],
"signatures": [
{
- "id": 34967,
+ "id": 17678,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -706156,7 +707062,7 @@
}
},
{
- "id": 34968,
+ "id": 17679,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -706179,7 +707085,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34969,
+ "id": 17680,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -706193,7 +707099,7 @@
],
"signatures": [
{
- "id": 34970,
+ "id": 17681,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -706207,7 +707113,7 @@
],
"parameters": [
{
- "id": 34971,
+ "id": 17682,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -706233,7 +707139,7 @@
}
},
{
- "id": 34972,
+ "id": 17683,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -706256,7 +707162,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34973,
+ "id": 17684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -706267,7 +707173,7 @@
],
"documents": [
{
- "id": 43010,
+ "id": 25951,
"name": "updateOrderChangesStep",
"variant": "document",
"kind": 8388608,
@@ -706294,21 +707200,21 @@
}
],
"childrenIncludingDocuments": [
- 34947,
- 34959,
- 34965,
- 34968,
- 34972
+ 17658,
+ 17670,
+ 17676,
+ 17679,
+ 17683
],
"groups": [
{
"title": "Properties",
"children": [
- 34947,
- 34959,
- 34965,
- 34968,
- 34972
+ 17658,
+ 17670,
+ 17676,
+ 17679,
+ 17683
]
}
],
@@ -706317,12 +707223,12 @@
"fileName": "core-flows/src/order/workflows/update-order-changes.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-changes.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-changes.ts#L23"
}
],
"signatures": [
{
- "id": 34940,
+ "id": 17651,
"name": "updateOrderChangesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -706360,12 +707266,12 @@
"fileName": "core-flows/src/order/workflows/update-order-changes.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-order-changes.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-order-changes.ts#L23"
}
],
"typeParameters": [
{
- "id": 34941,
+ "id": 17652,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -706376,7 +707282,7 @@
}
},
{
- "id": 34942,
+ "id": 17653,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -706389,7 +707295,7 @@
],
"parameters": [
{
- "id": 34943,
+ "id": 17654,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -706413,14 +707319,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34944,
+ "id": 17655,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34945,
+ "id": 17656,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -706443,7 +707349,7 @@
}
},
{
- "id": 34946,
+ "id": 17657,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -706470,8 +707376,8 @@
{
"title": "Properties",
"children": [
- 34945,
- 34946
+ 17656,
+ 17657
]
}
],
@@ -706570,14 +707476,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -706592,7 +707498,7 @@
]
},
{
- "id": 34976,
+ "id": 17687,
"name": "order_id",
"variant": "declaration",
"kind": 1024,
@@ -706610,7 +707516,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L134"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L134"
}
],
"type": {
@@ -706619,7 +707525,7 @@
}
},
{
- "id": 34977,
+ "id": 17688,
"name": "item_ids",
"variant": "declaration",
"kind": 1024,
@@ -706639,7 +707545,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L138"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L138"
}
],
"type": {
@@ -706651,7 +707557,7 @@
}
},
{
- "id": 34978,
+ "id": 17689,
"name": "shipping_method_ids",
"variant": "declaration",
"kind": 1024,
@@ -706671,7 +707577,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L142"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L142"
}
],
"type": {
@@ -706683,7 +707589,7 @@
}
},
{
- "id": 34979,
+ "id": 17690,
"name": "force_tax_calculation",
"variant": "declaration",
"kind": 1024,
@@ -706703,7 +707609,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L148"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L148"
}
],
"type": {
@@ -706712,7 +707618,7 @@
}
},
{
- "id": 34980,
+ "id": 17691,
"name": "is_return",
"variant": "declaration",
"kind": 1024,
@@ -706732,7 +707638,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 152,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L152"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L152"
}
],
"type": {
@@ -706741,7 +707647,7 @@
}
},
{
- "id": 34981,
+ "id": 17692,
"name": "shipping_address",
"variant": "declaration",
"kind": 1024,
@@ -706761,7 +707667,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 156,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L156"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L156"
}
],
"type": {
@@ -706782,7 +707688,7 @@
}
},
{
- "id": 34982,
+ "id": 17693,
"name": "updateOrderTaxLinesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -706794,7 +707700,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 159,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L159"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L159"
}
],
"type": {
@@ -706804,7 +707710,7 @@
"defaultValue": "\"update-order-tax-lines\""
},
{
- "id": 34983,
+ "id": 17694,
"name": "updateOrderTaxLinesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -706857,7 +707763,7 @@
},
"children": [
{
- "id": 34994,
+ "id": 17705,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -706880,7 +707786,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34995,
+ "id": 17706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -706894,7 +707800,7 @@
],
"signatures": [
{
- "id": 34996,
+ "id": 17707,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -706922,7 +707828,7 @@
],
"parameters": [
{
- "id": 34997,
+ "id": 17708,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -706938,14 +707844,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 34998,
+ "id": 17709,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34999,
+ "id": 17710,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -706970,7 +707876,7 @@
"types": [
{
"type": "reference",
- "target": 34974,
+ "target": 17685,
"name": "UpdateOrderTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -706983,7 +707889,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 34974,
+ "target": 17685,
"name": "UpdateOrderTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -706999,7 +707905,7 @@
{
"title": "Properties",
"children": [
- 34999
+ 17710
]
}
],
@@ -707020,14 +707926,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35000,
+ "id": 17711,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35001,
+ "id": 17712,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707037,7 +707943,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -707067,7 +707973,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35002,
+ "id": 17713,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707077,7 +707983,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -707111,8 +708017,8 @@
{
"title": "Properties",
"children": [
- 35001,
- 35002
+ 17712,
+ 17713
]
}
],
@@ -707128,14 +708034,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35003,
+ "id": 17714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35004,
+ "id": 17715,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707145,7 +708051,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -707208,7 +708114,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35005,
+ "id": 17716,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707218,7 +708124,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -707285,8 +708191,8 @@
{
"title": "Properties",
"children": [
- 35004,
- 35005
+ 17715,
+ 17716
]
}
],
@@ -707295,7 +708201,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
}
@@ -707310,14 +708216,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35006,
+ "id": 17717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35007,
+ "id": 17718,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707327,7 +708233,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -707390,7 +708296,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35008,
+ "id": 17719,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707400,7 +708306,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -707467,8 +708373,8 @@
{
"title": "Properties",
"children": [
- 35007,
- 35008
+ 17718,
+ 17719
]
}
],
@@ -707477,7 +708383,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
}
@@ -707489,14 +708395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35009,
+ "id": 17720,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35010,
+ "id": 17721,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -707510,7 +708416,7 @@
],
"signatures": [
{
- "id": 35011,
+ "id": 17722,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -707524,7 +708430,7 @@
],
"parameters": [
{
- "id": 35012,
+ "id": 17723,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -707535,14 +708441,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35013,
+ "id": 17724,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35014,
+ "id": 17725,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -707566,7 +708472,7 @@
{
"title": "Properties",
"children": [
- 35014
+ 17725
]
}
],
@@ -707630,14 +708536,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35015,
+ "id": 17726,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35016,
+ "id": 17727,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707647,7 +708553,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -707710,7 +708616,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35017,
+ "id": 17728,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707720,7 +708626,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -707787,8 +708693,8 @@
{
"title": "Properties",
"children": [
- 35016,
- 35017
+ 17727,
+ 17728
]
}
],
@@ -707797,7 +708703,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
}
@@ -707814,7 +708720,7 @@
{
"title": "Methods",
"children": [
- 35010
+ 17721
]
}
],
@@ -707837,14 +708743,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35018,
+ "id": 17729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35019,
+ "id": 17730,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707854,7 +708760,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -707917,7 +708823,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35020,
+ "id": 17731,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -707927,7 +708833,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -707994,8 +708900,8 @@
{
"title": "Properties",
"children": [
- 35019,
- 35020
+ 17730,
+ 17731
]
}
],
@@ -708004,7 +708910,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
}
@@ -708021,7 +708927,7 @@
}
},
{
- "id": 35021,
+ "id": 17732,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -708044,7 +708950,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35022,
+ "id": 17733,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -708058,7 +708964,7 @@
],
"signatures": [
{
- "id": 35023,
+ "id": 17734,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -708086,7 +708992,7 @@
],
"typeParameters": [
{
- "id": 35024,
+ "id": 17735,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -708097,7 +709003,7 @@
}
},
{
- "id": 35025,
+ "id": 17736,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -708110,7 +709016,7 @@
],
"parameters": [
{
- "id": 35026,
+ "id": 17737,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -708143,7 +709049,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -708154,13 +709060,13 @@
},
"trueType": {
"type": "reference",
- "target": 34974,
+ "target": 17685,
"name": "UpdateOrderTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -708193,7 +709099,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -708205,14 +709111,14 @@
"trueType": {
"type": "reflection",
"declaration": {
- "id": 35027,
+ "id": 17738,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35028,
+ "id": 17739,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -708222,7 +709128,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -708285,7 +709191,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35029,
+ "id": 17740,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -708295,7 +709201,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -708362,8 +709268,8 @@
{
"title": "Properties",
"children": [
- 35028,
- 35029
+ 17739,
+ 17740
]
}
],
@@ -708372,14 +709278,14 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
}
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -708399,7 +709305,7 @@
}
},
{
- "id": 35030,
+ "id": 17741,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -708422,7 +709328,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35031,
+ "id": 17742,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -708436,7 +709342,7 @@
],
"signatures": [
{
- "id": 35032,
+ "id": 17743,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -708458,7 +709364,7 @@
}
},
{
- "id": 35033,
+ "id": 17744,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -708481,7 +709387,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35034,
+ "id": 17745,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -708495,7 +709401,7 @@
],
"signatures": [
{
- "id": 35035,
+ "id": 17746,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -708509,7 +709415,7 @@
],
"parameters": [
{
- "id": 35036,
+ "id": 17747,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -708535,7 +709441,7 @@
}
},
{
- "id": 35037,
+ "id": 17748,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -708558,7 +709464,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35038,
+ "id": 17749,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -708569,7 +709475,7 @@
],
"documents": [
{
- "id": 43013,
+ "id": 25954,
"name": "getItemTaxLinesStep",
"variant": "document",
"kind": 8388608,
@@ -708595,7 +709501,7 @@
"frontmatter": {}
},
{
- "id": 43014,
+ "id": 25955,
"name": "setOrderTaxLinesForItemsStep",
"variant": "document",
"kind": 8388608,
@@ -708622,21 +709528,21 @@
}
],
"childrenIncludingDocuments": [
- 34994,
- 35021,
- 35030,
- 35033,
- 35037
+ 17705,
+ 17732,
+ 17741,
+ 17744,
+ 17748
],
"groups": [
{
"title": "Properties",
"children": [
- 34994,
- 35021,
- 35030,
- 35033,
- 35037
+ 17705,
+ 17732,
+ 17741,
+ 17744,
+ 17748
]
}
],
@@ -708645,12 +709551,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 181,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L181"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L181"
}
],
"signatures": [
{
- "id": 34984,
+ "id": 17695,
"name": "updateOrderTaxLinesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -708706,12 +709612,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 181,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L181"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L181"
}
],
"typeParameters": [
{
- "id": 34985,
+ "id": 17696,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -708722,7 +709628,7 @@
}
},
{
- "id": 34986,
+ "id": 17697,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -708735,7 +709641,7 @@
],
"parameters": [
{
- "id": 34987,
+ "id": 17698,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -708759,14 +709665,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 34988,
+ "id": 17699,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34989,
+ "id": 17700,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -708789,7 +709695,7 @@
}
},
{
- "id": 34990,
+ "id": 17701,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -708816,8 +709722,8 @@
{
"title": "Properties",
"children": [
- 34989,
- 34990
+ 17700,
+ 17701
]
}
],
@@ -708892,21 +709798,21 @@
"typeArguments": [
{
"type": "reference",
- "target": 34974,
+ "target": 17685,
"name": "UpdateOrderTaxLinesWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reflection",
"declaration": {
- "id": 34991,
+ "id": 17702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34992,
+ "id": 17703,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -708916,7 +709822,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -708979,7 +709885,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 34993,
+ "id": 17704,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -708989,7 +709895,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -709056,8 +709962,8 @@
{
"title": "Properties",
"children": [
- 34992,
- 34993
+ 17703,
+ 17704
]
}
],
@@ -709066,21 +709972,21 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
}
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -709095,14 +710001,14 @@
]
},
{
- "id": 34991,
+ "id": 17702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 34992,
+ "id": 17703,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709112,7 +710018,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -709175,7 +710081,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 34993,
+ "id": 17704,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709185,7 +710091,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -709252,8 +710158,8 @@
{
"title": "Properties",
"children": [
- 34992,
- 34993
+ 17703,
+ 17704
]
}
],
@@ -709262,12 +710168,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
},
{
- "id": 34992,
+ "id": 17703,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709277,7 +710183,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -709340,7 +710246,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 34993,
+ "id": 17704,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709350,7 +710256,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -709413,14 +710319,14 @@
"defaultValue": "taxLineItems.shippingMethodsTaxLines"
},
{
- "id": 35003,
+ "id": 17714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35004,
+ "id": 17715,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709430,7 +710336,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -709493,7 +710399,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35005,
+ "id": 17716,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709503,7 +710409,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -709570,8 +710476,8 @@
{
"title": "Properties",
"children": [
- 35004,
- 35005
+ 17715,
+ 17716
]
}
],
@@ -709580,12 +710486,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
},
{
- "id": 35004,
+ "id": 17715,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709595,7 +710501,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -709658,7 +710564,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35005,
+ "id": 17716,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709668,7 +710574,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -709731,14 +710637,14 @@
"defaultValue": "taxLineItems.shippingMethodsTaxLines"
},
{
- "id": 35006,
+ "id": 17717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35007,
+ "id": 17718,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709748,7 +710654,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -709811,7 +710717,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35008,
+ "id": 17719,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709821,7 +710727,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -709888,8 +710794,8 @@
{
"title": "Properties",
"children": [
- 35007,
- 35008
+ 17718,
+ 17719
]
}
],
@@ -709898,12 +710804,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
},
{
- "id": 35007,
+ "id": 17718,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709913,7 +710819,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -709976,7 +710882,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35008,
+ "id": 17719,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -709986,7 +710892,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -710049,14 +710955,14 @@
"defaultValue": "taxLineItems.shippingMethodsTaxLines"
},
{
- "id": 35015,
+ "id": 17726,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35016,
+ "id": 17727,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710066,7 +710972,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -710129,7 +711035,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35017,
+ "id": 17728,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710139,7 +711045,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -710206,8 +711112,8 @@
{
"title": "Properties",
"children": [
- 35016,
- 35017
+ 17727,
+ 17728
]
}
],
@@ -710216,12 +711122,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
},
{
- "id": 35016,
+ "id": 17727,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710231,7 +711137,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -710294,7 +711200,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35017,
+ "id": 17728,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710304,7 +711210,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -710367,14 +711273,14 @@
"defaultValue": "taxLineItems.shippingMethodsTaxLines"
},
{
- "id": 35018,
+ "id": 17729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35019,
+ "id": 17730,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710384,7 +711290,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -710447,7 +711353,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35020,
+ "id": 17731,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710457,7 +711363,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -710524,8 +711430,8 @@
{
"title": "Properties",
"children": [
- 35019,
- 35020
+ 17730,
+ 17731
]
}
],
@@ -710534,12 +711440,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
},
{
- "id": 35019,
+ "id": 17730,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710549,7 +711455,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -710612,7 +711518,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35020,
+ "id": 17731,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710622,7 +711528,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -710685,14 +711591,14 @@
"defaultValue": "taxLineItems.shippingMethodsTaxLines"
},
{
- "id": 35027,
+ "id": 17738,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35028,
+ "id": 17739,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710702,7 +711608,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -710765,7 +711671,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35029,
+ "id": 17740,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710775,7 +711681,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -710842,8 +711748,8 @@
{
"title": "Properties",
"children": [
- 35028,
- 35029
+ 17739,
+ 17740
]
}
],
@@ -710852,12 +711758,12 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 257,
"character": 32,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L257"
}
]
},
{
- "id": 35028,
+ "id": 17739,
"name": "itemTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710867,7 +711773,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L258"
}
],
"type": {
@@ -710930,7 +711836,7 @@
"defaultValue": "taxLineItems.lineItemTaxLines"
},
{
- "id": 35029,
+ "id": 17740,
"name": "shippingTaxLines",
"variant": "declaration",
"kind": 1024,
@@ -710940,7 +711846,7 @@
"fileName": "core-flows/src/order/workflows/update-tax-lines.ts",
"line": 259,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/order/workflows/update-tax-lines.ts#L259"
}
],
"type": {
@@ -711007,21 +711913,21 @@
]
},
{
- "id": 17342,
+ "id": 47,
"name": "Payment",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17343,
+ "id": 48,
"name": "Steps_Payment",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 35041,
+ "id": 17752,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -711039,7 +711945,7 @@
"fileName": "core-flows/src/payment/steps/authorize-payment-session.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L21"
}
],
"type": {
@@ -711048,7 +711954,7 @@
}
},
{
- "id": 35042,
+ "id": 17753,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -711068,7 +711974,7 @@
"fileName": "core-flows/src/payment/steps/authorize-payment-session.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L26"
}
],
"type": {
@@ -711092,7 +711998,7 @@
}
},
{
- "id": 35043,
+ "id": 17754,
"name": "authorizePaymentSessionStepId",
"variant": "declaration",
"kind": 32,
@@ -711104,7 +712010,7 @@
"fileName": "core-flows/src/payment/steps/authorize-payment-session.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L29"
}
],
"type": {
@@ -711114,7 +712020,7 @@
"defaultValue": "\"authorize-payment-session-step\""
},
{
- "id": 35044,
+ "id": 17755,
"name": "authorizePaymentSessionStep",
"variant": "declaration",
"kind": 64,
@@ -711158,7 +712064,7 @@
},
"children": [
{
- "id": 35075,
+ "id": 17786,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -711176,7 +712082,7 @@
}
},
{
- "id": 35076,
+ "id": 17787,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -711198,8 +712104,8 @@
{
"title": "Properties",
"children": [
- 35075,
- 35076
+ 17786,
+ 17787
]
}
],
@@ -711208,12 +712114,12 @@
"fileName": "core-flows/src/payment/steps/authorize-payment-session.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L39"
}
],
"signatures": [
{
- "id": 35045,
+ "id": 17756,
"name": "authorizePaymentSessionStep",
"variant": "signature",
"kind": 4096,
@@ -711260,12 +712166,12 @@
"fileName": "core-flows/src/payment/steps/authorize-payment-session.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/authorize-payment-session.ts#L39"
}
],
"parameters": [
{
- "id": 35046,
+ "id": 17757,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -711275,7 +712181,7 @@
"types": [
{
"type": "reference",
- "target": 35039,
+ "target": 17750,
"name": "AuthorizePaymentSessionStepInput",
"package": "@medusajs/core-flows"
},
@@ -711288,7 +712194,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35039,
+ "target": 17750,
"name": "AuthorizePaymentSessionStepInput",
"package": "@medusajs/core-flows"
}
@@ -711306,14 +712212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35047,
+ "id": 17758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35048,
+ "id": 17759,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -711359,7 +712265,7 @@
}
},
{
- "id": 35049,
+ "id": 17760,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -711415,7 +712321,7 @@
}
},
{
- "id": 35050,
+ "id": 17761,
"name": "raw_amount",
"variant": "declaration",
"kind": 1024,
@@ -711468,7 +712374,7 @@
}
},
{
- "id": 35051,
+ "id": 17762,
"name": "authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -711521,7 +712427,7 @@
}
},
{
- "id": 35052,
+ "id": 17763,
"name": "raw_authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -711574,7 +712480,7 @@
}
},
{
- "id": 35053,
+ "id": 17764,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -711620,7 +712526,7 @@
}
},
{
- "id": 35054,
+ "id": 17765,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -711666,7 +712572,7 @@
}
},
{
- "id": 35055,
+ "id": 17766,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -711753,7 +712659,7 @@
}
},
{
- "id": 35056,
+ "id": 17767,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -711828,7 +712734,7 @@
}
},
{
- "id": 35057,
+ "id": 17768,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -711903,7 +712809,7 @@
}
},
{
- "id": 35058,
+ "id": 17769,
"name": "captured_at",
"variant": "declaration",
"kind": 1024,
@@ -711978,7 +712884,7 @@
}
},
{
- "id": 35059,
+ "id": 17770,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -712053,7 +712959,7 @@
}
},
{
- "id": 35060,
+ "id": 17771,
"name": "captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -712106,7 +713012,7 @@
}
},
{
- "id": 35061,
+ "id": 17772,
"name": "raw_captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -712159,7 +713065,7 @@
}
},
{
- "id": 35062,
+ "id": 17773,
"name": "refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -712212,7 +713118,7 @@
}
},
{
- "id": 35063,
+ "id": 17774,
"name": "raw_refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -712265,7 +713171,7 @@
}
},
{
- "id": 35064,
+ "id": 17775,
"name": "captures",
"variant": "declaration",
"kind": 1024,
@@ -712341,7 +713247,7 @@
}
},
{
- "id": 35065,
+ "id": 17776,
"name": "refunds",
"variant": "declaration",
"kind": 1024,
@@ -712417,7 +713323,7 @@
}
},
{
- "id": 35066,
+ "id": 17777,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -712463,7 +713369,7 @@
}
},
{
- "id": 35067,
+ "id": 17778,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -712533,7 +713439,7 @@
}
},
{
- "id": 35068,
+ "id": 17779,
"name": "payment_session",
"variant": "declaration",
"kind": 1024,
@@ -712607,27 +713513,27 @@
{
"title": "Properties",
"children": [
- 35048,
- 35049,
- 35050,
- 35051,
- 35052,
- 35053,
- 35054,
- 35055,
- 35056,
- 35057,
- 35058,
- 35059,
- 35060,
- 35061,
- 35062,
- 35063,
- 35064,
- 35065,
- 35066,
- 35067,
- 35068
+ 17759,
+ 17760,
+ 17761,
+ 17762,
+ 17763,
+ 17764,
+ 17765,
+ 17766,
+ 17767,
+ 17768,
+ 17769,
+ 17770,
+ 17771,
+ 17772,
+ 17773,
+ 17774,
+ 17775,
+ 17776,
+ 17777,
+ 17778,
+ 17779
]
}
],
@@ -712681,14 +713587,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35069,
+ "id": 17780,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35070,
+ "id": 17781,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -712702,7 +713608,7 @@
],
"signatures": [
{
- "id": 35071,
+ "id": 17782,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -712716,7 +713622,7 @@
],
"parameters": [
{
- "id": 35072,
+ "id": 17783,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -712727,14 +713633,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35073,
+ "id": 17784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35074,
+ "id": 17785,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -712758,7 +713664,7 @@
{
"title": "Properties",
"children": [
- 35074
+ 17785
]
}
],
@@ -712849,7 +713755,7 @@
{
"title": "Methods",
"children": [
- 35070
+ 17781
]
}
],
@@ -712897,7 +713803,7 @@
]
},
{
- "id": 35079,
+ "id": 17790,
"name": "paymentIds",
"variant": "declaration",
"kind": 1024,
@@ -712915,7 +713821,7 @@
"fileName": "core-flows/src/payment/steps/cancel-payment.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L16"
}
],
"type": {
@@ -712936,7 +713842,7 @@
}
},
{
- "id": 35080,
+ "id": 17791,
"name": "cancelPaymentStepId",
"variant": "declaration",
"kind": 32,
@@ -712948,7 +713854,7 @@
"fileName": "core-flows/src/payment/steps/cancel-payment.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L19"
}
],
"type": {
@@ -712958,7 +713864,7 @@
"defaultValue": "\"cancel-payment-step\""
},
{
- "id": 35081,
+ "id": 17792,
"name": "cancelPaymentStep",
"variant": "declaration",
"kind": 64,
@@ -712984,7 +713890,7 @@
},
"children": [
{
- "id": 35090,
+ "id": 17801,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -713002,7 +713908,7 @@
}
},
{
- "id": 35091,
+ "id": 17802,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -713024,8 +713930,8 @@
{
"title": "Properties",
"children": [
- 35090,
- 35091
+ 17801,
+ 17802
]
}
],
@@ -713034,12 +713940,12 @@
"fileName": "core-flows/src/payment/steps/cancel-payment.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L23"
}
],
"signatures": [
{
- "id": 35082,
+ "id": 17793,
"name": "cancelPaymentStep",
"variant": "signature",
"kind": 4096,
@@ -713068,12 +713974,12 @@
"fileName": "core-flows/src/payment/steps/cancel-payment.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/cancel-payment.ts#L23"
}
],
"parameters": [
{
- "id": 35083,
+ "id": 17794,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -713083,7 +713989,7 @@
"types": [
{
"type": "reference",
- "target": 35077,
+ "target": 17788,
"name": "CancelPaymentStepInput",
"package": "@medusajs/core-flows"
},
@@ -713096,7 +714002,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35077,
+ "target": 17788,
"name": "CancelPaymentStepInput",
"package": "@medusajs/core-flows"
}
@@ -713129,14 +714035,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35084,
+ "id": 17795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35085,
+ "id": 17796,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -713150,7 +714056,7 @@
],
"signatures": [
{
- "id": 35086,
+ "id": 17797,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -713164,7 +714070,7 @@
],
"parameters": [
{
- "id": 35087,
+ "id": 17798,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -713175,14 +714081,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35088,
+ "id": 17799,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35089,
+ "id": 17800,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -713206,7 +714112,7 @@
{
"title": "Properties",
"children": [
- 35089
+ 17800
]
}
],
@@ -713283,7 +714189,7 @@
{
"title": "Methods",
"children": [
- 35085
+ 17796
]
}
],
@@ -713317,7 +714223,7 @@
]
},
{
- "id": 35094,
+ "id": 17805,
"name": "payment_id",
"variant": "declaration",
"kind": 1024,
@@ -713335,7 +714241,7 @@
"fileName": "core-flows/src/payment/steps/capture-payment.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/capture-payment.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/capture-payment.ts#L15"
}
],
"type": {
@@ -713344,7 +714250,7 @@
}
},
{
- "id": 35095,
+ "id": 17806,
"name": "captured_by",
"variant": "declaration",
"kind": 1024,
@@ -713364,7 +714270,7 @@
"fileName": "core-flows/src/payment/steps/capture-payment.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/capture-payment.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/capture-payment.ts#L19"
}
],
"type": {
@@ -713373,7 +714279,7 @@
}
},
{
- "id": 35096,
+ "id": 17807,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -713393,7 +714299,7 @@
"fileName": "core-flows/src/payment/steps/capture-payment.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/capture-payment.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/capture-payment.ts#L23"
}
],
"type": {
@@ -713407,7 +714313,7 @@
}
},
{
- "id": 35097,
+ "id": 17808,
"name": "capturePaymentStepId",
"variant": "declaration",
"kind": 32,
@@ -713419,7 +714325,7 @@
"fileName": "core-flows/src/payment/steps/capture-payment.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/capture-payment.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/capture-payment.ts#L26"
}
],
"type": {
@@ -713429,7 +714335,7 @@
"defaultValue": "\"capture-payment-step\""
},
{
- "id": 35098,
+ "id": 17809,
"name": "capturePaymentStep",
"variant": "declaration",
"kind": 64,
@@ -713455,7 +714361,7 @@
},
"children": [
{
- "id": 35129,
+ "id": 17840,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -713473,7 +714379,7 @@
}
},
{
- "id": 35130,
+ "id": 17841,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -713495,8 +714401,8 @@
{
"title": "Properties",
"children": [
- 35129,
- 35130
+ 17840,
+ 17841
]
}
],
@@ -713505,12 +714411,12 @@
"fileName": "core-flows/src/payment/steps/capture-payment.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/capture-payment.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/capture-payment.ts#L30"
}
],
"signatures": [
{
- "id": 35099,
+ "id": 17810,
"name": "capturePaymentStep",
"variant": "signature",
"kind": 4096,
@@ -713539,12 +714445,12 @@
"fileName": "core-flows/src/payment/steps/capture-payment.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/capture-payment.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/capture-payment.ts#L30"
}
],
"parameters": [
{
- "id": 35100,
+ "id": 17811,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -713554,7 +714460,7 @@
"types": [
{
"type": "reference",
- "target": 35092,
+ "target": 17803,
"name": "CapturePaymentStepInput",
"package": "@medusajs/core-flows"
},
@@ -713567,7 +714473,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35092,
+ "target": 17803,
"name": "CapturePaymentStepInput",
"package": "@medusajs/core-flows"
}
@@ -713585,14 +714491,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35101,
+ "id": 17812,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35102,
+ "id": 17813,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -713638,7 +714544,7 @@
}
},
{
- "id": 35103,
+ "id": 17814,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -713694,7 +714600,7 @@
}
},
{
- "id": 35104,
+ "id": 17815,
"name": "raw_amount",
"variant": "declaration",
"kind": 1024,
@@ -713747,7 +714653,7 @@
}
},
{
- "id": 35105,
+ "id": 17816,
"name": "authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -713800,7 +714706,7 @@
}
},
{
- "id": 35106,
+ "id": 17817,
"name": "raw_authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -713853,7 +714759,7 @@
}
},
{
- "id": 35107,
+ "id": 17818,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -713899,7 +714805,7 @@
}
},
{
- "id": 35108,
+ "id": 17819,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -713945,7 +714851,7 @@
}
},
{
- "id": 35109,
+ "id": 17820,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -714032,7 +714938,7 @@
}
},
{
- "id": 35110,
+ "id": 17821,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -714107,7 +715013,7 @@
}
},
{
- "id": 35111,
+ "id": 17822,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -714182,7 +715088,7 @@
}
},
{
- "id": 35112,
+ "id": 17823,
"name": "captured_at",
"variant": "declaration",
"kind": 1024,
@@ -714257,7 +715163,7 @@
}
},
{
- "id": 35113,
+ "id": 17824,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -714332,7 +715238,7 @@
}
},
{
- "id": 35114,
+ "id": 17825,
"name": "captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -714385,7 +715291,7 @@
}
},
{
- "id": 35115,
+ "id": 17826,
"name": "raw_captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -714438,7 +715344,7 @@
}
},
{
- "id": 35116,
+ "id": 17827,
"name": "refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -714491,7 +715397,7 @@
}
},
{
- "id": 35117,
+ "id": 17828,
"name": "raw_refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -714544,7 +715450,7 @@
}
},
{
- "id": 35118,
+ "id": 17829,
"name": "captures",
"variant": "declaration",
"kind": 1024,
@@ -714620,7 +715526,7 @@
}
},
{
- "id": 35119,
+ "id": 17830,
"name": "refunds",
"variant": "declaration",
"kind": 1024,
@@ -714696,7 +715602,7 @@
}
},
{
- "id": 35120,
+ "id": 17831,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -714742,7 +715648,7 @@
}
},
{
- "id": 35121,
+ "id": 17832,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -714812,7 +715718,7 @@
}
},
{
- "id": 35122,
+ "id": 17833,
"name": "payment_session",
"variant": "declaration",
"kind": 1024,
@@ -714886,27 +715792,27 @@
{
"title": "Properties",
"children": [
- 35102,
- 35103,
- 35104,
- 35105,
- 35106,
- 35107,
- 35108,
- 35109,
- 35110,
- 35111,
- 35112,
- 35113,
- 35114,
- 35115,
- 35116,
- 35117,
- 35118,
- 35119,
- 35120,
- 35121,
- 35122
+ 17813,
+ 17814,
+ 17815,
+ 17816,
+ 17817,
+ 17818,
+ 17819,
+ 17820,
+ 17821,
+ 17822,
+ 17823,
+ 17824,
+ 17825,
+ 17826,
+ 17827,
+ 17828,
+ 17829,
+ 17830,
+ 17831,
+ 17832,
+ 17833
]
}
],
@@ -714951,14 +715857,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35123,
+ "id": 17834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35124,
+ "id": 17835,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -714972,7 +715878,7 @@
],
"signatures": [
{
- "id": 35125,
+ "id": 17836,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -714986,7 +715892,7 @@
],
"parameters": [
{
- "id": 35126,
+ "id": 17837,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -714997,14 +715903,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35127,
+ "id": 17838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35128,
+ "id": 17839,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -715028,7 +715934,7 @@
{
"title": "Properties",
"children": [
- 35128
+ 17839
]
}
],
@@ -715110,7 +716016,7 @@
{
"title": "Methods",
"children": [
- 35124
+ 17835
]
}
],
@@ -715149,7 +716055,7 @@
]
},
{
- "id": 35133,
+ "id": 17844,
"name": "payment_id",
"variant": "declaration",
"kind": 1024,
@@ -715167,7 +716073,7 @@
"fileName": "core-flows/src/payment/steps/refund-payment.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payment.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payment.ts#L15"
}
],
"type": {
@@ -715176,7 +716082,7 @@
}
},
{
- "id": 35134,
+ "id": 17845,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -715196,7 +716102,7 @@
"fileName": "core-flows/src/payment/steps/refund-payment.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payment.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payment.ts#L19"
}
],
"type": {
@@ -715205,7 +716111,7 @@
}
},
{
- "id": 35135,
+ "id": 17846,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -715225,7 +716131,7 @@
"fileName": "core-flows/src/payment/steps/refund-payment.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payment.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payment.ts#L23"
}
],
"type": {
@@ -715239,7 +716145,7 @@
}
},
{
- "id": 35136,
+ "id": 17847,
"name": "refundPaymentStepId",
"variant": "declaration",
"kind": 32,
@@ -715251,7 +716157,7 @@
"fileName": "core-flows/src/payment/steps/refund-payment.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payment.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payment.ts#L26"
}
],
"type": {
@@ -715261,7 +716167,7 @@
"defaultValue": "\"refund-payment-step\""
},
{
- "id": 35137,
+ "id": 17848,
"name": "refundPaymentStep",
"variant": "declaration",
"kind": 64,
@@ -715287,7 +716193,7 @@
},
"children": [
{
- "id": 35168,
+ "id": 17879,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -715305,7 +716211,7 @@
}
},
{
- "id": 35169,
+ "id": 17880,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -715327,8 +716233,8 @@
{
"title": "Properties",
"children": [
- 35168,
- 35169
+ 17879,
+ 17880
]
}
],
@@ -715337,12 +716243,12 @@
"fileName": "core-flows/src/payment/steps/refund-payment.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payment.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payment.ts#L30"
}
],
"signatures": [
{
- "id": 35138,
+ "id": 17849,
"name": "refundPaymentStep",
"variant": "signature",
"kind": 4096,
@@ -715371,12 +716277,12 @@
"fileName": "core-flows/src/payment/steps/refund-payment.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payment.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payment.ts#L30"
}
],
"parameters": [
{
- "id": 35139,
+ "id": 17850,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -715386,7 +716292,7 @@
"types": [
{
"type": "reference",
- "target": 35131,
+ "target": 17842,
"name": "RefundPaymentStepInput",
"package": "@medusajs/core-flows"
},
@@ -715399,7 +716305,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35131,
+ "target": 17842,
"name": "RefundPaymentStepInput",
"package": "@medusajs/core-flows"
}
@@ -715417,14 +716323,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35140,
+ "id": 17851,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35141,
+ "id": 17852,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -715470,7 +716376,7 @@
}
},
{
- "id": 35142,
+ "id": 17853,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -715526,7 +716432,7 @@
}
},
{
- "id": 35143,
+ "id": 17854,
"name": "raw_amount",
"variant": "declaration",
"kind": 1024,
@@ -715579,7 +716485,7 @@
}
},
{
- "id": 35144,
+ "id": 17855,
"name": "authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -715632,7 +716538,7 @@
}
},
{
- "id": 35145,
+ "id": 17856,
"name": "raw_authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -715685,7 +716591,7 @@
}
},
{
- "id": 35146,
+ "id": 17857,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -715731,7 +716637,7 @@
}
},
{
- "id": 35147,
+ "id": 17858,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -715777,7 +716683,7 @@
}
},
{
- "id": 35148,
+ "id": 17859,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -715864,7 +716770,7 @@
}
},
{
- "id": 35149,
+ "id": 17860,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -715939,7 +716845,7 @@
}
},
{
- "id": 35150,
+ "id": 17861,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -716014,7 +716920,7 @@
}
},
{
- "id": 35151,
+ "id": 17862,
"name": "captured_at",
"variant": "declaration",
"kind": 1024,
@@ -716089,7 +716995,7 @@
}
},
{
- "id": 35152,
+ "id": 17863,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -716164,7 +717070,7 @@
}
},
{
- "id": 35153,
+ "id": 17864,
"name": "captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -716217,7 +717123,7 @@
}
},
{
- "id": 35154,
+ "id": 17865,
"name": "raw_captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -716270,7 +717176,7 @@
}
},
{
- "id": 35155,
+ "id": 17866,
"name": "refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -716323,7 +717229,7 @@
}
},
{
- "id": 35156,
+ "id": 17867,
"name": "raw_refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -716376,7 +717282,7 @@
}
},
{
- "id": 35157,
+ "id": 17868,
"name": "captures",
"variant": "declaration",
"kind": 1024,
@@ -716452,7 +717358,7 @@
}
},
{
- "id": 35158,
+ "id": 17869,
"name": "refunds",
"variant": "declaration",
"kind": 1024,
@@ -716528,7 +717434,7 @@
}
},
{
- "id": 35159,
+ "id": 17870,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -716574,7 +717480,7 @@
}
},
{
- "id": 35160,
+ "id": 17871,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -716644,7 +717550,7 @@
}
},
{
- "id": 35161,
+ "id": 17872,
"name": "payment_session",
"variant": "declaration",
"kind": 1024,
@@ -716718,27 +717624,27 @@
{
"title": "Properties",
"children": [
- 35141,
- 35142,
- 35143,
- 35144,
- 35145,
- 35146,
- 35147,
- 35148,
- 35149,
- 35150,
- 35151,
- 35152,
- 35153,
- 35154,
- 35155,
- 35156,
- 35157,
- 35158,
- 35159,
- 35160,
- 35161
+ 17852,
+ 17853,
+ 17854,
+ 17855,
+ 17856,
+ 17857,
+ 17858,
+ 17859,
+ 17860,
+ 17861,
+ 17862,
+ 17863,
+ 17864,
+ 17865,
+ 17866,
+ 17867,
+ 17868,
+ 17869,
+ 17870,
+ 17871,
+ 17872
]
}
],
@@ -716783,14 +717689,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35162,
+ "id": 17873,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35163,
+ "id": 17874,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -716804,7 +717710,7 @@
],
"signatures": [
{
- "id": 35164,
+ "id": 17875,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -716818,7 +717724,7 @@
],
"parameters": [
{
- "id": 35165,
+ "id": 17876,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -716829,14 +717735,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35166,
+ "id": 17877,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35167,
+ "id": 17878,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -716860,7 +717766,7 @@
{
"title": "Properties",
"children": [
- 35167
+ 17878
]
}
],
@@ -716942,7 +717848,7 @@
{
"title": "Methods",
"children": [
- 35163
+ 17874
]
}
],
@@ -716981,7 +717887,7 @@
]
},
{
- "id": 35172,
+ "id": 17883,
"name": "payment_id",
"variant": "declaration",
"kind": 1024,
@@ -716999,7 +717905,7 @@
"fileName": "core-flows/src/payment/steps/refund-payments.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payments.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payments.ts#L22"
}
],
"type": {
@@ -717008,7 +717914,7 @@
}
},
{
- "id": 35173,
+ "id": 17884,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -717026,7 +717932,7 @@
"fileName": "core-flows/src/payment/steps/refund-payments.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payments.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payments.ts#L26"
}
],
"type": {
@@ -717040,7 +717946,7 @@
}
},
{
- "id": 35174,
+ "id": 17885,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -717060,7 +717966,7 @@
"fileName": "core-flows/src/payment/steps/refund-payments.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payments.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payments.ts#L30"
}
],
"type": {
@@ -717069,7 +717975,7 @@
}
},
{
- "id": 35175,
+ "id": 17886,
"name": "note",
"variant": "declaration",
"kind": 1024,
@@ -717089,7 +717995,7 @@
"fileName": "core-flows/src/payment/steps/refund-payments.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payments.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payments.ts#L34"
}
],
"type": {
@@ -717098,7 +718004,7 @@
}
},
{
- "id": 35176,
+ "id": 17887,
"name": "refundPaymentsStepId",
"variant": "declaration",
"kind": 32,
@@ -717110,7 +718016,7 @@
"fileName": "core-flows/src/payment/steps/refund-payments.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payments.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payments.ts#L37"
}
],
"type": {
@@ -717120,7 +718026,7 @@
"defaultValue": "\"refund-payments-step\""
},
{
- "id": 35177,
+ "id": 17888,
"name": "refundPaymentsStep",
"variant": "declaration",
"kind": 64,
@@ -717146,7 +718052,7 @@
},
"children": [
{
- "id": 35186,
+ "id": 17897,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -717164,7 +718070,7 @@
}
},
{
- "id": 35187,
+ "id": 17898,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -717186,8 +718092,8 @@
{
"title": "Properties",
"children": [
- 35186,
- 35187
+ 17897,
+ 17898
]
}
],
@@ -717196,12 +718102,12 @@
"fileName": "core-flows/src/payment/steps/refund-payments.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payments.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payments.ts#L41"
}
],
"signatures": [
{
- "id": 35178,
+ "id": 17889,
"name": "refundPaymentsStep",
"variant": "signature",
"kind": 4096,
@@ -717230,12 +718136,12 @@
"fileName": "core-flows/src/payment/steps/refund-payments.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/steps/refund-payments.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/steps/refund-payments.ts#L41"
}
],
"parameters": [
{
- "id": 35179,
+ "id": 17890,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -717245,7 +718151,7 @@
"types": [
{
"type": "reference",
- "target": 35170,
+ "target": 17881,
"name": "RefundPaymentsStepInput",
"package": "@medusajs/core-flows"
},
@@ -717258,7 +718164,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35170,
+ "target": 17881,
"name": "RefundPaymentsStepInput",
"package": "@medusajs/core-flows"
}
@@ -717348,14 +718254,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35180,
+ "id": 17891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35181,
+ "id": 17892,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -717369,7 +718275,7 @@
],
"signatures": [
{
- "id": 35182,
+ "id": 17893,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -717383,7 +718289,7 @@
],
"parameters": [
{
- "id": 35183,
+ "id": 17894,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -717394,14 +718300,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35184,
+ "id": 17895,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35185,
+ "id": 17896,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -717425,7 +718331,7 @@
{
"title": "Properties",
"children": [
- 35185
+ 17896
]
}
],
@@ -717510,7 +718416,7 @@
{
"title": "Methods",
"children": [
- 35181
+ 17892
]
}
],
@@ -717554,14 +718460,14 @@
]
},
{
- "id": 17344,
+ "id": 49,
"name": "Workflows_Payment",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 35190,
+ "id": 17901,
"name": "payment_id",
"variant": "declaration",
"kind": 1024,
@@ -717579,7 +718485,7 @@
"fileName": "core-flows/src/payment/workflows/capture-payment.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L21"
}
],
"type": {
@@ -717588,7 +718494,7 @@
}
},
{
- "id": 35191,
+ "id": 17902,
"name": "captured_by",
"variant": "declaration",
"kind": 1024,
@@ -717608,7 +718514,7 @@
"fileName": "core-flows/src/payment/workflows/capture-payment.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L25"
}
],
"type": {
@@ -717617,7 +718523,7 @@
}
},
{
- "id": 35192,
+ "id": 17903,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -717637,7 +718543,7 @@
"fileName": "core-flows/src/payment/workflows/capture-payment.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L29"
}
],
"type": {
@@ -717651,7 +718557,7 @@
}
},
{
- "id": 35193,
+ "id": 17904,
"name": "capturePaymentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -717663,7 +718569,7 @@
"fileName": "core-flows/src/payment/workflows/capture-payment.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L32"
}
],
"type": {
@@ -717673,7 +718579,7 @@
"defaultValue": "\"capture-payment-workflow\""
},
{
- "id": 35194,
+ "id": 17905,
"name": "capturePaymentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -717726,7 +718632,7 @@
},
"children": [
{
- "id": 35202,
+ "id": 17913,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -717749,7 +718655,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35203,
+ "id": 17914,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -717763,7 +718669,7 @@
],
"signatures": [
{
- "id": 35204,
+ "id": 17915,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -717791,7 +718697,7 @@
],
"parameters": [
{
- "id": 35205,
+ "id": 17916,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -717807,14 +718713,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35206,
+ "id": 17917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35207,
+ "id": 17918,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -717839,7 +718745,7 @@
"types": [
{
"type": "reference",
- "target": 35188,
+ "target": 17899,
"name": "CapturePaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -717852,7 +718758,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35188,
+ "target": 17899,
"name": "CapturePaymentWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -717868,7 +718774,7 @@
{
"title": "Properties",
"children": [
- 35207
+ 17918
]
}
],
@@ -717889,14 +718795,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35208,
+ "id": 17919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35209,
+ "id": 17920,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -717942,7 +718848,7 @@
}
},
{
- "id": 35210,
+ "id": 17921,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -717998,7 +718904,7 @@
}
},
{
- "id": 35211,
+ "id": 17922,
"name": "raw_amount",
"variant": "declaration",
"kind": 1024,
@@ -718051,7 +718957,7 @@
}
},
{
- "id": 35212,
+ "id": 17923,
"name": "authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -718104,7 +719010,7 @@
}
},
{
- "id": 35213,
+ "id": 17924,
"name": "raw_authorized_amount",
"variant": "declaration",
"kind": 1024,
@@ -718157,7 +719063,7 @@
}
},
{
- "id": 35214,
+ "id": 17925,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -718203,7 +719109,7 @@
}
},
{
- "id": 35215,
+ "id": 17926,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -718249,7 +719155,7 @@
}
},
{
- "id": 35216,
+ "id": 17927,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -718336,7 +719242,7 @@
}
},
{
- "id": 35217,
+ "id": 17928,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -718411,7 +719317,7 @@
}
},
{
- "id": 35218,
+ "id": 17929,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -718486,7 +719392,7 @@
}
},
{
- "id": 35219,
+ "id": 17930,
"name": "captured_at",
"variant": "declaration",
"kind": 1024,
@@ -718561,7 +719467,7 @@
}
},
{
- "id": 35220,
+ "id": 17931,
"name": "canceled_at",
"variant": "declaration",
"kind": 1024,
@@ -718636,7 +719542,7 @@
}
},
{
- "id": 35221,
+ "id": 17932,
"name": "captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -718689,7 +719595,7 @@
}
},
{
- "id": 35222,
+ "id": 17933,
"name": "raw_captured_amount",
"variant": "declaration",
"kind": 1024,
@@ -718742,7 +719648,7 @@
}
},
{
- "id": 35223,
+ "id": 17934,
"name": "refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -718795,7 +719701,7 @@
}
},
{
- "id": 35224,
+ "id": 17935,
"name": "raw_refunded_amount",
"variant": "declaration",
"kind": 1024,
@@ -718848,7 +719754,7 @@
}
},
{
- "id": 35225,
+ "id": 17936,
"name": "captures",
"variant": "declaration",
"kind": 1024,
@@ -718924,7 +719830,7 @@
}
},
{
- "id": 35226,
+ "id": 17937,
"name": "refunds",
"variant": "declaration",
"kind": 1024,
@@ -719000,7 +719906,7 @@
}
},
{
- "id": 35227,
+ "id": 17938,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -719046,7 +719952,7 @@
}
},
{
- "id": 35228,
+ "id": 17939,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -719116,7 +720022,7 @@
}
},
{
- "id": 35229,
+ "id": 17940,
"name": "payment_session",
"variant": "declaration",
"kind": 1024,
@@ -719190,27 +720096,27 @@
{
"title": "Properties",
"children": [
- 35209,
- 35210,
- 35211,
- 35212,
- 35213,
- 35214,
- 35215,
- 35216,
- 35217,
- 35218,
- 35219,
- 35220,
- 35221,
- 35222,
- 35223,
- 35224,
- 35225,
- 35226,
- 35227,
- 35228,
- 35229
+ 17920,
+ 17921,
+ 17922,
+ 17923,
+ 17924,
+ 17925,
+ 17926,
+ 17927,
+ 17928,
+ 17929,
+ 17930,
+ 17931,
+ 17932,
+ 17933,
+ 17934,
+ 17935,
+ 17936,
+ 17937,
+ 17938,
+ 17939,
+ 17940
]
}
],
@@ -719255,14 +720161,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35230,
+ "id": 17941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35231,
+ "id": 17942,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -719276,7 +720182,7 @@
],
"signatures": [
{
- "id": 35232,
+ "id": 17943,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -719290,7 +720196,7 @@
],
"parameters": [
{
- "id": 35233,
+ "id": 17944,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -719301,14 +720207,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35234,
+ "id": 17945,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35235,
+ "id": 17946,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -719332,7 +720238,7 @@
{
"title": "Properties",
"children": [
- 35235
+ 17946
]
}
],
@@ -719414,7 +720320,7 @@
{
"title": "Methods",
"children": [
- 35231
+ 17942
]
}
],
@@ -719455,7 +720361,7 @@
}
},
{
- "id": 35236,
+ "id": 17947,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -719478,7 +720384,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35237,
+ "id": 17948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -719492,7 +720398,7 @@
],
"signatures": [
{
- "id": 35238,
+ "id": 17949,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -719520,7 +720426,7 @@
],
"typeParameters": [
{
- "id": 35239,
+ "id": 17950,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -719531,7 +720437,7 @@
}
},
{
- "id": 35240,
+ "id": 17951,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -719544,7 +720450,7 @@
],
"parameters": [
{
- "id": 35241,
+ "id": 17952,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -719577,7 +720483,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -719588,13 +720494,13 @@
},
"trueType": {
"type": "reference",
- "target": 35188,
+ "target": 17899,
"name": "CapturePaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -719627,7 +720533,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -719647,7 +720553,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -719667,7 +720573,7 @@
}
},
{
- "id": 35242,
+ "id": 17953,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -719690,7 +720596,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35243,
+ "id": 17954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -719704,7 +720610,7 @@
],
"signatures": [
{
- "id": 35244,
+ "id": 17955,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -719726,7 +720632,7 @@
}
},
{
- "id": 35245,
+ "id": 17956,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -719749,7 +720655,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35246,
+ "id": 17957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -719763,7 +720669,7 @@
],
"signatures": [
{
- "id": 35247,
+ "id": 17958,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -719777,7 +720683,7 @@
],
"parameters": [
{
- "id": 35248,
+ "id": 17959,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -719803,7 +720709,7 @@
}
},
{
- "id": 35249,
+ "id": 17960,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -719826,7 +720732,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35250,
+ "id": 17961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -719837,7 +720743,7 @@
],
"documents": [
{
- "id": 43015,
+ "id": 25956,
"name": "capturePaymentStep",
"variant": "document",
"kind": 8388608,
@@ -719863,7 +720769,7 @@
"frontmatter": {}
},
{
- "id": 43016,
+ "id": 25957,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -719889,7 +720795,7 @@
"frontmatter": {}
},
{
- "id": 43017,
+ "id": 25958,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -719924,7 +720830,7 @@
"frontmatter": {},
"children": [
{
- "id": 43018,
+ "id": 25959,
"name": "addOrderTransactionStep",
"variant": "document",
"kind": 8388608,
@@ -719952,7 +720858,7 @@
]
},
{
- "id": 43019,
+ "id": 25960,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -719979,21 +720885,21 @@
}
],
"childrenIncludingDocuments": [
- 35202,
- 35236,
- 35242,
- 35245,
- 35249
+ 17913,
+ 17947,
+ 17953,
+ 17956,
+ 17960
],
"groups": [
{
"title": "Properties",
"children": [
- 35202,
- 35236,
- 35242,
- 35245,
- 35249
+ 17913,
+ 17947,
+ 17953,
+ 17956,
+ 17960
]
}
],
@@ -720002,12 +720908,12 @@
"fileName": "core-flows/src/payment/workflows/capture-payment.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L52"
}
],
"signatures": [
{
- "id": 35195,
+ "id": 17906,
"name": "capturePaymentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -720063,12 +720969,12 @@
"fileName": "core-flows/src/payment/workflows/capture-payment.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/capture-payment.ts#L52"
}
],
"typeParameters": [
{
- "id": 35196,
+ "id": 17907,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -720079,7 +720985,7 @@
}
},
{
- "id": 35197,
+ "id": 17908,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -720092,7 +720998,7 @@
],
"parameters": [
{
- "id": 35198,
+ "id": 17909,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -720116,14 +721022,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35199,
+ "id": 17910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35200,
+ "id": 17911,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -720146,7 +721052,7 @@
}
},
{
- "id": 35201,
+ "id": 17912,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -720173,8 +721079,8 @@
{
"title": "Properties",
"children": [
- 35200,
- 35201
+ 17911,
+ 17912
]
}
],
@@ -720249,7 +721155,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35188,
+ "target": 17899,
"name": "CapturePaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -720264,14 +721170,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -720286,7 +721192,7 @@
]
},
{
- "id": 35254,
+ "id": 17965,
"name": "processPaymentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -720298,7 +721204,7 @@
"fileName": "core-flows/src/payment/workflows/process-payment.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/process-payment.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/process-payment.ts#L18"
}
],
"type": {
@@ -720308,7 +721214,7 @@
"defaultValue": "\"process-payment-workflow\""
},
{
- "id": 35255,
+ "id": 17966,
"name": "processPaymentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -720356,12 +721262,21 @@
"text": "payment.captured -- Emitted when a payment is captured. -- ```ts\n{\n id, // the ID of the payment\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cartId --- acquireLockStep({ key: cartId, timeout: THIRTY_SECONDS, ttl: TWO_MINUTES, })"
+ }
+ ]
}
]
},
"children": [
{
- "id": 35263,
+ "id": 17974,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -720384,7 +721299,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35264,
+ "id": 17975,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -720398,7 +721313,7 @@
],
"signatures": [
{
- "id": 35265,
+ "id": 17976,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -720426,7 +721341,7 @@
],
"parameters": [
{
- "id": 35266,
+ "id": 17977,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -720442,14 +721357,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35267,
+ "id": 17978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35268,
+ "id": 17979,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -720474,7 +721389,7 @@
"types": [
{
"type": "reference",
- "target": 35251,
+ "target": 17962,
"name": "ProcessPaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -720487,7 +721402,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35251,
+ "target": 17962,
"name": "ProcessPaymentWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -720503,7 +721418,7 @@
{
"title": "Properties",
"children": [
- 35268
+ 17979
]
}
],
@@ -720539,14 +721454,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35269,
+ "id": 17980,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35270,
+ "id": 17981,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -720560,7 +721475,7 @@
],
"signatures": [
{
- "id": 35271,
+ "id": 17982,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -720574,7 +721489,7 @@
],
"parameters": [
{
- "id": 35272,
+ "id": 17983,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -720585,14 +721500,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35273,
+ "id": 17984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35274,
+ "id": 17985,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -720616,7 +721531,7 @@
{
"title": "Properties",
"children": [
- 35274
+ 17985
]
}
],
@@ -720693,7 +721608,7 @@
{
"title": "Methods",
"children": [
- 35270
+ 17981
]
}
],
@@ -720729,7 +721644,7 @@
}
},
{
- "id": 35275,
+ "id": 17986,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -720752,7 +721667,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35276,
+ "id": 17987,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -720766,7 +721681,7 @@
],
"signatures": [
{
- "id": 35277,
+ "id": 17988,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -720794,7 +721709,7 @@
],
"typeParameters": [
{
- "id": 35278,
+ "id": 17989,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -720805,7 +721720,7 @@
}
},
{
- "id": 35279,
+ "id": 17990,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -720818,7 +721733,7 @@
],
"parameters": [
{
- "id": 35280,
+ "id": 17991,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -720851,7 +721766,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -720862,13 +721777,13 @@
},
"trueType": {
"type": "reference",
- "target": 35251,
+ "target": 17962,
"name": "ProcessPaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -720901,7 +721816,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -720916,7 +721831,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -720936,7 +721851,7 @@
}
},
{
- "id": 35281,
+ "id": 17992,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -720959,7 +721874,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35282,
+ "id": 17993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -720973,7 +721888,7 @@
],
"signatures": [
{
- "id": 35283,
+ "id": 17994,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -720995,7 +721910,7 @@
}
},
{
- "id": 35284,
+ "id": 17995,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -721018,7 +721933,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35285,
+ "id": 17996,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -721032,7 +721947,7 @@
],
"signatures": [
{
- "id": 35286,
+ "id": 17997,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -721046,7 +721961,7 @@
],
"parameters": [
{
- "id": 35287,
+ "id": 17998,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -721072,7 +721987,7 @@
}
},
{
- "id": 35288,
+ "id": 17999,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -721095,7 +722010,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35289,
+ "id": 18000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -721106,7 +722021,7 @@
],
"documents": [
{
- "id": 43020,
+ "id": 25961,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -721141,7 +722056,7 @@
"frontmatter": {},
"children": [
{
- "id": 43021,
+ "id": 25962,
"name": "acquireLockStep",
"variant": "document",
"kind": 8388608,
@@ -721169,7 +722084,7 @@
]
},
{
- "id": 43025,
+ "id": 25966,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -721204,7 +722119,7 @@
"frontmatter": {},
"children": [
{
- "id": 43026,
+ "id": 25967,
"name": "releaseLockStep",
"variant": "document",
"kind": 8388608,
@@ -721233,21 +722148,21 @@
}
],
"childrenIncludingDocuments": [
- 35263,
- 35275,
- 35281,
- 35284,
- 35288
+ 17974,
+ 17986,
+ 17992,
+ 17995,
+ 17999
],
"groups": [
{
"title": "Properties",
"children": [
- 35263,
- 35275,
- 35281,
- 35284,
- 35288
+ 17974,
+ 17986,
+ 17992,
+ 17995,
+ 17999
]
}
],
@@ -721256,12 +722171,12 @@
"fileName": "core-flows/src/payment/workflows/process-payment.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/process-payment.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/process-payment.ts#L43"
}
],
"signatures": [
{
- "id": 35256,
+ "id": 17967,
"name": "processPaymentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -721309,6 +722224,15 @@
"text": "payment.captured -- Emitted when a payment is captured. -- ```ts\n{\n id, // the ID of the payment\n}\n```"
}
]
+ },
+ {
+ "tag": "@workflowLock",
+ "content": [
+ {
+ "kind": "text",
+ "text": "cartId --- acquireLockStep({ key: cartId, timeout: THIRTY_SECONDS, ttl: TWO_MINUTES, })"
+ }
+ ]
}
]
},
@@ -721317,12 +722241,12 @@
"fileName": "core-flows/src/payment/workflows/process-payment.ts",
"line": 43,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/process-payment.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/process-payment.ts#L43"
}
],
"typeParameters": [
{
- "id": 35257,
+ "id": 17968,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -721333,7 +722257,7 @@
}
},
{
- "id": 35258,
+ "id": 17969,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -721346,7 +722270,7 @@
],
"parameters": [
{
- "id": 35259,
+ "id": 17970,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -721370,14 +722294,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35260,
+ "id": 17971,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35261,
+ "id": 17972,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -721400,7 +722324,7 @@
}
},
{
- "id": 35262,
+ "id": 17973,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -721427,8 +722351,8 @@
{
"title": "Properties",
"children": [
- 35261,
- 35262
+ 17972,
+ 17973
]
}
],
@@ -721503,7 +722427,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35251,
+ "target": 17962,
"name": "ProcessPaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -721513,14 +722437,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -721535,7 +722459,7 @@
]
},
{
- "id": 35292,
+ "id": 18003,
"name": "payment_id",
"variant": "declaration",
"kind": 1024,
@@ -721553,7 +722477,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L28"
}
],
"type": {
@@ -721562,7 +722486,7 @@
}
},
{
- "id": 35293,
+ "id": 18004,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -721582,7 +722506,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L32"
}
],
"type": {
@@ -721591,7 +722515,7 @@
}
},
{
- "id": 35294,
+ "id": 18005,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -721611,7 +722535,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L36"
}
],
"type": {
@@ -721625,7 +722549,7 @@
}
},
{
- "id": 35295,
+ "id": 18006,
"name": "note",
"variant": "declaration",
"kind": 1024,
@@ -721645,7 +722569,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L40"
}
],
"type": {
@@ -721654,7 +722578,7 @@
}
},
{
- "id": 35296,
+ "id": 18007,
"name": "refund_reason_id",
"variant": "declaration",
"kind": 1024,
@@ -721674,7 +722598,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L44"
}
],
"type": {
@@ -721683,7 +722607,7 @@
}
},
{
- "id": 35297,
+ "id": 18008,
"name": "validateRefundPaymentExceedsCapturedAmountStep",
"variant": "declaration",
"kind": 64,
@@ -721709,7 +722633,7 @@
},
"children": [
{
- "id": 35312,
+ "id": 18023,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -721727,7 +722651,7 @@
}
},
{
- "id": 35313,
+ "id": 18024,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -721749,8 +722673,8 @@
{
"title": "Properties",
"children": [
- 35312,
- 35313
+ 18023,
+ 18024
]
}
],
@@ -721759,12 +722683,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L50"
}
],
"signatures": [
{
- "id": 35298,
+ "id": 18009,
"name": "validateRefundPaymentExceedsCapturedAmountStep",
"variant": "signature",
"kind": 4096,
@@ -721793,12 +722717,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L50"
}
],
"parameters": [
{
- "id": 35299,
+ "id": 18010,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -721809,14 +722733,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35300,
+ "id": 18011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35301,
+ "id": 18012,
"name": "payment",
"variant": "declaration",
"kind": 1024,
@@ -721826,7 +722750,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 56,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
}
],
"type": {
@@ -721840,7 +722764,7 @@
}
},
{
- "id": 35302,
+ "id": 18013,
"name": "refundAmount",
"variant": "declaration",
"kind": 1024,
@@ -721850,7 +722774,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 57,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
}
],
"type": {
@@ -721868,8 +722792,8 @@
{
"title": "Properties",
"children": [
- 35301,
- 35302
+ 18012,
+ 18013
]
}
],
@@ -721878,7 +722802,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 55,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L55"
}
]
}
@@ -721893,14 +722817,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35303,
+ "id": 18014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35304,
+ "id": 18015,
"name": "payment",
"variant": "declaration",
"kind": 1024,
@@ -721910,7 +722834,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 56,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
}
],
"type": {
@@ -721924,7 +722848,7 @@
}
},
{
- "id": 35305,
+ "id": 18016,
"name": "refundAmount",
"variant": "declaration",
"kind": 1024,
@@ -721934,7 +722858,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 57,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
}
],
"type": {
@@ -721952,8 +722876,8 @@
{
"title": "Properties",
"children": [
- 35304,
- 35305
+ 18015,
+ 18016
]
}
],
@@ -721962,7 +722886,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 55,
"character": 5,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L55"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L55"
}
]
}
@@ -721996,14 +722920,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35306,
+ "id": 18017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35307,
+ "id": 18018,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -722017,7 +722941,7 @@
],
"signatures": [
{
- "id": 35308,
+ "id": 18019,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -722031,7 +722955,7 @@
],
"parameters": [
{
- "id": 35309,
+ "id": 18020,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -722042,14 +722966,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35310,
+ "id": 18021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35311,
+ "id": 18022,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -722073,7 +722997,7 @@
{
"title": "Properties",
"children": [
- 35311
+ 18022
]
}
],
@@ -722150,7 +723074,7 @@
{
"title": "Methods",
"children": [
- 35307
+ 18018
]
}
],
@@ -722184,7 +723108,7 @@
]
},
{
- "id": 35301,
+ "id": 18012,
"name": "payment",
"variant": "declaration",
"kind": 1024,
@@ -722194,7 +723118,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 56,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
}
],
"type": {
@@ -722208,7 +723132,7 @@
}
},
{
- "id": 35302,
+ "id": 18013,
"name": "refundAmount",
"variant": "declaration",
"kind": 1024,
@@ -722218,7 +723142,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 57,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
}
],
"type": {
@@ -722232,7 +723156,7 @@
}
},
{
- "id": 35304,
+ "id": 18015,
"name": "payment",
"variant": "declaration",
"kind": 1024,
@@ -722242,7 +723166,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 56,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L56"
}
],
"type": {
@@ -722256,7 +723180,7 @@
}
},
{
- "id": 35305,
+ "id": 18016,
"name": "refundAmount",
"variant": "declaration",
"kind": 1024,
@@ -722266,7 +723190,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 57,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L57"
}
],
"type": {
@@ -722280,7 +723204,7 @@
}
},
{
- "id": 35314,
+ "id": 18025,
"name": "refundPaymentWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -722292,7 +723216,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 90,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L90"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L90"
}
],
"type": {
@@ -722302,7 +723226,7 @@
"defaultValue": "\"refund-payment-workflow\""
},
{
- "id": 35315,
+ "id": 18026,
"name": "refundPaymentWorkflow",
"variant": "declaration",
"kind": 64,
@@ -722355,7 +723279,7 @@
},
"children": [
{
- "id": 35323,
+ "id": 18034,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -722378,7 +723302,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35324,
+ "id": 18035,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -722392,7 +723316,7 @@
],
"signatures": [
{
- "id": 35325,
+ "id": 18036,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -722420,7 +723344,7 @@
],
"parameters": [
{
- "id": 35326,
+ "id": 18037,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -722436,14 +723360,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35327,
+ "id": 18038,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35328,
+ "id": 18039,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -722468,7 +723392,7 @@
"types": [
{
"type": "reference",
- "target": 35290,
+ "target": 18001,
"name": "RefundPaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -722481,7 +723405,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35290,
+ "target": 18001,
"name": "RefundPaymentWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -722497,7 +723421,7 @@
{
"title": "Properties",
"children": [
- 35328
+ 18039
]
}
],
@@ -722522,7 +723446,7 @@
}
},
{
- "id": 35329,
+ "id": 18040,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -722545,7 +723469,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35330,
+ "id": 18041,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -722559,7 +723483,7 @@
],
"signatures": [
{
- "id": 35331,
+ "id": 18042,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -722587,7 +723511,7 @@
],
"typeParameters": [
{
- "id": 35332,
+ "id": 18043,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -722598,7 +723522,7 @@
}
},
{
- "id": 35333,
+ "id": 18044,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -722611,7 +723535,7 @@
],
"parameters": [
{
- "id": 35334,
+ "id": 18045,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -722644,7 +723568,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -722655,13 +723579,13 @@
},
"trueType": {
"type": "reference",
- "target": 35290,
+ "target": 18001,
"name": "RefundPaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -722694,7 +723618,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -722709,7 +723633,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -722729,7 +723653,7 @@
}
},
{
- "id": 35335,
+ "id": 18046,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -722752,7 +723676,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35336,
+ "id": 18047,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -722766,7 +723690,7 @@
],
"signatures": [
{
- "id": 35337,
+ "id": 18048,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -722788,7 +723712,7 @@
}
},
{
- "id": 35338,
+ "id": 18049,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -722811,7 +723735,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35339,
+ "id": 18050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -722825,7 +723749,7 @@
],
"signatures": [
{
- "id": 35340,
+ "id": 18051,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -722839,7 +723763,7 @@
],
"parameters": [
{
- "id": 35341,
+ "id": 18052,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -722865,7 +723789,7 @@
}
},
{
- "id": 35342,
+ "id": 18053,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -722888,7 +723812,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35343,
+ "id": 18054,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -722899,7 +723823,7 @@
],
"documents": [
{
- "id": 43028,
+ "id": 25969,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -722925,7 +723849,7 @@
"frontmatter": {}
},
{
- "id": 43029,
+ "id": 25970,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -722960,7 +723884,7 @@
"frontmatter": {},
"children": [
{
- "id": 43030,
+ "id": 25971,
"name": "validateRefundPaymentExceedsCapturedAmountStep",
"variant": "document",
"kind": 8388608,
@@ -722988,7 +723912,7 @@
]
},
{
- "id": 43031,
+ "id": 25972,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -723014,7 +723938,7 @@
"frontmatter": {}
},
{
- "id": 43032,
+ "id": 25973,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -723040,7 +723964,7 @@
"frontmatter": {}
},
{
- "id": 43033,
+ "id": 25974,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -723075,7 +723999,7 @@
"frontmatter": {},
"children": [
{
- "id": 43034,
+ "id": 25975,
"name": "useRemoteQueryStep",
"variant": "document",
"kind": 8388608,
@@ -723103,7 +724027,7 @@
]
},
{
- "id": 43035,
+ "id": 25976,
"name": "refundPaymentStep",
"variant": "document",
"kind": 8388608,
@@ -723129,7 +724053,7 @@
"frontmatter": {}
},
{
- "id": 43036,
+ "id": 25977,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -723164,7 +724088,7 @@
"frontmatter": {},
"children": [
{
- "id": 43037,
+ "id": 25978,
"name": "addOrderTransactionStep",
"variant": "document",
"kind": 8388608,
@@ -723192,7 +724116,7 @@
]
},
{
- "id": 43039,
+ "id": 25980,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -723219,21 +724143,21 @@
}
],
"childrenIncludingDocuments": [
- 35323,
- 35329,
- 35335,
- 35338,
- 35342
+ 18034,
+ 18040,
+ 18046,
+ 18049,
+ 18053
],
"groups": [
{
"title": "Properties",
"children": [
- 35323,
- 35329,
- 35335,
- 35338,
- 35342
+ 18034,
+ 18040,
+ 18046,
+ 18049,
+ 18053
]
}
],
@@ -723242,12 +724166,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L110"
}
],
"signatures": [
{
- "id": 35316,
+ "id": 18027,
"name": "refundPaymentWorkflow",
"variant": "signature",
"kind": 4096,
@@ -723303,12 +724227,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payment.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L110"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payment.ts#L110"
}
],
"typeParameters": [
{
- "id": 35317,
+ "id": 18028,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -723319,7 +724243,7 @@
}
},
{
- "id": 35318,
+ "id": 18029,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -723332,7 +724256,7 @@
],
"parameters": [
{
- "id": 35319,
+ "id": 18030,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -723356,14 +724280,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35320,
+ "id": 18031,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35321,
+ "id": 18032,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -723386,7 +724310,7 @@
}
},
{
- "id": 35322,
+ "id": 18033,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -723413,8 +724337,8 @@
{
"title": "Properties",
"children": [
- 35321,
- 35322
+ 18032,
+ 18033
]
}
],
@@ -723489,7 +724413,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35290,
+ "target": 18001,
"name": "RefundPaymentWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -723499,14 +724423,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -723521,7 +724445,7 @@
]
},
{
- "id": 35346,
+ "id": 18057,
"name": "payments",
"variant": "declaration",
"kind": 1024,
@@ -723539,7 +724463,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L21"
}
],
"type": {
@@ -723556,7 +724480,7 @@
}
},
{
- "id": 35347,
+ "id": 18058,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -723574,18 +724498,18 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L25"
}
],
"type": {
"type": "reference",
- "target": 35359,
+ "target": 18070,
"name": "RefundPaymentsWorkflowInput",
"package": "@medusajs/core-flows"
}
},
{
- "id": 35348,
+ "id": 18059,
"name": "validatePaymentsRefundStep",
"variant": "declaration",
"kind": 64,
@@ -723620,7 +724544,7 @@
},
"children": [
{
- "id": 35357,
+ "id": 18068,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -723638,7 +724562,7 @@
}
},
{
- "id": 35358,
+ "id": 18069,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -723660,8 +724584,8 @@
{
"title": "Properties",
"children": [
- 35357,
- 35358
+ 18068,
+ 18069
]
}
],
@@ -723670,12 +724594,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L54"
}
],
"signatures": [
{
- "id": 35349,
+ "id": 18060,
"name": "validatePaymentsRefundStep",
"variant": "signature",
"kind": 4096,
@@ -723713,12 +724637,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L54"
}
],
"parameters": [
{
- "id": 35350,
+ "id": 18061,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -723728,7 +724652,7 @@
"types": [
{
"type": "reference",
- "target": 35344,
+ "target": 18055,
"name": "ValidatePaymentsRefundStepInput",
"package": "@medusajs/core-flows"
},
@@ -723741,7 +724665,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35344,
+ "target": 18055,
"name": "ValidatePaymentsRefundStepInput",
"package": "@medusajs/core-flows"
}
@@ -723774,14 +724698,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35351,
+ "id": 18062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35352,
+ "id": 18063,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -723795,7 +724719,7 @@
],
"signatures": [
{
- "id": 35353,
+ "id": 18064,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -723809,7 +724733,7 @@
],
"parameters": [
{
- "id": 35354,
+ "id": 18065,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -723820,14 +724744,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35355,
+ "id": 18066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35356,
+ "id": 18067,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -723851,7 +724775,7 @@
{
"title": "Properties",
"children": [
- 35356
+ 18067
]
}
],
@@ -723928,7 +724852,7 @@
{
"title": "Methods",
"children": [
- 35352
+ 18063
]
}
],
@@ -723962,7 +724886,7 @@
]
},
{
- "id": 35361,
+ "id": 18072,
"name": "payment_id",
"variant": "declaration",
"kind": 1024,
@@ -723980,7 +724904,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L92"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L92"
}
],
"type": {
@@ -723989,7 +724913,7 @@
}
},
{
- "id": 35362,
+ "id": 18073,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -724007,7 +724931,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L96"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L96"
}
],
"type": {
@@ -724021,7 +724945,7 @@
}
},
{
- "id": 35363,
+ "id": 18074,
"name": "created_by",
"variant": "declaration",
"kind": 1024,
@@ -724041,7 +724965,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L100"
}
],
"type": {
@@ -724050,7 +724974,7 @@
}
},
{
- "id": 35364,
+ "id": 18075,
"name": "note",
"variant": "declaration",
"kind": 1024,
@@ -724070,7 +724994,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L104"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L104"
}
],
"type": {
@@ -724079,7 +725003,7 @@
}
},
{
- "id": 35365,
+ "id": 18076,
"name": "refundPaymentsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -724091,7 +725015,7 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 107,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L107"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L107"
}
],
"type": {
@@ -724101,7 +725025,7 @@
"defaultValue": "\"refund-payments-workflow\""
},
{
- "id": 35366,
+ "id": 18077,
"name": "refundPaymentsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -724145,7 +725069,7 @@
},
"children": [
{
- "id": 35374,
+ "id": 18085,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -724168,7 +725092,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35375,
+ "id": 18086,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -724182,7 +725106,7 @@
],
"signatures": [
{
- "id": 35376,
+ "id": 18087,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -724210,7 +725134,7 @@
],
"parameters": [
{
- "id": 35377,
+ "id": 18088,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -724226,14 +725150,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35378,
+ "id": 18089,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35379,
+ "id": 18090,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -724258,7 +725182,7 @@
"types": [
{
"type": "reference",
- "target": 35359,
+ "target": 18070,
"name": "RefundPaymentsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -724271,7 +725195,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35359,
+ "target": 18070,
"name": "RefundPaymentsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -724287,7 +725211,7 @@
{
"title": "Properties",
"children": [
- 35379
+ 18090
]
}
],
@@ -724380,14 +725304,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35380,
+ "id": 18091,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35381,
+ "id": 18092,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -724401,7 +725325,7 @@
],
"signatures": [
{
- "id": 35382,
+ "id": 18093,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -724415,7 +725339,7 @@
],
"parameters": [
{
- "id": 35383,
+ "id": 18094,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -724426,14 +725350,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35384,
+ "id": 18095,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35385,
+ "id": 18096,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -724457,7 +725381,7 @@
{
"title": "Properties",
"children": [
- 35385
+ 18096
]
}
],
@@ -724542,7 +725466,7 @@
{
"title": "Methods",
"children": [
- 35381
+ 18092
]
}
],
@@ -724586,7 +725510,7 @@
}
},
{
- "id": 35386,
+ "id": 18097,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -724609,7 +725533,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35387,
+ "id": 18098,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -724623,7 +725547,7 @@
],
"signatures": [
{
- "id": 35388,
+ "id": 18099,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -724651,7 +725575,7 @@
],
"typeParameters": [
{
- "id": 35389,
+ "id": 18100,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -724662,7 +725586,7 @@
}
},
{
- "id": 35390,
+ "id": 18101,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -724675,7 +725599,7 @@
],
"parameters": [
{
- "id": 35391,
+ "id": 18102,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -724708,7 +725632,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -724719,13 +725643,13 @@
},
"trueType": {
"type": "reference",
- "target": 35359,
+ "target": 18070,
"name": "RefundPaymentsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -724758,7 +725682,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -724781,7 +725705,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -724801,7 +725725,7 @@
}
},
{
- "id": 35392,
+ "id": 18103,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -724824,7 +725748,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35393,
+ "id": 18104,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -724838,7 +725762,7 @@
],
"signatures": [
{
- "id": 35394,
+ "id": 18105,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -724860,7 +725784,7 @@
}
},
{
- "id": 35395,
+ "id": 18106,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -724883,7 +725807,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35396,
+ "id": 18107,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -724897,7 +725821,7 @@
],
"signatures": [
{
- "id": 35397,
+ "id": 18108,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -724911,7 +725835,7 @@
],
"parameters": [
{
- "id": 35398,
+ "id": 18109,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -724937,7 +725861,7 @@
}
},
{
- "id": 35399,
+ "id": 18110,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -724960,7 +725884,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35400,
+ "id": 18111,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -724971,7 +725895,7 @@
],
"documents": [
{
- "id": 43040,
+ "id": 25981,
"name": "validatePaymentsRefundStep",
"variant": "document",
"kind": 8388608,
@@ -724997,7 +725921,7 @@
"frontmatter": {}
},
{
- "id": 43041,
+ "id": 25982,
"name": "refundPaymentsStep",
"variant": "document",
"kind": 8388608,
@@ -725023,7 +725947,7 @@
"frontmatter": {}
},
{
- "id": 43042,
+ "id": 25983,
"name": "addOrderTransactionStep",
"variant": "document",
"kind": 8388608,
@@ -725050,21 +725974,21 @@
}
],
"childrenIncludingDocuments": [
- 35374,
- 35386,
- 35392,
- 35395,
- 35399
+ 18085,
+ 18097,
+ 18103,
+ 18106,
+ 18110
],
"groups": [
{
"title": "Properties",
"children": [
- 35374,
- 35386,
- 35392,
- 35395,
- 35399
+ 18085,
+ 18097,
+ 18103,
+ 18106,
+ 18110
]
}
],
@@ -725073,12 +725997,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 129,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L129"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L129"
}
],
"signatures": [
{
- "id": 35367,
+ "id": 18078,
"name": "refundPaymentsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -725125,12 +726049,12 @@
"fileName": "core-flows/src/payment/workflows/refund-payments.ts",
"line": 129,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L129"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment/workflows/refund-payments.ts#L129"
}
],
"typeParameters": [
{
- "id": 35368,
+ "id": 18079,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -725141,7 +726065,7 @@
}
},
{
- "id": 35369,
+ "id": 18080,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -725154,7 +726078,7 @@
],
"parameters": [
{
- "id": 35370,
+ "id": 18081,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -725178,14 +726102,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35371,
+ "id": 18082,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35372,
+ "id": 18083,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -725208,7 +726132,7 @@
}
},
{
- "id": 35373,
+ "id": 18084,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -725235,8 +726159,8 @@
{
"title": "Properties",
"children": [
- 35372,
- 35373
+ 18083,
+ 18084
]
}
],
@@ -725311,7 +726235,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35359,
+ "target": 18070,
"name": "RefundPaymentsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -725329,14 +726253,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -725355,21 +726279,21 @@
]
},
{
- "id": 17345,
+ "id": 50,
"name": "Payment Collection",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17346,
+ "id": 51,
"name": "Steps_Payment Collection",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 35402,
+ "id": 18113,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -725387,7 +726311,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L16"
}
],
"type": {
@@ -725396,7 +726320,7 @@
}
},
{
- "id": 35403,
+ "id": 18114,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -725414,7 +726338,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L20"
}
],
"type": {
@@ -725423,7 +726347,7 @@
}
},
{
- "id": 35404,
+ "id": 18115,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -725441,7 +726365,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L24"
}
],
"type": {
@@ -725455,7 +726379,7 @@
}
},
{
- "id": 35405,
+ "id": 18116,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -725484,7 +726408,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L31"
}
],
"type": {
@@ -725493,7 +726417,7 @@
}
},
{
- "id": 35406,
+ "id": 18117,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -725513,7 +726437,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L35"
}
],
"type": {
@@ -725527,7 +726451,7 @@
}
},
{
- "id": 35407,
+ "id": 18118,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -725547,7 +726471,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L40"
}
],
"type": {
@@ -725571,7 +726495,7 @@
}
},
{
- "id": 35408,
+ "id": 18119,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -725591,7 +726515,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L45"
}
],
"type": {
@@ -725615,7 +726539,7 @@
}
},
{
- "id": 35409,
+ "id": 18120,
"name": "createPaymentSessionStepId",
"variant": "declaration",
"kind": 32,
@@ -725627,7 +726551,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L48"
}
],
"type": {
@@ -725637,7 +726561,7 @@
"defaultValue": "\"create-payment-session\""
},
{
- "id": 35410,
+ "id": 18121,
"name": "createPaymentSessionStep",
"variant": "declaration",
"kind": 64,
@@ -725663,7 +726587,7 @@
},
"children": [
{
- "id": 35434,
+ "id": 18145,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -725681,7 +726605,7 @@
}
},
{
- "id": 35435,
+ "id": 18146,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -725703,8 +726627,8 @@
{
"title": "Properties",
"children": [
- 35434,
- 35435
+ 18145,
+ 18146
]
}
],
@@ -725713,12 +726637,12 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L52"
}
],
"signatures": [
{
- "id": 35411,
+ "id": 18122,
"name": "createPaymentSessionStep",
"variant": "signature",
"kind": 4096,
@@ -725747,12 +726671,12 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-session.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-session.ts#L52"
}
],
"parameters": [
{
- "id": 35412,
+ "id": 18123,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -725762,7 +726686,7 @@
"types": [
{
"type": "reference",
- "target": 35401,
+ "target": 18112,
"name": "CreatePaymentSessionStepInput",
"package": "@medusajs/core-flows"
},
@@ -725775,7 +726699,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35401,
+ "target": 18112,
"name": "CreatePaymentSessionStepInput",
"package": "@medusajs/core-flows"
}
@@ -725793,14 +726717,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35413,
+ "id": 18124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35414,
+ "id": 18125,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -725846,7 +726770,7 @@
}
},
{
- "id": 35415,
+ "id": 18126,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -725902,7 +726826,7 @@
}
},
{
- "id": 35416,
+ "id": 18127,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -725948,7 +726872,7 @@
}
},
{
- "id": 35417,
+ "id": 18128,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -725994,7 +726918,7 @@
}
},
{
- "id": 35418,
+ "id": 18129,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -726070,7 +726994,7 @@
}
},
{
- "id": 35419,
+ "id": 18130,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -726157,7 +727081,7 @@
}
},
{
- "id": 35420,
+ "id": 18131,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -726213,7 +727137,7 @@
}
},
{
- "id": 35421,
+ "id": 18132,
"name": "authorized_at",
"variant": "declaration",
"kind": 1024,
@@ -726280,7 +727204,7 @@
}
},
{
- "id": 35422,
+ "id": 18133,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -726349,7 +727273,7 @@
}
},
{
- "id": 35423,
+ "id": 18134,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -726418,7 +727342,7 @@
}
},
{
- "id": 35424,
+ "id": 18135,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -726464,7 +727388,7 @@
}
},
{
- "id": 35425,
+ "id": 18136,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -726534,7 +727458,7 @@
}
},
{
- "id": 35426,
+ "id": 18137,
"name": "payment",
"variant": "declaration",
"kind": 1024,
@@ -726604,7 +727528,7 @@
}
},
{
- "id": 35427,
+ "id": 18138,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -726695,20 +727619,20 @@
{
"title": "Properties",
"children": [
- 35414,
- 35415,
- 35416,
- 35417,
- 35418,
- 35419,
- 35420,
- 35421,
- 35422,
- 35423,
- 35424,
- 35425,
- 35426,
- 35427
+ 18125,
+ 18126,
+ 18127,
+ 18128,
+ 18129,
+ 18130,
+ 18131,
+ 18132,
+ 18133,
+ 18134,
+ 18135,
+ 18136,
+ 18137,
+ 18138
]
}
],
@@ -726753,14 +727677,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35428,
+ "id": 18139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35429,
+ "id": 18140,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -726774,7 +727698,7 @@
],
"signatures": [
{
- "id": 35430,
+ "id": 18141,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -726788,7 +727712,7 @@
],
"parameters": [
{
- "id": 35431,
+ "id": 18142,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -726799,14 +727723,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35432,
+ "id": 18143,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35433,
+ "id": 18144,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -726830,7 +727754,7 @@
{
"title": "Properties",
"children": [
- 35433
+ 18144
]
}
],
@@ -726912,7 +727836,7 @@
{
"title": "Methods",
"children": [
- 35429
+ 18140
]
}
],
@@ -726951,7 +727875,7 @@
]
},
{
- "id": 35437,
+ "id": 18148,
"name": "createRefundReasonStepId",
"variant": "declaration",
"kind": 32,
@@ -726963,7 +727887,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-refund-reasons.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts#L13"
}
],
"type": {
@@ -726973,7 +727897,7 @@
"defaultValue": "\"create-refund-reason\""
},
{
- "id": 35438,
+ "id": 18149,
"name": "createRefundReasonStep",
"variant": "declaration",
"kind": 64,
@@ -726999,7 +727923,7 @@
},
"children": [
{
- "id": 35447,
+ "id": 18158,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -727017,7 +727941,7 @@
}
},
{
- "id": 35448,
+ "id": 18159,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -727039,8 +727963,8 @@
{
"title": "Properties",
"children": [
- 35447,
- 35448
+ 18158,
+ 18159
]
}
],
@@ -727049,12 +727973,12 @@
"fileName": "core-flows/src/payment-collection/steps/create-refund-reasons.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts#L17"
}
],
"signatures": [
{
- "id": 35439,
+ "id": 18150,
"name": "createRefundReasonStep",
"variant": "signature",
"kind": 4096,
@@ -727083,12 +728007,12 @@
"fileName": "core-flows/src/payment-collection/steps/create-refund-reasons.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts#L17"
}
],
"parameters": [
{
- "id": 35440,
+ "id": 18151,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -727098,7 +728022,7 @@
"types": [
{
"type": "reference",
- "target": 35436,
+ "target": 18147,
"name": "CreateRefundReasonStepInput",
"package": "@medusajs/core-flows"
},
@@ -727111,7 +728035,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35436,
+ "target": 18147,
"name": "CreateRefundReasonStepInput",
"package": "@medusajs/core-flows"
}
@@ -727201,14 +728125,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35441,
+ "id": 18152,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35442,
+ "id": 18153,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -727222,7 +728146,7 @@
],
"signatures": [
{
- "id": 35443,
+ "id": 18154,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -727236,7 +728160,7 @@
],
"parameters": [
{
- "id": 35444,
+ "id": 18155,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -727247,14 +728171,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35445,
+ "id": 18156,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35446,
+ "id": 18157,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -727278,7 +728202,7 @@
{
"title": "Properties",
"children": [
- 35446
+ 18157
]
}
],
@@ -727363,7 +728287,7 @@
{
"title": "Methods",
"children": [
- 35442
+ 18153
]
}
],
@@ -727405,7 +728329,7 @@
]
},
{
- "id": 35450,
+ "id": 18161,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -727423,7 +728347,7 @@
"fileName": "core-flows/src/payment-collection/steps/delete-payment-sessions.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L20"
}
],
"type": {
@@ -727435,7 +728359,7 @@
}
},
{
- "id": 35451,
+ "id": 18162,
"name": "deletePaymentSessionsStepId",
"variant": "declaration",
"kind": 32,
@@ -727447,7 +728371,7 @@
"fileName": "core-flows/src/payment-collection/steps/delete-payment-sessions.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L23"
}
],
"type": {
@@ -727457,7 +728381,7 @@
"defaultValue": "\"delete-payment-sessions\""
},
{
- "id": 35452,
+ "id": 18163,
"name": "deletePaymentSessionsStep",
"variant": "declaration",
"kind": 64,
@@ -727492,7 +728416,7 @@
},
"children": [
{
- "id": 35461,
+ "id": 18172,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -727510,7 +728434,7 @@
}
},
{
- "id": 35462,
+ "id": 18173,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -727532,8 +728456,8 @@
{
"title": "Properties",
"children": [
- 35461,
- 35462
+ 18172,
+ 18173
]
}
],
@@ -727542,12 +728466,12 @@
"fileName": "core-flows/src/payment-collection/steps/delete-payment-sessions.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L30"
}
],
"signatures": [
{
- "id": 35453,
+ "id": 18164,
"name": "deletePaymentSessionsStep",
"variant": "signature",
"kind": 4096,
@@ -727585,12 +728509,12 @@
"fileName": "core-flows/src/payment-collection/steps/delete-payment-sessions.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/delete-payment-sessions.ts#L30"
}
],
"parameters": [
{
- "id": 35454,
+ "id": 18165,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -727600,7 +728524,7 @@
"types": [
{
"type": "reference",
- "target": 35449,
+ "target": 18160,
"name": "DeletePaymentSessionStepInput",
"package": "@medusajs/core-flows"
},
@@ -727613,7 +728537,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35449,
+ "target": 18160,
"name": "DeletePaymentSessionStepInput",
"package": "@medusajs/core-flows"
}
@@ -727683,14 +728607,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35455,
+ "id": 18166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35456,
+ "id": 18167,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -727704,7 +728628,7 @@
],
"signatures": [
{
- "id": 35457,
+ "id": 18168,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -727718,7 +728642,7 @@
],
"parameters": [
{
- "id": 35458,
+ "id": 18169,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -727729,14 +728653,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35459,
+ "id": 18170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35460,
+ "id": 18171,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -727760,7 +728684,7 @@
{
"title": "Properties",
"children": [
- 35460
+ 18171
]
}
],
@@ -727840,7 +728764,7 @@
{
"title": "Methods",
"children": [
- 35456
+ 18167
]
}
],
@@ -727877,7 +728801,7 @@
]
},
{
- "id": 35464,
+ "id": 18175,
"name": "deleteRefundReasonsStepId",
"variant": "declaration",
"kind": 32,
@@ -727889,7 +728813,7 @@
"fileName": "core-flows/src/payment-collection/steps/delete-refund-reasons.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/delete-refund-reasons.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/delete-refund-reasons.ts#L10"
}
],
"type": {
@@ -727899,7 +728823,7 @@
"defaultValue": "\"delete-refund-reasons\""
},
{
- "id": 35465,
+ "id": 18176,
"name": "deleteRefundReasonsStep",
"variant": "declaration",
"kind": 64,
@@ -727925,7 +728849,7 @@
},
"children": [
{
- "id": 35468,
+ "id": 18179,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -727943,7 +728867,7 @@
}
},
{
- "id": 35469,
+ "id": 18180,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -727965,8 +728889,8 @@
{
"title": "Properties",
"children": [
- 35468,
- 35469
+ 18179,
+ 18180
]
}
],
@@ -727975,12 +728899,12 @@
"fileName": "core-flows/src/payment-collection/steps/delete-refund-reasons.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/delete-refund-reasons.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/delete-refund-reasons.ts#L14"
}
],
"signatures": [
{
- "id": 35466,
+ "id": 18177,
"name": "deleteRefundReasonsStep",
"variant": "signature",
"kind": 4096,
@@ -728009,12 +728933,12 @@
"fileName": "core-flows/src/payment-collection/steps/delete-refund-reasons.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/delete-refund-reasons.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/delete-refund-reasons.ts#L14"
}
],
"parameters": [
{
- "id": 35467,
+ "id": 18178,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -728024,7 +728948,7 @@
"types": [
{
"type": "reference",
- "target": 35463,
+ "target": 18174,
"name": "DeleteRefundReasonsStepInput",
"package": "@medusajs/core-flows"
},
@@ -728037,7 +728961,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35463,
+ "target": 18174,
"name": "DeleteRefundReasonsStepInput",
"package": "@medusajs/core-flows"
}
@@ -728057,7 +728981,7 @@
]
},
{
- "id": 35471,
+ "id": 18182,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -728075,7 +728999,7 @@
"fileName": "core-flows/src/payment-collection/steps/update-payment-collection.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L20"
}
],
"type": {
@@ -728089,7 +729013,7 @@
}
},
{
- "id": 35472,
+ "id": 18183,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -728107,7 +729031,7 @@
"fileName": "core-flows/src/payment-collection/steps/update-payment-collection.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L24"
}
],
"type": {
@@ -728121,7 +729045,7 @@
}
},
{
- "id": 35473,
+ "id": 18184,
"name": "updatePaymentCollectionStepId",
"variant": "declaration",
"kind": 32,
@@ -728133,7 +729057,7 @@
"fileName": "core-flows/src/payment-collection/steps/update-payment-collection.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L27"
}
],
"type": {
@@ -728143,7 +729067,7 @@
"defaultValue": "\"update-payment-collection\""
},
{
- "id": 35474,
+ "id": 18185,
"name": "updatePaymentCollectionStep",
"variant": "declaration",
"kind": 64,
@@ -728196,7 +729120,7 @@
},
"children": [
{
- "id": 35483,
+ "id": 18194,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -728214,7 +729138,7 @@
}
},
{
- "id": 35484,
+ "id": 18195,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -728236,8 +729160,8 @@
{
"title": "Properties",
"children": [
- 35483,
- 35484
+ 18194,
+ 18195
]
}
],
@@ -728246,12 +729170,12 @@
"fileName": "core-flows/src/payment-collection/steps/update-payment-collection.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L41"
}
],
"signatures": [
{
- "id": 35475,
+ "id": 18186,
"name": "updatePaymentCollectionStep",
"variant": "signature",
"kind": 4096,
@@ -728307,12 +729231,12 @@
"fileName": "core-flows/src/payment-collection/steps/update-payment-collection.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-payment-collection.ts#L41"
}
],
"parameters": [
{
- "id": 35476,
+ "id": 18187,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -728322,7 +729246,7 @@
"types": [
{
"type": "reference",
- "target": 35470,
+ "target": 18181,
"name": "UpdatePaymentCollectionStepInput",
"package": "@medusajs/core-flows"
},
@@ -728335,7 +729259,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35470,
+ "target": 18181,
"name": "UpdatePaymentCollectionStepInput",
"package": "@medusajs/core-flows"
}
@@ -728425,14 +729349,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35477,
+ "id": 18188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35478,
+ "id": 18189,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -728446,7 +729370,7 @@
],
"signatures": [
{
- "id": 35479,
+ "id": 18190,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -728460,7 +729384,7 @@
],
"parameters": [
{
- "id": 35480,
+ "id": 18191,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -728471,14 +729395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35481,
+ "id": 18192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35482,
+ "id": 18193,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -728502,7 +729426,7 @@
{
"title": "Properties",
"children": [
- 35482
+ 18193
]
}
],
@@ -728587,7 +729511,7 @@
{
"title": "Methods",
"children": [
- 35478
+ 18189
]
}
],
@@ -728629,7 +729553,7 @@
]
},
{
- "id": 35486,
+ "id": 18197,
"name": "updateRefundReasonStepId",
"variant": "declaration",
"kind": 32,
@@ -728641,7 +729565,7 @@
"fileName": "core-flows/src/payment-collection/steps/update-refund-reasons.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-refund-reasons.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-refund-reasons.ts#L17"
}
],
"type": {
@@ -728651,7 +729575,7 @@
"defaultValue": "\"update-refund-reasons\""
},
{
- "id": 35487,
+ "id": 18198,
"name": "updateRefundReasonsStep",
"variant": "declaration",
"kind": 64,
@@ -728677,7 +729601,7 @@
},
"children": [
{
- "id": 35496,
+ "id": 18207,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -728695,7 +729619,7 @@
}
},
{
- "id": 35497,
+ "id": 18208,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -728717,8 +729641,8 @@
{
"title": "Properties",
"children": [
- 35496,
- 35497
+ 18207,
+ 18208
]
}
],
@@ -728727,12 +729651,12 @@
"fileName": "core-flows/src/payment-collection/steps/update-refund-reasons.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-refund-reasons.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-refund-reasons.ts#L21"
}
],
"signatures": [
{
- "id": 35488,
+ "id": 18199,
"name": "updateRefundReasonsStep",
"variant": "signature",
"kind": 4096,
@@ -728761,12 +729685,12 @@
"fileName": "core-flows/src/payment-collection/steps/update-refund-reasons.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/update-refund-reasons.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/update-refund-reasons.ts#L21"
}
],
"parameters": [
{
- "id": 35489,
+ "id": 18200,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -728776,7 +729700,7 @@
"types": [
{
"type": "reference",
- "target": 35485,
+ "target": 18196,
"name": "UpdateRefundReasonStepInput",
"package": "@medusajs/core-flows"
},
@@ -728789,7 +729713,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35485,
+ "target": 18196,
"name": "UpdateRefundReasonStepInput",
"package": "@medusajs/core-flows"
}
@@ -728879,14 +729803,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35490,
+ "id": 18201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35491,
+ "id": 18202,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -728900,7 +729824,7 @@
],
"signatures": [
{
- "id": 35492,
+ "id": 18203,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -728914,7 +729838,7 @@
],
"parameters": [
{
- "id": 35493,
+ "id": 18204,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -728925,14 +729849,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35494,
+ "id": 18205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35495,
+ "id": 18206,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -728956,7 +729880,7 @@
{
"title": "Properties",
"children": [
- 35495
+ 18206
]
}
],
@@ -729041,7 +729965,7 @@
{
"title": "Methods",
"children": [
- 35491
+ 18202
]
}
],
@@ -729083,7 +730007,7 @@
]
},
{
- "id": 35499,
+ "id": 18210,
"name": "idsToDelete",
"variant": "declaration",
"kind": 1024,
@@ -729101,7 +730025,7 @@
"fileName": "core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L11"
}
],
"type": {
@@ -729113,7 +730037,7 @@
}
},
{
- "id": 35500,
+ "id": 18211,
"name": "idsDeleted",
"variant": "declaration",
"kind": 1024,
@@ -729131,7 +730055,7 @@
"fileName": "core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L15"
}
],
"type": {
@@ -729143,7 +730067,7 @@
}
},
{
- "id": 35501,
+ "id": 18212,
"name": "validateDeletedPaymentSessionsStepId",
"variant": "declaration",
"kind": 32,
@@ -729155,7 +730079,7 @@
"fileName": "core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L18"
}
],
"type": {
@@ -729165,7 +730089,7 @@
"defaultValue": "\"validate-deleted-payment-sessions\""
},
{
- "id": 35502,
+ "id": 18213,
"name": "validateDeletedPaymentSessionsStep",
"variant": "declaration",
"kind": 64,
@@ -729200,7 +730124,7 @@
},
"children": [
{
- "id": 35505,
+ "id": 18216,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -729218,7 +730142,7 @@
}
},
{
- "id": 35506,
+ "id": 18217,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -729240,8 +730164,8 @@
{
"title": "Properties",
"children": [
- 35505,
- 35506
+ 18216,
+ 18217
]
}
],
@@ -729250,12 +730174,12 @@
"fileName": "core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L30"
}
],
"signatures": [
{
- "id": 35503,
+ "id": 18214,
"name": "validateDeletedPaymentSessionsStep",
"variant": "signature",
"kind": 4096,
@@ -729293,12 +730217,12 @@
"fileName": "core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/validate-deleted-payment-sessions.ts#L30"
}
],
"parameters": [
{
- "id": 35504,
+ "id": 18215,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -729308,7 +730232,7 @@
"types": [
{
"type": "reference",
- "target": 35498,
+ "target": 18209,
"name": "ValidateDeletedPaymentSessionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -729321,7 +730245,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35498,
+ "target": 18209,
"name": "ValidateDeletedPaymentSessionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -729341,7 +730265,7 @@
]
},
{
- "id": 35507,
+ "id": 18218,
"name": "createPaymentAccountHolderStepId",
"variant": "declaration",
"kind": 32,
@@ -729353,7 +730277,7 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-account-holder.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-account-holder.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-account-holder.ts#L8"
}
],
"type": {
@@ -729363,7 +730287,7 @@
"defaultValue": "\"create-payment-account-holder\""
},
{
- "id": 35508,
+ "id": 18219,
"name": "createPaymentAccountHolderStep",
"variant": "declaration",
"kind": 64,
@@ -729398,7 +730322,7 @@
},
"children": [
{
- "id": 35526,
+ "id": 18237,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -729416,7 +730340,7 @@
}
},
{
- "id": 35527,
+ "id": 18238,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -729438,8 +730362,8 @@
{
"title": "Properties",
"children": [
- 35526,
- 35527
+ 18237,
+ 18238
]
}
],
@@ -729448,12 +730372,12 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-account-holder.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-account-holder.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-account-holder.ts#L23"
}
],
"signatures": [
{
- "id": 35509,
+ "id": 18220,
"name": "createPaymentAccountHolderStep",
"variant": "signature",
"kind": 4096,
@@ -729491,12 +730415,12 @@
"fileName": "core-flows/src/payment-collection/steps/create-payment-account-holder.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/steps/create-payment-account-holder.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/steps/create-payment-account-holder.ts#L23"
}
],
"parameters": [
{
- "id": 35510,
+ "id": 18221,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -729543,14 +730467,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35511,
+ "id": 18222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35512,
+ "id": 18223,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -729596,7 +730520,7 @@
}
},
{
- "id": 35513,
+ "id": 18224,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -729642,7 +730566,7 @@
}
},
{
- "id": 35514,
+ "id": 18225,
"name": "external_id",
"variant": "declaration",
"kind": 1024,
@@ -729688,7 +730612,7 @@
}
},
{
- "id": 35515,
+ "id": 18226,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -729747,7 +730671,7 @@
}
},
{
- "id": 35516,
+ "id": 18227,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -729823,7 +730747,7 @@
}
},
{
- "id": 35517,
+ "id": 18228,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -729906,7 +730830,7 @@
}
},
{
- "id": 35518,
+ "id": 18229,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -729989,7 +730913,7 @@
}
},
{
- "id": 35519,
+ "id": 18230,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -730088,14 +731012,14 @@
{
"title": "Properties",
"children": [
- 35512,
- 35513,
- 35514,
- 35515,
- 35516,
- 35517,
- 35518,
- 35519
+ 18223,
+ 18224,
+ 18225,
+ 18226,
+ 18227,
+ 18228,
+ 18229,
+ 18230
]
}
],
@@ -730140,14 +731064,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35520,
+ "id": 18231,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35521,
+ "id": 18232,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -730161,7 +731085,7 @@
],
"signatures": [
{
- "id": 35522,
+ "id": 18233,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -730175,7 +731099,7 @@
],
"parameters": [
{
- "id": 35523,
+ "id": 18234,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -730186,14 +731110,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35524,
+ "id": 18235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35525,
+ "id": 18236,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -730217,7 +731141,7 @@
{
"title": "Properties",
"children": [
- 35525
+ 18236
]
}
],
@@ -730299,7 +731223,7 @@
{
"title": "Methods",
"children": [
- 35521
+ 18232
]
}
],
@@ -730340,14 +731264,14 @@
]
},
{
- "id": 17347,
+ "id": 52,
"name": "Workflows_Payment Collection",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 35529,
+ "id": 18240,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -730365,7 +731289,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 29,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L29"
}
],
"type": {
@@ -730374,7 +731298,7 @@
}
},
{
- "id": 35530,
+ "id": 18241,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -730392,7 +731316,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L34"
}
],
"type": {
@@ -730401,7 +731325,7 @@
}
},
{
- "id": 35531,
+ "id": 18242,
"name": "customer_id",
"variant": "declaration",
"kind": 1024,
@@ -730421,7 +731345,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L38"
}
],
"type": {
@@ -730430,7 +731354,7 @@
}
},
{
- "id": 35532,
+ "id": 18243,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -730450,7 +731374,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 43,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L43"
}
],
"type": {
@@ -730474,7 +731398,7 @@
}
},
{
- "id": 35533,
+ "id": 18244,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -730494,7 +731418,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L49"
}
],
"type": {
@@ -730518,7 +731442,7 @@
}
},
{
- "id": 35534,
+ "id": 18245,
"name": "createPaymentSessionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -730530,7 +731454,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L52"
}
],
"type": {
@@ -730540,7 +731464,7 @@
"defaultValue": "\"create-payment-sessions\""
},
{
- "id": 35535,
+ "id": 18246,
"name": "createPaymentSessionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -730593,7 +731517,7 @@
},
"children": [
{
- "id": 35543,
+ "id": 18254,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -730616,7 +731540,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35544,
+ "id": 18255,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -730630,7 +731554,7 @@
],
"signatures": [
{
- "id": 35545,
+ "id": 18256,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -730658,7 +731582,7 @@
],
"parameters": [
{
- "id": 35546,
+ "id": 18257,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -730674,14 +731598,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35547,
+ "id": 18258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35548,
+ "id": 18259,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -730706,7 +731630,7 @@
"types": [
{
"type": "reference",
- "target": 35528,
+ "target": 18239,
"name": "CreatePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -730719,7 +731643,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35528,
+ "target": 18239,
"name": "CreatePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -730735,7 +731659,7 @@
{
"title": "Properties",
"children": [
- 35548
+ 18259
]
}
],
@@ -730756,14 +731680,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35549,
+ "id": 18260,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35550,
+ "id": 18261,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -730809,7 +731733,7 @@
}
},
{
- "id": 35551,
+ "id": 18262,
"name": "amount",
"variant": "declaration",
"kind": 1024,
@@ -730865,7 +731789,7 @@
}
},
{
- "id": 35552,
+ "id": 18263,
"name": "currency_code",
"variant": "declaration",
"kind": 1024,
@@ -730911,7 +731835,7 @@
}
},
{
- "id": 35553,
+ "id": 18264,
"name": "provider_id",
"variant": "declaration",
"kind": 1024,
@@ -730957,7 +731881,7 @@
}
},
{
- "id": 35554,
+ "id": 18265,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -731033,7 +731957,7 @@
}
},
{
- "id": 35555,
+ "id": 18266,
"name": "context",
"variant": "declaration",
"kind": 1024,
@@ -731120,7 +732044,7 @@
}
},
{
- "id": 35556,
+ "id": 18267,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -731176,7 +732100,7 @@
}
},
{
- "id": 35557,
+ "id": 18268,
"name": "authorized_at",
"variant": "declaration",
"kind": 1024,
@@ -731243,7 +732167,7 @@
}
},
{
- "id": 35558,
+ "id": 18269,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -731312,7 +732236,7 @@
}
},
{
- "id": 35559,
+ "id": 18270,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -731381,7 +732305,7 @@
}
},
{
- "id": 35560,
+ "id": 18271,
"name": "payment_collection_id",
"variant": "declaration",
"kind": 1024,
@@ -731427,7 +732351,7 @@
}
},
{
- "id": 35561,
+ "id": 18272,
"name": "payment_collection",
"variant": "declaration",
"kind": 1024,
@@ -731497,7 +732421,7 @@
}
},
{
- "id": 35562,
+ "id": 18273,
"name": "payment",
"variant": "declaration",
"kind": 1024,
@@ -731567,7 +732491,7 @@
}
},
{
- "id": 35563,
+ "id": 18274,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -731658,20 +732582,20 @@
{
"title": "Properties",
"children": [
- 35550,
- 35551,
- 35552,
- 35553,
- 35554,
- 35555,
- 35556,
- 35557,
- 35558,
- 35559,
- 35560,
- 35561,
- 35562,
- 35563
+ 18261,
+ 18262,
+ 18263,
+ 18264,
+ 18265,
+ 18266,
+ 18267,
+ 18268,
+ 18269,
+ 18270,
+ 18271,
+ 18272,
+ 18273,
+ 18274
]
}
],
@@ -731716,14 +732640,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35564,
+ "id": 18275,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35565,
+ "id": 18276,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -731737,7 +732661,7 @@
],
"signatures": [
{
- "id": 35566,
+ "id": 18277,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -731751,7 +732675,7 @@
],
"parameters": [
{
- "id": 35567,
+ "id": 18278,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -731762,14 +732686,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35568,
+ "id": 18279,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35569,
+ "id": 18280,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -731793,7 +732717,7 @@
{
"title": "Properties",
"children": [
- 35569
+ 18280
]
}
],
@@ -731875,7 +732799,7 @@
{
"title": "Methods",
"children": [
- 35565
+ 18276
]
}
],
@@ -731916,7 +732840,7 @@
}
},
{
- "id": 35570,
+ "id": 18281,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -731939,7 +732863,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35571,
+ "id": 18282,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -731953,7 +732877,7 @@
],
"signatures": [
{
- "id": 35572,
+ "id": 18283,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -731981,7 +732905,7 @@
],
"typeParameters": [
{
- "id": 35573,
+ "id": 18284,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -731992,7 +732916,7 @@
}
},
{
- "id": 35574,
+ "id": 18285,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -732005,7 +732929,7 @@
],
"parameters": [
{
- "id": 35575,
+ "id": 18286,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -732038,7 +732962,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -732049,13 +732973,13 @@
},
"trueType": {
"type": "reference",
- "target": 35528,
+ "target": 18239,
"name": "CreatePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -732088,7 +733012,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -732108,7 +733032,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -732128,7 +733052,7 @@
}
},
{
- "id": 35576,
+ "id": 18287,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -732151,7 +733075,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35577,
+ "id": 18288,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -732165,7 +733089,7 @@
],
"signatures": [
{
- "id": 35578,
+ "id": 18289,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -732187,7 +733111,7 @@
}
},
{
- "id": 35579,
+ "id": 18290,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -732210,7 +733134,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35580,
+ "id": 18291,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -732224,7 +733148,7 @@
],
"signatures": [
{
- "id": 35581,
+ "id": 18292,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -732238,7 +733162,7 @@
],
"parameters": [
{
- "id": 35582,
+ "id": 18293,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -732264,7 +733188,7 @@
}
},
{
- "id": 35583,
+ "id": 18294,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -732287,7 +733211,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35584,
+ "id": 18295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -732298,7 +733222,7 @@
],
"documents": [
{
- "id": 43043,
+ "id": 25984,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -732333,7 +733257,7 @@
"frontmatter": {},
"children": [
{
- "id": 43044,
+ "id": 25985,
"name": "createPaymentAccountHolderStep",
"variant": "document",
"kind": 8388608,
@@ -732361,7 +733285,7 @@
]
},
{
- "id": 43045,
+ "id": 25986,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -732396,7 +733320,7 @@
"frontmatter": {},
"children": [
{
- "id": 43046,
+ "id": 25987,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -732424,7 +733348,7 @@
]
},
{
- "id": 43047,
+ "id": 25988,
"name": "createPaymentSessionStep",
"variant": "document",
"kind": 8388608,
@@ -732450,7 +733374,7 @@
"frontmatter": {}
},
{
- "id": 43048,
+ "id": 25989,
"name": "deletePaymentSessionsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -732477,21 +733401,21 @@
}
],
"childrenIncludingDocuments": [
- 35543,
- 35570,
- 35576,
- 35579,
- 35583
+ 18254,
+ 18281,
+ 18287,
+ 18290,
+ 18294
],
"groups": [
{
"title": "Properties",
"children": [
- 35543,
- 35570,
- 35576,
- 35579,
- 35583
+ 18254,
+ 18281,
+ 18287,
+ 18290,
+ 18294
]
}
],
@@ -732500,12 +733424,12 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L73"
}
],
"signatures": [
{
- "id": 35536,
+ "id": 18247,
"name": "createPaymentSessionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -732561,12 +733485,12 @@
"fileName": "core-flows/src/payment-collection/workflows/create-payment-session.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-payment-session.ts#L73"
}
],
"typeParameters": [
{
- "id": 35537,
+ "id": 18248,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -732577,7 +733501,7 @@
}
},
{
- "id": 35538,
+ "id": 18249,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -732590,7 +733514,7 @@
],
"parameters": [
{
- "id": 35539,
+ "id": 18250,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -732614,14 +733538,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35540,
+ "id": 18251,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35541,
+ "id": 18252,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -732644,7 +733568,7 @@
}
},
{
- "id": 35542,
+ "id": 18253,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -732671,8 +733595,8 @@
{
"title": "Properties",
"children": [
- 35541,
- 35542
+ 18252,
+ 18253
]
}
],
@@ -732747,7 +733671,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35528,
+ "target": 18239,
"name": "CreatePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -732762,14 +733686,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -732784,7 +733708,7 @@
]
},
{
- "id": 35587,
+ "id": 18298,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -732802,7 +733726,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-refund-reasons.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L12"
}
],
"type": {
@@ -732819,7 +733743,7 @@
}
},
{
- "id": 35588,
+ "id": 18299,
"name": "createRefundReasonsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -732831,7 +733755,7 @@
"fileName": "core-flows/src/payment-collection/workflows/create-refund-reasons.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L15"
}
],
"type": {
@@ -732841,7 +733765,7 @@
"defaultValue": "\"create-refund-reasons-workflow\""
},
{
- "id": 35589,
+ "id": 18300,
"name": "createRefundReasonsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -732885,7 +733809,7 @@
},
"children": [
{
- "id": 35597,
+ "id": 18308,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -732908,7 +733832,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35598,
+ "id": 18309,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -732922,7 +733846,7 @@
],
"signatures": [
{
- "id": 35599,
+ "id": 18310,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -732950,7 +733874,7 @@
],
"parameters": [
{
- "id": 35600,
+ "id": 18311,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -732966,14 +733890,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35601,
+ "id": 18312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35602,
+ "id": 18313,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -732998,7 +733922,7 @@
"types": [
{
"type": "reference",
- "target": 35585,
+ "target": 18296,
"name": "CreateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -733011,7 +733935,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35585,
+ "target": 18296,
"name": "CreateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -733027,7 +733951,7 @@
{
"title": "Properties",
"children": [
- 35602
+ 18313
]
}
],
@@ -733120,14 +734044,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35603,
+ "id": 18314,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35604,
+ "id": 18315,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -733141,7 +734065,7 @@
],
"signatures": [
{
- "id": 35605,
+ "id": 18316,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -733155,7 +734079,7 @@
],
"parameters": [
{
- "id": 35606,
+ "id": 18317,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -733166,14 +734090,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35607,
+ "id": 18318,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35608,
+ "id": 18319,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -733197,7 +734121,7 @@
{
"title": "Properties",
"children": [
- 35608
+ 18319
]
}
],
@@ -733282,7 +734206,7 @@
{
"title": "Methods",
"children": [
- 35604
+ 18315
]
}
],
@@ -733326,7 +734250,7 @@
}
},
{
- "id": 35609,
+ "id": 18320,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -733349,7 +734273,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35610,
+ "id": 18321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -733363,7 +734287,7 @@
],
"signatures": [
{
- "id": 35611,
+ "id": 18322,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -733391,7 +734315,7 @@
],
"typeParameters": [
{
- "id": 35612,
+ "id": 18323,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -733402,7 +734326,7 @@
}
},
{
- "id": 35613,
+ "id": 18324,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -733415,7 +734339,7 @@
],
"parameters": [
{
- "id": 35614,
+ "id": 18325,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -733448,7 +734372,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -733459,13 +734383,13 @@
},
"trueType": {
"type": "reference",
- "target": 35585,
+ "target": 18296,
"name": "CreateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -733498,7 +734422,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -733521,7 +734445,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -733541,7 +734465,7 @@
}
},
{
- "id": 35615,
+ "id": 18326,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -733564,7 +734488,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35616,
+ "id": 18327,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -733578,7 +734502,7 @@
],
"signatures": [
{
- "id": 35617,
+ "id": 18328,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -733600,7 +734524,7 @@
}
},
{
- "id": 35618,
+ "id": 18329,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -733623,7 +734547,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35619,
+ "id": 18330,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -733637,7 +734561,7 @@
],
"signatures": [
{
- "id": 35620,
+ "id": 18331,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -733651,7 +734575,7 @@
],
"parameters": [
{
- "id": 35621,
+ "id": 18332,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -733677,7 +734601,7 @@
}
},
{
- "id": 35622,
+ "id": 18333,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -733700,7 +734624,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35623,
+ "id": 18334,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -733711,7 +734635,7 @@
],
"documents": [
{
- "id": 43049,
+ "id": 25990,
"name": "createRefundReasonStep",
"variant": "document",
"kind": 8388608,
@@ -733738,21 +734662,21 @@
}
],
"childrenIncludingDocuments": [
- 35597,
- 35609,
- 35615,
- 35618,
- 35622
+ 18308,
+ 18320,
+ 18326,
+ 18329,
+ 18333
],
"groups": [
{
"title": "Properties",
"children": [
- 35597,
- 35609,
- 35615,
- 35618,
- 35622
+ 18308,
+ 18320,
+ 18326,
+ 18329,
+ 18333
]
}
],
@@ -733761,12 +734685,12 @@
"fileName": "core-flows/src/payment-collection/workflows/create-refund-reasons.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L40"
}
],
"signatures": [
{
- "id": 35590,
+ "id": 18301,
"name": "createRefundReasonsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -733813,12 +734737,12 @@
"fileName": "core-flows/src/payment-collection/workflows/create-refund-reasons.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/create-refund-reasons.ts#L40"
}
],
"typeParameters": [
{
- "id": 35591,
+ "id": 18302,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -733829,7 +734753,7 @@
}
},
{
- "id": 35592,
+ "id": 18303,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -733842,7 +734766,7 @@
],
"parameters": [
{
- "id": 35593,
+ "id": 18304,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -733866,14 +734790,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35594,
+ "id": 18305,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35595,
+ "id": 18306,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -733896,7 +734820,7 @@
}
},
{
- "id": 35596,
+ "id": 18307,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -733923,8 +734847,8 @@
{
"title": "Properties",
"children": [
- 35595,
- 35596
+ 18306,
+ 18307
]
}
],
@@ -733999,7 +734923,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35585,
+ "target": 18296,
"name": "CreateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -734017,14 +734941,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -734039,7 +734963,7 @@
]
},
{
- "id": 35625,
+ "id": 18336,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -734057,7 +734981,7 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-payment-sessions.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L18"
}
],
"type": {
@@ -734069,7 +734993,7 @@
}
},
{
- "id": 35626,
+ "id": 18337,
"name": "deletePaymentSessionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -734081,7 +735005,7 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-payment-sessions.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L21"
}
],
"type": {
@@ -734091,7 +735015,7 @@
"defaultValue": "\"delete-payment-sessions\""
},
{
- "id": 35627,
+ "id": 18338,
"name": "deletePaymentSessionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -734144,7 +735068,7 @@
},
"children": [
{
- "id": 35635,
+ "id": 18346,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -734167,7 +735091,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35636,
+ "id": 18347,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -734181,7 +735105,7 @@
],
"signatures": [
{
- "id": 35637,
+ "id": 18348,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -734209,7 +735133,7 @@
],
"parameters": [
{
- "id": 35638,
+ "id": 18349,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -734225,14 +735149,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35639,
+ "id": 18350,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35640,
+ "id": 18351,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -734257,7 +735181,7 @@
"types": [
{
"type": "reference",
- "target": 35624,
+ "target": 18335,
"name": "DeletePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -734270,7 +735194,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35624,
+ "target": 18335,
"name": "DeletePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -734286,7 +735210,7 @@
{
"title": "Properties",
"children": [
- 35640
+ 18351
]
}
],
@@ -734359,14 +735283,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35641,
+ "id": 18352,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35642,
+ "id": 18353,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -734380,7 +735304,7 @@
],
"signatures": [
{
- "id": 35643,
+ "id": 18354,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -734394,7 +735318,7 @@
],
"parameters": [
{
- "id": 35644,
+ "id": 18355,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -734405,14 +735329,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35645,
+ "id": 18356,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35646,
+ "id": 18357,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -734436,7 +735360,7 @@
{
"title": "Properties",
"children": [
- 35646
+ 18357
]
}
],
@@ -734516,7 +735440,7 @@
{
"title": "Methods",
"children": [
- 35642
+ 18353
]
}
],
@@ -734555,7 +735479,7 @@
}
},
{
- "id": 35647,
+ "id": 18358,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -734578,7 +735502,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35648,
+ "id": 18359,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -734592,7 +735516,7 @@
],
"signatures": [
{
- "id": 35649,
+ "id": 18360,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -734620,7 +735544,7 @@
],
"typeParameters": [
{
- "id": 35650,
+ "id": 18361,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -734631,7 +735555,7 @@
}
},
{
- "id": 35651,
+ "id": 18362,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -734644,7 +735568,7 @@
],
"parameters": [
{
- "id": 35652,
+ "id": 18363,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -734677,7 +735601,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -734688,13 +735612,13 @@
},
"trueType": {
"type": "reference",
- "target": 35624,
+ "target": 18335,
"name": "DeletePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -734727,7 +735651,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -734745,7 +735669,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -734765,7 +735689,7 @@
}
},
{
- "id": 35653,
+ "id": 18364,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -734788,7 +735712,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35654,
+ "id": 18365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -734802,7 +735726,7 @@
],
"signatures": [
{
- "id": 35655,
+ "id": 18366,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -734824,7 +735748,7 @@
}
},
{
- "id": 35656,
+ "id": 18367,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -734847,7 +735771,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35657,
+ "id": 18368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -734861,7 +735785,7 @@
],
"signatures": [
{
- "id": 35658,
+ "id": 18369,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -734875,7 +735799,7 @@
],
"parameters": [
{
- "id": 35659,
+ "id": 18370,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -734901,7 +735825,7 @@
}
},
{
- "id": 35660,
+ "id": 18371,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -734924,7 +735848,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35661,
+ "id": 18372,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -734935,7 +735859,7 @@
],
"documents": [
{
- "id": 43050,
+ "id": 25991,
"name": "deletePaymentSessionsStep",
"variant": "document",
"kind": 8388608,
@@ -734961,7 +735885,7 @@
"frontmatter": {}
},
{
- "id": 43051,
+ "id": 25992,
"name": "validateDeletedPaymentSessionsStep",
"variant": "document",
"kind": 8388608,
@@ -734988,21 +735912,21 @@
}
],
"childrenIncludingDocuments": [
- 35635,
- 35647,
- 35653,
- 35656,
- 35660
+ 18346,
+ 18358,
+ 18364,
+ 18367,
+ 18371
],
"groups": [
{
"title": "Properties",
"children": [
- 35635,
- 35647,
- 35653,
- 35656,
- 35660
+ 18346,
+ 18358,
+ 18364,
+ 18367,
+ 18371
]
}
],
@@ -735011,12 +735935,12 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-payment-sessions.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L41"
}
],
"signatures": [
{
- "id": 35628,
+ "id": 18339,
"name": "deletePaymentSessionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -735072,12 +735996,12 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-payment-sessions.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-payment-sessions.ts#L41"
}
],
"typeParameters": [
{
- "id": 35629,
+ "id": 18340,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -735088,7 +736012,7 @@
}
},
{
- "id": 35630,
+ "id": 18341,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -735101,7 +736025,7 @@
],
"parameters": [
{
- "id": 35631,
+ "id": 18342,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -735125,14 +736049,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35632,
+ "id": 18343,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35633,
+ "id": 18344,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -735155,7 +736079,7 @@
}
},
{
- "id": 35634,
+ "id": 18345,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -735182,8 +736106,8 @@
{
"title": "Properties",
"children": [
- 35633,
- 35634
+ 18344,
+ 18345
]
}
],
@@ -735258,7 +736182,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35624,
+ "target": 18335,
"name": "DeletePaymentSessionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -735271,14 +736195,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -735293,7 +736217,7 @@
]
},
{
- "id": 35664,
+ "id": 18375,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -735311,7 +736235,7 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-refund-reasons.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L15"
}
],
"type": {
@@ -735323,7 +736247,7 @@
}
},
{
- "id": 35665,
+ "id": 18376,
"name": "deleteRefundReasonsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -735335,7 +736259,7 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-refund-reasons.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L18"
}
],
"type": {
@@ -735345,7 +736269,7 @@
"defaultValue": "\"delete-refund-reasons-workflow\""
},
{
- "id": 35666,
+ "id": 18377,
"name": "deleteRefundReasonsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -735389,7 +736313,7 @@
},
"children": [
{
- "id": 35674,
+ "id": 18385,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -735412,7 +736336,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35675,
+ "id": 18386,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -735426,7 +736350,7 @@
],
"signatures": [
{
- "id": 35676,
+ "id": 18387,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -735454,7 +736378,7 @@
],
"parameters": [
{
- "id": 35677,
+ "id": 18388,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -735470,14 +736394,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35678,
+ "id": 18389,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35679,
+ "id": 18390,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -735502,7 +736426,7 @@
"types": [
{
"type": "reference",
- "target": 35662,
+ "target": 18373,
"name": "DeleteRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -735515,7 +736439,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35662,
+ "target": 18373,
"name": "DeleteRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -735531,7 +736455,7 @@
{
"title": "Properties",
"children": [
- 35679
+ 18390
]
}
],
@@ -735571,14 +736495,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35680,
+ "id": 18391,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35681,
+ "id": 18392,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -735592,7 +736516,7 @@
],
"signatures": [
{
- "id": 35682,
+ "id": 18393,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -735606,7 +736530,7 @@
],
"parameters": [
{
- "id": 35683,
+ "id": 18394,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -735617,14 +736541,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35684,
+ "id": 18395,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35685,
+ "id": 18396,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -735648,7 +736572,7 @@
{
"title": "Properties",
"children": [
- 35685
+ 18396
]
}
],
@@ -735725,7 +736649,7 @@
{
"title": "Methods",
"children": [
- 35681
+ 18392
]
}
],
@@ -735761,7 +736685,7 @@
}
},
{
- "id": 35686,
+ "id": 18397,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -735784,7 +736708,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35687,
+ "id": 18398,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -735798,7 +736722,7 @@
],
"signatures": [
{
- "id": 35688,
+ "id": 18399,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -735826,7 +736750,7 @@
],
"typeParameters": [
{
- "id": 35689,
+ "id": 18400,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -735837,7 +736761,7 @@
}
},
{
- "id": 35690,
+ "id": 18401,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -735850,7 +736774,7 @@
],
"parameters": [
{
- "id": 35691,
+ "id": 18402,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -735883,7 +736807,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -735894,13 +736818,13 @@
},
"trueType": {
"type": "reference",
- "target": 35662,
+ "target": 18373,
"name": "DeleteRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -735933,7 +736857,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -735948,7 +736872,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -735968,7 +736892,7 @@
}
},
{
- "id": 35692,
+ "id": 18403,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -735991,7 +736915,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35693,
+ "id": 18404,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -736005,7 +736929,7 @@
],
"signatures": [
{
- "id": 35694,
+ "id": 18405,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -736027,7 +736951,7 @@
}
},
{
- "id": 35695,
+ "id": 18406,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -736050,7 +736974,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35696,
+ "id": 18407,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -736064,7 +736988,7 @@
],
"signatures": [
{
- "id": 35697,
+ "id": 18408,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -736078,7 +737002,7 @@
],
"parameters": [
{
- "id": 35698,
+ "id": 18409,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -736104,7 +737028,7 @@
}
},
{
- "id": 35699,
+ "id": 18410,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -736127,7 +737051,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35700,
+ "id": 18411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -736138,7 +737062,7 @@
],
"documents": [
{
- "id": 43052,
+ "id": 25993,
"name": "deleteRefundReasonsStep",
"variant": "document",
"kind": 8388608,
@@ -736165,21 +737089,21 @@
}
],
"childrenIncludingDocuments": [
- 35674,
- 35686,
- 35692,
- 35695,
- 35699
+ 18385,
+ 18397,
+ 18403,
+ 18406,
+ 18410
],
"groups": [
{
"title": "Properties",
"children": [
- 35674,
- 35686,
- 35692,
- 35695,
- 35699
+ 18385,
+ 18397,
+ 18403,
+ 18406,
+ 18410
]
}
],
@@ -736188,12 +737112,12 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-refund-reasons.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L38"
}
],
"signatures": [
{
- "id": 35667,
+ "id": 18378,
"name": "deleteRefundReasonsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -736240,12 +737164,12 @@
"fileName": "core-flows/src/payment-collection/workflows/delete-refund-reasons.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/delete-refund-reasons.ts#L38"
}
],
"typeParameters": [
{
- "id": 35668,
+ "id": 18379,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -736256,7 +737180,7 @@
}
},
{
- "id": 35669,
+ "id": 18380,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -736269,7 +737193,7 @@
],
"parameters": [
{
- "id": 35670,
+ "id": 18381,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -736293,14 +737217,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35671,
+ "id": 18382,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35672,
+ "id": 18383,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -736323,7 +737247,7 @@
}
},
{
- "id": 35673,
+ "id": 18384,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -736350,8 +737274,8 @@
{
"title": "Properties",
"children": [
- 35672,
- 35673
+ 18383,
+ 18384
]
}
],
@@ -736426,7 +737350,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35662,
+ "target": 18373,
"name": "DeleteRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -736436,14 +737360,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -736458,7 +737382,7 @@
]
},
{
- "id": 35703,
+ "id": 18414,
"name": "updateRefundReasonsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -736470,7 +737394,7 @@
"fileName": "core-flows/src/payment-collection/workflows/update-refund-reasons.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/update-refund-reasons.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/update-refund-reasons.ts#L22"
}
],
"type": {
@@ -736480,7 +737404,7 @@
"defaultValue": "\"update-refund-reasons\""
},
{
- "id": 35704,
+ "id": 18415,
"name": "updateRefundReasonsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -736524,7 +737448,7 @@
},
"children": [
{
- "id": 35712,
+ "id": 18423,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -736547,7 +737471,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35713,
+ "id": 18424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -736561,7 +737485,7 @@
],
"signatures": [
{
- "id": 35714,
+ "id": 18425,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -736589,7 +737513,7 @@
],
"parameters": [
{
- "id": 35715,
+ "id": 18426,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -736605,14 +737529,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35716,
+ "id": 18427,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35717,
+ "id": 18428,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -736637,7 +737561,7 @@
"types": [
{
"type": "reference",
- "target": 35701,
+ "target": 18412,
"name": "UpdateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -736650,7 +737574,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35701,
+ "target": 18412,
"name": "UpdateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -736666,7 +737590,7 @@
{
"title": "Properties",
"children": [
- 35717
+ 18428
]
}
],
@@ -736723,7 +737647,7 @@
},
{
"type": "reference",
- "target": 35702,
+ "target": 18413,
"name": "UpdateRefundReasonsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -736736,7 +737660,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35702,
+ "target": 18413,
"name": "UpdateRefundReasonsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -736747,14 +737671,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35718,
+ "id": 18429,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35719,
+ "id": 18430,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -736768,7 +737692,7 @@
],
"signatures": [
{
- "id": 35720,
+ "id": 18431,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -736782,7 +737706,7 @@
],
"parameters": [
{
- "id": 35721,
+ "id": 18432,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -736793,14 +737717,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35722,
+ "id": 18433,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35723,
+ "id": 18434,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -736824,7 +737748,7 @@
{
"title": "Properties",
"children": [
- 35723
+ 18434
]
}
],
@@ -736887,7 +737811,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35702,
+ "target": 18413,
"name": "UpdateRefundReasonsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -736903,7 +737827,7 @@
{
"title": "Methods",
"children": [
- 35719
+ 18430
]
}
],
@@ -736925,7 +737849,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35702,
+ "target": 18413,
"name": "UpdateRefundReasonsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -736941,7 +737865,7 @@
}
},
{
- "id": 35724,
+ "id": 18435,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -736964,7 +737888,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35725,
+ "id": 18436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -736978,7 +737902,7 @@
],
"signatures": [
{
- "id": 35726,
+ "id": 18437,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -737006,7 +737930,7 @@
],
"typeParameters": [
{
- "id": 35727,
+ "id": 18438,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -737017,7 +737941,7 @@
}
},
{
- "id": 35728,
+ "id": 18439,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -737030,7 +737954,7 @@
],
"parameters": [
{
- "id": 35729,
+ "id": 18440,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -737063,7 +737987,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -737074,13 +737998,13 @@
},
"trueType": {
"type": "reference",
- "target": 35701,
+ "target": 18412,
"name": "UpdateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -737113,7 +738037,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -737124,13 +738048,13 @@
},
"trueType": {
"type": "reference",
- "target": 35702,
+ "target": 18413,
"name": "UpdateRefundReasonsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -737150,7 +738074,7 @@
}
},
{
- "id": 35730,
+ "id": 18441,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -737173,7 +738097,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35731,
+ "id": 18442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -737187,7 +738111,7 @@
],
"signatures": [
{
- "id": 35732,
+ "id": 18443,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -737209,7 +738133,7 @@
}
},
{
- "id": 35733,
+ "id": 18444,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -737232,7 +738156,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35734,
+ "id": 18445,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -737246,7 +738170,7 @@
],
"signatures": [
{
- "id": 35735,
+ "id": 18446,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -737260,7 +738184,7 @@
],
"parameters": [
{
- "id": 35736,
+ "id": 18447,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -737286,7 +738210,7 @@
}
},
{
- "id": 35737,
+ "id": 18448,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -737309,7 +738233,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35738,
+ "id": 18449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -737320,7 +738244,7 @@
],
"documents": [
{
- "id": 43053,
+ "id": 25994,
"name": "updateRefundReasonsStep",
"variant": "document",
"kind": 8388608,
@@ -737347,21 +738271,21 @@
}
],
"childrenIncludingDocuments": [
- 35712,
- 35724,
- 35730,
- 35733,
- 35737
+ 18423,
+ 18435,
+ 18441,
+ 18444,
+ 18448
],
"groups": [
{
"title": "Properties",
"children": [
- 35712,
- 35724,
- 35730,
- 35733,
- 35737
+ 18423,
+ 18435,
+ 18441,
+ 18444,
+ 18448
]
}
],
@@ -737370,12 +738294,12 @@
"fileName": "core-flows/src/payment-collection/workflows/update-refund-reasons.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/update-refund-reasons.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/update-refund-reasons.ts#L45"
}
],
"signatures": [
{
- "id": 35705,
+ "id": 18416,
"name": "updateRefundReasonsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -737422,12 +738346,12 @@
"fileName": "core-flows/src/payment-collection/workflows/update-refund-reasons.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/payment-collection/workflows/update-refund-reasons.ts#L45"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/payment-collection/workflows/update-refund-reasons.ts#L45"
}
],
"typeParameters": [
{
- "id": 35706,
+ "id": 18417,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -737438,7 +738362,7 @@
}
},
{
- "id": 35707,
+ "id": 18418,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -737451,7 +738375,7 @@
],
"parameters": [
{
- "id": 35708,
+ "id": 18419,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -737475,14 +738399,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35709,
+ "id": 18420,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35710,
+ "id": 18421,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -737505,7 +738429,7 @@
}
},
{
- "id": 35711,
+ "id": 18422,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -737532,8 +738456,8 @@
{
"title": "Properties",
"children": [
- 35710,
- 35711
+ 18421,
+ 18422
]
}
],
@@ -737608,26 +738532,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 35701,
+ "target": 18412,
"name": "UpdateRefundReasonsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 35702,
+ "target": 18413,
"name": "UpdateRefundReasonsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -737646,21 +738570,21 @@
]
},
{
- "id": 17348,
+ "id": 53,
"name": "Price List",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17349,
+ "id": 54,
"name": "Steps_Price List",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 35739,
+ "id": 18450,
"name": "createPriceListPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -737672,7 +738596,7 @@
"fileName": "core-flows/src/price-list/steps/create-price-list-prices.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/create-price-list-prices.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/create-price-list-prices.ts#L11"
}
],
"type": {
@@ -737682,7 +738606,7 @@
"defaultValue": "\"create-price-list-prices\""
},
{
- "id": 35740,
+ "id": 18451,
"name": "createPriceListPricesStep",
"variant": "declaration",
"kind": 64,
@@ -737717,7 +738641,7 @@
},
"children": [
{
- "id": 35749,
+ "id": 18460,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -737735,7 +738659,7 @@
}
},
{
- "id": 35750,
+ "id": 18461,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -737757,8 +738681,8 @@
{
"title": "Properties",
"children": [
- 35749,
- 35750
+ 18460,
+ 18461
]
}
],
@@ -737767,12 +738691,12 @@
"fileName": "core-flows/src/price-list/steps/create-price-list-prices.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/create-price-list-prices.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/create-price-list-prices.ts#L32"
}
],
"signatures": [
{
- "id": 35741,
+ "id": 18452,
"name": "createPriceListPricesStep",
"variant": "signature",
"kind": 4096,
@@ -737810,12 +738734,12 @@
"fileName": "core-flows/src/price-list/steps/create-price-list-prices.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/create-price-list-prices.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/create-price-list-prices.ts#L32"
}
],
"parameters": [
{
- "id": 35742,
+ "id": 18453,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -737934,14 +738858,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35743,
+ "id": 18454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35744,
+ "id": 18455,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -737955,7 +738879,7 @@
],
"signatures": [
{
- "id": 35745,
+ "id": 18456,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -737969,7 +738893,7 @@
],
"parameters": [
{
- "id": 35746,
+ "id": 18457,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -737980,14 +738904,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35747,
+ "id": 18458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35748,
+ "id": 18459,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -738011,7 +738935,7 @@
{
"title": "Properties",
"children": [
- 35748
+ 18459
]
}
],
@@ -738096,7 +739020,7 @@
{
"title": "Methods",
"children": [
- 35744
+ 18455
]
}
],
@@ -738138,7 +739062,7 @@
]
},
{
- "id": 35751,
+ "id": 18462,
"name": "createPriceListsStepId",
"variant": "declaration",
"kind": 32,
@@ -738150,7 +739074,7 @@
"fileName": "core-flows/src/price-list/steps/create-price-lists.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/create-price-lists.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/create-price-lists.ts#L9"
}
],
"type": {
@@ -738160,7 +739084,7 @@
"defaultValue": "\"create-price-lists\""
},
{
- "id": 35752,
+ "id": 18463,
"name": "createPriceListsStep",
"variant": "declaration",
"kind": 64,
@@ -738195,7 +739119,7 @@
},
"children": [
{
- "id": 35761,
+ "id": 18472,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -738213,7 +739137,7 @@
}
},
{
- "id": 35762,
+ "id": 18473,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -738235,8 +739159,8 @@
{
"title": "Properties",
"children": [
- 35761,
- 35762
+ 18472,
+ 18473
]
}
],
@@ -738245,12 +739169,12 @@
"fileName": "core-flows/src/price-list/steps/create-price-lists.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/create-price-lists.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/create-price-lists.ts#L31"
}
],
"signatures": [
{
- "id": 35753,
+ "id": 18464,
"name": "createPriceListsStep",
"variant": "signature",
"kind": 4096,
@@ -738288,12 +739212,12 @@
"fileName": "core-flows/src/price-list/steps/create-price-lists.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/create-price-lists.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/create-price-lists.ts#L31"
}
],
"parameters": [
{
- "id": 35754,
+ "id": 18465,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -738412,14 +739336,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35755,
+ "id": 18466,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35756,
+ "id": 18467,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -738433,7 +739357,7 @@
],
"signatures": [
{
- "id": 35757,
+ "id": 18468,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -738447,7 +739371,7 @@
],
"parameters": [
{
- "id": 35758,
+ "id": 18469,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -738458,14 +739382,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35759,
+ "id": 18470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35760,
+ "id": 18471,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -738489,7 +739413,7 @@
{
"title": "Properties",
"children": [
- 35760
+ 18471
]
}
],
@@ -738574,7 +739498,7 @@
{
"title": "Methods",
"children": [
- 35756
+ 18467
]
}
],
@@ -738616,7 +739540,7 @@
]
},
{
- "id": 35764,
+ "id": 18475,
"name": "deletePriceListsStepId",
"variant": "declaration",
"kind": 32,
@@ -738628,7 +739552,7 @@
"fileName": "core-flows/src/price-list/steps/delete-price-lists.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/delete-price-lists.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/delete-price-lists.ts#L10"
}
],
"type": {
@@ -738638,7 +739562,7 @@
"defaultValue": "\"delete-price-lists\""
},
{
- "id": 35765,
+ "id": 18476,
"name": "deletePriceListsStep",
"variant": "declaration",
"kind": 64,
@@ -738664,7 +739588,7 @@
},
"children": [
{
- "id": 35768,
+ "id": 18479,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -738682,7 +739606,7 @@
}
},
{
- "id": 35769,
+ "id": 18480,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -738704,8 +739628,8 @@
{
"title": "Properties",
"children": [
- 35768,
- 35769
+ 18479,
+ 18480
]
}
],
@@ -738714,12 +739638,12 @@
"fileName": "core-flows/src/price-list/steps/delete-price-lists.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/delete-price-lists.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/delete-price-lists.ts#L14"
}
],
"signatures": [
{
- "id": 35766,
+ "id": 18477,
"name": "deletePriceListsStep",
"variant": "signature",
"kind": 4096,
@@ -738748,12 +739672,12 @@
"fileName": "core-flows/src/price-list/steps/delete-price-lists.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/delete-price-lists.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/delete-price-lists.ts#L14"
}
],
"parameters": [
{
- "id": 35767,
+ "id": 18478,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -738763,7 +739687,7 @@
"types": [
{
"type": "reference",
- "target": 35763,
+ "target": 18474,
"name": "DeletePriceListsStepInput",
"package": "@medusajs/core-flows"
},
@@ -738776,7 +739700,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35763,
+ "target": 18474,
"name": "DeletePriceListsStepInput",
"package": "@medusajs/core-flows"
}
@@ -738796,7 +739720,7 @@
]
},
{
- "id": 35772,
+ "id": 18483,
"name": "price_list_ids",
"variant": "declaration",
"kind": 1024,
@@ -738814,7 +739738,7 @@
"fileName": "core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L12"
}
],
"type": {
@@ -738826,7 +739750,7 @@
}
},
{
- "id": 35774,
+ "id": 18485,
"name": "getExistingPriceListsPriceIdsStepId",
"variant": "declaration",
"kind": 32,
@@ -738838,7 +739762,7 @@
"fileName": "core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L20"
}
],
"type": {
@@ -738848,7 +739772,7 @@
"defaultValue": "\"get-existing-price-lists-prices\""
},
{
- "id": 35775,
+ "id": 18486,
"name": "getExistingPriceListsPriceIdsStep",
"variant": "declaration",
"kind": 64,
@@ -738863,7 +739787,7 @@
},
"children": [
{
- "id": 35787,
+ "id": 18498,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -738881,7 +739805,7 @@
}
},
{
- "id": 35788,
+ "id": 18499,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -738903,8 +739827,8 @@
{
"title": "Properties",
"children": [
- 35787,
- 35788
+ 18498,
+ 18499
]
}
],
@@ -738913,12 +739837,12 @@
"fileName": "core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L25"
}
],
"signatures": [
{
- "id": 35776,
+ "id": 18487,
"name": "getExistingPriceListsPriceIdsStep",
"variant": "signature",
"kind": 4096,
@@ -738936,12 +739860,12 @@
"fileName": "core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/get-existing-price-lists-price-ids.ts#L25"
}
],
"parameters": [
{
- "id": 35777,
+ "id": 18488,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -738951,7 +739875,7 @@
"types": [
{
"type": "reference",
- "target": 35770,
+ "target": 18481,
"name": "GetExistingPriceListsPriceIdsStepInput",
"package": "@medusajs/core-flows"
},
@@ -738964,7 +739888,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35770,
+ "target": 18481,
"name": "GetExistingPriceListsPriceIdsStepInput",
"package": "@medusajs/core-flows"
}
@@ -738982,7 +739906,7 @@
{
"type": "reflection",
"declaration": {
- "id": 35778,
+ "id": 18489,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -738996,14 +739920,14 @@
],
"indexSignatures": [
{
- "id": 35779,
+ "id": 18490,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 35780,
+ "id": 18491,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -739050,7 +739974,7 @@
},
{
"type": "reference",
- "target": 35773,
+ "target": 18484,
"name": "GetExistingPriceListsPriceIdsStepOutput",
"package": "@medusajs/core-flows"
},
@@ -739063,7 +739987,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35773,
+ "target": 18484,
"name": "GetExistingPriceListsPriceIdsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -739074,14 +739998,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35781,
+ "id": 18492,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35782,
+ "id": 18493,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -739095,7 +740019,7 @@
],
"signatures": [
{
- "id": 35783,
+ "id": 18494,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -739109,7 +740033,7 @@
],
"parameters": [
{
- "id": 35784,
+ "id": 18495,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -739120,14 +740044,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35785,
+ "id": 18496,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35786,
+ "id": 18497,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -739151,7 +740075,7 @@
{
"title": "Properties",
"children": [
- 35786
+ 18497
]
}
],
@@ -739214,7 +740138,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35773,
+ "target": 18484,
"name": "GetExistingPriceListsPriceIdsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -739230,7 +740154,7 @@
{
"title": "Methods",
"children": [
- 35782
+ 18493
]
}
],
@@ -739252,7 +740176,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35773,
+ "target": 18484,
"name": "GetExistingPriceListsPriceIdsStepOutput",
"package": "@medusajs/core-flows"
}
@@ -739266,7 +740190,7 @@
]
},
{
- "id": 35790,
+ "id": 18501,
"name": "removePriceListPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -739278,7 +740202,7 @@
"fileName": "core-flows/src/price-list/steps/remove-price-list-prices.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/remove-price-list-prices.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/remove-price-list-prices.ts#L10"
}
],
"type": {
@@ -739288,7 +740212,7 @@
"defaultValue": "\"remove-price-list-prices\""
},
{
- "id": 35791,
+ "id": 18502,
"name": "removePriceListPricesStep",
"variant": "declaration",
"kind": 64,
@@ -739314,7 +740238,7 @@
},
"children": [
{
- "id": 35800,
+ "id": 18511,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -739332,7 +740256,7 @@
}
},
{
- "id": 35801,
+ "id": 18512,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -739354,8 +740278,8 @@
{
"title": "Properties",
"children": [
- 35800,
- 35801
+ 18511,
+ 18512
]
}
],
@@ -739364,12 +740288,12 @@
"fileName": "core-flows/src/price-list/steps/remove-price-list-prices.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/remove-price-list-prices.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/remove-price-list-prices.ts#L14"
}
],
"signatures": [
{
- "id": 35792,
+ "id": 18503,
"name": "removePriceListPricesStep",
"variant": "signature",
"kind": 4096,
@@ -739398,12 +740322,12 @@
"fileName": "core-flows/src/price-list/steps/remove-price-list-prices.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/remove-price-list-prices.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/remove-price-list-prices.ts#L14"
}
],
"parameters": [
{
- "id": 35793,
+ "id": 18504,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -739413,7 +740337,7 @@
"types": [
{
"type": "reference",
- "target": 35789,
+ "target": 18500,
"name": "RemovePriceListPricesStepInput",
"package": "@medusajs/core-flows"
},
@@ -739426,7 +740350,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35789,
+ "target": 18500,
"name": "RemovePriceListPricesStepInput",
"package": "@medusajs/core-flows"
}
@@ -739496,14 +740420,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35794,
+ "id": 18505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35795,
+ "id": 18506,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -739517,7 +740441,7 @@
],
"signatures": [
{
- "id": 35796,
+ "id": 18507,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -739531,7 +740455,7 @@
],
"parameters": [
{
- "id": 35797,
+ "id": 18508,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -739542,14 +740466,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35798,
+ "id": 18509,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35799,
+ "id": 18510,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -739573,7 +740497,7 @@
{
"title": "Properties",
"children": [
- 35799
+ 18510
]
}
],
@@ -739653,7 +740577,7 @@
{
"title": "Methods",
"children": [
- 35795
+ 18506
]
}
],
@@ -739690,7 +740614,7 @@
]
},
{
- "id": 35802,
+ "id": 18513,
"name": "updatePriceListPricesStepId",
"variant": "declaration",
"kind": 32,
@@ -739702,7 +740626,7 @@
"fileName": "core-flows/src/price-list/steps/update-price-list-prices.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/update-price-list-prices.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/update-price-list-prices.ts#L15"
}
],
"type": {
@@ -739712,7 +740636,7 @@
"defaultValue": "\"update-price-list-prices\""
},
{
- "id": 35803,
+ "id": 18514,
"name": "updatePriceListPricesStep",
"variant": "declaration",
"kind": 64,
@@ -739747,7 +740671,7 @@
},
"children": [
{
- "id": 35812,
+ "id": 18523,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -739765,7 +740689,7 @@
}
},
{
- "id": 35813,
+ "id": 18524,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -739787,8 +740711,8 @@
{
"title": "Properties",
"children": [
- 35812,
- 35813
+ 18523,
+ 18524
]
}
],
@@ -739797,12 +740721,12 @@
"fileName": "core-flows/src/price-list/steps/update-price-list-prices.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/update-price-list-prices.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/update-price-list-prices.ts#L37"
}
],
"signatures": [
{
- "id": 35804,
+ "id": 18515,
"name": "updatePriceListPricesStep",
"variant": "signature",
"kind": 4096,
@@ -739840,12 +740764,12 @@
"fileName": "core-flows/src/price-list/steps/update-price-list-prices.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/update-price-list-prices.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/update-price-list-prices.ts#L37"
}
],
"parameters": [
{
- "id": 35805,
+ "id": 18516,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -739964,14 +740888,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35806,
+ "id": 18517,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35807,
+ "id": 18518,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -739985,7 +740909,7 @@
],
"signatures": [
{
- "id": 35808,
+ "id": 18519,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -739999,7 +740923,7 @@
],
"parameters": [
{
- "id": 35809,
+ "id": 18520,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -740010,14 +740934,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35810,
+ "id": 18521,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35811,
+ "id": 18522,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -740041,7 +740965,7 @@
{
"title": "Properties",
"children": [
- 35811
+ 18522
]
}
],
@@ -740126,7 +741050,7 @@
{
"title": "Methods",
"children": [
- 35807
+ 18518
]
}
],
@@ -740168,7 +741092,7 @@
]
},
{
- "id": 35815,
+ "id": 18526,
"name": "updatePriceListsStepId",
"variant": "declaration",
"kind": 32,
@@ -740180,7 +741104,7 @@
"fileName": "core-flows/src/price-list/steps/update-price-lists.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/update-price-lists.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/update-price-lists.ts#L19"
}
],
"type": {
@@ -740190,7 +741114,7 @@
"defaultValue": "\"update-price-lists\""
},
{
- "id": 35816,
+ "id": 18527,
"name": "updatePriceListsStep",
"variant": "declaration",
"kind": 64,
@@ -740225,7 +741149,7 @@
},
"children": [
{
- "id": 35825,
+ "id": 18536,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -740243,7 +741167,7 @@
}
},
{
- "id": 35826,
+ "id": 18537,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -740265,8 +741189,8 @@
{
"title": "Properties",
"children": [
- 35825,
- 35826
+ 18536,
+ 18537
]
}
],
@@ -740275,12 +741199,12 @@
"fileName": "core-flows/src/price-list/steps/update-price-lists.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/update-price-lists.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/update-price-lists.ts#L31"
}
],
"signatures": [
{
- "id": 35817,
+ "id": 18528,
"name": "updatePriceListsStep",
"variant": "signature",
"kind": 4096,
@@ -740318,12 +741242,12 @@
"fileName": "core-flows/src/price-list/steps/update-price-lists.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/update-price-lists.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/update-price-lists.ts#L31"
}
],
"parameters": [
{
- "id": 35818,
+ "id": 18529,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -740333,7 +741257,7 @@
"types": [
{
"type": "reference",
- "target": 35814,
+ "target": 18525,
"name": "UpdatePriceListsStepInput",
"package": "@medusajs/core-flows"
},
@@ -740346,7 +741270,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35814,
+ "target": 18525,
"name": "UpdatePriceListsStepInput",
"package": "@medusajs/core-flows"
}
@@ -740445,14 +741369,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35819,
+ "id": 18530,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35820,
+ "id": 18531,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -740466,7 +741390,7 @@
],
"signatures": [
{
- "id": 35821,
+ "id": 18532,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -740480,7 +741404,7 @@
],
"parameters": [
{
- "id": 35822,
+ "id": 18533,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -740491,14 +741415,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35823,
+ "id": 18534,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35824,
+ "id": 18535,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -740522,7 +741446,7 @@
{
"title": "Properties",
"children": [
- 35824
+ 18535
]
}
],
@@ -740616,7 +741540,7 @@
{
"title": "Methods",
"children": [
- 35820
+ 18531
]
}
],
@@ -740667,7 +741591,7 @@
]
},
{
- "id": 35828,
+ "id": 18539,
"name": "validatePriceListsStepId",
"variant": "declaration",
"kind": 32,
@@ -740679,7 +741603,7 @@
"fileName": "core-flows/src/price-list/steps/validate-price-lists.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-price-lists.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-price-lists.ts#L18"
}
],
"type": {
@@ -740689,7 +741613,7 @@
"defaultValue": "\"validate-price-lists\""
},
{
- "id": 35829,
+ "id": 18540,
"name": "validatePriceListsStep",
"variant": "declaration",
"kind": 64,
@@ -740733,7 +741657,7 @@
},
"children": [
{
- "id": 35841,
+ "id": 18552,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -740751,7 +741675,7 @@
}
},
{
- "id": 35842,
+ "id": 18553,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -740773,8 +741697,8 @@
{
"title": "Properties",
"children": [
- 35841,
- 35842
+ 18552,
+ 18553
]
}
],
@@ -740783,12 +741707,12 @@
"fileName": "core-flows/src/price-list/steps/validate-price-lists.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-price-lists.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-price-lists.ts#L23"
}
],
"signatures": [
{
- "id": 35830,
+ "id": 18541,
"name": "validatePriceListsStep",
"variant": "signature",
"kind": 4096,
@@ -740835,12 +741759,12 @@
"fileName": "core-flows/src/price-list/steps/validate-price-lists.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-price-lists.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-price-lists.ts#L23"
}
],
"parameters": [
{
- "id": 35831,
+ "id": 18542,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -740850,7 +741774,7 @@
"types": [
{
"type": "reference",
- "target": 35827,
+ "target": 18538,
"name": "ValidatePriceListsStepInput",
"package": "@medusajs/core-flows"
},
@@ -740863,7 +741787,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35827,
+ "target": 18538,
"name": "ValidatePriceListsStepInput",
"package": "@medusajs/core-flows"
}
@@ -740881,7 +741805,7 @@
{
"type": "reflection",
"declaration": {
- "id": 35832,
+ "id": 18543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -740895,14 +741819,14 @@
],
"indexSignatures": [
{
- "id": 35833,
+ "id": 18544,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 35834,
+ "id": 18545,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -741022,14 +741946,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35835,
+ "id": 18546,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35836,
+ "id": 18547,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -741043,7 +741967,7 @@
],
"signatures": [
{
- "id": 35837,
+ "id": 18548,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -741057,7 +741981,7 @@
],
"parameters": [
{
- "id": 35838,
+ "id": 18549,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -741068,14 +741992,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35839,
+ "id": 18550,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35840,
+ "id": 18551,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -741099,7 +742023,7 @@
{
"title": "Properties",
"children": [
- 35840
+ 18551
]
}
],
@@ -741205,7 +742129,7 @@
{
"title": "Methods",
"children": [
- 35836
+ 18547
]
}
],
@@ -741268,7 +742192,7 @@
]
},
{
- "id": 35847,
+ "id": 18558,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -741286,7 +742210,7 @@
"fileName": "core-flows/src/price-list/steps/validate-variant-price-links.ts",
"line": 18,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L18"
}
],
"type": {
@@ -741295,7 +742219,7 @@
}
},
{
- "id": 35845,
+ "id": 18556,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -741315,7 +742239,7 @@
"fileName": "core-flows/src/price-list/steps/validate-variant-price-links.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L14"
}
],
"type": {
@@ -741323,14 +742247,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35846,
+ "id": 18557,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35847,
+ "id": 18558,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -741348,7 +742272,7 @@
"fileName": "core-flows/src/price-list/steps/validate-variant-price-links.ts",
"line": 18,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L18"
}
],
"type": {
@@ -741361,7 +742285,7 @@
{
"title": "Properties",
"children": [
- 35847
+ 18558
]
}
],
@@ -741370,7 +742294,7 @@
"fileName": "core-flows/src/price-list/steps/validate-variant-price-links.ts",
"line": 14,
"character": 11,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L14"
}
]
}
@@ -741378,7 +742302,7 @@
}
},
{
- "id": 35848,
+ "id": 18559,
"name": "validateVariantPriceLinksStepId",
"variant": "declaration",
"kind": 32,
@@ -741390,7 +742314,7 @@
"fileName": "core-flows/src/price-list/steps/validate-variant-price-links.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L22"
}
],
"type": {
@@ -741400,7 +742324,7 @@
"defaultValue": "\"validate-variant-price-links\""
},
{
- "id": 35849,
+ "id": 18560,
"name": "validateVariantPriceLinksStep",
"variant": "declaration",
"kind": 64,
@@ -741453,7 +742377,7 @@
},
"children": [
{
- "id": 35861,
+ "id": 18572,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -741471,7 +742395,7 @@
}
},
{
- "id": 35862,
+ "id": 18573,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -741493,8 +742417,8 @@
{
"title": "Properties",
"children": [
- 35861,
- 35862
+ 18572,
+ 18573
]
}
],
@@ -741503,12 +742427,12 @@
"fileName": "core-flows/src/price-list/steps/validate-variant-price-links.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L38"
}
],
"signatures": [
{
- "id": 35850,
+ "id": 18561,
"name": "validateVariantPriceLinksStep",
"variant": "signature",
"kind": 4096,
@@ -741564,12 +742488,12 @@
"fileName": "core-flows/src/price-list/steps/validate-variant-price-links.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/steps/validate-variant-price-links.ts#L38"
}
],
"parameters": [
{
- "id": 35851,
+ "id": 18562,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -741579,7 +742503,7 @@
"types": [
{
"type": "reference",
- "target": 35843,
+ "target": 18554,
"name": "ValidateVariantPriceLinksStepInput",
"package": "@medusajs/core-flows"
},
@@ -741592,7 +742516,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35843,
+ "target": 18554,
"name": "ValidateVariantPriceLinksStepInput",
"package": "@medusajs/core-flows"
}
@@ -741610,7 +742534,7 @@
{
"type": "reflection",
"declaration": {
- "id": 35852,
+ "id": 18563,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -741624,14 +742548,14 @@
],
"indexSignatures": [
{
- "id": 35853,
+ "id": 18564,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 35854,
+ "id": 18565,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -741731,14 +742655,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35855,
+ "id": 18566,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35856,
+ "id": 18567,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -741752,7 +742676,7 @@
],
"signatures": [
{
- "id": 35857,
+ "id": 18568,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -741766,7 +742690,7 @@
],
"parameters": [
{
- "id": 35858,
+ "id": 18569,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -741777,14 +742701,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35859,
+ "id": 18570,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35860,
+ "id": 18571,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -741808,7 +742732,7 @@
{
"title": "Properties",
"children": [
- 35860
+ 18571
]
}
],
@@ -741909,7 +742833,7 @@
{
"title": "Methods",
"children": [
- 35856
+ 18567
]
}
],
@@ -741969,14 +742893,14 @@
]
},
{
- "id": 17350,
+ "id": 55,
"name": "Workflows_Price List",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 35865,
+ "id": 18576,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -741994,7 +742918,7 @@
"fileName": "core-flows/src/price-list/workflows/batch-price-list-prices.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L23"
}
],
"type": {
@@ -742008,7 +742932,7 @@
}
},
{
- "id": 35866,
+ "id": 18577,
"name": "batchPriceListPricesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -742020,7 +742944,7 @@
"fileName": "core-flows/src/price-list/workflows/batch-price-list-prices.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L26"
}
],
"type": {
@@ -742030,7 +742954,7 @@
"defaultValue": "\"batch-price-list-prices\""
},
{
- "id": 35867,
+ "id": 18578,
"name": "batchPriceListPricesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -742083,7 +743007,7 @@
},
"children": [
{
- "id": 35875,
+ "id": 18586,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -742106,7 +743030,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35876,
+ "id": 18587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -742120,7 +743044,7 @@
],
"signatures": [
{
- "id": 35877,
+ "id": 18588,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -742148,7 +743072,7 @@
],
"parameters": [
{
- "id": 35878,
+ "id": 18589,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -742164,14 +743088,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35879,
+ "id": 18590,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35880,
+ "id": 18591,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -742196,7 +743120,7 @@
"types": [
{
"type": "reference",
- "target": 35863,
+ "target": 18574,
"name": "BatchPriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -742209,7 +743133,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35863,
+ "target": 18574,
"name": "BatchPriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -742225,7 +743149,7 @@
{
"title": "Properties",
"children": [
- 35880
+ 18591
]
}
],
@@ -742246,14 +743170,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35881,
+ "id": 18592,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35882,
+ "id": 18593,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -742315,7 +743239,7 @@
}
},
{
- "id": 35883,
+ "id": 18594,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -742377,7 +743301,7 @@
}
},
{
- "id": 35884,
+ "id": 18595,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -742433,9 +743357,9 @@
{
"title": "Properties",
"children": [
- 35882,
- 35883,
- 35884
+ 18593,
+ 18594,
+ 18595
]
}
],
@@ -742480,14 +743404,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35885,
+ "id": 18596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35886,
+ "id": 18597,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -742501,7 +743425,7 @@
],
"signatures": [
{
- "id": 35887,
+ "id": 18598,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -742515,7 +743439,7 @@
],
"parameters": [
{
- "id": 35888,
+ "id": 18599,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -742526,14 +743450,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35889,
+ "id": 18600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35890,
+ "id": 18601,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -742557,7 +743481,7 @@
{
"title": "Properties",
"children": [
- 35890
+ 18601
]
}
],
@@ -742639,7 +743563,7 @@
{
"title": "Methods",
"children": [
- 35886
+ 18597
]
}
],
@@ -742680,7 +743604,7 @@
}
},
{
- "id": 35891,
+ "id": 18602,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -742703,7 +743627,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35892,
+ "id": 18603,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -742717,7 +743641,7 @@
],
"signatures": [
{
- "id": 35893,
+ "id": 18604,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -742745,7 +743669,7 @@
],
"typeParameters": [
{
- "id": 35894,
+ "id": 18605,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -742756,7 +743680,7 @@
}
},
{
- "id": 35895,
+ "id": 18606,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -742769,7 +743693,7 @@
],
"parameters": [
{
- "id": 35896,
+ "id": 18607,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -742802,7 +743726,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -742813,13 +743737,13 @@
},
"trueType": {
"type": "reference",
- "target": 35863,
+ "target": 18574,
"name": "BatchPriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -742852,7 +743776,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -742872,7 +743796,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -742892,7 +743816,7 @@
}
},
{
- "id": 35897,
+ "id": 18608,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -742915,7 +743839,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35898,
+ "id": 18609,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -742929,7 +743853,7 @@
],
"signatures": [
{
- "id": 35899,
+ "id": 18610,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -742951,7 +743875,7 @@
}
},
{
- "id": 35900,
+ "id": 18611,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -742974,7 +743898,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35901,
+ "id": 18612,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -742988,7 +743912,7 @@
],
"signatures": [
{
- "id": 35902,
+ "id": 18613,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -743002,7 +743926,7 @@
],
"parameters": [
{
- "id": 35903,
+ "id": 18614,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -743028,7 +743952,7 @@
}
},
{
- "id": 35904,
+ "id": 18615,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -743051,7 +743975,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35905,
+ "id": 18616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -743062,7 +743986,7 @@
],
"documents": [
{
- "id": 43054,
+ "id": 25995,
"name": "createPriceListPricesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -743088,7 +744012,7 @@
"frontmatter": {}
},
{
- "id": 43055,
+ "id": 25996,
"name": "updatePriceListPricesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -743114,7 +744038,7 @@
"frontmatter": {}
},
{
- "id": 43056,
+ "id": 25997,
"name": "removePriceListPricesWorkflow",
"variant": "document",
"kind": 8388608,
@@ -743141,21 +744065,21 @@
}
],
"childrenIncludingDocuments": [
- 35875,
- 35891,
- 35897,
- 35900,
- 35904
+ 18586,
+ 18602,
+ 18608,
+ 18611,
+ 18615
],
"groups": [
{
"title": "Properties",
"children": [
- 35875,
- 35891,
- 35897,
- 35900,
- 35904
+ 18586,
+ 18602,
+ 18608,
+ 18611,
+ 18615
]
}
],
@@ -743164,12 +744088,12 @@
"fileName": "core-flows/src/price-list/workflows/batch-price-list-prices.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L64"
}
],
"signatures": [
{
- "id": 35868,
+ "id": 18579,
"name": "batchPriceListPricesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -743225,12 +744149,12 @@
"fileName": "core-flows/src/price-list/workflows/batch-price-list-prices.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/batch-price-list-prices.ts#L64"
}
],
"typeParameters": [
{
- "id": 35869,
+ "id": 18580,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -743241,7 +744165,7 @@
}
},
{
- "id": 35870,
+ "id": 18581,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -743254,7 +744178,7 @@
],
"parameters": [
{
- "id": 35871,
+ "id": 18582,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -743278,14 +744202,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35872,
+ "id": 18583,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35873,
+ "id": 18584,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -743308,7 +744232,7 @@
}
},
{
- "id": 35874,
+ "id": 18585,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -743335,8 +744259,8 @@
{
"title": "Properties",
"children": [
- 35873,
- 35874
+ 18584,
+ 18585
]
}
],
@@ -743411,7 +744335,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35863,
+ "target": 18574,
"name": "BatchPriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -743426,14 +744350,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -743448,7 +744372,7 @@
]
},
{
- "id": 35908,
+ "id": 18619,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -743466,7 +744390,7 @@
"fileName": "core-flows/src/price-list/workflows/create-price-list-prices.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L22"
}
],
"type": {
@@ -743483,7 +744407,7 @@
}
},
{
- "id": 35910,
+ "id": 18621,
"name": "createPriceListPricesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -743495,7 +744419,7 @@
"fileName": "core-flows/src/price-list/workflows/create-price-list-prices.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L30"
}
],
"type": {
@@ -743505,7 +744429,7 @@
"defaultValue": "\"create-price-list-prices\""
},
{
- "id": 35911,
+ "id": 18622,
"name": "createPriceListPricesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -743558,7 +744482,7 @@
},
"children": [
{
- "id": 35919,
+ "id": 18630,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -743581,7 +744505,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35920,
+ "id": 18631,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -743595,7 +744519,7 @@
],
"signatures": [
{
- "id": 35921,
+ "id": 18632,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -743623,7 +744547,7 @@
],
"parameters": [
{
- "id": 35922,
+ "id": 18633,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -743639,14 +744563,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35923,
+ "id": 18634,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35924,
+ "id": 18635,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -743671,7 +744595,7 @@
"types": [
{
"type": "reference",
- "target": 35906,
+ "target": 18617,
"name": "CreatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -743684,7 +744608,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35906,
+ "target": 18617,
"name": "CreatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -743700,7 +744624,7 @@
{
"title": "Properties",
"children": [
- 35924
+ 18635
]
}
],
@@ -743757,7 +744681,7 @@
},
{
"type": "reference",
- "target": 35909,
+ "target": 18620,
"name": "CreatePriceListPricesWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -743770,7 +744694,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35909,
+ "target": 18620,
"name": "CreatePriceListPricesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -743781,14 +744705,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35925,
+ "id": 18636,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35926,
+ "id": 18637,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -743802,7 +744726,7 @@
],
"signatures": [
{
- "id": 35927,
+ "id": 18638,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -743816,7 +744740,7 @@
],
"parameters": [
{
- "id": 35928,
+ "id": 18639,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -743827,14 +744751,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35929,
+ "id": 18640,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35930,
+ "id": 18641,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -743858,7 +744782,7 @@
{
"title": "Properties",
"children": [
- 35930
+ 18641
]
}
],
@@ -743921,7 +744845,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35909,
+ "target": 18620,
"name": "CreatePriceListPricesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -743937,7 +744861,7 @@
{
"title": "Methods",
"children": [
- 35926
+ 18637
]
}
],
@@ -743959,7 +744883,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35909,
+ "target": 18620,
"name": "CreatePriceListPricesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -743975,7 +744899,7 @@
}
},
{
- "id": 35931,
+ "id": 18642,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -743998,7 +744922,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35932,
+ "id": 18643,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -744012,7 +744936,7 @@
],
"signatures": [
{
- "id": 35933,
+ "id": 18644,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -744040,7 +744964,7 @@
],
"typeParameters": [
{
- "id": 35934,
+ "id": 18645,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -744051,7 +744975,7 @@
}
},
{
- "id": 35935,
+ "id": 18646,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -744064,7 +744988,7 @@
],
"parameters": [
{
- "id": 35936,
+ "id": 18647,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -744097,7 +745021,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -744108,13 +745032,13 @@
},
"trueType": {
"type": "reference",
- "target": 35906,
+ "target": 18617,
"name": "CreatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -744147,7 +745071,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -744158,13 +745082,13 @@
},
"trueType": {
"type": "reference",
- "target": 35909,
+ "target": 18620,
"name": "CreatePriceListPricesWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -744184,7 +745108,7 @@
}
},
{
- "id": 35937,
+ "id": 18648,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -744207,7 +745131,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35938,
+ "id": 18649,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -744221,7 +745145,7 @@
],
"signatures": [
{
- "id": 35939,
+ "id": 18650,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -744243,7 +745167,7 @@
}
},
{
- "id": 35940,
+ "id": 18651,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -744266,7 +745190,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35941,
+ "id": 18652,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -744280,7 +745204,7 @@
],
"signatures": [
{
- "id": 35942,
+ "id": 18653,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -744294,7 +745218,7 @@
],
"parameters": [
{
- "id": 35943,
+ "id": 18654,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -744320,7 +745244,7 @@
}
},
{
- "id": 35944,
+ "id": 18655,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -744343,7 +745267,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35945,
+ "id": 18656,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -744354,7 +745278,7 @@
],
"documents": [
{
- "id": 43057,
+ "id": 25998,
"name": "validatePriceListsStep",
"variant": "document",
"kind": 8388608,
@@ -744380,7 +745304,7 @@
"frontmatter": {}
},
{
- "id": 43058,
+ "id": 25999,
"name": "validateVariantPriceLinksStep",
"variant": "document",
"kind": 8388608,
@@ -744406,7 +745330,7 @@
"frontmatter": {}
},
{
- "id": 43059,
+ "id": 26000,
"name": "createPriceListPricesStep",
"variant": "document",
"kind": 8388608,
@@ -744433,21 +745357,21 @@
}
],
"childrenIncludingDocuments": [
- 35919,
- 35931,
- 35937,
- 35940,
- 35944
+ 18630,
+ 18642,
+ 18648,
+ 18651,
+ 18655
],
"groups": [
{
"title": "Properties",
"children": [
- 35919,
- 35931,
- 35937,
- 35940,
- 35944
+ 18630,
+ 18642,
+ 18648,
+ 18651,
+ 18655
]
}
],
@@ -744456,12 +745380,12 @@
"fileName": "core-flows/src/price-list/workflows/create-price-list-prices.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L59"
}
],
"signatures": [
{
- "id": 35912,
+ "id": 18623,
"name": "createPriceListPricesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -744517,12 +745441,12 @@
"fileName": "core-flows/src/price-list/workflows/create-price-list-prices.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-list-prices.ts#L59"
}
],
"typeParameters": [
{
- "id": 35913,
+ "id": 18624,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -744533,7 +745457,7 @@
}
},
{
- "id": 35914,
+ "id": 18625,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -744546,7 +745470,7 @@
],
"parameters": [
{
- "id": 35915,
+ "id": 18626,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -744570,14 +745494,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35916,
+ "id": 18627,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35917,
+ "id": 18628,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -744600,7 +745524,7 @@
}
},
{
- "id": 35918,
+ "id": 18629,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -744627,8 +745551,8 @@
{
"title": "Properties",
"children": [
- 35917,
- 35918
+ 18628,
+ 18629
]
}
],
@@ -744703,26 +745627,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 35906,
+ "target": 18617,
"name": "CreatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 35909,
+ "target": 18620,
"name": "CreatePriceListPricesWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -744737,7 +745661,7 @@
]
},
{
- "id": 35948,
+ "id": 18659,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -744755,7 +745679,7 @@
"fileName": "core-flows/src/price-list/workflows/create-price-lists.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L19"
}
],
"type": {
@@ -744772,7 +745696,7 @@
}
},
{
- "id": 35950,
+ "id": 18661,
"name": "createPriceListsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -744784,7 +745708,7 @@
"fileName": "core-flows/src/price-list/workflows/create-price-lists.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L27"
}
],
"type": {
@@ -744794,7 +745718,7 @@
"defaultValue": "\"create-price-lists\""
},
{
- "id": 35951,
+ "id": 18662,
"name": "createPriceListsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -744838,7 +745762,7 @@
},
"children": [
{
- "id": 35959,
+ "id": 18670,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -744861,7 +745785,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35960,
+ "id": 18671,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -744875,7 +745799,7 @@
],
"signatures": [
{
- "id": 35961,
+ "id": 18672,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -744903,7 +745827,7 @@
],
"parameters": [
{
- "id": 35962,
+ "id": 18673,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -744919,14 +745843,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35963,
+ "id": 18674,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35964,
+ "id": 18675,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -744951,7 +745875,7 @@
"types": [
{
"type": "reference",
- "target": 35946,
+ "target": 18657,
"name": "CreatePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -744964,7 +745888,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35946,
+ "target": 18657,
"name": "CreatePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -744980,7 +745904,7 @@
{
"title": "Properties",
"children": [
- 35964
+ 18675
]
}
],
@@ -745073,14 +745997,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35965,
+ "id": 18676,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35966,
+ "id": 18677,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -745094,7 +746018,7 @@
],
"signatures": [
{
- "id": 35967,
+ "id": 18678,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -745108,7 +746032,7 @@
],
"parameters": [
{
- "id": 35968,
+ "id": 18679,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -745119,14 +746043,14 @@
{
"type": "reflection",
"declaration": {
- "id": 35969,
+ "id": 18680,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35970,
+ "id": 18681,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -745150,7 +746074,7 @@
{
"title": "Properties",
"children": [
- 35970
+ 18681
]
}
],
@@ -745235,7 +746159,7 @@
{
"title": "Methods",
"children": [
- 35966
+ 18677
]
}
],
@@ -745279,7 +746203,7 @@
}
},
{
- "id": 35971,
+ "id": 18682,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -745302,7 +746226,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35972,
+ "id": 18683,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -745316,7 +746240,7 @@
],
"signatures": [
{
- "id": 35973,
+ "id": 18684,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -745344,7 +746268,7 @@
],
"typeParameters": [
{
- "id": 35974,
+ "id": 18685,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -745355,7 +746279,7 @@
}
},
{
- "id": 35975,
+ "id": 18686,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -745368,7 +746292,7 @@
],
"parameters": [
{
- "id": 35976,
+ "id": 18687,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -745401,7 +746325,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -745412,13 +746336,13 @@
},
"trueType": {
"type": "reference",
- "target": 35946,
+ "target": 18657,
"name": "CreatePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -745451,7 +746375,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -745474,7 +746398,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -745494,7 +746418,7 @@
}
},
{
- "id": 35977,
+ "id": 18688,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -745517,7 +746441,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35978,
+ "id": 18689,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -745531,7 +746455,7 @@
],
"signatures": [
{
- "id": 35979,
+ "id": 18690,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -745553,7 +746477,7 @@
}
},
{
- "id": 35980,
+ "id": 18691,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -745576,7 +746500,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35981,
+ "id": 18692,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -745590,7 +746514,7 @@
],
"signatures": [
{
- "id": 35982,
+ "id": 18693,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -745604,7 +746528,7 @@
],
"parameters": [
{
- "id": 35983,
+ "id": 18694,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -745630,7 +746554,7 @@
}
},
{
- "id": 35984,
+ "id": 18695,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -745653,7 +746577,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35985,
+ "id": 18696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -745664,7 +746588,7 @@
],
"documents": [
{
- "id": 43060,
+ "id": 26001,
"name": "validateVariantPriceLinksStep",
"variant": "document",
"kind": 8388608,
@@ -745690,7 +746614,7 @@
"frontmatter": {}
},
{
- "id": 43061,
+ "id": 26002,
"name": "createPriceListsStep",
"variant": "document",
"kind": 8388608,
@@ -745717,21 +746641,21 @@
}
],
"childrenIncludingDocuments": [
- 35959,
- 35971,
- 35977,
- 35980,
- 35984
+ 18670,
+ 18682,
+ 18688,
+ 18691,
+ 18695
],
"groups": [
{
"title": "Properties",
"children": [
- 35959,
- 35971,
- 35977,
- 35980,
- 35984
+ 18670,
+ 18682,
+ 18688,
+ 18691,
+ 18695
]
}
],
@@ -745740,12 +746664,12 @@
"fileName": "core-flows/src/price-list/workflows/create-price-lists.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L52"
}
],
"signatures": [
{
- "id": 35952,
+ "id": 18663,
"name": "createPriceListsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -745792,12 +746716,12 @@
"fileName": "core-flows/src/price-list/workflows/create-price-lists.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/create-price-lists.ts#L52"
}
],
"typeParameters": [
{
- "id": 35953,
+ "id": 18664,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -745808,7 +746732,7 @@
}
},
{
- "id": 35954,
+ "id": 18665,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -745821,7 +746745,7 @@
],
"parameters": [
{
- "id": 35955,
+ "id": 18666,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -745845,14 +746769,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35956,
+ "id": 18667,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35957,
+ "id": 18668,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -745875,7 +746799,7 @@
}
},
{
- "id": 35958,
+ "id": 18669,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -745902,8 +746826,8 @@
{
"title": "Properties",
"children": [
- 35957,
- 35958
+ 18668,
+ 18669
]
}
],
@@ -745978,7 +746902,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35946,
+ "target": 18657,
"name": "CreatePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -745996,14 +746920,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -746018,7 +746942,7 @@
]
},
{
- "id": 35988,
+ "id": 18699,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -746036,7 +746960,7 @@
"fileName": "core-flows/src/price-list/workflows/delete-price-lists.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L13"
}
],
"type": {
@@ -746048,7 +746972,7 @@
}
},
{
- "id": 35989,
+ "id": 18700,
"name": "deletePriceListsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -746060,7 +746984,7 @@
"fileName": "core-flows/src/price-list/workflows/delete-price-lists.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L16"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L16"
}
],
"type": {
@@ -746070,7 +746994,7 @@
"defaultValue": "\"delete-price-lists\""
},
{
- "id": 35990,
+ "id": 18701,
"name": "deletePriceListsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -746114,7 +747038,7 @@
},
"children": [
{
- "id": 35998,
+ "id": 18709,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -746137,7 +747061,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 35999,
+ "id": 18710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -746151,7 +747075,7 @@
],
"signatures": [
{
- "id": 36000,
+ "id": 18711,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -746179,7 +747103,7 @@
],
"parameters": [
{
- "id": 36001,
+ "id": 18712,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -746195,14 +747119,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36002,
+ "id": 18713,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36003,
+ "id": 18714,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -746227,7 +747151,7 @@
"types": [
{
"type": "reference",
- "target": 35986,
+ "target": 18697,
"name": "DeletePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -746240,7 +747164,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35986,
+ "target": 18697,
"name": "DeletePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -746256,7 +747180,7 @@
{
"title": "Properties",
"children": [
- 36003
+ 18714
]
}
],
@@ -746292,14 +747216,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36004,
+ "id": 18715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36005,
+ "id": 18716,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -746313,7 +747237,7 @@
],
"signatures": [
{
- "id": 36006,
+ "id": 18717,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -746327,7 +747251,7 @@
],
"parameters": [
{
- "id": 36007,
+ "id": 18718,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -746338,14 +747262,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36008,
+ "id": 18719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36009,
+ "id": 18720,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -746369,7 +747293,7 @@
{
"title": "Properties",
"children": [
- 36009
+ 18720
]
}
],
@@ -746446,7 +747370,7 @@
{
"title": "Methods",
"children": [
- 36005
+ 18716
]
}
],
@@ -746482,7 +747406,7 @@
}
},
{
- "id": 36010,
+ "id": 18721,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -746505,7 +747429,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36011,
+ "id": 18722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -746519,7 +747443,7 @@
],
"signatures": [
{
- "id": 36012,
+ "id": 18723,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -746547,7 +747471,7 @@
],
"typeParameters": [
{
- "id": 36013,
+ "id": 18724,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -746558,7 +747482,7 @@
}
},
{
- "id": 36014,
+ "id": 18725,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -746571,7 +747495,7 @@
],
"parameters": [
{
- "id": 36015,
+ "id": 18726,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -746604,7 +747528,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -746615,13 +747539,13 @@
},
"trueType": {
"type": "reference",
- "target": 35986,
+ "target": 18697,
"name": "DeletePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -746654,7 +747578,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -746669,7 +747593,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -746689,7 +747613,7 @@
}
},
{
- "id": 36016,
+ "id": 18727,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -746712,7 +747636,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36017,
+ "id": 18728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -746726,7 +747650,7 @@
],
"signatures": [
{
- "id": 36018,
+ "id": 18729,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -746748,7 +747672,7 @@
}
},
{
- "id": 36019,
+ "id": 18730,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -746771,7 +747695,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36020,
+ "id": 18731,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -746785,7 +747709,7 @@
],
"signatures": [
{
- "id": 36021,
+ "id": 18732,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -746799,7 +747723,7 @@
],
"parameters": [
{
- "id": 36022,
+ "id": 18733,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -746825,7 +747749,7 @@
}
},
{
- "id": 36023,
+ "id": 18734,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -746848,7 +747772,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36024,
+ "id": 18735,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -746859,7 +747783,7 @@
],
"documents": [
{
- "id": 43062,
+ "id": 26003,
"name": "deletePriceListsStep",
"variant": "document",
"kind": 8388608,
@@ -746885,7 +747809,7 @@
"frontmatter": {}
},
{
- "id": 43063,
+ "id": 26004,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -746912,21 +747836,21 @@
}
],
"childrenIncludingDocuments": [
- 35998,
- 36010,
- 36016,
- 36019,
- 36023
+ 18709,
+ 18721,
+ 18727,
+ 18730,
+ 18734
],
"groups": [
{
"title": "Properties",
"children": [
- 35998,
- 36010,
- 36016,
- 36019,
- 36023
+ 18709,
+ 18721,
+ 18727,
+ 18730,
+ 18734
]
}
],
@@ -746935,12 +747859,12 @@
"fileName": "core-flows/src/price-list/workflows/delete-price-lists.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L36"
}
],
"signatures": [
{
- "id": 35991,
+ "id": 18702,
"name": "deletePriceListsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -746987,12 +747911,12 @@
"fileName": "core-flows/src/price-list/workflows/delete-price-lists.ts",
"line": 36,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L36"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/delete-price-lists.ts#L36"
}
],
"typeParameters": [
{
- "id": 35992,
+ "id": 18703,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -747003,7 +747927,7 @@
}
},
{
- "id": 35993,
+ "id": 18704,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -747016,7 +747940,7 @@
],
"parameters": [
{
- "id": 35994,
+ "id": 18705,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -747040,14 +747964,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 35995,
+ "id": 18706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 35996,
+ "id": 18707,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -747070,7 +747994,7 @@
}
},
{
- "id": 35997,
+ "id": 18708,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -747097,8 +748021,8 @@
{
"title": "Properties",
"children": [
- 35996,
- 35997
+ 18707,
+ 18708
]
}
],
@@ -747173,7 +748097,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 35986,
+ "target": 18697,
"name": "DeletePriceListsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -747183,14 +748107,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -747205,7 +748129,7 @@
]
},
{
- "id": 36027,
+ "id": 18738,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -747223,7 +748147,7 @@
"fileName": "core-flows/src/price-list/workflows/remove-price-list-prices.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L15"
}
],
"type": {
@@ -747235,7 +748159,7 @@
}
},
{
- "id": 36028,
+ "id": 18739,
"name": "removePriceListPricesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -747247,7 +748171,7 @@
"fileName": "core-flows/src/price-list/workflows/remove-price-list-prices.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L18"
}
],
"type": {
@@ -747257,7 +748181,7 @@
"defaultValue": "\"remove-price-list-prices\""
},
{
- "id": 36029,
+ "id": 18740,
"name": "removePriceListPricesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -747310,7 +748234,7 @@
},
"children": [
{
- "id": 36037,
+ "id": 18748,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -747333,7 +748257,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36038,
+ "id": 18749,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -747347,7 +748271,7 @@
],
"signatures": [
{
- "id": 36039,
+ "id": 18750,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -747375,7 +748299,7 @@
],
"parameters": [
{
- "id": 36040,
+ "id": 18751,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -747391,14 +748315,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36041,
+ "id": 18752,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36042,
+ "id": 18753,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -747423,7 +748347,7 @@
"types": [
{
"type": "reference",
- "target": 36025,
+ "target": 18736,
"name": "RemovePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -747436,7 +748360,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36025,
+ "target": 18736,
"name": "RemovePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -747452,7 +748376,7 @@
{
"title": "Properties",
"children": [
- 36042
+ 18753
]
}
],
@@ -747525,14 +748449,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36043,
+ "id": 18754,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36044,
+ "id": 18755,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -747546,7 +748470,7 @@
],
"signatures": [
{
- "id": 36045,
+ "id": 18756,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -747560,7 +748484,7 @@
],
"parameters": [
{
- "id": 36046,
+ "id": 18757,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -747571,14 +748495,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36047,
+ "id": 18758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36048,
+ "id": 18759,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -747602,7 +748526,7 @@
{
"title": "Properties",
"children": [
- 36048
+ 18759
]
}
],
@@ -747682,7 +748606,7 @@
{
"title": "Methods",
"children": [
- 36044
+ 18755
]
}
],
@@ -747721,7 +748645,7 @@
}
},
{
- "id": 36049,
+ "id": 18760,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -747744,7 +748668,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36050,
+ "id": 18761,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -747758,7 +748682,7 @@
],
"signatures": [
{
- "id": 36051,
+ "id": 18762,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -747786,7 +748710,7 @@
],
"typeParameters": [
{
- "id": 36052,
+ "id": 18763,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -747797,7 +748721,7 @@
}
},
{
- "id": 36053,
+ "id": 18764,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -747810,7 +748734,7 @@
],
"parameters": [
{
- "id": 36054,
+ "id": 18765,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -747843,7 +748767,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -747854,13 +748778,13 @@
},
"trueType": {
"type": "reference",
- "target": 36025,
+ "target": 18736,
"name": "RemovePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -747893,7 +748817,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -747911,7 +748835,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -747931,7 +748855,7 @@
}
},
{
- "id": 36055,
+ "id": 18766,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -747954,7 +748878,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36056,
+ "id": 18767,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -747968,7 +748892,7 @@
],
"signatures": [
{
- "id": 36057,
+ "id": 18768,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -747990,7 +748914,7 @@
}
},
{
- "id": 36058,
+ "id": 18769,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -748013,7 +748937,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36059,
+ "id": 18770,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -748027,7 +748951,7 @@
],
"signatures": [
{
- "id": 36060,
+ "id": 18771,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -748041,7 +748965,7 @@
],
"parameters": [
{
- "id": 36061,
+ "id": 18772,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -748067,7 +748991,7 @@
}
},
{
- "id": 36062,
+ "id": 18773,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -748090,7 +749014,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36063,
+ "id": 18774,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -748101,7 +749025,7 @@
],
"documents": [
{
- "id": 43064,
+ "id": 26005,
"name": "removePriceListPricesStep",
"variant": "document",
"kind": 8388608,
@@ -748128,21 +749052,21 @@
}
],
"childrenIncludingDocuments": [
- 36037,
- 36049,
- 36055,
- 36058,
- 36062
+ 18748,
+ 18760,
+ 18766,
+ 18769,
+ 18773
],
"groups": [
{
"title": "Properties",
"children": [
- 36037,
- 36049,
- 36055,
- 36058,
- 36062
+ 18748,
+ 18760,
+ 18766,
+ 18769,
+ 18773
]
}
],
@@ -748151,12 +749075,12 @@
"fileName": "core-flows/src/price-list/workflows/remove-price-list-prices.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L38"
}
],
"signatures": [
{
- "id": 36030,
+ "id": 18741,
"name": "removePriceListPricesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -748212,12 +749136,12 @@
"fileName": "core-flows/src/price-list/workflows/remove-price-list-prices.ts",
"line": 38,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/remove-price-list-prices.ts#L38"
}
],
"typeParameters": [
{
- "id": 36031,
+ "id": 18742,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -748228,7 +749152,7 @@
}
},
{
- "id": 36032,
+ "id": 18743,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -748241,7 +749165,7 @@
],
"parameters": [
{
- "id": 36033,
+ "id": 18744,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -748265,14 +749189,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36034,
+ "id": 18745,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36035,
+ "id": 18746,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -748295,7 +749219,7 @@
}
},
{
- "id": 36036,
+ "id": 18747,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -748322,8 +749246,8 @@
{
"title": "Properties",
"children": [
- 36035,
- 36036
+ 18746,
+ 18747
]
}
],
@@ -748398,7 +749322,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36025,
+ "target": 18736,
"name": "RemovePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -748411,14 +749335,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -748433,7 +749357,7 @@
]
},
{
- "id": 36066,
+ "id": 18777,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -748451,7 +749375,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-list-prices.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L22"
}
],
"type": {
@@ -748468,7 +749392,7 @@
}
},
{
- "id": 36067,
+ "id": 18778,
"name": "updatePriceListPricesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -748480,7 +749404,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-list-prices.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L25"
}
],
"type": {
@@ -748490,7 +749414,7 @@
"defaultValue": "\"update-price-list-prices\""
},
{
- "id": 36068,
+ "id": 18779,
"name": "updatePriceListPricesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -748543,7 +749467,7 @@
},
"children": [
{
- "id": 36076,
+ "id": 18787,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -748566,7 +749490,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36077,
+ "id": 18788,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -748580,7 +749504,7 @@
],
"signatures": [
{
- "id": 36078,
+ "id": 18789,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -748608,7 +749532,7 @@
],
"parameters": [
{
- "id": 36079,
+ "id": 18790,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -748624,14 +749548,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36080,
+ "id": 18791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36081,
+ "id": 18792,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -748656,7 +749580,7 @@
"types": [
{
"type": "reference",
- "target": 36064,
+ "target": 18775,
"name": "UpdatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -748669,7 +749593,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36064,
+ "target": 18775,
"name": "UpdatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -748685,7 +749609,7 @@
{
"title": "Properties",
"children": [
- 36081
+ 18792
]
}
],
@@ -748778,14 +749702,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36082,
+ "id": 18793,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36083,
+ "id": 18794,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -748799,7 +749723,7 @@
],
"signatures": [
{
- "id": 36084,
+ "id": 18795,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -748813,7 +749737,7 @@
],
"parameters": [
{
- "id": 36085,
+ "id": 18796,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -748824,14 +749748,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36086,
+ "id": 18797,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36087,
+ "id": 18798,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -748855,7 +749779,7 @@
{
"title": "Properties",
"children": [
- 36087
+ 18798
]
}
],
@@ -748940,7 +749864,7 @@
{
"title": "Methods",
"children": [
- 36083
+ 18794
]
}
],
@@ -748984,7 +749908,7 @@
}
},
{
- "id": 36088,
+ "id": 18799,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -749007,7 +749931,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36089,
+ "id": 18800,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -749021,7 +749945,7 @@
],
"signatures": [
{
- "id": 36090,
+ "id": 18801,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -749049,7 +749973,7 @@
],
"typeParameters": [
{
- "id": 36091,
+ "id": 18802,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -749060,7 +749984,7 @@
}
},
{
- "id": 36092,
+ "id": 18803,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -749073,7 +749997,7 @@
],
"parameters": [
{
- "id": 36093,
+ "id": 18804,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -749106,7 +750030,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -749117,13 +750041,13 @@
},
"trueType": {
"type": "reference",
- "target": 36064,
+ "target": 18775,
"name": "UpdatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -749156,7 +750080,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -749179,7 +750103,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -749199,7 +750123,7 @@
}
},
{
- "id": 36094,
+ "id": 18805,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -749222,7 +750146,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36095,
+ "id": 18806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -749236,7 +750160,7 @@
],
"signatures": [
{
- "id": 36096,
+ "id": 18807,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -749258,7 +750182,7 @@
}
},
{
- "id": 36097,
+ "id": 18808,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -749281,7 +750205,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36098,
+ "id": 18809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -749295,7 +750219,7 @@
],
"signatures": [
{
- "id": 36099,
+ "id": 18810,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -749309,7 +750233,7 @@
],
"parameters": [
{
- "id": 36100,
+ "id": 18811,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -749335,7 +750259,7 @@
}
},
{
- "id": 36101,
+ "id": 18812,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -749358,7 +750282,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36102,
+ "id": 18813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -749369,7 +750293,7 @@
],
"documents": [
{
- "id": 43065,
+ "id": 26006,
"name": "validatePriceListsStep",
"variant": "document",
"kind": 8388608,
@@ -749395,7 +750319,7 @@
"frontmatter": {}
},
{
- "id": 43066,
+ "id": 26007,
"name": "validateVariantPriceLinksStep",
"variant": "document",
"kind": 8388608,
@@ -749421,7 +750345,7 @@
"frontmatter": {}
},
{
- "id": 43067,
+ "id": 26008,
"name": "updatePriceListPricesStep",
"variant": "document",
"kind": 8388608,
@@ -749448,21 +750372,21 @@
}
],
"childrenIncludingDocuments": [
- 36076,
- 36088,
- 36094,
- 36097,
- 36101
+ 18787,
+ 18799,
+ 18805,
+ 18808,
+ 18812
],
"groups": [
{
"title": "Properties",
"children": [
- 36076,
- 36088,
- 36094,
- 36097,
- 36101
+ 18787,
+ 18799,
+ 18805,
+ 18808,
+ 18812
]
}
],
@@ -749471,12 +750395,12 @@
"fileName": "core-flows/src/price-list/workflows/update-price-list-prices.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L57"
}
],
"signatures": [
{
- "id": 36069,
+ "id": 18780,
"name": "updatePriceListPricesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -749532,12 +750456,12 @@
"fileName": "core-flows/src/price-list/workflows/update-price-list-prices.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L57"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-list-prices.ts#L57"
}
],
"typeParameters": [
{
- "id": 36070,
+ "id": 18781,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -749548,7 +750472,7 @@
}
},
{
- "id": 36071,
+ "id": 18782,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -749561,7 +750485,7 @@
],
"parameters": [
{
- "id": 36072,
+ "id": 18783,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -749585,14 +750509,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36073,
+ "id": 18784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36074,
+ "id": 18785,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -749615,7 +750539,7 @@
}
},
{
- "id": 36075,
+ "id": 18786,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -749642,8 +750566,8 @@
{
"title": "Properties",
"children": [
- 36074,
- 36075
+ 18785,
+ 18786
]
}
],
@@ -749718,7 +750642,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36064,
+ "target": 18775,
"name": "UpdatePriceListPricesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -749736,14 +750660,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -749758,7 +750682,7 @@
]
},
{
- "id": 36105,
+ "id": 18816,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -749776,7 +750700,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L12"
}
],
"type": {
@@ -749793,7 +750717,7 @@
}
},
{
- "id": 36106,
+ "id": 18817,
"name": "updatePriceListsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -749805,7 +750729,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L15"
}
],
"type": {
@@ -749815,7 +750739,7 @@
"defaultValue": "\"update-price-lists\""
},
{
- "id": 36107,
+ "id": 18818,
"name": "updatePriceListsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -749859,7 +750783,7 @@
},
"children": [
{
- "id": 36117,
+ "id": 18828,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -749882,7 +750806,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36118,
+ "id": 18829,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -749896,7 +750820,7 @@
],
"signatures": [
{
- "id": 36119,
+ "id": 18830,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -749924,7 +750848,7 @@
],
"parameters": [
{
- "id": 36120,
+ "id": 18831,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -749940,14 +750864,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36121,
+ "id": 18832,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36122,
+ "id": 18833,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -749973,14 +750897,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36123,
+ "id": 18834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36124,
+ "id": 18835,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -749990,7 +750914,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -750011,7 +750935,7 @@
{
"title": "Properties",
"children": [
- 36124
+ 18835
]
}
],
@@ -750020,7 +750944,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
]
}
@@ -750035,14 +750959,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36125,
+ "id": 18836,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36126,
+ "id": 18837,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -750052,7 +750976,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -750073,7 +750997,7 @@
{
"title": "Properties",
"children": [
- 36126
+ 18837
]
}
],
@@ -750082,7 +751006,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
]
}
@@ -750099,7 +751023,7 @@
{
"title": "Properties",
"children": [
- 36122
+ 18833
]
}
],
@@ -750135,14 +751059,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36127,
+ "id": 18838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36128,
+ "id": 18839,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -750156,7 +751080,7 @@
],
"signatures": [
{
- "id": 36129,
+ "id": 18840,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -750170,7 +751094,7 @@
],
"parameters": [
{
- "id": 36130,
+ "id": 18841,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -750181,14 +751105,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36131,
+ "id": 18842,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36132,
+ "id": 18843,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -750212,7 +751136,7 @@
{
"title": "Properties",
"children": [
- 36132
+ 18843
]
}
],
@@ -750289,7 +751213,7 @@
{
"title": "Methods",
"children": [
- 36128
+ 18839
]
}
],
@@ -750325,7 +751249,7 @@
}
},
{
- "id": 36133,
+ "id": 18844,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -750348,7 +751272,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36134,
+ "id": 18845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -750362,7 +751286,7 @@
],
"signatures": [
{
- "id": 36135,
+ "id": 18846,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -750390,7 +751314,7 @@
],
"typeParameters": [
{
- "id": 36136,
+ "id": 18847,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -750401,7 +751325,7 @@
}
},
{
- "id": 36137,
+ "id": 18848,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -750414,7 +751338,7 @@
],
"parameters": [
{
- "id": 36138,
+ "id": 18849,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -750447,7 +751371,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -750459,14 +751383,14 @@
"trueType": {
"type": "reflection",
"declaration": {
- "id": 36139,
+ "id": 18850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36140,
+ "id": 18851,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -750476,7 +751400,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -750497,7 +751421,7 @@
{
"title": "Properties",
"children": [
- 36140
+ 18851
]
}
],
@@ -750506,14 +751430,14 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
]
}
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -750546,7 +751470,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -750561,7 +751485,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -750581,7 +751505,7 @@
}
},
{
- "id": 36141,
+ "id": 18852,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -750604,7 +751528,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36142,
+ "id": 18853,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -750618,7 +751542,7 @@
],
"signatures": [
{
- "id": 36143,
+ "id": 18854,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -750640,7 +751564,7 @@
}
},
{
- "id": 36144,
+ "id": 18855,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -750663,7 +751587,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36145,
+ "id": 18856,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -750677,7 +751601,7 @@
],
"signatures": [
{
- "id": 36146,
+ "id": 18857,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -750691,7 +751615,7 @@
],
"parameters": [
{
- "id": 36147,
+ "id": 18858,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -750717,7 +751641,7 @@
}
},
{
- "id": 36148,
+ "id": 18859,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -750740,7 +751664,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36149,
+ "id": 18860,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -750751,7 +751675,7 @@
],
"documents": [
{
- "id": 43068,
+ "id": 26009,
"name": "validatePriceListsStep",
"variant": "document",
"kind": 8388608,
@@ -750777,7 +751701,7 @@
"frontmatter": {}
},
{
- "id": 43069,
+ "id": 26010,
"name": "updatePriceListsStep",
"variant": "document",
"kind": 8388608,
@@ -750804,21 +751728,21 @@
}
],
"childrenIncludingDocuments": [
- 36117,
- 36133,
- 36141,
- 36144,
- 36148
+ 18828,
+ 18844,
+ 18852,
+ 18855,
+ 18859
],
"groups": [
{
"title": "Properties",
"children": [
- 36117,
- 36133,
- 36141,
- 36144,
- 36148
+ 18828,
+ 18844,
+ 18852,
+ 18855,
+ 18859
]
}
],
@@ -750827,12 +751751,12 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L40"
}
],
"signatures": [
{
- "id": 36108,
+ "id": 18819,
"name": "updatePriceListsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -750879,12 +751803,12 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 40,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L40"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L40"
}
],
"typeParameters": [
{
- "id": 36109,
+ "id": 18820,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -750895,7 +751819,7 @@
}
},
{
- "id": 36110,
+ "id": 18821,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -750908,7 +751832,7 @@
],
"parameters": [
{
- "id": 36111,
+ "id": 18822,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -750932,14 +751856,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36112,
+ "id": 18823,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36113,
+ "id": 18824,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -750962,7 +751886,7 @@
}
},
{
- "id": 36114,
+ "id": 18825,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -750989,8 +751913,8 @@
{
"title": "Properties",
"children": [
- 36113,
- 36114
+ 18824,
+ 18825
]
}
],
@@ -751066,14 +751990,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36115,
+ "id": 18826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36116,
+ "id": 18827,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -751083,7 +752007,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -751104,7 +752028,7 @@
{
"title": "Properties",
"children": [
- 36116
+ 18827
]
}
],
@@ -751113,7 +752037,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 24,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
]
}
@@ -751124,14 +752048,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -751146,7 +752070,7 @@
]
},
{
- "id": 36116,
+ "id": 18827,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -751156,7 +752080,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -751173,7 +752097,7 @@
}
},
{
- "id": 36124,
+ "id": 18835,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -751183,7 +752107,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -751200,7 +752124,7 @@
}
},
{
- "id": 36126,
+ "id": 18837,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -751210,7 +752134,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -751227,7 +752151,7 @@
}
},
{
- "id": 36140,
+ "id": 18851,
"name": "price_lists_data",
"variant": "declaration",
"kind": 1024,
@@ -751237,7 +752161,7 @@
"fileName": "core-flows/src/price-list/workflows/update-price-lists.ts",
"line": 43,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/price-list/workflows/update-price-lists.ts#L43"
}
],
"type": {
@@ -751258,21 +752182,21 @@
]
},
{
- "id": 17351,
+ "id": 56,
"name": "Pricing",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17352,
+ "id": 57,
"name": "Steps_Pricing",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 36151,
+ "id": 18862,
"name": "createPriceSetsStepId",
"variant": "declaration",
"kind": 32,
@@ -751284,7 +752208,7 @@
"fileName": "core-flows/src/pricing/steps/create-price-sets.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/create-price-sets.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/create-price-sets.ts#L13"
}
],
"type": {
@@ -751294,7 +752218,7 @@
"defaultValue": "\"create-price-sets\""
},
{
- "id": 36152,
+ "id": 18863,
"name": "createPriceSetsStep",
"variant": "declaration",
"kind": 64,
@@ -751338,7 +752262,7 @@
},
"children": [
{
- "id": 36161,
+ "id": 18872,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -751356,7 +752280,7 @@
}
},
{
- "id": 36162,
+ "id": 18873,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -751378,8 +752302,8 @@
{
"title": "Properties",
"children": [
- 36161,
- 36162
+ 18872,
+ 18873
]
}
],
@@ -751388,12 +752312,12 @@
"fileName": "core-flows/src/pricing/steps/create-price-sets.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/create-price-sets.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/create-price-sets.ts#L27"
}
],
"signatures": [
{
- "id": 36153,
+ "id": 18864,
"name": "createPriceSetsStep",
"variant": "signature",
"kind": 4096,
@@ -751440,12 +752364,12 @@
"fileName": "core-flows/src/pricing/steps/create-price-sets.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/create-price-sets.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/create-price-sets.ts#L27"
}
],
"parameters": [
{
- "id": 36154,
+ "id": 18865,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -751455,7 +752379,7 @@
"types": [
{
"type": "reference",
- "target": 36150,
+ "target": 18861,
"name": "CreatePriceSetWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -751468,7 +752392,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36150,
+ "target": 18861,
"name": "CreatePriceSetWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -751558,14 +752482,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36155,
+ "id": 18866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36156,
+ "id": 18867,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -751579,7 +752503,7 @@
],
"signatures": [
{
- "id": 36157,
+ "id": 18868,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -751593,7 +752517,7 @@
],
"parameters": [
{
- "id": 36158,
+ "id": 18869,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -751604,14 +752528,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36159,
+ "id": 18870,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36160,
+ "id": 18871,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -751635,7 +752559,7 @@
{
"title": "Properties",
"children": [
- 36160
+ 18871
]
}
],
@@ -751720,7 +752644,7 @@
{
"title": "Methods",
"children": [
- 36156
+ 18867
]
}
],
@@ -751762,7 +752686,7 @@
]
},
{
- "id": 36165,
+ "id": 18876,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -751782,7 +752706,7 @@
"fileName": "core-flows/src/pricing/steps/update-price-sets.ts",
"line": 21,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L21"
}
],
"type": {
@@ -751797,7 +752721,7 @@
}
},
{
- "id": 36166,
+ "id": 18877,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -751817,7 +752741,7 @@
"fileName": "core-flows/src/pricing/steps/update-price-sets.ts",
"line": 25,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L25"
}
],
"type": {
@@ -751832,7 +752756,7 @@
}
},
{
- "id": 36168,
+ "id": 18879,
"name": "price_sets",
"variant": "declaration",
"kind": 1024,
@@ -751850,7 +752774,7 @@
"fileName": "core-flows/src/pricing/steps/update-price-sets.ts",
"line": 31,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L31"
}
],
"type": {
@@ -751868,7 +752792,7 @@
}
},
{
- "id": 36169,
+ "id": 18880,
"name": "updatePriceSetsStepId",
"variant": "declaration",
"kind": 32,
@@ -751880,7 +752804,7 @@
"fileName": "core-flows/src/pricing/steps/update-price-sets.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L34"
}
],
"type": {
@@ -751890,7 +752814,7 @@
"defaultValue": "\"update-price-sets\""
},
{
- "id": 36170,
+ "id": 18881,
"name": "updatePriceSetsStep",
"variant": "declaration",
"kind": 64,
@@ -751934,7 +752858,7 @@
},
"children": [
{
- "id": 36179,
+ "id": 18890,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -751952,7 +752876,7 @@
}
},
{
- "id": 36180,
+ "id": 18891,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -751974,8 +752898,8 @@
{
"title": "Properties",
"children": [
- 36179,
- 36180
+ 18890,
+ 18891
]
}
],
@@ -751984,12 +752908,12 @@
"fileName": "core-flows/src/pricing/steps/update-price-sets.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L53"
}
],
"signatures": [
{
- "id": 36171,
+ "id": 18882,
"name": "updatePriceSetsStep",
"variant": "signature",
"kind": 4096,
@@ -752036,12 +752960,12 @@
"fileName": "core-flows/src/pricing/steps/update-price-sets.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-sets.ts#L53"
}
],
"parameters": [
{
- "id": 36172,
+ "id": 18883,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -752051,7 +752975,7 @@
"types": [
{
"type": "reference",
- "target": 36163,
+ "target": 18874,
"name": "UpdatePriceSetsStepInput",
"package": "@medusajs/core-flows"
},
@@ -752064,7 +752988,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36163,
+ "target": 18874,
"name": "UpdatePriceSetsStepInput",
"package": "@medusajs/core-flows"
}
@@ -752154,14 +753078,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36173,
+ "id": 18884,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36174,
+ "id": 18885,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -752175,7 +753099,7 @@
],
"signatures": [
{
- "id": 36175,
+ "id": 18886,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -752189,7 +753113,7 @@
],
"parameters": [
{
- "id": 36176,
+ "id": 18887,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -752200,14 +753124,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36177,
+ "id": 18888,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36178,
+ "id": 18889,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -752231,7 +753155,7 @@
{
"title": "Properties",
"children": [
- 36178
+ 18889
]
}
],
@@ -752316,7 +753240,7 @@
{
"title": "Methods",
"children": [
- 36174
+ 18885
]
}
],
@@ -752358,7 +753282,7 @@
]
},
{
- "id": 36182,
+ "id": 18893,
"name": "createPricePreferencesStepId",
"variant": "declaration",
"kind": 32,
@@ -752370,7 +753294,7 @@
"fileName": "core-flows/src/pricing/steps/create-price-preferences.ts",
"line": 13,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/create-price-preferences.ts#L13"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/create-price-preferences.ts#L13"
}
],
"type": {
@@ -752380,7 +753304,7 @@
"defaultValue": "\"create-price-preferences\""
},
{
- "id": 36183,
+ "id": 18894,
"name": "createPricePreferencesStep",
"variant": "declaration",
"kind": 64,
@@ -752415,7 +753339,7 @@
},
"children": [
{
- "id": 36192,
+ "id": 18903,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -752433,7 +753357,7 @@
}
},
{
- "id": 36193,
+ "id": 18904,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -752455,8 +753379,8 @@
{
"title": "Properties",
"children": [
- 36192,
- 36193
+ 18903,
+ 18904
]
}
],
@@ -752465,12 +753389,12 @@
"fileName": "core-flows/src/pricing/steps/create-price-preferences.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/create-price-preferences.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/create-price-preferences.ts#L24"
}
],
"signatures": [
{
- "id": 36184,
+ "id": 18895,
"name": "createPricePreferencesStep",
"variant": "signature",
"kind": 4096,
@@ -752508,12 +753432,12 @@
"fileName": "core-flows/src/pricing/steps/create-price-preferences.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/create-price-preferences.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/create-price-preferences.ts#L24"
}
],
"parameters": [
{
- "id": 36185,
+ "id": 18896,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -752523,7 +753447,7 @@
"types": [
{
"type": "reference",
- "target": 36181,
+ "target": 18892,
"name": "CreatePricePreferencesStepInput",
"package": "@medusajs/core-flows"
},
@@ -752536,7 +753460,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36181,
+ "target": 18892,
"name": "CreatePricePreferencesStepInput",
"package": "@medusajs/core-flows"
}
@@ -752626,14 +753550,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36186,
+ "id": 18897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36187,
+ "id": 18898,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -752647,7 +753571,7 @@
],
"signatures": [
{
- "id": 36188,
+ "id": 18899,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -752661,7 +753585,7 @@
],
"parameters": [
{
- "id": 36189,
+ "id": 18900,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -752672,14 +753596,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36190,
+ "id": 18901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36191,
+ "id": 18902,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -752703,7 +753627,7 @@
{
"title": "Properties",
"children": [
- 36191
+ 18902
]
}
],
@@ -752788,7 +753712,7 @@
{
"title": "Methods",
"children": [
- 36187
+ 18898
]
}
],
@@ -752830,7 +753754,7 @@
]
},
{
- "id": 36194,
+ "id": 18905,
"name": "updatePricePreferencesStepId",
"variant": "declaration",
"kind": 32,
@@ -752842,7 +753766,7 @@
"fileName": "core-flows/src/pricing/steps/update-price-preferences.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-preferences.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-preferences.ts#L11"
}
],
"type": {
@@ -752852,7 +753776,7 @@
"defaultValue": "\"update-price-preferences\""
},
{
- "id": 36195,
+ "id": 18906,
"name": "updatePricePreferencesStep",
"variant": "declaration",
"kind": 64,
@@ -752887,7 +753811,7 @@
},
"children": [
{
- "id": 36204,
+ "id": 18915,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -752905,7 +753829,7 @@
}
},
{
- "id": 36205,
+ "id": 18916,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -752927,8 +753851,8 @@
{
"title": "Properties",
"children": [
- 36204,
- 36205
+ 18915,
+ 18916
]
}
],
@@ -752937,12 +753861,12 @@
"fileName": "core-flows/src/pricing/steps/update-price-preferences.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-preferences.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-preferences.ts#L25"
}
],
"signatures": [
{
- "id": 36196,
+ "id": 18907,
"name": "updatePricePreferencesStep",
"variant": "signature",
"kind": 4096,
@@ -752980,12 +753904,12 @@
"fileName": "core-flows/src/pricing/steps/update-price-preferences.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-preferences.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-preferences.ts#L25"
}
],
"parameters": [
{
- "id": 36197,
+ "id": 18908,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -753104,14 +754028,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36198,
+ "id": 18909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36199,
+ "id": 18910,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -753125,7 +754049,7 @@
],
"signatures": [
{
- "id": 36200,
+ "id": 18911,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -753139,7 +754063,7 @@
],
"parameters": [
{
- "id": 36201,
+ "id": 18912,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -753150,14 +754074,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36202,
+ "id": 18913,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36203,
+ "id": 18914,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -753181,7 +754105,7 @@
{
"title": "Properties",
"children": [
- 36203
+ 18914
]
}
],
@@ -753266,7 +754190,7 @@
{
"title": "Methods",
"children": [
- 36199
+ 18910
]
}
],
@@ -753308,7 +754232,7 @@
]
},
{
- "id": 36207,
+ "id": 18918,
"name": "updatePricePreferencesAsArrayStepId",
"variant": "declaration",
"kind": 32,
@@ -753320,7 +754244,7 @@
"fileName": "core-flows/src/pricing/steps/update-price-preferences-as-array.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-preferences-as-array.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-preferences-as-array.ts#L18"
}
],
"type": {
@@ -753330,7 +754254,7 @@
"defaultValue": "\"update-price-preferences-as-array\""
},
{
- "id": 36208,
+ "id": 18919,
"name": "updatePricePreferencesAsArrayStep",
"variant": "declaration",
"kind": 64,
@@ -753374,7 +754298,7 @@
},
"children": [
{
- "id": 36217,
+ "id": 18928,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -753392,7 +754316,7 @@
}
},
{
- "id": 36218,
+ "id": 18929,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -753414,8 +754338,8 @@
{
"title": "Properties",
"children": [
- 36217,
- 36218
+ 18928,
+ 18929
]
}
],
@@ -753424,12 +754348,12 @@
"fileName": "core-flows/src/pricing/steps/update-price-preferences-as-array.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-preferences-as-array.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-preferences-as-array.ts#L32"
}
],
"signatures": [
{
- "id": 36209,
+ "id": 18920,
"name": "updatePricePreferencesAsArrayStep",
"variant": "signature",
"kind": 4096,
@@ -753476,12 +754400,12 @@
"fileName": "core-flows/src/pricing/steps/update-price-preferences-as-array.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/update-price-preferences-as-array.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/update-price-preferences-as-array.ts#L32"
}
],
"parameters": [
{
- "id": 36210,
+ "id": 18921,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -753491,7 +754415,7 @@
"types": [
{
"type": "reference",
- "target": 36206,
+ "target": 18917,
"name": "UpdatePricePreferencesAsArrayStepInput",
"package": "@medusajs/core-flows"
},
@@ -753504,7 +754428,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36206,
+ "target": 18917,
"name": "UpdatePricePreferencesAsArrayStepInput",
"package": "@medusajs/core-flows"
}
@@ -753594,14 +754518,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36211,
+ "id": 18922,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36212,
+ "id": 18923,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -753615,7 +754539,7 @@
],
"signatures": [
{
- "id": 36213,
+ "id": 18924,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -753629,7 +754553,7 @@
],
"parameters": [
{
- "id": 36214,
+ "id": 18925,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -753640,14 +754564,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36215,
+ "id": 18926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36216,
+ "id": 18927,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -753671,7 +754595,7 @@
{
"title": "Properties",
"children": [
- 36216
+ 18927
]
}
],
@@ -753756,7 +754680,7 @@
{
"title": "Methods",
"children": [
- 36212
+ 18923
]
}
],
@@ -753798,7 +754722,7 @@
]
},
{
- "id": 36220,
+ "id": 18931,
"name": "deletePricePreferencesStepId",
"variant": "declaration",
"kind": 32,
@@ -753810,7 +754734,7 @@
"fileName": "core-flows/src/pricing/steps/delete-price-preferences.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/delete-price-preferences.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/delete-price-preferences.ts#L10"
}
],
"type": {
@@ -753820,7 +754744,7 @@
"defaultValue": "\"delete-price-preferences\""
},
{
- "id": 36221,
+ "id": 18932,
"name": "deletePricePreferencesStep",
"variant": "declaration",
"kind": 64,
@@ -753846,7 +754770,7 @@
},
"children": [
{
- "id": 36224,
+ "id": 18935,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -753864,7 +754788,7 @@
}
},
{
- "id": 36225,
+ "id": 18936,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -753886,8 +754810,8 @@
{
"title": "Properties",
"children": [
- 36224,
- 36225
+ 18935,
+ 18936
]
}
],
@@ -753896,12 +754820,12 @@
"fileName": "core-flows/src/pricing/steps/delete-price-preferences.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/delete-price-preferences.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/delete-price-preferences.ts#L14"
}
],
"signatures": [
{
- "id": 36222,
+ "id": 18933,
"name": "deletePricePreferencesStep",
"variant": "signature",
"kind": 4096,
@@ -753930,12 +754854,12 @@
"fileName": "core-flows/src/pricing/steps/delete-price-preferences.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/steps/delete-price-preferences.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/steps/delete-price-preferences.ts#L14"
}
],
"parameters": [
{
- "id": 36223,
+ "id": 18934,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -753945,7 +754869,7 @@
"types": [
{
"type": "reference",
- "target": 36219,
+ "target": 18930,
"name": "DeletePricePreferencesStepInput",
"package": "@medusajs/core-flows"
},
@@ -753958,7 +754882,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36219,
+ "target": 18930,
"name": "DeletePricePreferencesStepInput",
"package": "@medusajs/core-flows"
}
@@ -753980,14 +754904,14 @@
]
},
{
- "id": 17353,
+ "id": 58,
"name": "Workflows_Pricing",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 36227,
+ "id": 18938,
"name": "createPricePreferencesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -753999,7 +754923,7 @@
"fileName": "core-flows/src/pricing/workflows/create-price-preferences.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/create-price-preferences.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/create-price-preferences.ts#L15"
}
],
"type": {
@@ -754009,7 +754933,7 @@
"defaultValue": "\"create-price-preferences\""
},
{
- "id": 36228,
+ "id": 18939,
"name": "createPricePreferencesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -754053,7 +754977,7 @@
},
"children": [
{
- "id": 36236,
+ "id": 18947,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -754076,7 +755000,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36237,
+ "id": 18948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -754090,7 +755014,7 @@
],
"signatures": [
{
- "id": 36238,
+ "id": 18949,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -754118,7 +755042,7 @@
],
"parameters": [
{
- "id": 36239,
+ "id": 18950,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -754134,14 +755058,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36240,
+ "id": 18951,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36241,
+ "id": 18952,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -754166,7 +755090,7 @@
"types": [
{
"type": "reference",
- "target": 36226,
+ "target": 18937,
"name": "CreatePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -754179,7 +755103,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36226,
+ "target": 18937,
"name": "CreatePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -754195,7 +755119,7 @@
{
"title": "Properties",
"children": [
- 36241
+ 18952
]
}
],
@@ -754288,14 +755212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36242,
+ "id": 18953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36243,
+ "id": 18954,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -754309,7 +755233,7 @@
],
"signatures": [
{
- "id": 36244,
+ "id": 18955,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -754323,7 +755247,7 @@
],
"parameters": [
{
- "id": 36245,
+ "id": 18956,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -754334,14 +755258,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36246,
+ "id": 18957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36247,
+ "id": 18958,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -754365,7 +755289,7 @@
{
"title": "Properties",
"children": [
- 36247
+ 18958
]
}
],
@@ -754450,7 +755374,7 @@
{
"title": "Methods",
"children": [
- 36243
+ 18954
]
}
],
@@ -754494,7 +755418,7 @@
}
},
{
- "id": 36248,
+ "id": 18959,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -754517,7 +755441,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36249,
+ "id": 18960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -754531,7 +755455,7 @@
],
"signatures": [
{
- "id": 36250,
+ "id": 18961,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -754559,7 +755483,7 @@
],
"typeParameters": [
{
- "id": 36251,
+ "id": 18962,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -754570,7 +755494,7 @@
}
},
{
- "id": 36252,
+ "id": 18963,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -754583,7 +755507,7 @@
],
"parameters": [
{
- "id": 36253,
+ "id": 18964,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -754616,7 +755540,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -754627,13 +755551,13 @@
},
"trueType": {
"type": "reference",
- "target": 36226,
+ "target": 18937,
"name": "CreatePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -754666,7 +755590,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -754689,7 +755613,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -754709,7 +755633,7 @@
}
},
{
- "id": 36254,
+ "id": 18965,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -754732,7 +755656,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36255,
+ "id": 18966,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -754746,7 +755670,7 @@
],
"signatures": [
{
- "id": 36256,
+ "id": 18967,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -754768,7 +755692,7 @@
}
},
{
- "id": 36257,
+ "id": 18968,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -754791,7 +755715,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36258,
+ "id": 18969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -754805,7 +755729,7 @@
],
"signatures": [
{
- "id": 36259,
+ "id": 18970,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -754819,7 +755743,7 @@
],
"parameters": [
{
- "id": 36260,
+ "id": 18971,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -754845,7 +755769,7 @@
}
},
{
- "id": 36261,
+ "id": 18972,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -754868,7 +755792,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36262,
+ "id": 18973,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -754879,7 +755803,7 @@
],
"documents": [
{
- "id": 43070,
+ "id": 26011,
"name": "createPricePreferencesStep",
"variant": "document",
"kind": 8388608,
@@ -754906,21 +755830,21 @@
}
],
"childrenIncludingDocuments": [
- 36236,
- 36248,
- 36254,
- 36257,
- 36261
+ 18947,
+ 18959,
+ 18965,
+ 18968,
+ 18972
],
"groups": [
{
"title": "Properties",
"children": [
- 36236,
- 36248,
- 36254,
- 36257,
- 36261
+ 18947,
+ 18959,
+ 18965,
+ 18968,
+ 18972
]
}
],
@@ -754929,12 +755853,12 @@
"fileName": "core-flows/src/pricing/workflows/create-price-preferences.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/create-price-preferences.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/create-price-preferences.ts#L39"
}
],
"signatures": [
{
- "id": 36229,
+ "id": 18940,
"name": "createPricePreferencesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -754981,12 +755905,12 @@
"fileName": "core-flows/src/pricing/workflows/create-price-preferences.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/create-price-preferences.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/create-price-preferences.ts#L39"
}
],
"typeParameters": [
{
- "id": 36230,
+ "id": 18941,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -754997,7 +755921,7 @@
}
},
{
- "id": 36231,
+ "id": 18942,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -755010,7 +755934,7 @@
],
"parameters": [
{
- "id": 36232,
+ "id": 18943,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -755034,14 +755958,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36233,
+ "id": 18944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36234,
+ "id": 18945,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -755064,7 +755988,7 @@
}
},
{
- "id": 36235,
+ "id": 18946,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -755091,8 +756015,8 @@
{
"title": "Properties",
"children": [
- 36234,
- 36235
+ 18945,
+ 18946
]
}
],
@@ -755167,7 +756091,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36226,
+ "target": 18937,
"name": "CreatePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -755185,14 +756109,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -755207,7 +756131,7 @@
]
},
{
- "id": 36263,
+ "id": 18974,
"name": "updatePricePreferencesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -755219,7 +756143,7 @@
"fileName": "core-flows/src/pricing/workflows/update-price-preferences.ts",
"line": 9,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/update-price-preferences.ts#L9"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/update-price-preferences.ts#L9"
}
],
"type": {
@@ -755229,7 +756153,7 @@
"defaultValue": "\"update-price-preferences\""
},
{
- "id": 36264,
+ "id": 18975,
"name": "updatePricePreferencesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -755273,7 +756197,7 @@
},
"children": [
{
- "id": 36272,
+ "id": 18983,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -755296,7 +756220,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36273,
+ "id": 18984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -755310,7 +756234,7 @@
],
"signatures": [
{
- "id": 36274,
+ "id": 18985,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -755338,7 +756262,7 @@
],
"parameters": [
{
- "id": 36275,
+ "id": 18986,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -755354,14 +756278,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36276,
+ "id": 18987,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36277,
+ "id": 18988,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -755421,7 +756345,7 @@
{
"title": "Properties",
"children": [
- 36277
+ 18988
]
}
],
@@ -755514,14 +756438,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36278,
+ "id": 18989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36279,
+ "id": 18990,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -755535,7 +756459,7 @@
],
"signatures": [
{
- "id": 36280,
+ "id": 18991,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -755549,7 +756473,7 @@
],
"parameters": [
{
- "id": 36281,
+ "id": 18992,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -755560,14 +756484,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36282,
+ "id": 18993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36283,
+ "id": 18994,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -755591,7 +756515,7 @@
{
"title": "Properties",
"children": [
- 36283
+ 18994
]
}
],
@@ -755676,7 +756600,7 @@
{
"title": "Methods",
"children": [
- 36279
+ 18990
]
}
],
@@ -755720,7 +756644,7 @@
}
},
{
- "id": 36284,
+ "id": 18995,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -755743,7 +756667,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36285,
+ "id": 18996,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -755757,7 +756681,7 @@
],
"signatures": [
{
- "id": 36286,
+ "id": 18997,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -755785,7 +756709,7 @@
],
"typeParameters": [
{
- "id": 36287,
+ "id": 18998,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -755796,7 +756720,7 @@
}
},
{
- "id": 36288,
+ "id": 18999,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -755809,7 +756733,7 @@
],
"parameters": [
{
- "id": 36289,
+ "id": 19000,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -755842,7 +756766,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -755862,7 +756786,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -755895,7 +756819,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -755918,7 +756842,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -755938,7 +756862,7 @@
}
},
{
- "id": 36290,
+ "id": 19001,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -755961,7 +756885,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36291,
+ "id": 19002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -755975,7 +756899,7 @@
],
"signatures": [
{
- "id": 36292,
+ "id": 19003,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -755997,7 +756921,7 @@
}
},
{
- "id": 36293,
+ "id": 19004,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -756020,7 +756944,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36294,
+ "id": 19005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -756034,7 +756958,7 @@
],
"signatures": [
{
- "id": 36295,
+ "id": 19006,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -756048,7 +756972,7 @@
],
"parameters": [
{
- "id": 36296,
+ "id": 19007,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -756074,7 +756998,7 @@
}
},
{
- "id": 36297,
+ "id": 19008,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -756097,7 +757021,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36298,
+ "id": 19009,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -756108,7 +757032,7 @@
],
"documents": [
{
- "id": 43071,
+ "id": 26012,
"name": "updatePricePreferencesStep",
"variant": "document",
"kind": 8388608,
@@ -756135,21 +757059,21 @@
}
],
"childrenIncludingDocuments": [
- 36272,
- 36284,
- 36290,
- 36293,
- 36297
+ 18983,
+ 18995,
+ 19001,
+ 19004,
+ 19008
],
"groups": [
{
"title": "Properties",
"children": [
- 36272,
- 36284,
- 36290,
- 36293,
- 36297
+ 18983,
+ 18995,
+ 19001,
+ 19004,
+ 19008
]
}
],
@@ -756158,12 +757082,12 @@
"fileName": "core-flows/src/pricing/workflows/update-price-preferences.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/update-price-preferences.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/update-price-preferences.ts#L34"
}
],
"signatures": [
{
- "id": 36265,
+ "id": 18976,
"name": "updatePricePreferencesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -756210,12 +757134,12 @@
"fileName": "core-flows/src/pricing/workflows/update-price-preferences.ts",
"line": 34,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/update-price-preferences.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/update-price-preferences.ts#L34"
}
],
"typeParameters": [
{
- "id": 36266,
+ "id": 18977,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -756226,7 +757150,7 @@
}
},
{
- "id": 36267,
+ "id": 18978,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -756239,7 +757163,7 @@
],
"parameters": [
{
- "id": 36268,
+ "id": 18979,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -756263,14 +757187,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36269,
+ "id": 18980,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36270,
+ "id": 18981,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -756293,7 +757217,7 @@
}
},
{
- "id": 36271,
+ "id": 18982,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -756320,8 +757244,8 @@
{
"title": "Properties",
"children": [
- 36270,
- 36271
+ 18981,
+ 18982
]
}
],
@@ -756417,14 +757341,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -756439,7 +757363,7 @@
]
},
{
- "id": 36300,
+ "id": 19011,
"name": "deletePricePreferencesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -756451,7 +757375,7 @@
"fileName": "core-flows/src/pricing/workflows/delete-price-preferences.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/delete-price-preferences.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/delete-price-preferences.ts#L11"
}
],
"type": {
@@ -756461,7 +757385,7 @@
"defaultValue": "\"delete-price-preferences\""
},
{
- "id": 36301,
+ "id": 19012,
"name": "deletePricePreferencesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -756505,7 +757429,7 @@
},
"children": [
{
- "id": 36309,
+ "id": 19020,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -756528,7 +757452,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36310,
+ "id": 19021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -756542,7 +757466,7 @@
],
"signatures": [
{
- "id": 36311,
+ "id": 19022,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -756570,7 +757494,7 @@
],
"parameters": [
{
- "id": 36312,
+ "id": 19023,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -756586,14 +757510,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36313,
+ "id": 19024,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36314,
+ "id": 19025,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -756618,7 +757542,7 @@
"types": [
{
"type": "reference",
- "target": 36299,
+ "target": 19010,
"name": "DeletePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -756631,7 +757555,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36299,
+ "target": 19010,
"name": "DeletePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -756647,7 +757571,7 @@
{
"title": "Properties",
"children": [
- 36314
+ 19025
]
}
],
@@ -756683,14 +757607,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36315,
+ "id": 19026,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36316,
+ "id": 19027,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -756704,7 +757628,7 @@
],
"signatures": [
{
- "id": 36317,
+ "id": 19028,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -756718,7 +757642,7 @@
],
"parameters": [
{
- "id": 36318,
+ "id": 19029,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -756729,14 +757653,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36319,
+ "id": 19030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36320,
+ "id": 19031,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -756760,7 +757684,7 @@
{
"title": "Properties",
"children": [
- 36320
+ 19031
]
}
],
@@ -756837,7 +757761,7 @@
{
"title": "Methods",
"children": [
- 36316
+ 19027
]
}
],
@@ -756873,7 +757797,7 @@
}
},
{
- "id": 36321,
+ "id": 19032,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -756896,7 +757820,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36322,
+ "id": 19033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -756910,7 +757834,7 @@
],
"signatures": [
{
- "id": 36323,
+ "id": 19034,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -756938,7 +757862,7 @@
],
"typeParameters": [
{
- "id": 36324,
+ "id": 19035,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -756949,7 +757873,7 @@
}
},
{
- "id": 36325,
+ "id": 19036,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -756962,7 +757886,7 @@
],
"parameters": [
{
- "id": 36326,
+ "id": 19037,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -756995,7 +757919,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -757006,13 +757930,13 @@
},
"trueType": {
"type": "reference",
- "target": 36299,
+ "target": 19010,
"name": "DeletePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -757045,7 +757969,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -757060,7 +757984,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -757080,7 +758004,7 @@
}
},
{
- "id": 36327,
+ "id": 19038,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -757103,7 +758027,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36328,
+ "id": 19039,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -757117,7 +758041,7 @@
],
"signatures": [
{
- "id": 36329,
+ "id": 19040,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -757139,7 +758063,7 @@
}
},
{
- "id": 36330,
+ "id": 19041,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -757162,7 +758086,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36331,
+ "id": 19042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -757176,7 +758100,7 @@
],
"signatures": [
{
- "id": 36332,
+ "id": 19043,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -757190,7 +758114,7 @@
],
"parameters": [
{
- "id": 36333,
+ "id": 19044,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -757216,7 +758140,7 @@
}
},
{
- "id": 36334,
+ "id": 19045,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -757239,7 +758163,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36335,
+ "id": 19046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -757250,7 +758174,7 @@
],
"documents": [
{
- "id": 43072,
+ "id": 26013,
"name": "deletePricePreferencesStep",
"variant": "document",
"kind": 8388608,
@@ -757276,7 +758200,7 @@
"frontmatter": {}
},
{
- "id": 43073,
+ "id": 26014,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -757303,21 +758227,21 @@
}
],
"childrenIncludingDocuments": [
- 36309,
- 36321,
- 36327,
- 36330,
- 36334
+ 19020,
+ 19032,
+ 19038,
+ 19041,
+ 19045
],
"groups": [
{
"title": "Properties",
"children": [
- 36309,
- 36321,
- 36327,
- 36330,
- 36334
+ 19020,
+ 19032,
+ 19038,
+ 19041,
+ 19045
]
}
],
@@ -757326,12 +758250,12 @@
"fileName": "core-flows/src/pricing/workflows/delete-price-preferences.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/delete-price-preferences.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/delete-price-preferences.ts#L29"
}
],
"signatures": [
{
- "id": 36302,
+ "id": 19013,
"name": "deletePricePreferencesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -757378,12 +758302,12 @@
"fileName": "core-flows/src/pricing/workflows/delete-price-preferences.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/pricing/workflows/delete-price-preferences.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/pricing/workflows/delete-price-preferences.ts#L29"
}
],
"typeParameters": [
{
- "id": 36303,
+ "id": 19014,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -757394,7 +758318,7 @@
}
},
{
- "id": 36304,
+ "id": 19015,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -757407,7 +758331,7 @@
],
"parameters": [
{
- "id": 36305,
+ "id": 19016,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -757431,14 +758355,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36306,
+ "id": 19017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36307,
+ "id": 19018,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -757461,7 +758385,7 @@
}
},
{
- "id": 36308,
+ "id": 19019,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -757488,8 +758412,8 @@
{
"title": "Properties",
"children": [
- 36307,
- 36308
+ 19018,
+ 19019
]
}
],
@@ -757564,7 +758488,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36299,
+ "target": 19010,
"name": "DeletePricePreferencesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -757574,14 +758498,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -757600,21 +758524,21 @@
]
},
{
- "id": 17354,
+ "id": 59,
"name": "Product",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 17355,
+ "id": 60,
"name": "Steps_Product",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 36336,
+ "id": 19047,
"name": "addImageToVariantsStepId",
"variant": "declaration",
"kind": 32,
@@ -757626,7 +758550,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L5"
}
],
"type": {
@@ -757636,7 +758560,7 @@
"defaultValue": "\"add-image-to-variants\""
},
{
- "id": 36337,
+ "id": 19048,
"name": "addImageToVariantsStep",
"variant": "declaration",
"kind": 64,
@@ -757680,7 +758604,7 @@
},
"children": [
{
- "id": 36352,
+ "id": 19063,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -757698,7 +758622,7 @@
}
},
{
- "id": 36353,
+ "id": 19064,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -757720,8 +758644,8 @@
{
"title": "Properties",
"children": [
- 36352,
- 36353
+ 19063,
+ 19064
]
}
],
@@ -757730,12 +758654,12 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L18"
}
],
"signatures": [
{
- "id": 36338,
+ "id": 19049,
"name": "addImageToVariantsStep",
"variant": "signature",
"kind": 4096,
@@ -757782,12 +758706,12 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L18"
}
],
"parameters": [
{
- "id": 36339,
+ "id": 19050,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -757798,14 +758722,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36340,
+ "id": 19051,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36341,
+ "id": 19052,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -757815,7 +758739,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -757824,7 +758748,7 @@
}
},
{
- "id": 36342,
+ "id": 19053,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -757834,7 +758758,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -757850,8 +758774,8 @@
{
"title": "Properties",
"children": [
- 36341,
- 36342
+ 19052,
+ 19053
]
}
],
@@ -757860,7 +758784,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
]
}
@@ -757875,14 +758799,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36343,
+ "id": 19054,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36344,
+ "id": 19055,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -757892,7 +758816,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -757901,7 +758825,7 @@
}
},
{
- "id": 36345,
+ "id": 19056,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -757911,7 +758835,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -757927,8 +758851,8 @@
{
"title": "Properties",
"children": [
- 36344,
- 36345
+ 19055,
+ 19056
]
}
],
@@ -757937,7 +758861,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
]
}
@@ -758008,14 +758932,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36346,
+ "id": 19057,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36347,
+ "id": 19058,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -758029,7 +758953,7 @@
],
"signatures": [
{
- "id": 36348,
+ "id": 19059,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -758043,7 +758967,7 @@
],
"parameters": [
{
- "id": 36349,
+ "id": 19060,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -758054,14 +758978,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36350,
+ "id": 19061,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36351,
+ "id": 19062,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -758085,7 +759009,7 @@
{
"title": "Properties",
"children": [
- 36351
+ 19062
]
}
],
@@ -758165,7 +759089,7 @@
{
"title": "Methods",
"children": [
- 36347
+ 19058
]
}
],
@@ -758202,7 +759126,7 @@
]
},
{
- "id": 36341,
+ "id": 19052,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -758212,7 +759136,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -758221,7 +759145,7 @@
}
},
{
- "id": 36342,
+ "id": 19053,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -758231,7 +759155,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -758243,7 +759167,7 @@
}
},
{
- "id": 36344,
+ "id": 19055,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -758253,7 +759177,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -758262,7 +759186,7 @@
}
},
{
- "id": 36345,
+ "id": 19056,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -758272,7 +759196,7 @@
"fileName": "core-flows/src/product/steps/add-image-to-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-image-to-variants.ts#L20"
}
],
"type": {
@@ -758284,7 +759208,7 @@
}
},
{
- "id": 36354,
+ "id": 19065,
"name": "addImagesToVariantStepId",
"variant": "declaration",
"kind": 32,
@@ -758296,7 +759220,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L5"
}
],
"type": {
@@ -758306,7 +759230,7 @@
"defaultValue": "\"add-images-to-variant\""
},
{
- "id": 36355,
+ "id": 19066,
"name": "addImagesToVariantStep",
"variant": "declaration",
"kind": 64,
@@ -758350,7 +759274,7 @@
},
"children": [
{
- "id": 36370,
+ "id": 19081,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -758368,7 +759292,7 @@
}
},
{
- "id": 36371,
+ "id": 19082,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -758390,8 +759314,8 @@
{
"title": "Properties",
"children": [
- 36370,
- 36371
+ 19081,
+ 19082
]
}
],
@@ -758400,12 +759324,12 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L18"
}
],
"signatures": [
{
- "id": 36356,
+ "id": 19067,
"name": "addImagesToVariantStep",
"variant": "signature",
"kind": 4096,
@@ -758452,12 +759376,12 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L18"
}
],
"parameters": [
{
- "id": 36357,
+ "id": 19068,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -758468,14 +759392,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36358,
+ "id": 19069,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36359,
+ "id": 19070,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -758485,7 +759409,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758494,7 +759418,7 @@
}
},
{
- "id": 36360,
+ "id": 19071,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -758504,7 +759428,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758520,8 +759444,8 @@
{
"title": "Properties",
"children": [
- 36359,
- 36360
+ 19070,
+ 19071
]
}
],
@@ -758530,7 +759454,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
]
}
@@ -758545,14 +759469,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36361,
+ "id": 19072,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36362,
+ "id": 19073,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -758562,7 +759486,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758571,7 +759495,7 @@
}
},
{
- "id": 36363,
+ "id": 19074,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -758581,7 +759505,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758597,8 +759521,8 @@
{
"title": "Properties",
"children": [
- 36362,
- 36363
+ 19073,
+ 19074
]
}
],
@@ -758607,7 +759531,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
]
}
@@ -758678,14 +759602,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36364,
+ "id": 19075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36365,
+ "id": 19076,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -758699,7 +759623,7 @@
],
"signatures": [
{
- "id": 36366,
+ "id": 19077,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -758713,7 +759637,7 @@
],
"parameters": [
{
- "id": 36367,
+ "id": 19078,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -758724,14 +759648,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36368,
+ "id": 19079,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36369,
+ "id": 19080,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -758755,7 +759679,7 @@
{
"title": "Properties",
"children": [
- 36369
+ 19080
]
}
],
@@ -758835,7 +759759,7 @@
{
"title": "Methods",
"children": [
- 36365
+ 19076
]
}
],
@@ -758872,7 +759796,7 @@
]
},
{
- "id": 36359,
+ "id": 19070,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -758882,7 +759806,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758891,7 +759815,7 @@
}
},
{
- "id": 36360,
+ "id": 19071,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -758901,7 +759825,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758913,7 +759837,7 @@
}
},
{
- "id": 36362,
+ "id": 19073,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -758923,7 +759847,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758932,7 +759856,7 @@
}
},
{
- "id": 36363,
+ "id": 19074,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -758942,7 +759866,7 @@
"fileName": "core-flows/src/product/steps/add-images-to-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/add-images-to-variant.ts#L20"
}
],
"type": {
@@ -758954,7 +759878,7 @@
}
},
{
- "id": 36372,
+ "id": 19083,
"name": "removeImagesFromVariantStepId",
"variant": "declaration",
"kind": 32,
@@ -758966,7 +759890,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L5"
}
],
"type": {
@@ -758976,7 +759900,7 @@
"defaultValue": "\"remove-images-from-variant\""
},
{
- "id": 36373,
+ "id": 19084,
"name": "removeImagesFromVariantStep",
"variant": "declaration",
"kind": 64,
@@ -759020,7 +759944,7 @@
},
"children": [
{
- "id": 36388,
+ "id": 19099,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -759038,7 +759962,7 @@
}
},
{
- "id": 36389,
+ "id": 19100,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -759060,8 +759984,8 @@
{
"title": "Properties",
"children": [
- 36388,
- 36389
+ 19099,
+ 19100
]
}
],
@@ -759070,12 +759994,12 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L18"
}
],
"signatures": [
{
- "id": 36374,
+ "id": 19085,
"name": "removeImagesFromVariantStep",
"variant": "signature",
"kind": 4096,
@@ -759122,12 +760046,12 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L18"
}
],
"parameters": [
{
- "id": 36375,
+ "id": 19086,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -759138,14 +760062,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36376,
+ "id": 19087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36377,
+ "id": 19088,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -759155,7 +760079,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759164,7 +760088,7 @@
}
},
{
- "id": 36378,
+ "id": 19089,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -759174,7 +760098,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759190,8 +760114,8 @@
{
"title": "Properties",
"children": [
- 36377,
- 36378
+ 19088,
+ 19089
]
}
],
@@ -759200,7 +760124,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
]
}
@@ -759215,14 +760139,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36379,
+ "id": 19090,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36380,
+ "id": 19091,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -759232,7 +760156,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759241,7 +760165,7 @@
}
},
{
- "id": 36381,
+ "id": 19092,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -759251,7 +760175,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759267,8 +760191,8 @@
{
"title": "Properties",
"children": [
- 36380,
- 36381
+ 19091,
+ 19092
]
}
],
@@ -759277,7 +760201,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
]
}
@@ -759348,14 +760272,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36382,
+ "id": 19093,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36383,
+ "id": 19094,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -759369,7 +760293,7 @@
],
"signatures": [
{
- "id": 36384,
+ "id": 19095,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -759383,7 +760307,7 @@
],
"parameters": [
{
- "id": 36385,
+ "id": 19096,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -759394,14 +760318,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36386,
+ "id": 19097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36387,
+ "id": 19098,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -759425,7 +760349,7 @@
{
"title": "Properties",
"children": [
- 36387
+ 19098
]
}
],
@@ -759505,7 +760429,7 @@
{
"title": "Methods",
"children": [
- 36383
+ 19094
]
}
],
@@ -759542,7 +760466,7 @@
]
},
{
- "id": 36377,
+ "id": 19088,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -759552,7 +760476,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759561,7 +760485,7 @@
}
},
{
- "id": 36378,
+ "id": 19089,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -759571,7 +760495,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759583,7 +760507,7 @@
}
},
{
- "id": 36380,
+ "id": 19091,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -759593,7 +760517,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759602,7 +760526,7 @@
}
},
{
- "id": 36381,
+ "id": 19092,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -759612,7 +760536,7 @@
"fileName": "core-flows/src/product/steps/remove-images-from-variant.ts",
"line": 20,
"character": 38,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-images-from-variant.ts#L20"
}
],
"type": {
@@ -759624,7 +760548,7 @@
}
},
{
- "id": 36390,
+ "id": 19101,
"name": "createProductsStepId",
"variant": "declaration",
"kind": 32,
@@ -759636,7 +760560,7 @@
"fileName": "core-flows/src/product/steps/create-products.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-products.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-products.ts#L8"
}
],
"type": {
@@ -759646,7 +760570,7 @@
"defaultValue": "\"create-products\""
},
{
- "id": 36391,
+ "id": 19102,
"name": "createProductsStep",
"variant": "declaration",
"kind": 64,
@@ -759681,7 +760605,7 @@
},
"children": [
{
- "id": 36400,
+ "id": 19111,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -759699,7 +760623,7 @@
}
},
{
- "id": 36401,
+ "id": 19112,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -759721,8 +760645,8 @@
{
"title": "Properties",
"children": [
- 36400,
- 36401
+ 19111,
+ 19112
]
}
],
@@ -759731,12 +760655,12 @@
"fileName": "core-flows/src/product/steps/create-products.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-products.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-products.ts#L31"
}
],
"signatures": [
{
- "id": 36392,
+ "id": 19103,
"name": "createProductsStep",
"variant": "signature",
"kind": 4096,
@@ -759774,12 +760698,12 @@
"fileName": "core-flows/src/product/steps/create-products.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-products.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-products.ts#L31"
}
],
"parameters": [
{
- "id": 36393,
+ "id": 19104,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -759904,14 +760828,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36394,
+ "id": 19105,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36395,
+ "id": 19106,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -759925,7 +760849,7 @@
],
"signatures": [
{
- "id": 36396,
+ "id": 19107,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -759939,7 +760863,7 @@
],
"parameters": [
{
- "id": 36397,
+ "id": 19108,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -759950,14 +760874,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36398,
+ "id": 19109,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36399,
+ "id": 19110,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -759981,7 +760905,7 @@
{
"title": "Properties",
"children": [
- 36399
+ 19110
]
}
],
@@ -760066,7 +760990,7 @@
{
"title": "Methods",
"children": [
- 36395
+ 19106
]
}
],
@@ -760108,7 +761032,7 @@
]
},
{
- "id": 36404,
+ "id": 19115,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -760126,7 +761050,7 @@
"fileName": "core-flows/src/product/steps/update-products.ts",
"line": 20,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-products.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-products.ts#L20"
}
],
"type": {
@@ -760141,7 +761065,7 @@
}
},
{
- "id": 36405,
+ "id": 19116,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -760159,7 +761083,7 @@
"fileName": "core-flows/src/product/steps/update-products.ts",
"line": 24,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-products.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-products.ts#L24"
}
],
"type": {
@@ -760174,7 +761098,7 @@
}
},
{
- "id": 36407,
+ "id": 19118,
"name": "products",
"variant": "declaration",
"kind": 1024,
@@ -760192,7 +761116,7 @@
"fileName": "core-flows/src/product/steps/update-products.ts",
"line": 30,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-products.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-products.ts#L30"
}
],
"type": {
@@ -760210,7 +761134,7 @@
}
},
{
- "id": 36408,
+ "id": 19119,
"name": "updateProductsStepId",
"variant": "declaration",
"kind": 32,
@@ -760222,7 +761146,7 @@
"fileName": "core-flows/src/product/steps/update-products.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-products.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-products.ts#L33"
}
],
"type": {
@@ -760232,7 +761156,7 @@
"defaultValue": "\"update-products\""
},
{
- "id": 36409,
+ "id": 19120,
"name": "updateProductsStep",
"variant": "declaration",
"kind": 64,
@@ -760279,7 +761203,7 @@
},
"children": [
{
- "id": 36418,
+ "id": 19129,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -760297,7 +761221,7 @@
}
},
{
- "id": 36419,
+ "id": 19130,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -760319,8 +761243,8 @@
{
"title": "Properties",
"children": [
- 36418,
- 36419
+ 19129,
+ 19130
]
}
],
@@ -760329,12 +761253,12 @@
"fileName": "core-flows/src/product/steps/update-products.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-products.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-products.ts#L64"
}
],
"signatures": [
{
- "id": 36410,
+ "id": 19121,
"name": "updateProductsStep",
"variant": "signature",
"kind": 4096,
@@ -760384,12 +761308,12 @@
"fileName": "core-flows/src/product/steps/update-products.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-products.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-products.ts#L64"
}
],
"parameters": [
{
- "id": 36411,
+ "id": 19122,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -760399,7 +761323,7 @@
"types": [
{
"type": "reference",
- "target": 36402,
+ "target": 19113,
"name": "UpdateProductsStepInput",
"package": "@medusajs/core-flows"
},
@@ -760412,7 +761336,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36402,
+ "target": 19113,
"name": "UpdateProductsStepInput",
"package": "@medusajs/core-flows"
}
@@ -760502,14 +761426,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36412,
+ "id": 19123,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36413,
+ "id": 19124,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -760523,7 +761447,7 @@
],
"signatures": [
{
- "id": 36414,
+ "id": 19125,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -760537,7 +761461,7 @@
],
"parameters": [
{
- "id": 36415,
+ "id": 19126,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -760548,14 +761472,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36416,
+ "id": 19127,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36417,
+ "id": 19128,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -760579,7 +761503,7 @@
{
"title": "Properties",
"children": [
- 36417
+ 19128
]
}
],
@@ -760664,7 +761588,7 @@
{
"title": "Methods",
"children": [
- 36413
+ 19124
]
}
],
@@ -760706,7 +761630,7 @@
]
},
{
- "id": 36421,
+ "id": 19132,
"name": "deleteProductsStepId",
"variant": "declaration",
"kind": 32,
@@ -760718,7 +761642,7 @@
"fileName": "core-flows/src/product/steps/delete-products.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-products.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-products.ts#L10"
}
],
"type": {
@@ -760728,7 +761652,7 @@
"defaultValue": "\"delete-products\""
},
{
- "id": 36422,
+ "id": 19133,
"name": "deleteProductsStep",
"variant": "declaration",
"kind": 64,
@@ -760754,7 +761678,7 @@
},
"children": [
{
- "id": 36425,
+ "id": 19136,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -760772,7 +761696,7 @@
}
},
{
- "id": 36426,
+ "id": 19137,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -760794,8 +761718,8 @@
{
"title": "Properties",
"children": [
- 36425,
- 36426
+ 19136,
+ 19137
]
}
],
@@ -760804,12 +761728,12 @@
"fileName": "core-flows/src/product/steps/delete-products.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-products.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-products.ts#L14"
}
],
"signatures": [
{
- "id": 36423,
+ "id": 19134,
"name": "deleteProductsStep",
"variant": "signature",
"kind": 4096,
@@ -760838,12 +761762,12 @@
"fileName": "core-flows/src/product/steps/delete-products.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-products.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-products.ts#L14"
}
],
"parameters": [
{
- "id": 36424,
+ "id": 19135,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -760853,7 +761777,7 @@
"types": [
{
"type": "reference",
- "target": 36420,
+ "target": 19131,
"name": "DeleteProductsStepInput",
"package": "@medusajs/core-flows"
},
@@ -760866,7 +761790,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36420,
+ "target": 19131,
"name": "DeleteProductsStepInput",
"package": "@medusajs/core-flows"
}
@@ -760886,7 +761810,7 @@
]
},
{
- "id": 36429,
+ "id": 19140,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -760906,7 +761830,7 @@
"fileName": "core-flows/src/product/steps/get-products.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-products.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-products.ts#L12"
}
],
"type": {
@@ -760918,7 +761842,7 @@
}
},
{
- "id": 36430,
+ "id": 19141,
"name": "getProductsStepId",
"variant": "declaration",
"kind": 32,
@@ -760930,7 +761854,7 @@
"fileName": "core-flows/src/product/steps/get-products.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-products.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-products.ts#L15"
}
],
"type": {
@@ -760940,7 +761864,7 @@
"defaultValue": "\"get-products\""
},
{
- "id": 36431,
+ "id": 19142,
"name": "getProductsStep",
"variant": "declaration",
"kind": 64,
@@ -760966,7 +761890,7 @@
},
"children": [
{
- "id": 36440,
+ "id": 19151,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -760984,7 +761908,7 @@
}
},
{
- "id": 36441,
+ "id": 19152,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -761006,8 +761930,8 @@
{
"title": "Properties",
"children": [
- 36440,
- 36441
+ 19151,
+ 19152
]
}
],
@@ -761016,12 +761940,12 @@
"fileName": "core-flows/src/product/steps/get-products.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-products.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-products.ts#L19"
}
],
"signatures": [
{
- "id": 36432,
+ "id": 19143,
"name": "getProductsStep",
"variant": "signature",
"kind": 4096,
@@ -761050,12 +761974,12 @@
"fileName": "core-flows/src/product/steps/get-products.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-products.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-products.ts#L19"
}
],
"parameters": [
{
- "id": 36433,
+ "id": 19144,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -761065,7 +761989,7 @@
"types": [
{
"type": "reference",
- "target": 36427,
+ "target": 19138,
"name": "GetProductsStepInput",
"package": "@medusajs/core-flows"
},
@@ -761078,7 +762002,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36427,
+ "target": 19138,
"name": "GetProductsStepInput",
"package": "@medusajs/core-flows"
}
@@ -761168,14 +762092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36434,
+ "id": 19145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36435,
+ "id": 19146,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -761189,7 +762113,7 @@
],
"signatures": [
{
- "id": 36436,
+ "id": 19147,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -761203,7 +762127,7 @@
],
"parameters": [
{
- "id": 36437,
+ "id": 19148,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -761214,14 +762138,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36438,
+ "id": 19149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36439,
+ "id": 19150,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -761245,7 +762169,7 @@
{
"title": "Properties",
"children": [
- 36439
+ 19150
]
}
],
@@ -761330,7 +762254,7 @@
{
"title": "Methods",
"children": [
- 36435
+ 19146
]
}
],
@@ -761372,7 +762296,7 @@
]
},
{
- "id": 36444,
+ "id": 19155,
"name": "select",
"variant": "declaration",
"kind": 1024,
@@ -761390,7 +762314,7 @@
"fileName": "core-flows/src/product/steps/get-all-products.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-all-products.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-all-products.ts#L17"
}
],
"type": {
@@ -761402,7 +762326,7 @@
}
},
{
- "id": 36445,
+ "id": 19156,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -761422,7 +762346,7 @@
"fileName": "core-flows/src/product/steps/get-all-products.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-all-products.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-all-products.ts#L21"
}
],
"type": {
@@ -761436,7 +762360,7 @@
}
},
{
- "id": 36446,
+ "id": 19157,
"name": "getAllProductsStepId",
"variant": "declaration",
"kind": 32,
@@ -761448,7 +762372,7 @@
"fileName": "core-flows/src/product/steps/get-all-products.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-all-products.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-all-products.ts#L24"
}
],
"type": {
@@ -761458,7 +762382,7 @@
"defaultValue": "\"get-all-products\""
},
{
- "id": 36447,
+ "id": 19158,
"name": "getAllProductsStep",
"variant": "declaration",
"kind": 64,
@@ -761505,7 +762429,7 @@
},
"children": [
{
- "id": 36456,
+ "id": 19167,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -761523,7 +762447,7 @@
}
},
{
- "id": 36457,
+ "id": 19168,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -761545,8 +762469,8 @@
{
"title": "Properties",
"children": [
- 36456,
- 36457
+ 19167,
+ 19168
]
}
],
@@ -761555,12 +762479,12 @@
"fileName": "core-flows/src/product/steps/get-all-products.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-all-products.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-all-products.ts#L47"
}
],
"signatures": [
{
- "id": 36448,
+ "id": 19159,
"name": "getAllProductsStep",
"variant": "signature",
"kind": 4096,
@@ -761610,12 +762534,12 @@
"fileName": "core-flows/src/product/steps/get-all-products.ts",
"line": 47,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-all-products.ts#L47"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-all-products.ts#L47"
}
],
"parameters": [
{
- "id": 36449,
+ "id": 19160,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -761625,7 +762549,7 @@
"types": [
{
"type": "reference",
- "target": 36442,
+ "target": 19153,
"name": "GetAllProductsStepInput",
"package": "@medusajs/core-flows"
},
@@ -761638,7 +762562,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36442,
+ "target": 19153,
"name": "GetAllProductsStepInput",
"package": "@medusajs/core-flows"
}
@@ -761688,14 +762612,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36450,
+ "id": 19161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36451,
+ "id": 19162,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -761709,7 +762633,7 @@
],
"signatures": [
{
- "id": 36452,
+ "id": 19163,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -761723,7 +762647,7 @@
],
"parameters": [
{
- "id": 36453,
+ "id": 19164,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -761734,14 +762658,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36454,
+ "id": 19165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36455,
+ "id": 19166,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -761765,7 +762689,7 @@
{
"title": "Properties",
"children": [
- 36455
+ 19166
]
}
],
@@ -761845,7 +762769,7 @@
{
"title": "Methods",
"children": [
- 36451
+ 19162
]
}
],
@@ -761882,7 +762806,7 @@
]
},
{
- "id": 36462,
+ "id": 19173,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -761900,7 +762824,7 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 15,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L15"
}
],
"type": {
@@ -761909,7 +762833,7 @@
}
},
{
- "id": 36463,
+ "id": 19174,
"name": "price_set_id",
"variant": "declaration",
"kind": 1024,
@@ -761927,7 +762851,7 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L19"
}
],
"type": {
@@ -761936,7 +762860,7 @@
}
},
{
- "id": 36460,
+ "id": 19171,
"name": "links",
"variant": "declaration",
"kind": 1024,
@@ -761954,7 +762878,7 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L11"
}
],
"type": {
@@ -761962,14 +762886,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36461,
+ "id": 19172,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36462,
+ "id": 19173,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -761987,7 +762911,7 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 15,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L15"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L15"
}
],
"type": {
@@ -761996,7 +762920,7 @@
}
},
{
- "id": 36463,
+ "id": 19174,
"name": "price_set_id",
"variant": "declaration",
"kind": 1024,
@@ -762014,7 +762938,7 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L19"
}
],
"type": {
@@ -762027,8 +762951,8 @@
{
"title": "Properties",
"children": [
- 36462,
- 36463
+ 19173,
+ 19174
]
}
],
@@ -762037,7 +762961,7 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 11,
"character": 9,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L11"
}
]
}
@@ -762045,7 +762969,7 @@
}
},
{
- "id": 36464,
+ "id": 19175,
"name": "createVariantPricingLinkStepId",
"variant": "declaration",
"kind": 32,
@@ -762057,7 +762981,7 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L23"
}
],
"type": {
@@ -762067,7 +762991,7 @@
"defaultValue": "\"create-variant-pricing-link\""
},
{
- "id": 36465,
+ "id": 19176,
"name": "createVariantPricingLinkStep",
"variant": "declaration",
"kind": 64,
@@ -762111,7 +763035,7 @@
},
"children": [
{
- "id": 36468,
+ "id": 19179,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -762129,7 +763053,7 @@
}
},
{
- "id": 36469,
+ "id": 19180,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -762151,8 +763075,8 @@
{
"title": "Properties",
"children": [
- 36468,
- 36469
+ 19179,
+ 19180
]
}
],
@@ -762161,12 +763085,12 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L37"
}
],
"signatures": [
{
- "id": 36466,
+ "id": 19177,
"name": "createVariantPricingLinkStep",
"variant": "signature",
"kind": 4096,
@@ -762213,12 +763137,12 @@
"fileName": "core-flows/src/product/steps/create-variant-pricing-link.ts",
"line": 37,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L37"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-variant-pricing-link.ts#L37"
}
],
"parameters": [
{
- "id": 36467,
+ "id": 19178,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -762228,7 +763152,7 @@
"types": [
{
"type": "reference",
- "target": 36458,
+ "target": 19169,
"name": "CreateVariantPricingLinkStepInput",
"package": "@medusajs/core-flows"
},
@@ -762241,7 +763165,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36458,
+ "target": 19169,
"name": "CreateVariantPricingLinkStepInput",
"package": "@medusajs/core-flows"
}
@@ -762261,7 +763185,7 @@
]
},
{
- "id": 36470,
+ "id": 19181,
"name": "createProductOptionsStepId",
"variant": "declaration",
"kind": 32,
@@ -762273,7 +763197,7 @@
"fileName": "core-flows/src/product/steps/create-product-options.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-options.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-options.ts#L8"
}
],
"type": {
@@ -762283,7 +763207,7 @@
"defaultValue": "\"create-product-options\""
},
{
- "id": 36471,
+ "id": 19182,
"name": "createProductOptionsStep",
"variant": "declaration",
"kind": 64,
@@ -762318,7 +763242,7 @@
},
"children": [
{
- "id": 36480,
+ "id": 19191,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -762336,7 +763260,7 @@
}
},
{
- "id": 36481,
+ "id": 19192,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -762358,8 +763282,8 @@
{
"title": "Properties",
"children": [
- 36480,
- 36481
+ 19191,
+ 19192
]
}
],
@@ -762368,12 +763292,12 @@
"fileName": "core-flows/src/product/steps/create-product-options.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-options.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-options.ts#L18"
}
],
"signatures": [
{
- "id": 36472,
+ "id": 19183,
"name": "createProductOptionsStep",
"variant": "signature",
"kind": 4096,
@@ -762411,12 +763335,12 @@
"fileName": "core-flows/src/product/steps/create-product-options.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-options.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-options.ts#L18"
}
],
"parameters": [
{
- "id": 36473,
+ "id": 19184,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -762541,14 +763465,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36474,
+ "id": 19185,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36475,
+ "id": 19186,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -762562,7 +763486,7 @@
],
"signatures": [
{
- "id": 36476,
+ "id": 19187,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -762576,7 +763500,7 @@
],
"parameters": [
{
- "id": 36477,
+ "id": 19188,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -762587,14 +763511,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36478,
+ "id": 19189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36479,
+ "id": 19190,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -762618,7 +763542,7 @@
{
"title": "Properties",
"children": [
- 36479
+ 19190
]
}
],
@@ -762703,7 +763627,7 @@
{
"title": "Methods",
"children": [
- 36475
+ 19186
]
}
],
@@ -762745,7 +763669,7 @@
]
},
{
- "id": 36484,
+ "id": 19195,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -762763,7 +763687,7 @@
"fileName": "core-flows/src/product/steps/update-product-options.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-options.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-options.ts#L18"
}
],
"type": {
@@ -762778,7 +763702,7 @@
}
},
{
- "id": 36485,
+ "id": 19196,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -762796,7 +763720,7 @@
"fileName": "core-flows/src/product/steps/update-product-options.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-options.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-options.ts#L22"
}
],
"type": {
@@ -762811,7 +763735,7 @@
}
},
{
- "id": 36486,
+ "id": 19197,
"name": "updateProductOptionsStepId",
"variant": "declaration",
"kind": 32,
@@ -762823,7 +763747,7 @@
"fileName": "core-flows/src/product/steps/update-product-options.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-options.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-options.ts#L25"
}
],
"type": {
@@ -762833,7 +763757,7 @@
"defaultValue": "\"update-product-options\""
},
{
- "id": 36487,
+ "id": 19198,
"name": "updateProductOptionsStep",
"variant": "declaration",
"kind": 64,
@@ -762868,7 +763792,7 @@
},
"children": [
{
- "id": 36496,
+ "id": 19207,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -762886,7 +763810,7 @@
}
},
{
- "id": 36497,
+ "id": 19208,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -762908,8 +763832,8 @@
{
"title": "Properties",
"children": [
- 36496,
- 36497
+ 19207,
+ 19208
]
}
],
@@ -762918,12 +763842,12 @@
"fileName": "core-flows/src/product/steps/update-product-options.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-options.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-options.ts#L39"
}
],
"signatures": [
{
- "id": 36488,
+ "id": 19199,
"name": "updateProductOptionsStep",
"variant": "signature",
"kind": 4096,
@@ -762961,12 +763885,12 @@
"fileName": "core-flows/src/product/steps/update-product-options.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-options.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-options.ts#L39"
}
],
"parameters": [
{
- "id": 36489,
+ "id": 19200,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -762976,7 +763900,7 @@
"types": [
{
"type": "reference",
- "target": 36482,
+ "target": 19193,
"name": "UpdateProductOptionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -762989,7 +763913,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36482,
+ "target": 19193,
"name": "UpdateProductOptionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -763079,14 +764003,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36490,
+ "id": 19201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36491,
+ "id": 19202,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -763100,7 +764024,7 @@
],
"signatures": [
{
- "id": 36492,
+ "id": 19203,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -763114,7 +764038,7 @@
],
"parameters": [
{
- "id": 36493,
+ "id": 19204,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -763125,14 +764049,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36494,
+ "id": 19205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36495,
+ "id": 19206,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -763156,7 +764080,7 @@
{
"title": "Properties",
"children": [
- 36495
+ 19206
]
}
],
@@ -763241,7 +764165,7 @@
{
"title": "Methods",
"children": [
- 36491
+ 19202
]
}
],
@@ -763283,7 +764207,7 @@
]
},
{
- "id": 36499,
+ "id": 19210,
"name": "deleteProductOptionsStepId",
"variant": "declaration",
"kind": 32,
@@ -763295,7 +764219,7 @@
"fileName": "core-flows/src/product/steps/delete-product-options.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-options.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-options.ts#L10"
}
],
"type": {
@@ -763305,7 +764229,7 @@
"defaultValue": "\"delete-product-options\""
},
{
- "id": 36500,
+ "id": 19211,
"name": "deleteProductOptionsStep",
"variant": "declaration",
"kind": 64,
@@ -763331,7 +764255,7 @@
},
"children": [
{
- "id": 36503,
+ "id": 19214,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -763349,7 +764273,7 @@
}
},
{
- "id": 36504,
+ "id": 19215,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -763371,8 +764295,8 @@
{
"title": "Properties",
"children": [
- 36503,
- 36504
+ 19214,
+ 19215
]
}
],
@@ -763381,12 +764305,12 @@
"fileName": "core-flows/src/product/steps/delete-product-options.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-options.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-options.ts#L14"
}
],
"signatures": [
{
- "id": 36501,
+ "id": 19212,
"name": "deleteProductOptionsStep",
"variant": "signature",
"kind": 4096,
@@ -763415,12 +764339,12 @@
"fileName": "core-flows/src/product/steps/delete-product-options.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-options.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-options.ts#L14"
}
],
"parameters": [
{
- "id": 36502,
+ "id": 19213,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -763430,7 +764354,7 @@
"types": [
{
"type": "reference",
- "target": 36498,
+ "target": 19209,
"name": "DeleteProductOptionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -763443,7 +764367,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36498,
+ "target": 19209,
"name": "DeleteProductOptionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -763463,7 +764387,7 @@
]
},
{
- "id": 36505,
+ "id": 19216,
"name": "createProductVariantsStepId",
"variant": "declaration",
"kind": 32,
@@ -763475,7 +764399,7 @@
"fileName": "core-flows/src/product/steps/create-product-variants.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-variants.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-variants.ts#L8"
}
],
"type": {
@@ -763485,7 +764409,7 @@
"defaultValue": "\"create-product-variants\""
},
{
- "id": 36506,
+ "id": 19217,
"name": "createProductVariantsStep",
"variant": "declaration",
"kind": 64,
@@ -763520,7 +764444,7 @@
},
"children": [
{
- "id": 36515,
+ "id": 19226,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -763538,7 +764462,7 @@
}
},
{
- "id": 36516,
+ "id": 19227,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -763560,8 +764484,8 @@
{
"title": "Properties",
"children": [
- 36515,
- 36516
+ 19226,
+ 19227
]
}
],
@@ -763570,12 +764494,12 @@
"fileName": "core-flows/src/product/steps/create-product-variants.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-variants.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-variants.ts#L21"
}
],
"signatures": [
{
- "id": 36507,
+ "id": 19218,
"name": "createProductVariantsStep",
"variant": "signature",
"kind": 4096,
@@ -763613,12 +764537,12 @@
"fileName": "core-flows/src/product/steps/create-product-variants.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-variants.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-variants.ts#L21"
}
],
"parameters": [
{
- "id": 36508,
+ "id": 19219,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -763743,14 +764667,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36509,
+ "id": 19220,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36510,
+ "id": 19221,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -763764,7 +764688,7 @@
],
"signatures": [
{
- "id": 36511,
+ "id": 19222,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -763778,7 +764702,7 @@
],
"parameters": [
{
- "id": 36512,
+ "id": 19223,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -763789,14 +764713,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36513,
+ "id": 19224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36514,
+ "id": 19225,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -763820,7 +764744,7 @@
{
"title": "Properties",
"children": [
- 36514
+ 19225
]
}
],
@@ -763905,7 +764829,7 @@
{
"title": "Methods",
"children": [
- 36510
+ 19221
]
}
],
@@ -763947,7 +764871,7 @@
]
},
{
- "id": 36519,
+ "id": 19230,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -763965,7 +764889,7 @@
"fileName": "core-flows/src/product/steps/update-product-variants.ts",
"line": 20,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-variants.ts#L20"
}
],
"type": {
@@ -763980,7 +764904,7 @@
}
},
{
- "id": 36520,
+ "id": 19231,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -763998,7 +764922,7 @@
"fileName": "core-flows/src/product/steps/update-product-variants.ts",
"line": 24,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-variants.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-variants.ts#L24"
}
],
"type": {
@@ -764013,7 +764937,7 @@
}
},
{
- "id": 36522,
+ "id": 19233,
"name": "product_variants",
"variant": "declaration",
"kind": 1024,
@@ -764031,7 +764955,7 @@
"fileName": "core-flows/src/product/steps/update-product-variants.ts",
"line": 30,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-variants.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-variants.ts#L30"
}
],
"type": {
@@ -764049,7 +764973,7 @@
}
},
{
- "id": 36523,
+ "id": 19234,
"name": "updateProductVariantsStepId",
"variant": "declaration",
"kind": 32,
@@ -764061,7 +764985,7 @@
"fileName": "core-flows/src/product/steps/update-product-variants.ts",
"line": 33,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-variants.ts#L33"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-variants.ts#L33"
}
],
"type": {
@@ -764071,7 +764995,7 @@
"defaultValue": "\"update-product-variants\""
},
{
- "id": 36524,
+ "id": 19235,
"name": "updateProductVariantsStep",
"variant": "declaration",
"kind": 64,
@@ -764136,7 +765060,7 @@
},
"children": [
{
- "id": 36533,
+ "id": 19244,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -764154,7 +765078,7 @@
}
},
{
- "id": 36534,
+ "id": 19245,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -764176,8 +765100,8 @@
{
"title": "Properties",
"children": [
- 36533,
- 36534
+ 19244,
+ 19245
]
}
],
@@ -764186,12 +765110,12 @@
"fileName": "core-flows/src/product/steps/update-product-variants.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-variants.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-variants.ts#L64"
}
],
"signatures": [
{
- "id": 36525,
+ "id": 19236,
"name": "updateProductVariantsStep",
"variant": "signature",
"kind": 4096,
@@ -764259,12 +765183,12 @@
"fileName": "core-flows/src/product/steps/update-product-variants.ts",
"line": 64,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-variants.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-variants.ts#L64"
}
],
"parameters": [
{
- "id": 36526,
+ "id": 19237,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -764274,7 +765198,7 @@
"types": [
{
"type": "reference",
- "target": 36517,
+ "target": 19228,
"name": "UpdateProductVariantsStepInput",
"package": "@medusajs/core-flows"
},
@@ -764287,7 +765211,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36517,
+ "target": 19228,
"name": "UpdateProductVariantsStepInput",
"package": "@medusajs/core-flows"
}
@@ -764377,14 +765301,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36527,
+ "id": 19238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36528,
+ "id": 19239,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -764398,7 +765322,7 @@
],
"signatures": [
{
- "id": 36529,
+ "id": 19240,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -764412,7 +765336,7 @@
],
"parameters": [
{
- "id": 36530,
+ "id": 19241,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -764423,14 +765347,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36531,
+ "id": 19242,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36532,
+ "id": 19243,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -764454,7 +765378,7 @@
{
"title": "Properties",
"children": [
- 36532
+ 19243
]
}
],
@@ -764539,7 +765463,7 @@
{
"title": "Methods",
"children": [
- 36528
+ 19239
]
}
],
@@ -764581,7 +765505,7 @@
]
},
{
- "id": 36536,
+ "id": 19247,
"name": "deleteProductVariantsStepId",
"variant": "declaration",
"kind": 32,
@@ -764593,7 +765517,7 @@
"fileName": "core-flows/src/product/steps/delete-product-variants.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-variants.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-variants.ts#L10"
}
],
"type": {
@@ -764603,7 +765527,7 @@
"defaultValue": "\"delete-product-variants\""
},
{
- "id": 36537,
+ "id": 19248,
"name": "deleteProductVariantsStep",
"variant": "declaration",
"kind": 64,
@@ -764629,7 +765553,7 @@
},
"children": [
{
- "id": 36540,
+ "id": 19251,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -764647,7 +765571,7 @@
}
},
{
- "id": 36541,
+ "id": 19252,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -764669,8 +765593,8 @@
{
"title": "Properties",
"children": [
- 36540,
- 36541
+ 19251,
+ 19252
]
}
],
@@ -764679,12 +765603,12 @@
"fileName": "core-flows/src/product/steps/delete-product-variants.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-variants.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-variants.ts#L14"
}
],
"signatures": [
{
- "id": 36538,
+ "id": 19249,
"name": "deleteProductVariantsStep",
"variant": "signature",
"kind": 4096,
@@ -764713,12 +765637,12 @@
"fileName": "core-flows/src/product/steps/delete-product-variants.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-variants.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-variants.ts#L14"
}
],
"parameters": [
{
- "id": 36539,
+ "id": 19250,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -764728,7 +765652,7 @@
"types": [
{
"type": "reference",
- "target": 36535,
+ "target": 19246,
"name": "DeleteProductVariantsStepInput",
"package": "@medusajs/core-flows"
},
@@ -764741,7 +765665,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36535,
+ "target": 19246,
"name": "DeleteProductVariantsStepInput",
"package": "@medusajs/core-flows"
}
@@ -764761,7 +765685,7 @@
]
},
{
- "id": 36542,
+ "id": 19253,
"name": "createCollectionsStepId",
"variant": "declaration",
"kind": 32,
@@ -764773,7 +765697,7 @@
"fileName": "core-flows/src/product/steps/create-collections.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-collections.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-collections.ts#L8"
}
],
"type": {
@@ -764783,7 +765707,7 @@
"defaultValue": "\"create-collections\""
},
{
- "id": 36543,
+ "id": 19254,
"name": "createCollectionsStep",
"variant": "declaration",
"kind": 64,
@@ -764809,7 +765733,7 @@
},
"children": [
{
- "id": 36552,
+ "id": 19263,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -764827,7 +765751,7 @@
}
},
{
- "id": 36553,
+ "id": 19264,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -764849,8 +765773,8 @@
{
"title": "Properties",
"children": [
- 36552,
- 36553
+ 19263,
+ 19264
]
}
],
@@ -764859,12 +765783,12 @@
"fileName": "core-flows/src/product/steps/create-collections.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-collections.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-collections.ts#L12"
}
],
"signatures": [
{
- "id": 36544,
+ "id": 19255,
"name": "createCollectionsStep",
"variant": "signature",
"kind": 4096,
@@ -764893,12 +765817,12 @@
"fileName": "core-flows/src/product/steps/create-collections.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-collections.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-collections.ts#L12"
}
],
"parameters": [
{
- "id": 36545,
+ "id": 19256,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -765023,14 +765947,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36546,
+ "id": 19257,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36547,
+ "id": 19258,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -765044,7 +765968,7 @@
],
"signatures": [
{
- "id": 36548,
+ "id": 19259,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -765058,7 +765982,7 @@
],
"parameters": [
{
- "id": 36549,
+ "id": 19260,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -765069,14 +765993,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36550,
+ "id": 19261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36551,
+ "id": 19262,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -765100,7 +766024,7 @@
{
"title": "Properties",
"children": [
- 36551
+ 19262
]
}
],
@@ -765185,7 +766109,7 @@
{
"title": "Methods",
"children": [
- 36547
+ 19258
]
}
],
@@ -765227,7 +766151,7 @@
]
},
{
- "id": 36556,
+ "id": 19267,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -765245,7 +766169,7 @@
"fileName": "core-flows/src/product/steps/update-collections.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-collections.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-collections.ts#L18"
}
],
"type": {
@@ -765260,7 +766184,7 @@
}
},
{
- "id": 36557,
+ "id": 19268,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -765278,7 +766202,7 @@
"fileName": "core-flows/src/product/steps/update-collections.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-collections.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-collections.ts#L22"
}
],
"type": {
@@ -765293,7 +766217,7 @@
}
},
{
- "id": 36558,
+ "id": 19269,
"name": "updateCollectionsStepId",
"variant": "declaration",
"kind": 32,
@@ -765305,7 +766229,7 @@
"fileName": "core-flows/src/product/steps/update-collections.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-collections.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-collections.ts#L25"
}
],
"type": {
@@ -765315,7 +766239,7 @@
"defaultValue": "\"update-collections\""
},
{
- "id": 36559,
+ "id": 19270,
"name": "updateCollectionsStep",
"variant": "declaration",
"kind": 64,
@@ -765350,7 +766274,7 @@
},
"children": [
{
- "id": 36568,
+ "id": 19279,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -765368,7 +766292,7 @@
}
},
{
- "id": 36569,
+ "id": 19280,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -765390,8 +766314,8 @@
{
"title": "Properties",
"children": [
- 36568,
- 36569
+ 19279,
+ 19280
]
}
],
@@ -765400,12 +766324,12 @@
"fileName": "core-flows/src/product/steps/update-collections.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-collections.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-collections.ts#L39"
}
],
"signatures": [
{
- "id": 36560,
+ "id": 19271,
"name": "updateCollectionsStep",
"variant": "signature",
"kind": 4096,
@@ -765443,12 +766367,12 @@
"fileName": "core-flows/src/product/steps/update-collections.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-collections.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-collections.ts#L39"
}
],
"parameters": [
{
- "id": 36561,
+ "id": 19272,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -765458,7 +766382,7 @@
"types": [
{
"type": "reference",
- "target": 36554,
+ "target": 19265,
"name": "UpdateCollectionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -765471,7 +766395,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36554,
+ "target": 19265,
"name": "UpdateCollectionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -765561,14 +766485,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36562,
+ "id": 19273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36563,
+ "id": 19274,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -765582,7 +766506,7 @@
],
"signatures": [
{
- "id": 36564,
+ "id": 19275,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -765596,7 +766520,7 @@
],
"parameters": [
{
- "id": 36565,
+ "id": 19276,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -765607,14 +766531,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36566,
+ "id": 19277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36567,
+ "id": 19278,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -765638,7 +766562,7 @@
{
"title": "Properties",
"children": [
- 36567
+ 19278
]
}
],
@@ -765723,7 +766647,7 @@
{
"title": "Methods",
"children": [
- 36563
+ 19274
]
}
],
@@ -765765,7 +766689,7 @@
]
},
{
- "id": 36571,
+ "id": 19282,
"name": "deleteCollectionsStepId",
"variant": "declaration",
"kind": 32,
@@ -765777,7 +766701,7 @@
"fileName": "core-flows/src/product/steps/delete-collections.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-collections.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-collections.ts#L10"
}
],
"type": {
@@ -765787,7 +766711,7 @@
"defaultValue": "\"delete-collections\""
},
{
- "id": 36572,
+ "id": 19283,
"name": "deleteCollectionsStep",
"variant": "declaration",
"kind": 64,
@@ -765813,7 +766737,7 @@
},
"children": [
{
- "id": 36575,
+ "id": 19286,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -765831,7 +766755,7 @@
}
},
{
- "id": 36576,
+ "id": 19287,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -765853,8 +766777,8 @@
{
"title": "Properties",
"children": [
- 36575,
- 36576
+ 19286,
+ 19287
]
}
],
@@ -765863,12 +766787,12 @@
"fileName": "core-flows/src/product/steps/delete-collections.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-collections.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-collections.ts#L14"
}
],
"signatures": [
{
- "id": 36573,
+ "id": 19284,
"name": "deleteCollectionsStep",
"variant": "signature",
"kind": 4096,
@@ -765897,12 +766821,12 @@
"fileName": "core-flows/src/product/steps/delete-collections.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-collections.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-collections.ts#L14"
}
],
"parameters": [
{
- "id": 36574,
+ "id": 19285,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -765912,7 +766836,7 @@
"types": [
{
"type": "reference",
- "target": 36570,
+ "target": 19281,
"name": "DeleteCollectionsStepInput",
"package": "@medusajs/core-flows"
},
@@ -765925,7 +766849,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36570,
+ "target": 19281,
"name": "DeleteCollectionsStepInput",
"package": "@medusajs/core-flows"
}
@@ -765945,7 +766869,7 @@
]
},
{
- "id": 36577,
+ "id": 19288,
"name": "batchLinkProductsToCollectionStepId",
"variant": "declaration",
"kind": 32,
@@ -765957,7 +766881,7 @@
"fileName": "core-flows/src/product/steps/batch-link-products-collection.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/batch-link-products-collection.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/batch-link-products-collection.ts#L8"
}
],
"type": {
@@ -765967,7 +766891,7 @@
"defaultValue": "\"batch-link-products-to-collection\""
},
{
- "id": 36578,
+ "id": 19289,
"name": "batchLinkProductsToCollectionStep",
"variant": "declaration",
"kind": 64,
@@ -766002,7 +766926,7 @@
},
"children": [
{
- "id": 36581,
+ "id": 19292,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -766020,7 +766944,7 @@
}
},
{
- "id": 36582,
+ "id": 19293,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -766042,8 +766966,8 @@
{
"title": "Properties",
"children": [
- 36581,
- 36582
+ 19292,
+ 19293
]
}
],
@@ -766052,12 +766976,12 @@
"fileName": "core-flows/src/product/steps/batch-link-products-collection.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/batch-link-products-collection.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/batch-link-products-collection.ts#L20"
}
],
"signatures": [
{
- "id": 36579,
+ "id": 19290,
"name": "batchLinkProductsToCollectionStep",
"variant": "signature",
"kind": 4096,
@@ -766095,12 +767019,12 @@
"fileName": "core-flows/src/product/steps/batch-link-products-collection.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/batch-link-products-collection.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/batch-link-products-collection.ts#L20"
}
],
"parameters": [
{
- "id": 36580,
+ "id": 19291,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -766149,7 +767073,7 @@
]
},
{
- "id": 36583,
+ "id": 19294,
"name": "batchLinkProductsToCategoryStepId",
"variant": "declaration",
"kind": 32,
@@ -766161,7 +767085,7 @@
"fileName": "core-flows/src/product/steps/batch-link-products-in-category.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/batch-link-products-in-category.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/batch-link-products-in-category.ts#L8"
}
],
"type": {
@@ -766171,7 +767095,7 @@
"defaultValue": "\"batch-link-products-to-category\""
},
{
- "id": 36584,
+ "id": 19295,
"name": "batchLinkProductsToCategoryStep",
"variant": "declaration",
"kind": 64,
@@ -766206,7 +767130,7 @@
},
"children": [
{
- "id": 36587,
+ "id": 19298,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -766224,7 +767148,7 @@
}
},
{
- "id": 36588,
+ "id": 19299,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -766246,8 +767170,8 @@
{
"title": "Properties",
"children": [
- 36587,
- 36588
+ 19298,
+ 19299
]
}
],
@@ -766256,12 +767180,12 @@
"fileName": "core-flows/src/product/steps/batch-link-products-in-category.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/batch-link-products-in-category.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/batch-link-products-in-category.ts#L20"
}
],
"signatures": [
{
- "id": 36585,
+ "id": 19296,
"name": "batchLinkProductsToCategoryStep",
"variant": "signature",
"kind": 4096,
@@ -766299,12 +767223,12 @@
"fileName": "core-flows/src/product/steps/batch-link-products-in-category.ts",
"line": 20,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/batch-link-products-in-category.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/batch-link-products-in-category.ts#L20"
}
],
"parameters": [
{
- "id": 36586,
+ "id": 19297,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -766353,7 +767277,7 @@
]
},
{
- "id": 36589,
+ "id": 19300,
"name": "createProductTypesStepId",
"variant": "declaration",
"kind": 32,
@@ -766365,7 +767289,7 @@
"fileName": "core-flows/src/product/steps/create-product-types.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-types.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-types.ts#L8"
}
],
"type": {
@@ -766375,7 +767299,7 @@
"defaultValue": "\"create-product-types\""
},
{
- "id": 36590,
+ "id": 19301,
"name": "createProductTypesStep",
"variant": "declaration",
"kind": 64,
@@ -766401,7 +767325,7 @@
},
"children": [
{
- "id": 36599,
+ "id": 19310,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -766419,7 +767343,7 @@
}
},
{
- "id": 36600,
+ "id": 19311,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -766441,8 +767365,8 @@
{
"title": "Properties",
"children": [
- 36599,
- 36600
+ 19310,
+ 19311
]
}
],
@@ -766451,12 +767375,12 @@
"fileName": "core-flows/src/product/steps/create-product-types.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-types.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-types.ts#L12"
}
],
"signatures": [
{
- "id": 36591,
+ "id": 19302,
"name": "createProductTypesStep",
"variant": "signature",
"kind": 4096,
@@ -766485,12 +767409,12 @@
"fileName": "core-flows/src/product/steps/create-product-types.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-types.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-types.ts#L12"
}
],
"parameters": [
{
- "id": 36592,
+ "id": 19303,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -766615,14 +767539,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36593,
+ "id": 19304,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36594,
+ "id": 19305,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -766636,7 +767560,7 @@
],
"signatures": [
{
- "id": 36595,
+ "id": 19306,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -766650,7 +767574,7 @@
],
"parameters": [
{
- "id": 36596,
+ "id": 19307,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -766661,14 +767585,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36597,
+ "id": 19308,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36598,
+ "id": 19309,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -766692,7 +767616,7 @@
{
"title": "Properties",
"children": [
- 36598
+ 19309
]
}
],
@@ -766777,7 +767701,7 @@
{
"title": "Methods",
"children": [
- 36594
+ 19305
]
}
],
@@ -766819,7 +767743,7 @@
]
},
{
- "id": 36603,
+ "id": 19314,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -766837,7 +767761,7 @@
"fileName": "core-flows/src/product/steps/update-product-types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-types.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-types.ts#L18"
}
],
"type": {
@@ -766852,7 +767776,7 @@
}
},
{
- "id": 36604,
+ "id": 19315,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -766870,7 +767794,7 @@
"fileName": "core-flows/src/product/steps/update-product-types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-types.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-types.ts#L22"
}
],
"type": {
@@ -766885,7 +767809,7 @@
}
},
{
- "id": 36605,
+ "id": 19316,
"name": "updateProductTypesStepId",
"variant": "declaration",
"kind": 32,
@@ -766897,7 +767821,7 @@
"fileName": "core-flows/src/product/steps/update-product-types.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-types.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-types.ts#L25"
}
],
"type": {
@@ -766907,7 +767831,7 @@
"defaultValue": "\"update-product-types\""
},
{
- "id": 36606,
+ "id": 19317,
"name": "updateProductTypesStep",
"variant": "declaration",
"kind": 64,
@@ -766942,7 +767866,7 @@
},
"children": [
{
- "id": 36615,
+ "id": 19326,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -766960,7 +767884,7 @@
}
},
{
- "id": 36616,
+ "id": 19327,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -766982,8 +767906,8 @@
{
"title": "Properties",
"children": [
- 36615,
- 36616
+ 19326,
+ 19327
]
}
],
@@ -766992,12 +767916,12 @@
"fileName": "core-flows/src/product/steps/update-product-types.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-types.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-types.ts#L39"
}
],
"signatures": [
{
- "id": 36607,
+ "id": 19318,
"name": "updateProductTypesStep",
"variant": "signature",
"kind": 4096,
@@ -767035,12 +767959,12 @@
"fileName": "core-flows/src/product/steps/update-product-types.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-types.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-types.ts#L39"
}
],
"parameters": [
{
- "id": 36608,
+ "id": 19319,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -767050,7 +767974,7 @@
"types": [
{
"type": "reference",
- "target": 36601,
+ "target": 19312,
"name": "UpdateProductTypesStepInput",
"package": "@medusajs/core-flows"
},
@@ -767063,7 +767987,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36601,
+ "target": 19312,
"name": "UpdateProductTypesStepInput",
"package": "@medusajs/core-flows"
}
@@ -767153,14 +768077,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36609,
+ "id": 19320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36610,
+ "id": 19321,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -767174,7 +768098,7 @@
],
"signatures": [
{
- "id": 36611,
+ "id": 19322,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -767188,7 +768112,7 @@
],
"parameters": [
{
- "id": 36612,
+ "id": 19323,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -767199,14 +768123,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36613,
+ "id": 19324,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36614,
+ "id": 19325,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -767230,7 +768154,7 @@
{
"title": "Properties",
"children": [
- 36614
+ 19325
]
}
],
@@ -767315,7 +768239,7 @@
{
"title": "Methods",
"children": [
- 36610
+ 19321
]
}
],
@@ -767357,7 +768281,7 @@
]
},
{
- "id": 36618,
+ "id": 19329,
"name": "deleteProductTypesStepId",
"variant": "declaration",
"kind": 32,
@@ -767369,7 +768293,7 @@
"fileName": "core-flows/src/product/steps/delete-product-types.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-types.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-types.ts#L10"
}
],
"type": {
@@ -767379,7 +768303,7 @@
"defaultValue": "\"delete-product-types\""
},
{
- "id": 36619,
+ "id": 19330,
"name": "deleteProductTypesStep",
"variant": "declaration",
"kind": 64,
@@ -767405,7 +768329,7 @@
},
"children": [
{
- "id": 36622,
+ "id": 19333,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -767423,7 +768347,7 @@
}
},
{
- "id": 36623,
+ "id": 19334,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -767445,8 +768369,8 @@
{
"title": "Properties",
"children": [
- 36622,
- 36623
+ 19333,
+ 19334
]
}
],
@@ -767455,12 +768379,12 @@
"fileName": "core-flows/src/product/steps/delete-product-types.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-types.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-types.ts#L14"
}
],
"signatures": [
{
- "id": 36620,
+ "id": 19331,
"name": "deleteProductTypesStep",
"variant": "signature",
"kind": 4096,
@@ -767489,12 +768413,12 @@
"fileName": "core-flows/src/product/steps/delete-product-types.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-types.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-types.ts#L14"
}
],
"parameters": [
{
- "id": 36621,
+ "id": 19332,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -767504,7 +768428,7 @@
"types": [
{
"type": "reference",
- "target": 36617,
+ "target": 19328,
"name": "DeleteProductTypesStepInput",
"package": "@medusajs/core-flows"
},
@@ -767517,7 +768441,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36617,
+ "target": 19328,
"name": "DeleteProductTypesStepInput",
"package": "@medusajs/core-flows"
}
@@ -767537,7 +768461,7 @@
]
},
{
- "id": 36624,
+ "id": 19335,
"name": "createProductTagsStepId",
"variant": "declaration",
"kind": 32,
@@ -767549,7 +768473,7 @@
"fileName": "core-flows/src/product/steps/create-product-tags.ts",
"line": 8,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-tags.ts#L8"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-tags.ts#L8"
}
],
"type": {
@@ -767559,7 +768483,7 @@
"defaultValue": "\"create-product-tags\""
},
{
- "id": 36625,
+ "id": 19336,
"name": "createProductTagsStep",
"variant": "declaration",
"kind": 64,
@@ -767585,7 +768509,7 @@
},
"children": [
{
- "id": 36634,
+ "id": 19345,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -767603,7 +768527,7 @@
}
},
{
- "id": 36635,
+ "id": 19346,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -767625,8 +768549,8 @@
{
"title": "Properties",
"children": [
- 36634,
- 36635
+ 19345,
+ 19346
]
}
],
@@ -767635,12 +768559,12 @@
"fileName": "core-flows/src/product/steps/create-product-tags.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-tags.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-tags.ts#L12"
}
],
"signatures": [
{
- "id": 36626,
+ "id": 19337,
"name": "createProductTagsStep",
"variant": "signature",
"kind": 4096,
@@ -767669,12 +768593,12 @@
"fileName": "core-flows/src/product/steps/create-product-tags.ts",
"line": 12,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/create-product-tags.ts#L12"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/create-product-tags.ts#L12"
}
],
"parameters": [
{
- "id": 36627,
+ "id": 19338,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -767799,14 +768723,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36628,
+ "id": 19339,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36629,
+ "id": 19340,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -767820,7 +768744,7 @@
],
"signatures": [
{
- "id": 36630,
+ "id": 19341,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -767834,7 +768758,7 @@
],
"parameters": [
{
- "id": 36631,
+ "id": 19342,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -767845,14 +768769,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36632,
+ "id": 19343,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36633,
+ "id": 19344,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -767876,7 +768800,7 @@
{
"title": "Properties",
"children": [
- 36633
+ 19344
]
}
],
@@ -767961,7 +768885,7 @@
{
"title": "Methods",
"children": [
- 36629
+ 19340
]
}
],
@@ -768003,7 +768927,7 @@
]
},
{
- "id": 36638,
+ "id": 19349,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -768021,7 +768945,7 @@
"fileName": "core-flows/src/product/steps/update-product-tags.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-tags.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-tags.ts#L18"
}
],
"type": {
@@ -768036,7 +768960,7 @@
}
},
{
- "id": 36639,
+ "id": 19350,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -768054,7 +768978,7 @@
"fileName": "core-flows/src/product/steps/update-product-tags.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-tags.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-tags.ts#L22"
}
],
"type": {
@@ -768069,7 +768993,7 @@
}
},
{
- "id": 36640,
+ "id": 19351,
"name": "updateProductTagsStepId",
"variant": "declaration",
"kind": 32,
@@ -768081,7 +769005,7 @@
"fileName": "core-flows/src/product/steps/update-product-tags.ts",
"line": 25,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-tags.ts#L25"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-tags.ts#L25"
}
],
"type": {
@@ -768091,7 +769015,7 @@
"defaultValue": "\"update-product-tags\""
},
{
- "id": 36641,
+ "id": 19352,
"name": "updateProductTagsStep",
"variant": "declaration",
"kind": 64,
@@ -768126,7 +769050,7 @@
},
"children": [
{
- "id": 36650,
+ "id": 19361,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -768144,7 +769068,7 @@
}
},
{
- "id": 36651,
+ "id": 19362,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -768166,8 +769090,8 @@
{
"title": "Properties",
"children": [
- 36650,
- 36651
+ 19361,
+ 19362
]
}
],
@@ -768176,12 +769100,12 @@
"fileName": "core-flows/src/product/steps/update-product-tags.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-tags.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-tags.ts#L39"
}
],
"signatures": [
{
- "id": 36642,
+ "id": 19353,
"name": "updateProductTagsStep",
"variant": "signature",
"kind": 4096,
@@ -768219,12 +769143,12 @@
"fileName": "core-flows/src/product/steps/update-product-tags.ts",
"line": 39,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/update-product-tags.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/update-product-tags.ts#L39"
}
],
"parameters": [
{
- "id": 36643,
+ "id": 19354,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -768234,7 +769158,7 @@
"types": [
{
"type": "reference",
- "target": 36636,
+ "target": 19347,
"name": "UpdateProductTagsStepInput",
"package": "@medusajs/core-flows"
},
@@ -768247,7 +769171,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36636,
+ "target": 19347,
"name": "UpdateProductTagsStepInput",
"package": "@medusajs/core-flows"
}
@@ -768337,14 +769261,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36644,
+ "id": 19355,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36645,
+ "id": 19356,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -768358,7 +769282,7 @@
],
"signatures": [
{
- "id": 36646,
+ "id": 19357,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -768372,7 +769296,7 @@
],
"parameters": [
{
- "id": 36647,
+ "id": 19358,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -768383,14 +769307,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36648,
+ "id": 19359,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36649,
+ "id": 19360,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -768414,7 +769338,7 @@
{
"title": "Properties",
"children": [
- 36649
+ 19360
]
}
],
@@ -768499,7 +769423,7 @@
{
"title": "Methods",
"children": [
- 36645
+ 19356
]
}
],
@@ -768541,7 +769465,7 @@
]
},
{
- "id": 36653,
+ "id": 19364,
"name": "deleteProductTagsStepId",
"variant": "declaration",
"kind": 32,
@@ -768553,7 +769477,7 @@
"fileName": "core-flows/src/product/steps/delete-product-tags.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-tags.ts#L10"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-tags.ts#L10"
}
],
"type": {
@@ -768563,7 +769487,7 @@
"defaultValue": "\"delete-product-tags\""
},
{
- "id": 36654,
+ "id": 19365,
"name": "deleteProductTagsStep",
"variant": "declaration",
"kind": 64,
@@ -768589,7 +769513,7 @@
},
"children": [
{
- "id": 36657,
+ "id": 19368,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -768607,7 +769531,7 @@
}
},
{
- "id": 36658,
+ "id": 19369,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -768629,8 +769553,8 @@
{
"title": "Properties",
"children": [
- 36657,
- 36658
+ 19368,
+ 19369
]
}
],
@@ -768639,12 +769563,12 @@
"fileName": "core-flows/src/product/steps/delete-product-tags.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-tags.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-tags.ts#L14"
}
],
"signatures": [
{
- "id": 36655,
+ "id": 19366,
"name": "deleteProductTagsStep",
"variant": "signature",
"kind": 4096,
@@ -768673,12 +769597,12 @@
"fileName": "core-flows/src/product/steps/delete-product-tags.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/delete-product-tags.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/delete-product-tags.ts#L14"
}
],
"parameters": [
{
- "id": 36656,
+ "id": 19367,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -768688,7 +769612,7 @@
"types": [
{
"type": "reference",
- "target": 36652,
+ "target": 19363,
"name": "DeleteProductTagsStepInput",
"package": "@medusajs/core-flows"
},
@@ -768701,7 +769625,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36652,
+ "target": 19363,
"name": "DeleteProductTagsStepInput",
"package": "@medusajs/core-flows"
}
@@ -768721,7 +769645,7 @@
]
},
{
- "id": 36659,
+ "id": 19370,
"name": "removeImageFromVariantsStepId",
"variant": "declaration",
"kind": 32,
@@ -768733,7 +769657,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L5"
}
],
"type": {
@@ -768743,7 +769667,7 @@
"defaultValue": "\"remove-image-from-variants\""
},
{
- "id": 36660,
+ "id": 19371,
"name": "removeImageFromVariantsStep",
"variant": "declaration",
"kind": 64,
@@ -768787,7 +769711,7 @@
},
"children": [
{
- "id": 36675,
+ "id": 19386,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -768805,7 +769729,7 @@
}
},
{
- "id": 36676,
+ "id": 19387,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -768827,8 +769751,8 @@
{
"title": "Properties",
"children": [
- 36675,
- 36676
+ 19386,
+ 19387
]
}
],
@@ -768837,12 +769761,12 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L18"
}
],
"signatures": [
{
- "id": 36661,
+ "id": 19372,
"name": "removeImageFromVariantsStep",
"variant": "signature",
"kind": 4096,
@@ -768889,12 +769813,12 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L18"
}
],
"parameters": [
{
- "id": 36662,
+ "id": 19373,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -768905,14 +769829,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36663,
+ "id": 19374,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36664,
+ "id": 19375,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -768922,7 +769846,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -768931,7 +769855,7 @@
}
},
{
- "id": 36665,
+ "id": 19376,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -768941,7 +769865,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -768957,8 +769881,8 @@
{
"title": "Properties",
"children": [
- 36664,
- 36665
+ 19375,
+ 19376
]
}
],
@@ -768967,7 +769891,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
]
}
@@ -768982,14 +769906,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36666,
+ "id": 19377,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36667,
+ "id": 19378,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -768999,7 +769923,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -769008,7 +769932,7 @@
}
},
{
- "id": 36668,
+ "id": 19379,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -769018,7 +769942,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -769034,8 +769958,8 @@
{
"title": "Properties",
"children": [
- 36667,
- 36668
+ 19378,
+ 19379
]
}
],
@@ -769044,7 +769968,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
]
}
@@ -769115,14 +770039,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36669,
+ "id": 19380,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36670,
+ "id": 19381,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -769136,7 +770060,7 @@
],
"signatures": [
{
- "id": 36671,
+ "id": 19382,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -769150,7 +770074,7 @@
],
"parameters": [
{
- "id": 36672,
+ "id": 19383,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -769161,14 +770085,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36673,
+ "id": 19384,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36674,
+ "id": 19385,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -769192,7 +770116,7 @@
{
"title": "Properties",
"children": [
- 36674
+ 19385
]
}
],
@@ -769272,7 +770196,7 @@
{
"title": "Methods",
"children": [
- 36670
+ 19381
]
}
],
@@ -769309,7 +770233,7 @@
]
},
{
- "id": 36664,
+ "id": 19375,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -769319,7 +770243,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -769328,7 +770252,7 @@
}
},
{
- "id": 36665,
+ "id": 19376,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -769338,7 +770262,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -769350,7 +770274,7 @@
}
},
{
- "id": 36667,
+ "id": 19378,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -769360,7 +770284,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -769369,7 +770293,7 @@
}
},
{
- "id": 36668,
+ "id": 19379,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -769379,7 +770303,7 @@
"fileName": "core-flows/src/product/steps/remove-image-from-variants.ts",
"line": 20,
"character": 36,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/remove-image-from-variants.ts#L20"
}
],
"type": {
@@ -769391,7 +770315,7 @@
}
},
{
- "id": 36680,
+ "id": 19391,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -769409,7 +770333,7 @@
"fileName": "core-flows/src/product/steps/generate-product-csv.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L82"
}
],
"type": {
@@ -769418,7 +770342,7 @@
}
},
{
- "id": 36681,
+ "id": 19392,
"name": "filename",
"variant": "declaration",
"kind": 1024,
@@ -769436,7 +770360,7 @@
"fileName": "core-flows/src/product/steps/generate-product-csv.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L86"
}
],
"type": {
@@ -769445,7 +770369,7 @@
}
},
{
- "id": 36682,
+ "id": 19393,
"name": "generateProductCsvStepId",
"variant": "declaration",
"kind": 32,
@@ -769457,7 +770381,7 @@
"fileName": "core-flows/src/product/steps/generate-product-csv.ts",
"line": 89,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L89"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L89"
}
],
"type": {
@@ -769467,7 +770391,7 @@
"defaultValue": "\"generate-product-csv\""
},
{
- "id": 36683,
+ "id": 19394,
"name": "generateProductCsvStep",
"variant": "declaration",
"kind": 64,
@@ -769502,7 +770426,7 @@
},
"children": [
{
- "id": 36695,
+ "id": 19406,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -769520,7 +770444,7 @@
}
},
{
- "id": 36696,
+ "id": 19407,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -769542,8 +770466,8 @@
{
"title": "Properties",
"children": [
- 36695,
- 36696
+ 19406,
+ 19407
]
}
],
@@ -769552,12 +770476,12 @@
"fileName": "core-flows/src/product/steps/generate-product-csv.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L103"
}
],
"signatures": [
{
- "id": 36684,
+ "id": 19395,
"name": "generateProductCsvStep",
"variant": "signature",
"kind": 4096,
@@ -769595,12 +770519,12 @@
"fileName": "core-flows/src/product/steps/generate-product-csv.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L103"
}
],
"parameters": [
{
- "id": 36685,
+ "id": 19396,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -769610,7 +770534,7 @@
"types": [
{
"type": "reference",
- "target": 36677,
+ "target": 19388,
"name": "GenerateProductCsvStepInput",
"package": "@medusajs/core-flows"
},
@@ -769623,7 +770547,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36677,
+ "target": 19388,
"name": "GenerateProductCsvStepInput",
"package": "@medusajs/core-flows"
}
@@ -769641,14 +770565,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36686,
+ "id": 19397,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36687,
+ "id": 19398,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -769666,7 +770590,7 @@
"fileName": "core-flows/src/product/steps/generate-product-csv.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L82"
}
],
"type": {
@@ -769695,7 +770619,7 @@
}
},
{
- "id": 36688,
+ "id": 19399,
"name": "filename",
"variant": "declaration",
"kind": 1024,
@@ -769713,7 +770637,7 @@
"fileName": "core-flows/src/product/steps/generate-product-csv.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L86"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/generate-product-csv.ts#L86"
}
],
"type": {
@@ -769746,8 +770670,8 @@
{
"title": "Properties",
"children": [
- 36687,
- 36688
+ 19398,
+ 19399
]
}
],
@@ -769762,7 +770686,7 @@
},
{
"type": "reference",
- "target": 36678,
+ "target": 19389,
"name": "GenerateProductCsvStepOutput",
"package": "@medusajs/core-flows"
},
@@ -769775,7 +770699,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36678,
+ "target": 19389,
"name": "GenerateProductCsvStepOutput",
"package": "@medusajs/core-flows"
}
@@ -769786,14 +770710,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36689,
+ "id": 19400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36690,
+ "id": 19401,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -769807,7 +770731,7 @@
],
"signatures": [
{
- "id": 36691,
+ "id": 19402,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -769821,7 +770745,7 @@
],
"parameters": [
{
- "id": 36692,
+ "id": 19403,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -769832,14 +770756,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36693,
+ "id": 19404,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36694,
+ "id": 19405,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -769863,7 +770787,7 @@
{
"title": "Properties",
"children": [
- 36694
+ 19405
]
}
],
@@ -769926,7 +770850,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36678,
+ "target": 19389,
"name": "GenerateProductCsvStepOutput",
"package": "@medusajs/core-flows"
}
@@ -769942,7 +770866,7 @@
{
"title": "Methods",
"children": [
- 36690
+ 19401
]
}
],
@@ -769964,7 +770888,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36678,
+ "target": 19389,
"name": "GenerateProductCsvStepOutput",
"package": "@medusajs/core-flows"
}
@@ -769978,7 +770902,7 @@
]
},
{
- "id": 36698,
+ "id": 19409,
"name": "parseProductCsvStepId",
"variant": "declaration",
"kind": 32,
@@ -769990,7 +770914,7 @@
"fileName": "core-flows/src/product/steps/parse-product-csv.ts",
"line": 18,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/parse-product-csv.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/parse-product-csv.ts#L18"
}
],
"type": {
@@ -770000,7 +770924,7 @@
"defaultValue": "\"parse-product-csv\""
},
{
- "id": 36699,
+ "id": 19410,
"name": "parseProductCsvStep",
"variant": "declaration",
"kind": 64,
@@ -770026,7 +770950,7 @@
},
"children": [
{
- "id": 36708,
+ "id": 19419,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -770044,7 +770968,7 @@
}
},
{
- "id": 36709,
+ "id": 19420,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -770066,8 +770990,8 @@
{
"title": "Properties",
"children": [
- 36708,
- 36709
+ 19419,
+ 19420
]
}
],
@@ -770076,12 +771000,12 @@
"fileName": "core-flows/src/product/steps/parse-product-csv.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/parse-product-csv.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/parse-product-csv.ts#L26"
}
],
"signatures": [
{
- "id": 36700,
+ "id": 19411,
"name": "parseProductCsvStep",
"variant": "signature",
"kind": 4096,
@@ -770110,12 +771034,12 @@
"fileName": "core-flows/src/product/steps/parse-product-csv.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/parse-product-csv.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/parse-product-csv.ts#L26"
}
],
"parameters": [
{
- "id": 36701,
+ "id": 19412,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -770224,14 +771148,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36702,
+ "id": 19413,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36703,
+ "id": 19414,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -770245,7 +771169,7 @@
],
"signatures": [
{
- "id": 36704,
+ "id": 19415,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -770259,7 +771183,7 @@
],
"parameters": [
{
- "id": 36705,
+ "id": 19416,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -770270,14 +771194,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36706,
+ "id": 19417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36707,
+ "id": 19418,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -770301,7 +771225,7 @@
{
"title": "Properties",
"children": [
- 36707
+ 19418
]
}
],
@@ -770386,7 +771310,7 @@
{
"title": "Methods",
"children": [
- 36703
+ 19414
]
}
],
@@ -770428,7 +771352,7 @@
]
},
{
- "id": 36710,
+ "id": 19421,
"name": "waitConfirmationProductImportStepId",
"variant": "declaration",
"kind": 32,
@@ -770440,7 +771364,7 @@
"fileName": "core-flows/src/product/steps/wait-confirmation-product-import.ts",
"line": 3,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/wait-confirmation-product-import.ts#L3"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/wait-confirmation-product-import.ts#L3"
}
],
"type": {
@@ -770450,7 +771374,7 @@
"defaultValue": "\"wait-confirmation-product-import\""
},
{
- "id": 36711,
+ "id": 19422,
"name": "waitConfirmationProductImportStep",
"variant": "declaration",
"kind": 64,
@@ -770494,7 +771418,7 @@
},
"children": [
{
- "id": 36719,
+ "id": 19430,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -770512,7 +771436,7 @@
}
},
{
- "id": 36720,
+ "id": 19431,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -770534,8 +771458,8 @@
{
"title": "Properties",
"children": [
- 36719,
- 36720
+ 19430,
+ 19431
]
}
],
@@ -770544,12 +771468,12 @@
"fileName": "core-flows/src/product/steps/wait-confirmation-product-import.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/wait-confirmation-product-import.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/wait-confirmation-product-import.ts#L11"
}
],
"signatures": [
{
- "id": 36712,
+ "id": 19423,
"name": "waitConfirmationProductImportStep",
"variant": "signature",
"kind": 4096,
@@ -770596,7 +771520,7 @@
"fileName": "core-flows/src/product/steps/wait-confirmation-product-import.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/wait-confirmation-product-import.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/wait-confirmation-product-import.ts#L11"
}
],
"type": {
@@ -770620,14 +771544,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36713,
+ "id": 19424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36714,
+ "id": 19425,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -770641,7 +771565,7 @@
],
"signatures": [
{
- "id": 36715,
+ "id": 19426,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -770655,7 +771579,7 @@
],
"parameters": [
{
- "id": 36716,
+ "id": 19427,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -770666,14 +771590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36717,
+ "id": 19428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36718,
+ "id": 19429,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -770697,7 +771621,7 @@
{
"title": "Properties",
"children": [
- 36718
+ 19429
]
}
],
@@ -770774,7 +771698,7 @@
{
"title": "Methods",
"children": [
- 36714
+ 19425
]
}
],
@@ -770808,7 +771732,7 @@
]
},
{
- "id": 36723,
+ "id": 19434,
"name": "variant_ids",
"variant": "declaration",
"kind": 1024,
@@ -770826,7 +771750,7 @@
"fileName": "core-flows/src/product/steps/get-variant-availability.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L14"
}
],
"type": {
@@ -770838,7 +771762,7 @@
}
},
{
- "id": 36724,
+ "id": 19435,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -770856,7 +771780,7 @@
"fileName": "core-flows/src/product/steps/get-variant-availability.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L18"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L18"
}
],
"type": {
@@ -770865,7 +771789,7 @@
}
},
{
- "id": 36725,
+ "id": 19436,
"name": "getVariantAvailabilityId",
"variant": "declaration",
"kind": 32,
@@ -770877,7 +771801,7 @@
"fileName": "core-flows/src/product/steps/get-variant-availability.ts",
"line": 21,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L21"
}
],
"type": {
@@ -770887,7 +771811,7 @@
"defaultValue": "\"get-variant-availability\""
},
{
- "id": 36726,
+ "id": 19437,
"name": "getVariantAvailabilityStep",
"variant": "declaration",
"kind": 64,
@@ -770913,7 +771837,7 @@
},
"children": [
{
- "id": 36744,
+ "id": 19455,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -770931,7 +771855,7 @@
}
},
{
- "id": 36745,
+ "id": 19456,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -770953,8 +771877,8 @@
{
"title": "Properties",
"children": [
- 36744,
- 36745
+ 19455,
+ 19456
]
}
],
@@ -770963,12 +771887,12 @@
"fileName": "core-flows/src/product/steps/get-variant-availability.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L31"
}
],
"signatures": [
{
- "id": 36727,
+ "id": 19438,
"name": "getVariantAvailabilityStep",
"variant": "signature",
"kind": 4096,
@@ -770997,12 +771921,12 @@
"fileName": "core-flows/src/product/steps/get-variant-availability.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/get-variant-availability.ts#L31"
}
],
"parameters": [
{
- "id": 36728,
+ "id": 19439,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -771012,7 +771936,7 @@
"types": [
{
"type": "reference",
- "target": 36721,
+ "target": 19432,
"name": "GetVariantAvailabilityStepInput",
"package": "@medusajs/core-flows"
},
@@ -771025,7 +771949,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36721,
+ "target": 19432,
"name": "GetVariantAvailabilityStepInput",
"package": "@medusajs/core-flows"
}
@@ -771043,7 +771967,7 @@
{
"type": "reflection",
"declaration": {
- "id": 36729,
+ "id": 19440,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -771057,14 +771981,14 @@
],
"indexSignatures": [
{
- "id": 36730,
+ "id": 19441,
"name": "__index",
"variant": "signature",
"kind": 8192,
"flags": {},
"parameters": [
{
- "id": 36731,
+ "id": 19442,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -771081,14 +772005,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36732,
+ "id": 19443,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36733,
+ "id": 19444,
"name": "availability",
"variant": "declaration",
"kind": 1024,
@@ -771123,7 +772047,7 @@
}
},
{
- "id": 36734,
+ "id": 19445,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -771153,8 +772077,8 @@
{
"title": "Properties",
"children": [
- 36733,
- 36734
+ 19444,
+ 19445
]
}
],
@@ -771177,14 +772101,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36735,
+ "id": 19446,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36736,
+ "id": 19447,
"name": "availability",
"variant": "declaration",
"kind": 1024,
@@ -771219,7 +772143,7 @@
}
},
{
- "id": 36737,
+ "id": 19448,
"name": "sales_channel_id",
"variant": "declaration",
"kind": 1024,
@@ -771249,8 +772173,8 @@
{
"title": "Properties",
"children": [
- 36736,
- 36737
+ 19447,
+ 19448
]
}
],
@@ -771305,14 +772229,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36738,
+ "id": 19449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36739,
+ "id": 19450,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -771326,7 +772250,7 @@
],
"signatures": [
{
- "id": 36740,
+ "id": 19451,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -771340,7 +772264,7 @@
],
"parameters": [
{
- "id": 36741,
+ "id": 19452,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -771351,14 +772275,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36742,
+ "id": 19453,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36743,
+ "id": 19454,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -771382,7 +772306,7 @@
{
"title": "Properties",
"children": [
- 36743
+ 19454
]
}
],
@@ -771464,7 +772388,7 @@
{
"title": "Methods",
"children": [
- 36739
+ 19450
]
}
],
@@ -771503,7 +772427,7 @@
]
},
{
- "id": 36747,
+ "id": 19458,
"name": "normalizeCsvStepId",
"variant": "declaration",
"kind": 32,
@@ -771515,7 +772439,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L11"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L11"
}
],
"type": {
@@ -771525,7 +772449,7 @@
"defaultValue": "\"normalize-product-csv\""
},
{
- "id": 36748,
+ "id": 19459,
"name": "normalizeCsvStep",
"variant": "declaration",
"kind": 64,
@@ -771560,7 +772484,7 @@
},
"children": [
{
- "id": 36784,
+ "id": 19495,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -771578,7 +772502,7 @@
}
},
{
- "id": 36785,
+ "id": 19496,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -771600,8 +772524,8 @@
{
"title": "Properties",
"children": [
- 36784,
- 36785
+ 19495,
+ 19496
]
}
],
@@ -771610,12 +772534,12 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L19"
}
],
"signatures": [
{
- "id": 36749,
+ "id": 19460,
"name": "normalizeCsvStep",
"variant": "signature",
"kind": 4096,
@@ -771653,12 +772577,12 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 19,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L19"
}
],
"parameters": [
{
- "id": 36750,
+ "id": 19461,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -771695,14 +772619,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36751,
+ "id": 19462,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36752,
+ "id": 19463,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -771712,7 +772636,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -771757,7 +772681,7 @@
}
},
{
- "id": 36753,
+ "id": 19464,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -771767,7 +772691,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -771790,14 +772714,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36754,
+ "id": 19465,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36755,
+ "id": 19466,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -771807,7 +772731,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -771820,7 +772744,7 @@
{
"title": "Properties",
"children": [
- 36755
+ 19466
]
}
],
@@ -771829,7 +772753,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -771861,14 +772785,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36756,
+ "id": 19467,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36757,
+ "id": 19468,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -771878,7 +772802,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -771891,7 +772815,7 @@
{
"title": "Properties",
"children": [
- 36757
+ 19468
]
}
],
@@ -771900,7 +772824,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -771920,8 +772844,8 @@
{
"title": "Properties",
"children": [
- 36752,
- 36753
+ 19463,
+ 19464
]
}
],
@@ -771937,14 +772861,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36758,
+ "id": 19469,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36759,
+ "id": 19470,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -771954,7 +772878,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -771971,7 +772895,7 @@
}
},
{
- "id": 36760,
+ "id": 19471,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -771981,7 +772905,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -772001,14 +772925,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36761,
+ "id": 19472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36762,
+ "id": 19473,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772018,7 +772942,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772031,7 +772955,7 @@
{
"title": "Properties",
"children": [
- 36762
+ 19473
]
}
],
@@ -772040,7 +772964,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -772054,8 +772978,8 @@
{
"title": "Properties",
"children": [
- 36759,
- 36760
+ 19470,
+ 19471
]
}
],
@@ -772064,7 +772988,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
}
@@ -772079,14 +773003,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36763,
+ "id": 19474,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36764,
+ "id": 19475,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -772096,7 +773020,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -772113,7 +773037,7 @@
}
},
{
- "id": 36765,
+ "id": 19476,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -772123,7 +773047,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -772143,14 +773067,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36766,
+ "id": 19477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36767,
+ "id": 19478,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772160,7 +773084,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772173,7 +773097,7 @@
{
"title": "Properties",
"children": [
- 36767
+ 19478
]
}
],
@@ -772182,7 +773106,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -772196,8 +773120,8 @@
{
"title": "Properties",
"children": [
- 36764,
- 36765
+ 19475,
+ 19476
]
}
],
@@ -772206,7 +773130,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
}
@@ -772218,14 +773142,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36768,
+ "id": 19479,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36769,
+ "id": 19480,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -772239,7 +773163,7 @@
],
"signatures": [
{
- "id": 36770,
+ "id": 19481,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -772253,7 +773177,7 @@
],
"parameters": [
{
- "id": 36771,
+ "id": 19482,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -772264,14 +773188,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36772,
+ "id": 19483,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36773,
+ "id": 19484,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -772295,7 +773219,7 @@
{
"title": "Properties",
"children": [
- 36773
+ 19484
]
}
],
@@ -772359,14 +773283,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36774,
+ "id": 19485,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36775,
+ "id": 19486,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -772376,7 +773300,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -772393,7 +773317,7 @@
}
},
{
- "id": 36776,
+ "id": 19487,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -772403,7 +773327,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -772423,14 +773347,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36777,
+ "id": 19488,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36778,
+ "id": 19489,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772440,7 +773364,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772453,7 +773377,7 @@
{
"title": "Properties",
"children": [
- 36778
+ 19489
]
}
],
@@ -772462,7 +773386,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -772476,8 +773400,8 @@
{
"title": "Properties",
"children": [
- 36775,
- 36776
+ 19486,
+ 19487
]
}
],
@@ -772486,7 +773410,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
}
@@ -772503,7 +773427,7 @@
{
"title": "Methods",
"children": [
- 36769
+ 19480
]
}
],
@@ -772526,14 +773450,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36779,
+ "id": 19490,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36780,
+ "id": 19491,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -772543,7 +773467,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -772560,7 +773484,7 @@
}
},
{
- "id": 36781,
+ "id": 19492,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -772570,7 +773494,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -772590,14 +773514,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36782,
+ "id": 19493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36783,
+ "id": 19494,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772607,7 +773531,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772620,7 +773544,7 @@
{
"title": "Properties",
"children": [
- 36783
+ 19494
]
}
],
@@ -772629,7 +773553,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -772643,8 +773567,8 @@
{
"title": "Properties",
"children": [
- 36780,
- 36781
+ 19491,
+ 19492
]
}
],
@@ -772653,7 +773577,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
}
@@ -772668,7 +773592,7 @@
]
},
{
- "id": 36755,
+ "id": 19466,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772678,7 +773602,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772687,7 +773611,7 @@
}
},
{
- "id": 36757,
+ "id": 19468,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772697,7 +773621,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772706,14 +773630,14 @@
}
},
{
- "id": 36758,
+ "id": 19469,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36759,
+ "id": 19470,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -772723,7 +773647,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -772740,7 +773664,7 @@
}
},
{
- "id": 36760,
+ "id": 19471,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -772750,7 +773674,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -772770,14 +773694,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36761,
+ "id": 19472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36762,
+ "id": 19473,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772787,7 +773711,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772800,7 +773724,7 @@
{
"title": "Properties",
"children": [
- 36762
+ 19473
]
}
],
@@ -772809,7 +773733,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -772823,8 +773747,8 @@
{
"title": "Properties",
"children": [
- 36759,
- 36760
+ 19470,
+ 19471
]
}
],
@@ -772833,12 +773757,12 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
},
{
- "id": 36759,
+ "id": 19470,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -772848,7 +773772,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -772865,7 +773789,7 @@
}
},
{
- "id": 36762,
+ "id": 19473,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772875,7 +773799,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772884,7 +773808,7 @@
}
},
{
- "id": 36760,
+ "id": 19471,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -772894,7 +773818,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -772914,14 +773838,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36761,
+ "id": 19472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36762,
+ "id": 19473,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -772931,7 +773855,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -772944,7 +773868,7 @@
{
"title": "Properties",
"children": [
- 36762
+ 19473
]
}
],
@@ -772953,7 +773877,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -772963,14 +773887,14 @@
}
},
{
- "id": 36763,
+ "id": 19474,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36764,
+ "id": 19475,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -772980,7 +773904,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -772997,7 +773921,7 @@
}
},
{
- "id": 36765,
+ "id": 19476,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -773007,7 +773931,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -773027,14 +773951,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36766,
+ "id": 19477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36767,
+ "id": 19478,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773044,7 +773968,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773057,7 +773981,7 @@
{
"title": "Properties",
"children": [
- 36767
+ 19478
]
}
],
@@ -773066,7 +773990,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -773080,8 +774004,8 @@
{
"title": "Properties",
"children": [
- 36764,
- 36765
+ 19475,
+ 19476
]
}
],
@@ -773090,12 +774014,12 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
},
{
- "id": 36764,
+ "id": 19475,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -773105,7 +774029,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -773122,7 +774046,7 @@
}
},
{
- "id": 36767,
+ "id": 19478,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773132,7 +774056,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773141,7 +774065,7 @@
}
},
{
- "id": 36765,
+ "id": 19476,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -773151,7 +774075,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -773171,14 +774095,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36766,
+ "id": 19477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36767,
+ "id": 19478,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773188,7 +774112,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773201,7 +774125,7 @@
{
"title": "Properties",
"children": [
- 36767
+ 19478
]
}
],
@@ -773210,7 +774134,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -773220,14 +774144,14 @@
}
},
{
- "id": 36774,
+ "id": 19485,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36775,
+ "id": 19486,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -773237,7 +774161,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -773254,7 +774178,7 @@
}
},
{
- "id": 36776,
+ "id": 19487,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -773264,7 +774188,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -773284,14 +774208,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36777,
+ "id": 19488,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36778,
+ "id": 19489,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773301,7 +774225,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773314,7 +774238,7 @@
{
"title": "Properties",
"children": [
- 36778
+ 19489
]
}
],
@@ -773323,7 +774247,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -773337,8 +774261,8 @@
{
"title": "Properties",
"children": [
- 36775,
- 36776
+ 19486,
+ 19487
]
}
],
@@ -773347,12 +774271,12 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
},
{
- "id": 36775,
+ "id": 19486,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -773362,7 +774286,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -773379,7 +774303,7 @@
}
},
{
- "id": 36778,
+ "id": 19489,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773389,7 +774313,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773398,7 +774322,7 @@
}
},
{
- "id": 36776,
+ "id": 19487,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -773408,7 +774332,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -773428,14 +774352,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36777,
+ "id": 19488,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36778,
+ "id": 19489,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773445,7 +774369,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773458,7 +774382,7 @@
{
"title": "Properties",
"children": [
- 36778
+ 19489
]
}
],
@@ -773467,7 +774391,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -773477,14 +774401,14 @@
}
},
{
- "id": 36779,
+ "id": 19490,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36780,
+ "id": 19491,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -773494,7 +774418,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -773511,7 +774435,7 @@
}
},
{
- "id": 36781,
+ "id": 19492,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -773521,7 +774445,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -773541,14 +774465,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36782,
+ "id": 19493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36783,
+ "id": 19494,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773558,7 +774482,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773571,7 +774495,7 @@
{
"title": "Properties",
"children": [
- 36783
+ 19494
]
}
],
@@ -773580,7 +774504,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -773594,8 +774518,8 @@
{
"title": "Properties",
"children": [
- 36780,
- 36781
+ 19491,
+ 19492
]
}
],
@@ -773604,12 +774528,12 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 49,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L49"
}
]
},
{
- "id": 36780,
+ "id": 19491,
"name": "create",
"variant": "declaration",
"kind": 1024,
@@ -773619,7 +774543,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 50,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L50"
}
],
"type": {
@@ -773636,7 +774560,7 @@
}
},
{
- "id": 36783,
+ "id": 19494,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773646,7 +774570,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773655,7 +774579,7 @@
}
},
{
- "id": 36781,
+ "id": 19492,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -773665,7 +774589,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L51"
}
],
"type": {
@@ -773685,14 +774609,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36782,
+ "id": 19493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36783,
+ "id": 19494,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -773702,7 +774626,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 39,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
],
"type": {
@@ -773715,7 +774639,7 @@
{
"title": "Properties",
"children": [
- 36783
+ 19494
]
}
],
@@ -773724,7 +774648,7 @@
"fileName": "core-flows/src/product/steps/normalize-products.ts",
"line": 41,
"character": 37,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products.ts#L41"
}
]
}
@@ -773734,7 +774658,7 @@
}
},
{
- "id": 36787,
+ "id": 19498,
"name": "normalizeCsvToChunksStepId",
"variant": "declaration",
"kind": 32,
@@ -773746,7 +774670,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 17,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L17"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L17"
}
],
"type": {
@@ -773756,7 +774680,7 @@
"defaultValue": "\"normalize-product-csv-to-chunks\""
},
{
- "id": 36788,
+ "id": 19499,
"name": "normalizeCsvToChunksStep",
"variant": "declaration",
"kind": 64,
@@ -773791,7 +774715,7 @@
},
"children": [
{
- "id": 36812,
+ "id": 19523,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -773809,7 +774733,7 @@
}
},
{
- "id": 36813,
+ "id": 19524,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -773831,8 +774755,8 @@
{
"title": "Properties",
"children": [
- 36812,
- 36813
+ 19523,
+ 19524
]
}
],
@@ -773841,12 +774765,12 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 196,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L196"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L196"
}
],
"signatures": [
{
- "id": 36789,
+ "id": 19500,
"name": "normalizeCsvToChunksStep",
"variant": "signature",
"kind": 4096,
@@ -773884,12 +774808,12 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 196,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L196"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L196"
}
],
"parameters": [
{
- "id": 36790,
+ "id": 19501,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -773926,14 +774850,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36791,
+ "id": 19502,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36792,
+ "id": 19503,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -773943,7 +774867,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -773988,7 +774912,7 @@
}
},
{
- "id": 36793,
+ "id": 19504,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -773998,7 +774922,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774071,8 +774995,8 @@
{
"title": "Properties",
"children": [
- 36792,
- 36793
+ 19503,
+ 19504
]
}
],
@@ -774088,14 +775012,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36794,
+ "id": 19505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36795,
+ "id": 19506,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774105,7 +775029,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774122,7 +775046,7 @@
}
},
{
- "id": 36796,
+ "id": 19507,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774132,7 +775056,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774165,8 +775089,8 @@
{
"title": "Properties",
"children": [
- 36795,
- 36796
+ 19506,
+ 19507
]
}
],
@@ -774175,7 +775099,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 200,
"character": 19,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
}
]
}
@@ -774190,14 +775114,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36797,
+ "id": 19508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36798,
+ "id": 19509,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774207,7 +775131,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774224,7 +775148,7 @@
}
},
{
- "id": 36799,
+ "id": 19510,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774234,7 +775158,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774267,8 +775191,8 @@
{
"title": "Properties",
"children": [
- 36798,
- 36799
+ 19509,
+ 19510
]
}
],
@@ -774277,7 +775201,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 200,
"character": 19,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
}
]
}
@@ -774289,14 +775213,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36800,
+ "id": 19511,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36801,
+ "id": 19512,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -774310,7 +775234,7 @@
],
"signatures": [
{
- "id": 36802,
+ "id": 19513,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -774324,7 +775248,7 @@
],
"parameters": [
{
- "id": 36803,
+ "id": 19514,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -774335,14 +775259,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36804,
+ "id": 19515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36805,
+ "id": 19516,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -774366,7 +775290,7 @@
{
"title": "Properties",
"children": [
- 36805
+ 19516
]
}
],
@@ -774430,14 +775354,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36806,
+ "id": 19517,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36807,
+ "id": 19518,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774447,7 +775371,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774464,7 +775388,7 @@
}
},
{
- "id": 36808,
+ "id": 19519,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774474,7 +775398,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774507,8 +775431,8 @@
{
"title": "Properties",
"children": [
- 36807,
- 36808
+ 19518,
+ 19519
]
}
],
@@ -774517,7 +775441,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 200,
"character": 19,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
}
]
}
@@ -774534,7 +775458,7 @@
{
"title": "Methods",
"children": [
- 36801
+ 19512
]
}
],
@@ -774557,14 +775481,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36809,
+ "id": 19520,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36810,
+ "id": 19521,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774574,7 +775498,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774591,7 +775515,7 @@
}
},
{
- "id": 36811,
+ "id": 19522,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774601,7 +775525,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774634,8 +775558,8 @@
{
"title": "Properties",
"children": [
- 36810,
- 36811
+ 19521,
+ 19522
]
}
],
@@ -774644,7 +775568,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 200,
"character": 19,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L200"
}
]
}
@@ -774659,7 +775583,7 @@
]
},
{
- "id": 36795,
+ "id": 19506,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774669,7 +775593,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774686,7 +775610,7 @@
}
},
{
- "id": 36796,
+ "id": 19507,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774696,7 +775620,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774725,7 +775649,7 @@
}
},
{
- "id": 36798,
+ "id": 19509,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774735,7 +775659,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774752,7 +775676,7 @@
}
},
{
- "id": 36799,
+ "id": 19510,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774762,7 +775686,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774791,7 +775715,7 @@
}
},
{
- "id": 36807,
+ "id": 19518,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774801,7 +775725,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774818,7 +775742,7 @@
}
},
{
- "id": 36808,
+ "id": 19519,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774828,7 +775752,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774857,7 +775781,7 @@
}
},
{
- "id": 36810,
+ "id": 19521,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -774867,7 +775791,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L201"
}
],
"type": {
@@ -774884,7 +775808,7 @@
}
},
{
- "id": 36811,
+ "id": 19522,
"name": "summary",
"variant": "declaration",
"kind": 1024,
@@ -774894,7 +775818,7 @@
"fileName": "core-flows/src/product/steps/normalize-products-to-chunks.ts",
"line": 202,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/normalize-products-to-chunks.ts#L202"
}
],
"type": {
@@ -774923,7 +775847,7 @@
}
},
{
- "id": 36814,
+ "id": 19525,
"name": "processImportChunksStepId",
"variant": "declaration",
"kind": 32,
@@ -774935,7 +775859,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L5"
}
],
"type": {
@@ -774945,7 +775869,7 @@
"defaultValue": "\"process-import-chunks\""
},
{
- "id": 36815,
+ "id": 19526,
"name": "processImportChunksStep",
"variant": "declaration",
"kind": 64,
@@ -774980,7 +775904,7 @@
},
"children": [
{
- "id": 36842,
+ "id": 19553,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -774998,7 +775922,7 @@
}
},
{
- "id": 36843,
+ "id": 19554,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -775020,8 +775944,8 @@
{
"title": "Properties",
"children": [
- 36842,
- 36843
+ 19553,
+ 19554
]
}
],
@@ -775030,12 +775954,12 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L14"
}
],
"signatures": [
{
- "id": 36816,
+ "id": 19527,
"name": "processImportChunksStep",
"variant": "signature",
"kind": 4096,
@@ -775073,12 +775997,12 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L14"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L14"
}
],
"parameters": [
{
- "id": 36817,
+ "id": 19528,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -775089,14 +776013,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36818,
+ "id": 19529,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36819,
+ "id": 19530,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -775106,7 +776030,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775114,14 +776038,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36820,
+ "id": 19531,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36821,
+ "id": 19532,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -775131,7 +776055,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775144,7 +776068,7 @@
{
"title": "Properties",
"children": [
- 36821
+ 19532
]
}
],
@@ -775153,7 +776077,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
]
}
@@ -775165,7 +776089,7 @@
{
"title": "Properties",
"children": [
- 36819
+ 19530
]
}
],
@@ -775174,7 +776098,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
]
}
@@ -775189,14 +776113,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36822,
+ "id": 19533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36823,
+ "id": 19534,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -775206,7 +776130,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775214,14 +776138,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36824,
+ "id": 19535,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36825,
+ "id": 19536,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -775231,7 +776155,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775244,7 +776168,7 @@
{
"title": "Properties",
"children": [
- 36825
+ 19536
]
}
],
@@ -775253,7 +776177,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
]
}
@@ -775265,7 +776189,7 @@
{
"title": "Properties",
"children": [
- 36823
+ 19534
]
}
],
@@ -775274,7 +776198,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 16,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
]
}
@@ -775293,14 +776217,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36826,
+ "id": 19537,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36827,
+ "id": 19538,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775310,7 +776234,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -775344,7 +776268,7 @@
{
"title": "Properties",
"children": [
- 36827
+ 19538
]
}
],
@@ -775360,14 +776284,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36828,
+ "id": 19539,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36829,
+ "id": 19540,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775377,7 +776301,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -775391,7 +776315,7 @@
{
"title": "Properties",
"children": [
- 36829
+ 19540
]
}
],
@@ -775400,7 +776324,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
}
@@ -775415,14 +776339,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36830,
+ "id": 19541,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36831,
+ "id": 19542,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775432,7 +776356,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -775446,7 +776370,7 @@
{
"title": "Properties",
"children": [
- 36831
+ 19542
]
}
],
@@ -775455,7 +776379,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
}
@@ -775467,14 +776391,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36832,
+ "id": 19543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36833,
+ "id": 19544,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -775488,7 +776412,7 @@
],
"signatures": [
{
- "id": 36834,
+ "id": 19545,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -775502,7 +776426,7 @@
],
"parameters": [
{
- "id": 36835,
+ "id": 19546,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -775513,14 +776437,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36836,
+ "id": 19547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36837,
+ "id": 19548,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -775544,7 +776468,7 @@
{
"title": "Properties",
"children": [
- 36837
+ 19548
]
}
],
@@ -775608,14 +776532,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36838,
+ "id": 19549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36839,
+ "id": 19550,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775625,7 +776549,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -775639,7 +776563,7 @@
{
"title": "Properties",
"children": [
- 36839
+ 19550
]
}
],
@@ -775648,7 +776572,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
}
@@ -775665,7 +776589,7 @@
{
"title": "Methods",
"children": [
- 36833
+ 19544
]
}
],
@@ -775688,14 +776612,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36840,
+ "id": 19551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36841,
+ "id": 19552,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775705,7 +776629,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -775719,7 +776643,7 @@
{
"title": "Properties",
"children": [
- 36841
+ 19552
]
}
],
@@ -775728,7 +776652,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
}
@@ -775743,7 +776667,7 @@
]
},
{
- "id": 36821,
+ "id": 19532,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -775753,7 +776677,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775762,7 +776686,7 @@
}
},
{
- "id": 36819,
+ "id": 19530,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -775772,7 +776696,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775780,14 +776704,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36820,
+ "id": 19531,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36821,
+ "id": 19532,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -775797,7 +776721,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775810,7 +776734,7 @@
{
"title": "Properties",
"children": [
- 36821
+ 19532
]
}
],
@@ -775819,7 +776743,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
]
}
@@ -775827,7 +776751,7 @@
}
},
{
- "id": 36825,
+ "id": 19536,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -775837,7 +776761,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775846,7 +776770,7 @@
}
},
{
- "id": 36823,
+ "id": 19534,
"name": "chunks",
"variant": "declaration",
"kind": 1024,
@@ -775856,7 +776780,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 18,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775864,14 +776788,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36824,
+ "id": 19535,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36825,
+ "id": 19536,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -775881,7 +776805,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
],
"type": {
@@ -775894,7 +776818,7 @@
{
"title": "Properties",
"children": [
- 36825
+ 19536
]
}
],
@@ -775903,7 +776827,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 19,
"character": 26,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L19"
}
]
}
@@ -775911,14 +776835,14 @@
}
},
{
- "id": 36828,
+ "id": 19539,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36829,
+ "id": 19540,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775928,7 +776852,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -775942,7 +776866,7 @@
{
"title": "Properties",
"children": [
- 36829
+ 19540
]
}
],
@@ -775951,12 +776875,12 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
},
{
- "id": 36829,
+ "id": 19540,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775966,7 +776890,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -775976,14 +776900,14 @@
"defaultValue": "true"
},
{
- "id": 36830,
+ "id": 19541,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36831,
+ "id": 19542,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -775993,7 +776917,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -776007,7 +776931,7 @@
{
"title": "Properties",
"children": [
- 36831
+ 19542
]
}
],
@@ -776016,12 +776940,12 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
},
{
- "id": 36831,
+ "id": 19542,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -776031,7 +776955,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -776041,14 +776965,14 @@
"defaultValue": "true"
},
{
- "id": 36838,
+ "id": 19549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36839,
+ "id": 19550,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -776058,7 +776982,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -776072,7 +776996,7 @@
{
"title": "Properties",
"children": [
- 36839
+ 19550
]
}
],
@@ -776081,12 +777005,12 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
},
{
- "id": 36839,
+ "id": 19550,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -776096,7 +777020,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -776106,14 +777030,14 @@
"defaultValue": "true"
},
{
- "id": 36840,
+ "id": 19551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36841,
+ "id": 19552,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -776123,7 +777047,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -776137,7 +777061,7 @@
{
"title": "Properties",
"children": [
- 36841
+ 19552
]
}
],
@@ -776146,12 +777070,12 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 28,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
]
},
{
- "id": 36841,
+ "id": 19552,
"name": "completed",
"variant": "declaration",
"kind": 1024,
@@ -776161,7 +777085,7 @@
"fileName": "core-flows/src/product/steps/process-import-chunks.ts",
"line": 38,
"character": 30,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/steps/process-import-chunks.ts#L38"
}
],
"type": {
@@ -776173,14 +777097,14 @@
]
},
{
- "id": 17356,
+ "id": 61,
"name": "Workflows_Product",
"variant": "declaration",
"kind": 4,
"flags": {},
"children": [
{
- "id": 36845,
+ "id": 19556,
"name": "image_id",
"variant": "declaration",
"kind": 1024,
@@ -776198,7 +777122,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L24"
}
],
"type": {
@@ -776207,7 +777131,7 @@
}
},
{
- "id": 36846,
+ "id": 19557,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -776227,7 +777151,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L28"
}
],
"type": {
@@ -776239,7 +777163,7 @@
}
},
{
- "id": 36847,
+ "id": 19558,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -776259,7 +777183,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L32"
}
],
"type": {
@@ -776271,7 +777195,7 @@
}
},
{
- "id": 36849,
+ "id": 19560,
"name": "added",
"variant": "declaration",
"kind": 1024,
@@ -776289,7 +777213,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L42"
}
],
"type": {
@@ -776301,7 +777225,7 @@
}
},
{
- "id": 36850,
+ "id": 19561,
"name": "removed",
"variant": "declaration",
"kind": 1024,
@@ -776319,7 +777243,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L46"
}
],
"type": {
@@ -776331,7 +777255,7 @@
}
},
{
- "id": 36851,
+ "id": 19562,
"name": "batchImageVariantsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -776343,7 +777267,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L49"
}
],
"type": {
@@ -776353,7 +777277,7 @@
"defaultValue": "\"batch-image-variants\""
},
{
- "id": 36852,
+ "id": 19563,
"name": "batchImageVariantsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -776406,7 +777330,7 @@
},
"children": [
{
- "id": 36860,
+ "id": 19571,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -776429,7 +777353,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36861,
+ "id": 19572,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -776443,7 +777367,7 @@
],
"signatures": [
{
- "id": 36862,
+ "id": 19573,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -776471,7 +777395,7 @@
],
"parameters": [
{
- "id": 36863,
+ "id": 19574,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -776487,14 +777411,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36864,
+ "id": 19575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36865,
+ "id": 19576,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -776519,7 +777443,7 @@
"types": [
{
"type": "reference",
- "target": 36844,
+ "target": 19555,
"name": "BatchImageVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -776532,7 +777456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36844,
+ "target": 19555,
"name": "BatchImageVariantsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -776548,7 +777472,7 @@
{
"title": "Properties",
"children": [
- 36865
+ 19576
]
}
],
@@ -776569,14 +777493,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36866,
+ "id": 19577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36867,
+ "id": 19578,
"name": "added",
"variant": "declaration",
"kind": 1024,
@@ -776594,7 +777518,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L42"
}
],
"type": {
@@ -776629,7 +777553,7 @@
}
},
{
- "id": 36868,
+ "id": 19579,
"name": "removed",
"variant": "declaration",
"kind": 1024,
@@ -776647,7 +777571,7 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L46"
}
],
"type": {
@@ -776686,8 +777610,8 @@
{
"title": "Properties",
"children": [
- 36867,
- 36868
+ 19578,
+ 19579
]
}
],
@@ -776702,7 +777626,7 @@
},
{
"type": "reference",
- "target": 36848,
+ "target": 19559,
"name": "BatchImageVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -776715,7 +777639,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36848,
+ "target": 19559,
"name": "BatchImageVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -776726,14 +777650,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36869,
+ "id": 19580,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36870,
+ "id": 19581,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -776747,7 +777671,7 @@
],
"signatures": [
{
- "id": 36871,
+ "id": 19582,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -776761,7 +777685,7 @@
],
"parameters": [
{
- "id": 36872,
+ "id": 19583,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -776772,14 +777696,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36873,
+ "id": 19584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36874,
+ "id": 19585,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -776803,7 +777727,7 @@
{
"title": "Properties",
"children": [
- 36874
+ 19585
]
}
],
@@ -776866,7 +777790,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36848,
+ "target": 19559,
"name": "BatchImageVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -776882,7 +777806,7 @@
{
"title": "Methods",
"children": [
- 36870
+ 19581
]
}
],
@@ -776904,7 +777828,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36848,
+ "target": 19559,
"name": "BatchImageVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -776920,7 +777844,7 @@
}
},
{
- "id": 36875,
+ "id": 19586,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -776943,7 +777867,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36876,
+ "id": 19587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -776957,7 +777881,7 @@
],
"signatures": [
{
- "id": 36877,
+ "id": 19588,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -776985,7 +777909,7 @@
],
"typeParameters": [
{
- "id": 36878,
+ "id": 19589,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -776996,7 +777920,7 @@
}
},
{
- "id": 36879,
+ "id": 19590,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -777009,7 +777933,7 @@
],
"parameters": [
{
- "id": 36880,
+ "id": 19591,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -777042,7 +777966,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -777053,13 +777977,13 @@
},
"trueType": {
"type": "reference",
- "target": 36844,
+ "target": 19555,
"name": "BatchImageVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -777092,7 +778016,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -777103,13 +778027,13 @@
},
"trueType": {
"type": "reference",
- "target": 36848,
+ "target": 19559,
"name": "BatchImageVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -777129,7 +778053,7 @@
}
},
{
- "id": 36881,
+ "id": 19592,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -777152,7 +778076,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36882,
+ "id": 19593,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -777166,7 +778090,7 @@
],
"signatures": [
{
- "id": 36883,
+ "id": 19594,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -777188,7 +778112,7 @@
}
},
{
- "id": 36884,
+ "id": 19595,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -777211,7 +778135,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36885,
+ "id": 19596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -777225,7 +778149,7 @@
],
"signatures": [
{
- "id": 36886,
+ "id": 19597,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -777239,7 +778163,7 @@
],
"parameters": [
{
- "id": 36887,
+ "id": 19598,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -777265,7 +778189,7 @@
}
},
{
- "id": 36888,
+ "id": 19599,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -777288,7 +778212,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36889,
+ "id": 19600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -777299,7 +778223,7 @@
],
"documents": [
{
- "id": 43074,
+ "id": 26015,
"name": "addImageToVariantsStep",
"variant": "document",
"kind": 8388608,
@@ -777325,7 +778249,7 @@
"frontmatter": {}
},
{
- "id": 43075,
+ "id": 26016,
"name": "removeImageFromVariantsStep",
"variant": "document",
"kind": 8388608,
@@ -777351,7 +778275,7 @@
"frontmatter": {}
},
{
- "id": 43077,
+ "id": 26018,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -777386,7 +778310,7 @@
"frontmatter": {},
"children": [
{
- "id": 43078,
+ "id": 26019,
"name": "updateProductVariantsStep",
"variant": "document",
"kind": 8388608,
@@ -777415,21 +778339,21 @@
}
],
"childrenIncludingDocuments": [
- 36860,
- 36875,
- 36881,
- 36884,
- 36888
+ 19571,
+ 19586,
+ 19592,
+ 19595,
+ 19599
],
"groups": [
{
"title": "Properties",
"children": [
- 36860,
- 36875,
- 36881,
- 36884,
- 36888
+ 19571,
+ 19586,
+ 19592,
+ 19595,
+ 19599
]
}
],
@@ -777438,12 +778362,12 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L74"
}
],
"signatures": [
{
- "id": 36853,
+ "id": 19564,
"name": "batchImageVariantsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -777499,12 +778423,12 @@
"fileName": "core-flows/src/product/workflows/batch-image-variants.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-image-variants.ts#L74"
}
],
"typeParameters": [
{
- "id": 36854,
+ "id": 19565,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -777515,7 +778439,7 @@
}
},
{
- "id": 36855,
+ "id": 19566,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -777528,7 +778452,7 @@
],
"parameters": [
{
- "id": 36856,
+ "id": 19567,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -777552,14 +778476,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36857,
+ "id": 19568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36858,
+ "id": 19569,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -777582,7 +778506,7 @@
}
},
{
- "id": 36859,
+ "id": 19570,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -777609,8 +778533,8 @@
{
"title": "Properties",
"children": [
- 36858,
- 36859
+ 19569,
+ 19570
]
}
],
@@ -777685,26 +778609,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 36844,
+ "target": 19555,
"name": "BatchImageVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 36848,
+ "target": 19559,
"name": "BatchImageVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -777719,7 +778643,7 @@
]
},
{
- "id": 36891,
+ "id": 19602,
"name": "variant_id",
"variant": "declaration",
"kind": 1024,
@@ -777737,7 +778661,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L24"
}
],
"type": {
@@ -777746,7 +778670,7 @@
}
},
{
- "id": 36892,
+ "id": 19603,
"name": "add",
"variant": "declaration",
"kind": 1024,
@@ -777766,7 +778690,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L28"
}
],
"type": {
@@ -777778,7 +778702,7 @@
}
},
{
- "id": 36893,
+ "id": 19604,
"name": "remove",
"variant": "declaration",
"kind": 1024,
@@ -777798,7 +778722,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L32"
}
],
"type": {
@@ -777810,7 +778734,7 @@
}
},
{
- "id": 36895,
+ "id": 19606,
"name": "added",
"variant": "declaration",
"kind": 1024,
@@ -777828,7 +778752,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L42"
}
],
"type": {
@@ -777840,7 +778764,7 @@
}
},
{
- "id": 36896,
+ "id": 19607,
"name": "removed",
"variant": "declaration",
"kind": 1024,
@@ -777858,7 +778782,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L46"
}
],
"type": {
@@ -777870,7 +778794,7 @@
}
},
{
- "id": 36897,
+ "id": 19608,
"name": "batchVariantImagesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -777882,7 +778806,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L49"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L49"
}
],
"type": {
@@ -777892,7 +778816,7 @@
"defaultValue": "\"batch-variant-images\""
},
{
- "id": 36898,
+ "id": 19609,
"name": "batchVariantImagesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -777945,7 +778869,7 @@
},
"children": [
{
- "id": 36906,
+ "id": 19617,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -777968,7 +778892,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36907,
+ "id": 19618,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -777982,7 +778906,7 @@
],
"signatures": [
{
- "id": 36908,
+ "id": 19619,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -778010,7 +778934,7 @@
],
"parameters": [
{
- "id": 36909,
+ "id": 19620,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -778026,14 +778950,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36910,
+ "id": 19621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36911,
+ "id": 19622,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -778058,7 +778982,7 @@
"types": [
{
"type": "reference",
- "target": 36890,
+ "target": 19601,
"name": "BatchVariantImagesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -778071,7 +778995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36890,
+ "target": 19601,
"name": "BatchVariantImagesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -778087,7 +779011,7 @@
{
"title": "Properties",
"children": [
- 36911
+ 19622
]
}
],
@@ -778108,14 +779032,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36912,
+ "id": 19623,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36913,
+ "id": 19624,
"name": "added",
"variant": "declaration",
"kind": 1024,
@@ -778133,7 +779057,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L42"
}
],
"type": {
@@ -778168,7 +779092,7 @@
}
},
{
- "id": 36914,
+ "id": 19625,
"name": "removed",
"variant": "declaration",
"kind": 1024,
@@ -778186,7 +779110,7 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L46"
}
],
"type": {
@@ -778225,8 +779149,8 @@
{
"title": "Properties",
"children": [
- 36913,
- 36914
+ 19624,
+ 19625
]
}
],
@@ -778241,7 +779165,7 @@
},
{
"type": "reference",
- "target": 36894,
+ "target": 19605,
"name": "BatchVariantImagesWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -778254,7 +779178,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36894,
+ "target": 19605,
"name": "BatchVariantImagesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -778265,14 +779189,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36915,
+ "id": 19626,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36916,
+ "id": 19627,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -778286,7 +779210,7 @@
],
"signatures": [
{
- "id": 36917,
+ "id": 19628,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -778300,7 +779224,7 @@
],
"parameters": [
{
- "id": 36918,
+ "id": 19629,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -778311,14 +779235,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36919,
+ "id": 19630,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36920,
+ "id": 19631,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -778342,7 +779266,7 @@
{
"title": "Properties",
"children": [
- 36920
+ 19631
]
}
],
@@ -778405,7 +779329,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36894,
+ "target": 19605,
"name": "BatchVariantImagesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -778421,7 +779345,7 @@
{
"title": "Methods",
"children": [
- 36916
+ 19627
]
}
],
@@ -778443,7 +779367,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36894,
+ "target": 19605,
"name": "BatchVariantImagesWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -778459,7 +779383,7 @@
}
},
{
- "id": 36921,
+ "id": 19632,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -778482,7 +779406,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36922,
+ "id": 19633,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -778496,7 +779420,7 @@
],
"signatures": [
{
- "id": 36923,
+ "id": 19634,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -778524,7 +779448,7 @@
],
"typeParameters": [
{
- "id": 36924,
+ "id": 19635,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -778535,7 +779459,7 @@
}
},
{
- "id": 36925,
+ "id": 19636,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -778548,7 +779472,7 @@
],
"parameters": [
{
- "id": 36926,
+ "id": 19637,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -778581,7 +779505,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -778592,13 +779516,13 @@
},
"trueType": {
"type": "reference",
- "target": 36890,
+ "target": 19601,
"name": "BatchVariantImagesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -778631,7 +779555,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -778642,13 +779566,13 @@
},
"trueType": {
"type": "reference",
- "target": 36894,
+ "target": 19605,
"name": "BatchVariantImagesWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -778668,7 +779592,7 @@
}
},
{
- "id": 36927,
+ "id": 19638,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -778691,7 +779615,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36928,
+ "id": 19639,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -778705,7 +779629,7 @@
],
"signatures": [
{
- "id": 36929,
+ "id": 19640,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -778727,7 +779651,7 @@
}
},
{
- "id": 36930,
+ "id": 19641,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -778750,7 +779674,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36931,
+ "id": 19642,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -778764,7 +779688,7 @@
],
"signatures": [
{
- "id": 36932,
+ "id": 19643,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -778778,7 +779702,7 @@
],
"parameters": [
{
- "id": 36933,
+ "id": 19644,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -778804,7 +779728,7 @@
}
},
{
- "id": 36934,
+ "id": 19645,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -778827,7 +779751,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36935,
+ "id": 19646,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -778838,7 +779762,7 @@
],
"documents": [
{
- "id": 43079,
+ "id": 26020,
"name": "addImagesToVariantStep",
"variant": "document",
"kind": 8388608,
@@ -778864,7 +779788,7 @@
"frontmatter": {}
},
{
- "id": 43080,
+ "id": 26021,
"name": "removeImagesFromVariantStep",
"variant": "document",
"kind": 8388608,
@@ -778890,7 +779814,7 @@
"frontmatter": {}
},
{
- "id": 43082,
+ "id": 26023,
"name": "when",
"variant": "document",
"kind": 8388608,
@@ -778925,7 +779849,7 @@
"frontmatter": {},
"children": [
{
- "id": 43083,
+ "id": 26024,
"name": "updateProductVariantsStep",
"variant": "document",
"kind": 8388608,
@@ -778954,21 +779878,21 @@
}
],
"childrenIncludingDocuments": [
- 36906,
- 36921,
- 36927,
- 36930,
- 36934
+ 19617,
+ 19632,
+ 19638,
+ 19641,
+ 19645
],
"groups": [
{
"title": "Properties",
"children": [
- 36906,
- 36921,
- 36927,
- 36930,
- 36934
+ 19617,
+ 19632,
+ 19638,
+ 19641,
+ 19645
]
}
],
@@ -778977,12 +779901,12 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L74"
}
],
"signatures": [
{
- "id": 36899,
+ "id": 19610,
"name": "batchVariantImagesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -779038,12 +779962,12 @@
"fileName": "core-flows/src/product/workflows/batch-variant-images.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L74"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-variant-images.ts#L74"
}
],
"typeParameters": [
{
- "id": 36900,
+ "id": 19611,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -779054,7 +779978,7 @@
}
},
{
- "id": 36901,
+ "id": 19612,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -779067,7 +779991,7 @@
],
"parameters": [
{
- "id": 36902,
+ "id": 19613,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -779091,14 +780015,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36903,
+ "id": 19614,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36904,
+ "id": 19615,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -779121,7 +780045,7 @@
}
},
{
- "id": 36905,
+ "id": 19616,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -779148,8 +780072,8 @@
{
"title": "Properties",
"children": [
- 36904,
- 36905
+ 19615,
+ 19616
]
}
],
@@ -779224,26 +780148,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 36890,
+ "target": 19601,
"name": "BatchVariantImagesWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 36894,
+ "target": 19605,
"name": "BatchVariantImagesWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -779258,7 +780182,7 @@
]
},
{
- "id": 36936,
+ "id": 19647,
"name": "batchLinkProductsToCollectionWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -779270,7 +780194,7 @@
"fileName": "core-flows/src/product/workflows/batch-link-products-collection.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-link-products-collection.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-link-products-collection.ts#L5"
}
],
"type": {
@@ -779280,7 +780204,7 @@
"defaultValue": "\"batch-link-products-to-collection\""
},
{
- "id": 36937,
+ "id": 19648,
"name": "batchLinkProductsToCollectionWorkflow",
"variant": "declaration",
"kind": 64,
@@ -779324,7 +780248,7 @@
},
"children": [
{
- "id": 36945,
+ "id": 19656,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -779347,7 +780271,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36946,
+ "id": 19657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -779361,7 +780285,7 @@
],
"signatures": [
{
- "id": 36947,
+ "id": 19658,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -779389,7 +780313,7 @@
],
"parameters": [
{
- "id": 36948,
+ "id": 19659,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -779405,14 +780329,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36949,
+ "id": 19660,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36950,
+ "id": 19661,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -779472,7 +780396,7 @@
{
"title": "Properties",
"children": [
- 36950
+ 19661
]
}
],
@@ -779508,14 +780432,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36951,
+ "id": 19662,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36952,
+ "id": 19663,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -779529,7 +780453,7 @@
],
"signatures": [
{
- "id": 36953,
+ "id": 19664,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -779543,7 +780467,7 @@
],
"parameters": [
{
- "id": 36954,
+ "id": 19665,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -779554,14 +780478,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36955,
+ "id": 19666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36956,
+ "id": 19667,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -779585,7 +780509,7 @@
{
"title": "Properties",
"children": [
- 36956
+ 19667
]
}
],
@@ -779662,7 +780586,7 @@
{
"title": "Methods",
"children": [
- 36952
+ 19663
]
}
],
@@ -779698,7 +780622,7 @@
}
},
{
- "id": 36957,
+ "id": 19668,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -779721,7 +780645,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36958,
+ "id": 19669,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -779735,7 +780659,7 @@
],
"signatures": [
{
- "id": 36959,
+ "id": 19670,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -779763,7 +780687,7 @@
],
"typeParameters": [
{
- "id": 36960,
+ "id": 19671,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -779774,7 +780698,7 @@
}
},
{
- "id": 36961,
+ "id": 19672,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -779787,7 +780711,7 @@
],
"parameters": [
{
- "id": 36962,
+ "id": 19673,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -779820,7 +780744,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -779840,7 +780764,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -779873,7 +780797,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -779888,7 +780812,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -779908,7 +780832,7 @@
}
},
{
- "id": 36963,
+ "id": 19674,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -779931,7 +780855,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36964,
+ "id": 19675,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -779945,7 +780869,7 @@
],
"signatures": [
{
- "id": 36965,
+ "id": 19676,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -779967,7 +780891,7 @@
}
},
{
- "id": 36966,
+ "id": 19677,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -779990,7 +780914,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36967,
+ "id": 19678,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -780004,7 +780928,7 @@
],
"signatures": [
{
- "id": 36968,
+ "id": 19679,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -780018,7 +780942,7 @@
],
"parameters": [
{
- "id": 36969,
+ "id": 19680,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -780044,7 +780968,7 @@
}
},
{
- "id": 36970,
+ "id": 19681,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -780067,7 +780991,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36971,
+ "id": 19682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -780078,7 +781002,7 @@
],
"documents": [
{
- "id": 43084,
+ "id": 26025,
"name": "batchLinkProductsToCollectionStep",
"variant": "document",
"kind": 8388608,
@@ -780105,21 +781029,21 @@
}
],
"childrenIncludingDocuments": [
- 36945,
- 36957,
- 36963,
- 36966,
- 36970
+ 19656,
+ 19668,
+ 19674,
+ 19677,
+ 19681
],
"groups": [
{
"title": "Properties",
"children": [
- 36945,
- 36957,
- 36963,
- 36966,
- 36970
+ 19656,
+ 19668,
+ 19674,
+ 19677,
+ 19681
]
}
],
@@ -780128,12 +781052,12 @@
"fileName": "core-flows/src/product/workflows/batch-link-products-collection.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-link-products-collection.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-link-products-collection.ts#L28"
}
],
"signatures": [
{
- "id": 36938,
+ "id": 19649,
"name": "batchLinkProductsToCollectionWorkflow",
"variant": "signature",
"kind": 4096,
@@ -780180,12 +781104,12 @@
"fileName": "core-flows/src/product/workflows/batch-link-products-collection.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-link-products-collection.ts#L28"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-link-products-collection.ts#L28"
}
],
"typeParameters": [
{
- "id": 36939,
+ "id": 19650,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -780196,7 +781120,7 @@
}
},
{
- "id": 36940,
+ "id": 19651,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -780209,7 +781133,7 @@
],
"parameters": [
{
- "id": 36941,
+ "id": 19652,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -780233,14 +781157,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36942,
+ "id": 19653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36943,
+ "id": 19654,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -780263,7 +781187,7 @@
}
},
{
- "id": 36944,
+ "id": 19655,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -780290,8 +781214,8 @@
{
"title": "Properties",
"children": [
- 36943,
- 36944
+ 19654,
+ 19655
]
}
],
@@ -780379,14 +781303,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -780401,7 +781325,7 @@
]
},
{
- "id": 36980,
+ "id": 19691,
"name": "batchProductVariantsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -780413,7 +781337,7 @@
"fileName": "core-flows/src/product/workflows/batch-product-variants.ts",
"line": 32,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-product-variants.ts#L32"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-product-variants.ts#L32"
}
],
"type": {
@@ -780423,7 +781347,7 @@
"defaultValue": "\"batch-product-variants\""
},
{
- "id": 36981,
+ "id": 19692,
"name": "batchProductVariantsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -780503,7 +781427,7 @@
},
"children": [
{
- "id": 36989,
+ "id": 19700,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -780526,7 +781450,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36990,
+ "id": 19701,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -780540,7 +781464,7 @@
],
"signatures": [
{
- "id": 36991,
+ "id": 19702,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -780568,7 +781492,7 @@
],
"parameters": [
{
- "id": 36992,
+ "id": 19703,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -780584,14 +781508,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 36993,
+ "id": 19704,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36994,
+ "id": 19705,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -780616,7 +781540,7 @@
"types": [
{
"type": "reference",
- "target": 36972,
+ "target": 19683,
"name": "BatchProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -780629,7 +781553,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36972,
+ "target": 19683,
"name": "BatchProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -780645,7 +781569,7 @@
{
"title": "Properties",
"children": [
- 36994
+ 19705
]
}
],
@@ -780666,14 +781590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36995,
+ "id": 19706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36996,
+ "id": 19707,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -780735,7 +781659,7 @@
}
},
{
- "id": 36997,
+ "id": 19708,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -780797,7 +781721,7 @@
}
},
{
- "id": 36998,
+ "id": 19709,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -780853,9 +781777,9 @@
{
"title": "Properties",
"children": [
- 36996,
- 36997,
- 36998
+ 19707,
+ 19708,
+ 19709
]
}
],
@@ -780870,7 +781794,7 @@
},
{
"type": "reference",
- "target": 36976,
+ "target": 19687,
"name": "BatchProductVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
},
@@ -780883,7 +781807,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36976,
+ "target": 19687,
"name": "BatchProductVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -780894,14 +781818,14 @@
{
"type": "reflection",
"declaration": {
- "id": 36999,
+ "id": 19710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37000,
+ "id": 19711,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -780915,7 +781839,7 @@
],
"signatures": [
{
- "id": 37001,
+ "id": 19712,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -780929,7 +781853,7 @@
],
"parameters": [
{
- "id": 37002,
+ "id": 19713,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -780940,14 +781864,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37003,
+ "id": 19714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37004,
+ "id": 19715,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -780971,7 +781895,7 @@
{
"title": "Properties",
"children": [
- 37004
+ 19715
]
}
],
@@ -781034,7 +781958,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36976,
+ "target": 19687,
"name": "BatchProductVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -781050,7 +781974,7 @@
{
"title": "Methods",
"children": [
- 37000
+ 19711
]
}
],
@@ -781072,7 +781996,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 36976,
+ "target": 19687,
"name": "BatchProductVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
}
@@ -781088,7 +782012,7 @@
}
},
{
- "id": 37005,
+ "id": 19716,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -781111,7 +782035,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37006,
+ "id": 19717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -781125,7 +782049,7 @@
],
"signatures": [
{
- "id": 37007,
+ "id": 19718,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -781153,7 +782077,7 @@
],
"typeParameters": [
{
- "id": 37008,
+ "id": 19719,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -781164,7 +782088,7 @@
}
},
{
- "id": 37009,
+ "id": 19720,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -781177,7 +782101,7 @@
],
"parameters": [
{
- "id": 37010,
+ "id": 19721,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -781210,7 +782134,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -781221,13 +782145,13 @@
},
"trueType": {
"type": "reference",
- "target": 36972,
+ "target": 19683,
"name": "BatchProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -781260,7 +782184,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -781271,13 +782195,13 @@
},
"trueType": {
"type": "reference",
- "target": 36976,
+ "target": 19687,
"name": "BatchProductVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -781297,7 +782221,7 @@
}
},
{
- "id": 37011,
+ "id": 19722,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -781320,7 +782244,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37012,
+ "id": 19723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -781334,7 +782258,7 @@
],
"signatures": [
{
- "id": 37013,
+ "id": 19724,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -781356,7 +782280,7 @@
}
},
{
- "id": 37014,
+ "id": 19725,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -781379,7 +782303,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37015,
+ "id": 19726,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -781393,7 +782317,7 @@
],
"signatures": [
{
- "id": 37016,
+ "id": 19727,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -781407,7 +782331,7 @@
],
"parameters": [
{
- "id": 37017,
+ "id": 19728,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -781433,7 +782357,7 @@
}
},
{
- "id": 37018,
+ "id": 19729,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -781456,7 +782380,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37019,
+ "id": 19730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -781467,7 +782391,7 @@
],
"documents": [
{
- "id": 43085,
+ "id": 26026,
"name": "createProductVariantsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -781493,7 +782417,7 @@
"frontmatter": {}
},
{
- "id": 43086,
+ "id": 26027,
"name": "updateProductVariantsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -781519,7 +782443,7 @@
"frontmatter": {}
},
{
- "id": 43087,
+ "id": 26028,
"name": "deleteProductVariantsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -781546,21 +782470,21 @@
}
],
"childrenIncludingDocuments": [
- 36989,
- 37005,
- 37011,
- 37014,
- 37018
+ 19700,
+ 19716,
+ 19722,
+ 19725,
+ 19729
],
"groups": [
{
"title": "Properties",
"children": [
- 36989,
- 37005,
- 37011,
- 37014,
- 37018
+ 19700,
+ 19716,
+ 19722,
+ 19725,
+ 19729
]
}
],
@@ -781569,12 +782493,12 @@
"fileName": "core-flows/src/product/workflows/batch-product-variants.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-product-variants.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-product-variants.ts#L73"
}
],
"signatures": [
{
- "id": 36982,
+ "id": 19693,
"name": "batchProductVariantsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -781657,12 +782581,12 @@
"fileName": "core-flows/src/product/workflows/batch-product-variants.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-product-variants.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-product-variants.ts#L73"
}
],
"typeParameters": [
{
- "id": 36983,
+ "id": 19694,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -781673,7 +782597,7 @@
}
},
{
- "id": 36984,
+ "id": 19695,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -781686,7 +782610,7 @@
],
"parameters": [
{
- "id": 36985,
+ "id": 19696,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -781710,14 +782634,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 36986,
+ "id": 19697,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 36987,
+ "id": 19698,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -781740,7 +782664,7 @@
}
},
{
- "id": 36988,
+ "id": 19699,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -781767,8 +782691,8 @@
{
"title": "Properties",
"children": [
- 36987,
- 36988
+ 19698,
+ 19699
]
}
],
@@ -781843,26 +782767,26 @@
"typeArguments": [
{
"type": "reference",
- "target": 36972,
+ "target": 19683,
"name": "BatchProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 36976,
+ "target": 19687,
"name": "BatchProductVariantsWorkflowOutput",
"package": "@medusajs/core-flows"
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -781877,7 +782801,7 @@
]
},
{
- "id": 37024,
+ "id": 19735,
"name": "batchProductsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -781889,7 +782813,7 @@
"fileName": "core-flows/src/product/workflows/batch-products.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-products.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-products.ts#L44"
}
],
"type": {
@@ -781899,7 +782823,7 @@
"defaultValue": "\"batch-products\""
},
{
- "id": 37025,
+ "id": 19736,
"name": "batchProductsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -781979,7 +782903,7 @@
},
"children": [
{
- "id": 37033,
+ "id": 19744,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -782002,7 +782926,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37034,
+ "id": 19745,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -782016,7 +782940,7 @@
],
"signatures": [
{
- "id": 37035,
+ "id": 19746,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -782044,7 +782968,7 @@
],
"parameters": [
{
- "id": 37036,
+ "id": 19747,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -782060,14 +782984,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37037,
+ "id": 19748,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37038,
+ "id": 19749,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -782092,7 +783016,7 @@
"types": [
{
"type": "reference",
- "target": 37020,
+ "target": 19731,
"name": "BatchProductWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -782105,7 +783029,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37020,
+ "target": 19731,
"name": "BatchProductWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -782121,7 +783045,7 @@
{
"title": "Properties",
"children": [
- 37038
+ 19749
]
}
],
@@ -782142,14 +783066,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37039,
+ "id": 19750,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37040,
+ "id": 19751,
"name": "created",
"variant": "declaration",
"kind": 1024,
@@ -782211,7 +783135,7 @@
}
},
{
- "id": 37041,
+ "id": 19752,
"name": "updated",
"variant": "declaration",
"kind": 1024,
@@ -782273,7 +783197,7 @@
}
},
{
- "id": 37042,
+ "id": 19753,
"name": "deleted",
"variant": "declaration",
"kind": 1024,
@@ -782329,9 +783253,9 @@
{
"title": "Properties",
"children": [
- 37040,
- 37041,
- 37042
+ 19751,
+ 19752,
+ 19753
]
}
],
@@ -782398,14 +783322,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37043,
+ "id": 19754,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37044,
+ "id": 19755,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -782419,7 +783343,7 @@
],
"signatures": [
{
- "id": 37045,
+ "id": 19756,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -782433,7 +783357,7 @@
],
"parameters": [
{
- "id": 37046,
+ "id": 19757,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -782444,14 +783368,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37047,
+ "id": 19758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37048,
+ "id": 19759,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -782475,7 +783399,7 @@
{
"title": "Properties",
"children": [
- 37048
+ 19759
]
}
],
@@ -782568,7 +783492,7 @@
{
"title": "Methods",
"children": [
- 37044
+ 19755
]
}
],
@@ -782620,7 +783544,7 @@
}
},
{
- "id": 37049,
+ "id": 19760,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -782643,7 +783567,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37050,
+ "id": 19761,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -782657,7 +783581,7 @@
],
"signatures": [
{
- "id": 37051,
+ "id": 19762,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -782685,7 +783609,7 @@
],
"typeParameters": [
{
- "id": 37052,
+ "id": 19763,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -782696,7 +783620,7 @@
}
},
{
- "id": 37053,
+ "id": 19764,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -782709,7 +783633,7 @@
],
"parameters": [
{
- "id": 37054,
+ "id": 19765,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -782742,7 +783666,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -782753,13 +783677,13 @@
},
"trueType": {
"type": "reference",
- "target": 37020,
+ "target": 19731,
"name": "BatchProductWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -782792,7 +783716,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -782823,7 +783747,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -782843,7 +783767,7 @@
}
},
{
- "id": 37055,
+ "id": 19766,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -782866,7 +783790,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37056,
+ "id": 19767,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -782880,7 +783804,7 @@
],
"signatures": [
{
- "id": 37057,
+ "id": 19768,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -782902,7 +783826,7 @@
}
},
{
- "id": 37058,
+ "id": 19769,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -782925,7 +783849,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37059,
+ "id": 19770,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -782939,7 +783863,7 @@
],
"signatures": [
{
- "id": 37060,
+ "id": 19771,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -782953,7 +783877,7 @@
],
"parameters": [
{
- "id": 37061,
+ "id": 19772,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -782979,7 +783903,7 @@
}
},
{
- "id": 37062,
+ "id": 19773,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -783002,7 +783926,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37063,
+ "id": 19774,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -783015,11 +783939,11 @@
{
"title": "Properties",
"children": [
- 37033,
- 37049,
- 37055,
- 37058,
- 37062
+ 19744,
+ 19760,
+ 19766,
+ 19769,
+ 19773
]
}
],
@@ -783028,12 +783952,12 @@
"fileName": "core-flows/src/product/workflows/batch-products.ts",
"line": 95,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-products.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-products.ts#L95"
}
],
"signatures": [
{
- "id": 37026,
+ "id": 19737,
"name": "batchProductsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -783116,12 +784040,12 @@
"fileName": "core-flows/src/product/workflows/batch-products.ts",
"line": 95,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-products.ts#L95"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-products.ts#L95"
}
],
"typeParameters": [
{
- "id": 37027,
+ "id": 19738,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -783132,7 +784056,7 @@
}
},
{
- "id": 37028,
+ "id": 19739,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -783145,7 +784069,7 @@
],
"parameters": [
{
- "id": 37029,
+ "id": 19740,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -783169,14 +784093,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37030,
+ "id": 19741,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37031,
+ "id": 19742,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -783199,7 +784123,7 @@
}
},
{
- "id": 37032,
+ "id": 19743,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -783226,8 +784150,8 @@
{
"title": "Properties",
"children": [
- 37031,
- 37032
+ 19742,
+ 19743
]
}
],
@@ -783302,7 +784226,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37020,
+ "target": 19731,
"name": "BatchProductWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -783328,14 +784252,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -783350,7 +784274,7 @@
]
},
{
- "id": 37064,
+ "id": 19775,
"name": "batchLinkProductsToCategoryWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -783362,7 +784286,7 @@
"fileName": "core-flows/src/product/workflows/batch-products-in-category.ts",
"line": 5,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-products-in-category.ts#L5"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-products-in-category.ts#L5"
}
],
"type": {
@@ -783372,7 +784296,7 @@
"defaultValue": "\"batch-link-products-to-category\""
},
{
- "id": 37065,
+ "id": 19776,
"name": "batchLinkProductsToCategoryWorkflow",
"variant": "declaration",
"kind": 64,
@@ -783416,7 +784340,7 @@
},
"children": [
{
- "id": 37073,
+ "id": 19784,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -783439,7 +784363,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37074,
+ "id": 19785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -783453,7 +784377,7 @@
],
"signatures": [
{
- "id": 37075,
+ "id": 19786,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -783481,7 +784405,7 @@
],
"parameters": [
{
- "id": 37076,
+ "id": 19787,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -783497,14 +784421,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37077,
+ "id": 19788,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37078,
+ "id": 19789,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -783564,7 +784488,7 @@
{
"title": "Properties",
"children": [
- 37078
+ 19789
]
}
],
@@ -783600,14 +784524,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37079,
+ "id": 19790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37080,
+ "id": 19791,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -783621,7 +784545,7 @@
],
"signatures": [
{
- "id": 37081,
+ "id": 19792,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -783635,7 +784559,7 @@
],
"parameters": [
{
- "id": 37082,
+ "id": 19793,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -783646,14 +784570,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37083,
+ "id": 19794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37084,
+ "id": 19795,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -783677,7 +784601,7 @@
{
"title": "Properties",
"children": [
- 37084
+ 19795
]
}
],
@@ -783754,7 +784678,7 @@
{
"title": "Methods",
"children": [
- 37080
+ 19791
]
}
],
@@ -783790,7 +784714,7 @@
}
},
{
- "id": 37085,
+ "id": 19796,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -783813,7 +784737,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37086,
+ "id": 19797,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -783827,7 +784751,7 @@
],
"signatures": [
{
- "id": 37087,
+ "id": 19798,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -783855,7 +784779,7 @@
],
"typeParameters": [
{
- "id": 37088,
+ "id": 19799,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -783866,7 +784790,7 @@
}
},
{
- "id": 37089,
+ "id": 19800,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -783879,7 +784803,7 @@
],
"parameters": [
{
- "id": 37090,
+ "id": 19801,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -783912,7 +784836,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -783932,7 +784856,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -783965,7 +784889,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -783980,7 +784904,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -784000,7 +784924,7 @@
}
},
{
- "id": 37091,
+ "id": 19802,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -784023,7 +784947,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37092,
+ "id": 19803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -784037,7 +784961,7 @@
],
"signatures": [
{
- "id": 37093,
+ "id": 19804,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -784059,7 +784983,7 @@
}
},
{
- "id": 37094,
+ "id": 19805,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -784082,7 +785006,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37095,
+ "id": 19806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -784096,7 +785020,7 @@
],
"signatures": [
{
- "id": 37096,
+ "id": 19807,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -784110,7 +785034,7 @@
],
"parameters": [
{
- "id": 37097,
+ "id": 19808,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -784136,7 +785060,7 @@
}
},
{
- "id": 37098,
+ "id": 19809,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -784159,7 +785083,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37099,
+ "id": 19810,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -784170,7 +785094,7 @@
],
"documents": [
{
- "id": 43088,
+ "id": 26029,
"name": "batchLinkProductsToCategoryStep",
"variant": "document",
"kind": 8388608,
@@ -784197,21 +785121,21 @@
}
],
"childrenIncludingDocuments": [
- 37073,
- 37085,
- 37091,
- 37094,
- 37098
+ 19784,
+ 19796,
+ 19802,
+ 19805,
+ 19809
],
"groups": [
{
"title": "Properties",
"children": [
- 37073,
- 37085,
- 37091,
- 37094,
- 37098
+ 19784,
+ 19796,
+ 19802,
+ 19805,
+ 19809
]
}
],
@@ -784220,12 +785144,12 @@
"fileName": "core-flows/src/product/workflows/batch-products-in-category.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-products-in-category.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-products-in-category.ts#L27"
}
],
"signatures": [
{
- "id": 37066,
+ "id": 19777,
"name": "batchLinkProductsToCategoryWorkflow",
"variant": "signature",
"kind": 4096,
@@ -784272,12 +785196,12 @@
"fileName": "core-flows/src/product/workflows/batch-products-in-category.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/batch-products-in-category.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/batch-products-in-category.ts#L27"
}
],
"typeParameters": [
{
- "id": 37067,
+ "id": 19778,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -784288,7 +785212,7 @@
}
},
{
- "id": 37068,
+ "id": 19779,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -784301,7 +785225,7 @@
],
"parameters": [
{
- "id": 37069,
+ "id": 19780,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -784325,14 +785249,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37070,
+ "id": 19781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37071,
+ "id": 19782,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -784355,7 +785279,7 @@
}
},
{
- "id": 37072,
+ "id": 19783,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -784382,8 +785306,8 @@
{
"title": "Properties",
"children": [
- 37071,
- 37072
+ 19782,
+ 19783
]
}
],
@@ -784471,14 +785395,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -784493,7 +785417,7 @@
]
},
{
- "id": 37102,
+ "id": 19813,
"name": "collections",
"variant": "declaration",
"kind": 1024,
@@ -784511,7 +785435,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L20"
}
],
"type": {
@@ -784529,7 +785453,7 @@
}
},
{
- "id": 37103,
+ "id": 19814,
"name": "createCollectionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -784541,7 +785465,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L23"
}
],
"type": {
@@ -784551,7 +785475,7 @@
"defaultValue": "\"create-collections\""
},
{
- "id": 37104,
+ "id": 19815,
"name": "createCollectionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -784612,7 +785536,7 @@
},
"children": [
{
- "id": 37112,
+ "id": 19823,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -784635,7 +785559,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37113,
+ "id": 19824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -784649,7 +785573,7 @@
],
"signatures": [
{
- "id": 37114,
+ "id": 19825,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -784677,7 +785601,7 @@
],
"parameters": [
{
- "id": 37115,
+ "id": 19826,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -784693,14 +785617,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37116,
+ "id": 19827,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37117,
+ "id": 19828,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -784725,7 +785649,7 @@
"types": [
{
"type": "reference",
- "target": 37100,
+ "target": 19811,
"name": "CreateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -784738,7 +785662,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37100,
+ "target": 19811,
"name": "CreateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -784754,7 +785678,7 @@
{
"title": "Properties",
"children": [
- 37117
+ 19828
]
}
],
@@ -784847,14 +785771,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37118,
+ "id": 19829,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37119,
+ "id": 19830,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -784868,7 +785792,7 @@
],
"signatures": [
{
- "id": 37120,
+ "id": 19831,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -784882,7 +785806,7 @@
],
"parameters": [
{
- "id": 37121,
+ "id": 19832,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -784893,14 +785817,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37122,
+ "id": 19833,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37123,
+ "id": 19834,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -784924,7 +785848,7 @@
{
"title": "Properties",
"children": [
- 37123
+ 19834
]
}
],
@@ -785009,7 +785933,7 @@
{
"title": "Methods",
"children": [
- 37119
+ 19830
]
}
],
@@ -785053,7 +785977,7 @@
}
},
{
- "id": 37124,
+ "id": 19835,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -785076,7 +786000,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37125,
+ "id": 19836,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -785090,7 +786014,7 @@
],
"signatures": [
{
- "id": 37126,
+ "id": 19837,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -785118,7 +786042,7 @@
],
"typeParameters": [
{
- "id": 37127,
+ "id": 19838,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -785129,7 +786053,7 @@
}
},
{
- "id": 37128,
+ "id": 19839,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -785142,7 +786066,7 @@
],
"parameters": [
{
- "id": 37129,
+ "id": 19840,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -785175,7 +786099,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -785186,13 +786110,13 @@
},
"trueType": {
"type": "reference",
- "target": 37100,
+ "target": 19811,
"name": "CreateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -785225,7 +786149,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -785248,7 +786172,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -785268,7 +786192,7 @@
}
},
{
- "id": 37130,
+ "id": 19841,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -785291,7 +786215,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37131,
+ "id": 19842,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -785305,7 +786229,7 @@
],
"signatures": [
{
- "id": 37132,
+ "id": 19843,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -785327,7 +786251,7 @@
}
},
{
- "id": 37133,
+ "id": 19844,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -785350,7 +786274,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37134,
+ "id": 19845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -785364,7 +786288,7 @@
],
"signatures": [
{
- "id": 37135,
+ "id": 19846,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -785378,7 +786302,7 @@
],
"parameters": [
{
- "id": 37136,
+ "id": 19847,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -785404,7 +786328,7 @@
}
},
{
- "id": 37137,
+ "id": 19848,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -785427,14 +786351,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37138,
+ "id": 19849,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37139,
+ "id": 19850,
"name": "collectionsCreated",
"variant": "declaration",
"kind": 1024,
@@ -785442,7 +786366,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37140,
+ "id": 19851,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -785456,7 +786380,7 @@
],
"signatures": [
{
- "id": 37141,
+ "id": 19852,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -785470,7 +786394,7 @@
],
"typeParameters": [
{
- "id": 37142,
+ "id": 19853,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -785479,7 +786403,7 @@
],
"parameters": [
{
- "id": 37143,
+ "id": 19854,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -785494,14 +786418,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37144,
+ "id": 19855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37145,
+ "id": 19856,
"name": "collections",
"variant": "declaration",
"kind": 1024,
@@ -785511,7 +786435,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 71,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L71"
}
],
"type": {
@@ -785592,14 +786516,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37146,
+ "id": 19857,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37147,
+ "id": 19858,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -785613,7 +786537,7 @@
],
"signatures": [
{
- "id": 37148,
+ "id": 19859,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -785627,7 +786551,7 @@
],
"parameters": [
{
- "id": 37149,
+ "id": 19860,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -785638,14 +786562,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37150,
+ "id": 19861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37151,
+ "id": 19862,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -785669,7 +786593,7 @@
{
"title": "Properties",
"children": [
- 37151
+ 19862
]
}
],
@@ -785754,7 +786678,7 @@
{
"title": "Methods",
"children": [
- 37147
+ 19858
]
}
],
@@ -785794,7 +786718,7 @@
}
},
{
- "id": 37152,
+ "id": 19863,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -785812,7 +786736,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 72,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L72"
}
],
"type": {
@@ -785835,8 +786759,8 @@
{
"title": "Properties",
"children": [
- 37145,
- 37152
+ 19856,
+ 19863
]
}
],
@@ -785845,7 +786769,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 70,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L70"
}
]
}
@@ -785856,7 +786780,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -785867,7 +786791,7 @@
}
},
{
- "id": 37153,
+ "id": 19864,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -785883,7 +786807,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -785904,7 +786828,7 @@
}
},
{
- "id": 43091,
+ "id": 26032,
"name": "collectionsCreated",
"variant": "declaration",
"kind": 64,
@@ -785939,14 +786863,14 @@
},
"signatures": [
{
- "id": 43092,
+ "id": 26033,
"name": "collectionsCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43093,
+ "id": 26034,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -785961,7 +786885,7 @@
},
"type": {
"type": "reference",
- "target": 37144,
+ "target": 19855,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -785975,13 +786899,13 @@
{
"title": "Properties",
"children": [
- 37139
+ 19850
]
},
{
"title": "Functions",
"children": [
- 43091
+ 26032
]
}
],
@@ -785998,7 +786922,7 @@
],
"documents": [
{
- "id": 43089,
+ "id": 26030,
"name": "createCollectionsStep",
"variant": "document",
"kind": 8388608,
@@ -786024,7 +786948,7 @@
"frontmatter": {}
},
{
- "id": 43090,
+ "id": 26031,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -786050,7 +786974,7 @@
"frontmatter": {}
},
{
- "id": 43094,
+ "id": 26035,
"name": "collectionsCreated",
"variant": "document",
"kind": 8388608,
@@ -786077,21 +787001,21 @@
}
],
"childrenIncludingDocuments": [
- 37112,
- 37124,
- 37130,
- 37133,
- 37137
+ 19823,
+ 19835,
+ 19841,
+ 19844,
+ 19848
],
"groups": [
{
"title": "Properties",
"children": [
- 37112,
- 37124,
- 37130,
- 37133,
- 37137
+ 19823,
+ 19835,
+ 19841,
+ 19844,
+ 19848
]
}
],
@@ -786100,12 +787024,12 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L54"
}
],
"signatures": [
{
- "id": 37105,
+ "id": 19816,
"name": "createCollectionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -786169,12 +787093,12 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L54"
}
],
"typeParameters": [
{
- "id": 37106,
+ "id": 19817,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -786185,7 +787109,7 @@
}
},
{
- "id": 37107,
+ "id": 19818,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -786198,7 +787122,7 @@
],
"parameters": [
{
- "id": 37108,
+ "id": 19819,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -786222,14 +787146,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37109,
+ "id": 19820,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37110,
+ "id": 19821,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -786252,7 +787176,7 @@
}
},
{
- "id": 37111,
+ "id": 19822,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -786279,8 +787203,8 @@
{
"title": "Properties",
"children": [
- 37110,
- 37111
+ 19821,
+ 19822
]
}
],
@@ -786355,7 +787279,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37100,
+ "target": 19811,
"name": "CreateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -786373,14 +787297,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -786395,14 +787319,14 @@
]
},
{
- "id": 37144,
+ "id": 19855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37145,
+ "id": 19856,
"name": "collections",
"variant": "declaration",
"kind": 1024,
@@ -786412,7 +787336,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 71,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L71"
}
],
"type": {
@@ -786493,14 +787417,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37146,
+ "id": 19857,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37147,
+ "id": 19858,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -786514,7 +787438,7 @@
],
"signatures": [
{
- "id": 37148,
+ "id": 19859,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -786528,7 +787452,7 @@
],
"parameters": [
{
- "id": 37149,
+ "id": 19860,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -786539,14 +787463,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37150,
+ "id": 19861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37151,
+ "id": 19862,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -786570,7 +787494,7 @@
{
"title": "Properties",
"children": [
- 37151
+ 19862
]
}
],
@@ -786655,7 +787579,7 @@
{
"title": "Methods",
"children": [
- 37147
+ 19858
]
}
],
@@ -786695,7 +787619,7 @@
}
},
{
- "id": 37152,
+ "id": 19863,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -786713,7 +787637,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 72,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L72"
}
],
"type": {
@@ -786736,8 +787660,8 @@
{
"title": "Properties",
"children": [
- 37145,
- 37152
+ 19856,
+ 19863
]
}
],
@@ -786746,12 +787670,12 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 70,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L70"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L70"
}
]
},
{
- "id": 37145,
+ "id": 19856,
"name": "collections",
"variant": "declaration",
"kind": 1024,
@@ -786761,7 +787685,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 71,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L71"
}
],
"type": {
@@ -786842,14 +787766,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37146,
+ "id": 19857,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37147,
+ "id": 19858,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -786863,7 +787787,7 @@
],
"signatures": [
{
- "id": 37148,
+ "id": 19859,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -786877,7 +787801,7 @@
],
"parameters": [
{
- "id": 37149,
+ "id": 19860,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -786888,14 +787812,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37150,
+ "id": 19861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37151,
+ "id": 19862,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -786919,7 +787843,7 @@
{
"title": "Properties",
"children": [
- 37151
+ 19862
]
}
],
@@ -787004,7 +787928,7 @@
{
"title": "Methods",
"children": [
- 37147
+ 19858
]
}
],
@@ -787044,7 +787968,7 @@
}
},
{
- "id": 37152,
+ "id": 19863,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -787062,7 +787986,7 @@
"fileName": "core-flows/src/product/workflows/create-collections.ts",
"line": 72,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-collections.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-collections.ts#L72"
}
],
"type": {
@@ -787081,7 +788005,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37156,
+ "id": 19867,
"name": "product_options",
"variant": "declaration",
"kind": 1024,
@@ -787099,7 +788023,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L20"
}
],
"type": {
@@ -787117,7 +788041,7 @@
}
},
{
- "id": 37157,
+ "id": 19868,
"name": "createProductOptionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -787129,7 +788053,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L23"
}
],
"type": {
@@ -787139,7 +788063,7 @@
"defaultValue": "\"create-product-options\""
},
{
- "id": 37158,
+ "id": 19869,
"name": "createProductOptionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -787200,7 +788124,7 @@
},
"children": [
{
- "id": 37166,
+ "id": 19877,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -787223,7 +788147,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37167,
+ "id": 19878,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -787237,7 +788161,7 @@
],
"signatures": [
{
- "id": 37168,
+ "id": 19879,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -787265,7 +788189,7 @@
],
"parameters": [
{
- "id": 37169,
+ "id": 19880,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -787281,14 +788205,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37170,
+ "id": 19881,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37171,
+ "id": 19882,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -787313,7 +788237,7 @@
"types": [
{
"type": "reference",
- "target": 37154,
+ "target": 19865,
"name": "CreateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -787326,7 +788250,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37154,
+ "target": 19865,
"name": "CreateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -787342,7 +788266,7 @@
{
"title": "Properties",
"children": [
- 37171
+ 19882
]
}
],
@@ -787435,14 +788359,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37172,
+ "id": 19883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37173,
+ "id": 19884,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -787456,7 +788380,7 @@
],
"signatures": [
{
- "id": 37174,
+ "id": 19885,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -787470,7 +788394,7 @@
],
"parameters": [
{
- "id": 37175,
+ "id": 19886,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -787481,14 +788405,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37176,
+ "id": 19887,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37177,
+ "id": 19888,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -787512,7 +788436,7 @@
{
"title": "Properties",
"children": [
- 37177
+ 19888
]
}
],
@@ -787597,7 +788521,7 @@
{
"title": "Methods",
"children": [
- 37173
+ 19884
]
}
],
@@ -787641,7 +788565,7 @@
}
},
{
- "id": 37178,
+ "id": 19889,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -787664,7 +788588,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37179,
+ "id": 19890,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -787678,7 +788602,7 @@
],
"signatures": [
{
- "id": 37180,
+ "id": 19891,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -787706,7 +788630,7 @@
],
"typeParameters": [
{
- "id": 37181,
+ "id": 19892,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -787717,7 +788641,7 @@
}
},
{
- "id": 37182,
+ "id": 19893,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -787730,7 +788654,7 @@
],
"parameters": [
{
- "id": 37183,
+ "id": 19894,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -787763,7 +788687,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -787774,13 +788698,13 @@
},
"trueType": {
"type": "reference",
- "target": 37154,
+ "target": 19865,
"name": "CreateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -787813,7 +788737,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -787836,7 +788760,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -787856,7 +788780,7 @@
}
},
{
- "id": 37184,
+ "id": 19895,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -787879,7 +788803,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37185,
+ "id": 19896,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -787893,7 +788817,7 @@
],
"signatures": [
{
- "id": 37186,
+ "id": 19897,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -787915,7 +788839,7 @@
}
},
{
- "id": 37187,
+ "id": 19898,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -787938,7 +788862,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37188,
+ "id": 19899,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -787952,7 +788876,7 @@
],
"signatures": [
{
- "id": 37189,
+ "id": 19900,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -787966,7 +788890,7 @@
],
"parameters": [
{
- "id": 37190,
+ "id": 19901,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -787992,7 +788916,7 @@
}
},
{
- "id": 37191,
+ "id": 19902,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -788015,14 +788939,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37192,
+ "id": 19903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37193,
+ "id": 19904,
"name": "productOptionsCreated",
"variant": "declaration",
"kind": 1024,
@@ -788030,7 +788954,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37194,
+ "id": 19905,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -788044,7 +788968,7 @@
],
"signatures": [
{
- "id": 37195,
+ "id": 19906,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -788058,7 +788982,7 @@
],
"typeParameters": [
{
- "id": 37196,
+ "id": 19907,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -788067,7 +788991,7 @@
],
"parameters": [
{
- "id": 37197,
+ "id": 19908,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -788082,14 +789006,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37198,
+ "id": 19909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37199,
+ "id": 19910,
"name": "product_options",
"variant": "declaration",
"kind": 1024,
@@ -788099,7 +789023,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L63"
}
],
"type": {
@@ -788180,14 +789104,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37200,
+ "id": 19911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37201,
+ "id": 19912,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -788201,7 +789125,7 @@
],
"signatures": [
{
- "id": 37202,
+ "id": 19913,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -788215,7 +789139,7 @@
],
"parameters": [
{
- "id": 37203,
+ "id": 19914,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -788226,14 +789150,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37204,
+ "id": 19915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37205,
+ "id": 19916,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -788257,7 +789181,7 @@
{
"title": "Properties",
"children": [
- 37205
+ 19916
]
}
],
@@ -788342,7 +789266,7 @@
{
"title": "Methods",
"children": [
- 37201
+ 19912
]
}
],
@@ -788383,7 +789307,7 @@
"defaultValue": "productOptions"
},
{
- "id": 37206,
+ "id": 19917,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -788401,7 +789325,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L64"
}
],
"type": {
@@ -788424,8 +789348,8 @@
{
"title": "Properties",
"children": [
- 37199,
- 37206
+ 19910,
+ 19917
]
}
],
@@ -788434,7 +789358,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 62,
"character": 70,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L62"
}
]
}
@@ -788445,7 +789369,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -788456,7 +789380,7 @@
}
},
{
- "id": 37207,
+ "id": 19918,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -788472,7 +789396,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -788493,7 +789417,7 @@
}
},
{
- "id": 43096,
+ "id": 26037,
"name": "productOptionsCreated",
"variant": "declaration",
"kind": 64,
@@ -788528,14 +789452,14 @@
},
"signatures": [
{
- "id": 43097,
+ "id": 26038,
"name": "productOptionsCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43098,
+ "id": 26039,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -788550,7 +789474,7 @@
},
"type": {
"type": "reference",
- "target": 37198,
+ "target": 19909,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -788564,13 +789488,13 @@
{
"title": "Properties",
"children": [
- 37193
+ 19904
]
},
{
"title": "Functions",
"children": [
- 43096
+ 26037
]
}
],
@@ -788587,7 +789511,7 @@
],
"documents": [
{
- "id": 43095,
+ "id": 26036,
"name": "createProductOptionsStep",
"variant": "document",
"kind": 8388608,
@@ -788613,7 +789537,7 @@
"frontmatter": {}
},
{
- "id": 43099,
+ "id": 26040,
"name": "productOptionsCreated",
"variant": "document",
"kind": 8388608,
@@ -788639,7 +789563,7 @@
"frontmatter": {}
},
{
- "id": 43100,
+ "id": 26041,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -788666,21 +789590,21 @@
}
],
"childrenIncludingDocuments": [
- 37166,
- 37178,
- 37184,
- 37187,
- 37191
+ 19877,
+ 19889,
+ 19895,
+ 19898,
+ 19902
],
"groups": [
{
"title": "Properties",
"children": [
- 37166,
- 37178,
- 37184,
- 37187,
- 37191
+ 19877,
+ 19889,
+ 19895,
+ 19898,
+ 19902
]
}
],
@@ -788689,12 +789613,12 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L58"
}
],
"signatures": [
{
- "id": 37159,
+ "id": 19870,
"name": "createProductOptionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -788758,12 +789682,12 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L58"
}
],
"typeParameters": [
{
- "id": 37160,
+ "id": 19871,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -788774,7 +789698,7 @@
}
},
{
- "id": 37161,
+ "id": 19872,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -788787,7 +789711,7 @@
],
"parameters": [
{
- "id": 37162,
+ "id": 19873,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -788811,14 +789735,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37163,
+ "id": 19874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37164,
+ "id": 19875,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -788841,7 +789765,7 @@
}
},
{
- "id": 37165,
+ "id": 19876,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -788868,8 +789792,8 @@
{
"title": "Properties",
"children": [
- 37164,
- 37165
+ 19875,
+ 19876
]
}
],
@@ -788944,7 +789868,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37154,
+ "target": 19865,
"name": "CreateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -788962,14 +789886,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -788984,14 +789908,14 @@
]
},
{
- "id": 37198,
+ "id": 19909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37199,
+ "id": 19910,
"name": "product_options",
"variant": "declaration",
"kind": 1024,
@@ -789001,7 +789925,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L63"
}
],
"type": {
@@ -789082,14 +790006,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37200,
+ "id": 19911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37201,
+ "id": 19912,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -789103,7 +790027,7 @@
],
"signatures": [
{
- "id": 37202,
+ "id": 19913,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -789117,7 +790041,7 @@
],
"parameters": [
{
- "id": 37203,
+ "id": 19914,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -789128,14 +790052,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37204,
+ "id": 19915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37205,
+ "id": 19916,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -789159,7 +790083,7 @@
{
"title": "Properties",
"children": [
- 37205
+ 19916
]
}
],
@@ -789244,7 +790168,7 @@
{
"title": "Methods",
"children": [
- 37201
+ 19912
]
}
],
@@ -789285,7 +790209,7 @@
"defaultValue": "productOptions"
},
{
- "id": 37206,
+ "id": 19917,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -789303,7 +790227,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L64"
}
],
"type": {
@@ -789326,8 +790250,8 @@
{
"title": "Properties",
"children": [
- 37199,
- 37206
+ 19910,
+ 19917
]
}
],
@@ -789336,12 +790260,12 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 62,
"character": 70,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L62"
}
]
},
{
- "id": 37199,
+ "id": 19910,
"name": "product_options",
"variant": "declaration",
"kind": 1024,
@@ -789351,7 +790275,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L63"
}
],
"type": {
@@ -789432,14 +790356,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37200,
+ "id": 19911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37201,
+ "id": 19912,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -789453,7 +790377,7 @@
],
"signatures": [
{
- "id": 37202,
+ "id": 19913,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -789467,7 +790391,7 @@
],
"parameters": [
{
- "id": 37203,
+ "id": 19914,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -789478,14 +790402,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37204,
+ "id": 19915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37205,
+ "id": 19916,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -789509,7 +790433,7 @@
{
"title": "Properties",
"children": [
- 37205
+ 19916
]
}
],
@@ -789594,7 +790518,7 @@
{
"title": "Methods",
"children": [
- 37201
+ 19912
]
}
],
@@ -789635,7 +790559,7 @@
"defaultValue": "productOptions"
},
{
- "id": 37206,
+ "id": 19917,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -789653,7 +790577,7 @@
"fileName": "core-flows/src/product/workflows/create-product-options.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-options.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-options.ts#L64"
}
],
"type": {
@@ -789672,7 +790596,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37210,
+ "id": 19921,
"name": "product_types",
"variant": "declaration",
"kind": 1024,
@@ -789690,7 +790614,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L20"
}
],
"type": {
@@ -789708,7 +790632,7 @@
}
},
{
- "id": 37211,
+ "id": 19922,
"name": "createProductTypesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -789720,7 +790644,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L23"
}
],
"type": {
@@ -789730,7 +790654,7 @@
"defaultValue": "\"create-product-types\""
},
{
- "id": 37212,
+ "id": 19923,
"name": "createProductTypesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -789791,7 +790715,7 @@
},
"children": [
{
- "id": 37220,
+ "id": 19931,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -789814,7 +790738,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37221,
+ "id": 19932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -789828,7 +790752,7 @@
],
"signatures": [
{
- "id": 37222,
+ "id": 19933,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -789856,7 +790780,7 @@
],
"parameters": [
{
- "id": 37223,
+ "id": 19934,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -789872,14 +790796,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37224,
+ "id": 19935,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37225,
+ "id": 19936,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -789904,7 +790828,7 @@
"types": [
{
"type": "reference",
- "target": 37208,
+ "target": 19919,
"name": "CreateProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -789917,7 +790841,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37208,
+ "target": 19919,
"name": "CreateProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -789933,7 +790857,7 @@
{
"title": "Properties",
"children": [
- 37225
+ 19936
]
}
],
@@ -790026,14 +790950,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37226,
+ "id": 19937,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37227,
+ "id": 19938,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -790047,7 +790971,7 @@
],
"signatures": [
{
- "id": 37228,
+ "id": 19939,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -790061,7 +790985,7 @@
],
"parameters": [
{
- "id": 37229,
+ "id": 19940,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -790072,14 +790996,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37230,
+ "id": 19941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37231,
+ "id": 19942,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -790103,7 +791027,7 @@
{
"title": "Properties",
"children": [
- 37231
+ 19942
]
}
],
@@ -790188,7 +791112,7 @@
{
"title": "Methods",
"children": [
- 37227
+ 19938
]
}
],
@@ -790232,7 +791156,7 @@
}
},
{
- "id": 37232,
+ "id": 19943,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -790255,7 +791179,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37233,
+ "id": 19944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -790269,7 +791193,7 @@
],
"signatures": [
{
- "id": 37234,
+ "id": 19945,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -790297,7 +791221,7 @@
],
"typeParameters": [
{
- "id": 37235,
+ "id": 19946,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -790308,7 +791232,7 @@
}
},
{
- "id": 37236,
+ "id": 19947,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -790321,7 +791245,7 @@
],
"parameters": [
{
- "id": 37237,
+ "id": 19948,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -790354,7 +791278,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -790365,13 +791289,13 @@
},
"trueType": {
"type": "reference",
- "target": 37208,
+ "target": 19919,
"name": "CreateProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -790404,7 +791328,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -790427,7 +791351,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -790447,7 +791371,7 @@
}
},
{
- "id": 37238,
+ "id": 19949,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -790470,7 +791394,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37239,
+ "id": 19950,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -790484,7 +791408,7 @@
],
"signatures": [
{
- "id": 37240,
+ "id": 19951,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -790506,7 +791430,7 @@
}
},
{
- "id": 37241,
+ "id": 19952,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -790529,7 +791453,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37242,
+ "id": 19953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -790543,7 +791467,7 @@
],
"signatures": [
{
- "id": 37243,
+ "id": 19954,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -790557,7 +791481,7 @@
],
"parameters": [
{
- "id": 37244,
+ "id": 19955,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -790583,7 +791507,7 @@
}
},
{
- "id": 37245,
+ "id": 19956,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -790606,14 +791530,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37246,
+ "id": 19957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37247,
+ "id": 19958,
"name": "productTypesCreated",
"variant": "declaration",
"kind": 1024,
@@ -790621,7 +791545,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37248,
+ "id": 19959,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -790635,7 +791559,7 @@
],
"signatures": [
{
- "id": 37249,
+ "id": 19960,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -790649,7 +791573,7 @@
],
"typeParameters": [
{
- "id": 37250,
+ "id": 19961,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -790658,7 +791582,7 @@
],
"parameters": [
{
- "id": 37251,
+ "id": 19962,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -790673,14 +791597,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37252,
+ "id": 19963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37253,
+ "id": 19964,
"name": "product_types",
"variant": "declaration",
"kind": 1024,
@@ -790690,7 +791614,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L59"
}
],
"type": {
@@ -790771,14 +791695,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37254,
+ "id": 19965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37255,
+ "id": 19966,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -790792,7 +791716,7 @@
],
"signatures": [
{
- "id": 37256,
+ "id": 19967,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -790806,7 +791730,7 @@
],
"parameters": [
{
- "id": 37257,
+ "id": 19968,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -790817,14 +791741,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37258,
+ "id": 19969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37259,
+ "id": 19970,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -790848,7 +791772,7 @@
{
"title": "Properties",
"children": [
- 37259
+ 19970
]
}
],
@@ -790933,7 +791857,7 @@
{
"title": "Methods",
"children": [
- 37255
+ 19966
]
}
],
@@ -790974,7 +791898,7 @@
"defaultValue": "productTypes"
},
{
- "id": 37260,
+ "id": 19971,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -790992,7 +791916,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 60,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L60"
}
],
"type": {
@@ -791015,8 +791939,8 @@
{
"title": "Properties",
"children": [
- 37253,
- 37260
+ 19964,
+ 19971
]
}
],
@@ -791025,7 +791949,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 58,
"character": 66,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L58"
}
]
}
@@ -791036,7 +791960,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -791047,7 +791971,7 @@
}
},
{
- "id": 37261,
+ "id": 19972,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -791063,7 +791987,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -791084,7 +792008,7 @@
}
},
{
- "id": 43102,
+ "id": 26043,
"name": "productTypesCreated",
"variant": "declaration",
"kind": 64,
@@ -791119,14 +792043,14 @@
},
"signatures": [
{
- "id": 43103,
+ "id": 26044,
"name": "productTypesCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43104,
+ "id": 26045,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -791141,7 +792065,7 @@
},
"type": {
"type": "reference",
- "target": 37252,
+ "target": 19963,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -791155,13 +792079,13 @@
{
"title": "Properties",
"children": [
- 37247
+ 19958
]
},
{
"title": "Functions",
"children": [
- 43102
+ 26043
]
}
],
@@ -791178,7 +792102,7 @@
],
"documents": [
{
- "id": 43101,
+ "id": 26042,
"name": "createProductTypesStep",
"variant": "document",
"kind": 8388608,
@@ -791204,7 +792128,7 @@
"frontmatter": {}
},
{
- "id": 43105,
+ "id": 26046,
"name": "productTypesCreated",
"variant": "document",
"kind": 8388608,
@@ -791230,7 +792154,7 @@
"frontmatter": {}
},
{
- "id": 43106,
+ "id": 26047,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -791257,21 +792181,21 @@
}
],
"childrenIncludingDocuments": [
- 37220,
- 37232,
- 37238,
- 37241,
- 37245
+ 19931,
+ 19943,
+ 19949,
+ 19952,
+ 19956
],
"groups": [
{
"title": "Properties",
"children": [
- 37220,
- 37232,
- 37238,
- 37241,
- 37245
+ 19931,
+ 19943,
+ 19949,
+ 19952,
+ 19956
]
}
],
@@ -791280,12 +792204,12 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L54"
}
],
"signatures": [
{
- "id": 37213,
+ "id": 19924,
"name": "createProductTypesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -791349,12 +792273,12 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L54"
}
],
"typeParameters": [
{
- "id": 37214,
+ "id": 19925,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -791365,7 +792289,7 @@
}
},
{
- "id": 37215,
+ "id": 19926,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -791378,7 +792302,7 @@
],
"parameters": [
{
- "id": 37216,
+ "id": 19927,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -791402,14 +792326,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37217,
+ "id": 19928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37218,
+ "id": 19929,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -791432,7 +792356,7 @@
}
},
{
- "id": 37219,
+ "id": 19930,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -791459,8 +792383,8 @@
{
"title": "Properties",
"children": [
- 37218,
- 37219
+ 19929,
+ 19930
]
}
],
@@ -791535,7 +792459,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37208,
+ "target": 19919,
"name": "CreateProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -791553,14 +792477,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -791575,14 +792499,14 @@
]
},
{
- "id": 37252,
+ "id": 19963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37253,
+ "id": 19964,
"name": "product_types",
"variant": "declaration",
"kind": 1024,
@@ -791592,7 +792516,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L59"
}
],
"type": {
@@ -791673,14 +792597,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37254,
+ "id": 19965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37255,
+ "id": 19966,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -791694,7 +792618,7 @@
],
"signatures": [
{
- "id": 37256,
+ "id": 19967,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -791708,7 +792632,7 @@
],
"parameters": [
{
- "id": 37257,
+ "id": 19968,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -791719,14 +792643,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37258,
+ "id": 19969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37259,
+ "id": 19970,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -791750,7 +792674,7 @@
{
"title": "Properties",
"children": [
- 37259
+ 19970
]
}
],
@@ -791835,7 +792759,7 @@
{
"title": "Methods",
"children": [
- 37255
+ 19966
]
}
],
@@ -791876,7 +792800,7 @@
"defaultValue": "productTypes"
},
{
- "id": 37260,
+ "id": 19971,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -791894,7 +792818,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 60,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L60"
}
],
"type": {
@@ -791917,8 +792841,8 @@
{
"title": "Properties",
"children": [
- 37253,
- 37260
+ 19964,
+ 19971
]
}
],
@@ -791927,12 +792851,12 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 58,
"character": 66,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L58"
}
]
},
{
- "id": 37253,
+ "id": 19964,
"name": "product_types",
"variant": "declaration",
"kind": 1024,
@@ -791942,7 +792866,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L59"
}
],
"type": {
@@ -792023,14 +792947,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37254,
+ "id": 19965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37255,
+ "id": 19966,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -792044,7 +792968,7 @@
],
"signatures": [
{
- "id": 37256,
+ "id": 19967,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -792058,7 +792982,7 @@
],
"parameters": [
{
- "id": 37257,
+ "id": 19968,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -792069,14 +792993,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37258,
+ "id": 19969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37259,
+ "id": 19970,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -792100,7 +793024,7 @@
{
"title": "Properties",
"children": [
- 37259
+ 19970
]
}
],
@@ -792185,7 +793109,7 @@
{
"title": "Methods",
"children": [
- 37255
+ 19966
]
}
],
@@ -792226,7 +793150,7 @@
"defaultValue": "productTypes"
},
{
- "id": 37260,
+ "id": 19971,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -792244,7 +793168,7 @@
"fileName": "core-flows/src/product/workflows/create-product-types.ts",
"line": 60,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-types.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-types.ts#L60"
}
],
"type": {
@@ -792263,7 +793187,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37264,
+ "id": 19975,
"name": "product_tags",
"variant": "declaration",
"kind": 1024,
@@ -792281,7 +793205,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L20"
}
],
"type": {
@@ -792299,7 +793223,7 @@
}
},
{
- "id": 37265,
+ "id": 19976,
"name": "createProductTagsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -792311,7 +793235,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L23"
}
],
"type": {
@@ -792321,7 +793245,7 @@
"defaultValue": "\"create-product-tags\""
},
{
- "id": 37266,
+ "id": 19977,
"name": "createProductTagsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -792382,7 +793306,7 @@
},
"children": [
{
- "id": 37274,
+ "id": 19985,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -792405,7 +793329,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37275,
+ "id": 19986,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -792419,7 +793343,7 @@
],
"signatures": [
{
- "id": 37276,
+ "id": 19987,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -792447,7 +793371,7 @@
],
"parameters": [
{
- "id": 37277,
+ "id": 19988,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -792463,14 +793387,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37278,
+ "id": 19989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37279,
+ "id": 19990,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -792495,7 +793419,7 @@
"types": [
{
"type": "reference",
- "target": 37262,
+ "target": 19973,
"name": "CreateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -792508,7 +793432,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37262,
+ "target": 19973,
"name": "CreateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -792524,7 +793448,7 @@
{
"title": "Properties",
"children": [
- 37279
+ 19990
]
}
],
@@ -792617,14 +793541,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37280,
+ "id": 19991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37281,
+ "id": 19992,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -792638,7 +793562,7 @@
],
"signatures": [
{
- "id": 37282,
+ "id": 19993,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -792652,7 +793576,7 @@
],
"parameters": [
{
- "id": 37283,
+ "id": 19994,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -792663,14 +793587,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37284,
+ "id": 19995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37285,
+ "id": 19996,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -792694,7 +793618,7 @@
{
"title": "Properties",
"children": [
- 37285
+ 19996
]
}
],
@@ -792779,7 +793703,7 @@
{
"title": "Methods",
"children": [
- 37281
+ 19992
]
}
],
@@ -792823,7 +793747,7 @@
}
},
{
- "id": 37286,
+ "id": 19997,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -792846,7 +793770,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37287,
+ "id": 19998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -792860,7 +793784,7 @@
],
"signatures": [
{
- "id": 37288,
+ "id": 19999,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -792888,7 +793812,7 @@
],
"typeParameters": [
{
- "id": 37289,
+ "id": 20000,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -792899,7 +793823,7 @@
}
},
{
- "id": 37290,
+ "id": 20001,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -792912,7 +793836,7 @@
],
"parameters": [
{
- "id": 37291,
+ "id": 20002,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -792945,7 +793869,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -792956,13 +793880,13 @@
},
"trueType": {
"type": "reference",
- "target": 37262,
+ "target": 19973,
"name": "CreateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -792995,7 +793919,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -793018,7 +793942,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -793038,7 +793962,7 @@
}
},
{
- "id": 37292,
+ "id": 20003,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -793061,7 +793985,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37293,
+ "id": 20004,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -793075,7 +793999,7 @@
],
"signatures": [
{
- "id": 37294,
+ "id": 20005,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -793097,7 +794021,7 @@
}
},
{
- "id": 37295,
+ "id": 20006,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -793120,7 +794044,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37296,
+ "id": 20007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -793134,7 +794058,7 @@
],
"signatures": [
{
- "id": 37297,
+ "id": 20008,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -793148,7 +794072,7 @@
],
"parameters": [
{
- "id": 37298,
+ "id": 20009,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -793174,7 +794098,7 @@
}
},
{
- "id": 37299,
+ "id": 20010,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -793197,14 +794121,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37300,
+ "id": 20011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37301,
+ "id": 20012,
"name": "productTagsCreated",
"variant": "declaration",
"kind": 1024,
@@ -793212,7 +794136,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37302,
+ "id": 20013,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -793226,7 +794150,7 @@
],
"signatures": [
{
- "id": 37303,
+ "id": 20014,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -793240,7 +794164,7 @@
],
"typeParameters": [
{
- "id": 37304,
+ "id": 20015,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -793249,7 +794173,7 @@
],
"parameters": [
{
- "id": 37305,
+ "id": 20016,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -793264,14 +794188,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37306,
+ "id": 20017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37307,
+ "id": 20018,
"name": "product_tags",
"variant": "declaration",
"kind": 1024,
@@ -793281,7 +794205,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L59"
}
],
"type": {
@@ -793362,14 +794286,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37308,
+ "id": 20019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37309,
+ "id": 20020,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -793383,7 +794307,7 @@
],
"signatures": [
{
- "id": 37310,
+ "id": 20021,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -793397,7 +794321,7 @@
],
"parameters": [
{
- "id": 37311,
+ "id": 20022,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -793408,14 +794332,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37312,
+ "id": 20023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37313,
+ "id": 20024,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -793439,7 +794363,7 @@
{
"title": "Properties",
"children": [
- 37313
+ 20024
]
}
],
@@ -793524,7 +794448,7 @@
{
"title": "Methods",
"children": [
- 37309
+ 20020
]
}
],
@@ -793565,7 +794489,7 @@
"defaultValue": "productTags"
},
{
- "id": 37314,
+ "id": 20025,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -793583,7 +794507,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 60,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L60"
}
],
"type": {
@@ -793606,8 +794530,8 @@
{
"title": "Properties",
"children": [
- 37307,
- 37314
+ 20018,
+ 20025
]
}
],
@@ -793616,7 +794540,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 58,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L58"
}
]
}
@@ -793627,7 +794551,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -793638,7 +794562,7 @@
}
},
{
- "id": 37315,
+ "id": 20026,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -793654,7 +794578,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -793675,7 +794599,7 @@
}
},
{
- "id": 43108,
+ "id": 26049,
"name": "productTagsCreated",
"variant": "declaration",
"kind": 64,
@@ -793710,14 +794634,14 @@
},
"signatures": [
{
- "id": 43109,
+ "id": 26050,
"name": "productTagsCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43110,
+ "id": 26051,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -793732,7 +794656,7 @@
},
"type": {
"type": "reference",
- "target": 37306,
+ "target": 20017,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -793746,13 +794670,13 @@
{
"title": "Properties",
"children": [
- 37301
+ 20012
]
},
{
"title": "Functions",
"children": [
- 43108
+ 26049
]
}
],
@@ -793769,7 +794693,7 @@
],
"documents": [
{
- "id": 43107,
+ "id": 26048,
"name": "createProductTagsStep",
"variant": "document",
"kind": 8388608,
@@ -793795,7 +794719,7 @@
"frontmatter": {}
},
{
- "id": 43111,
+ "id": 26052,
"name": "productTagsCreated",
"variant": "document",
"kind": 8388608,
@@ -793821,7 +794745,7 @@
"frontmatter": {}
},
{
- "id": 43112,
+ "id": 26053,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -793848,21 +794772,21 @@
}
],
"childrenIncludingDocuments": [
- 37274,
- 37286,
- 37292,
- 37295,
- 37299
+ 19985,
+ 19997,
+ 20003,
+ 20006,
+ 20010
],
"groups": [
{
"title": "Properties",
"children": [
- 37274,
- 37286,
- 37292,
- 37295,
- 37299
+ 19985,
+ 19997,
+ 20003,
+ 20006,
+ 20010
]
}
],
@@ -793871,12 +794795,12 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L54"
}
],
"signatures": [
{
- "id": 37267,
+ "id": 19978,
"name": "createProductTagsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -793940,12 +794864,12 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L54"
}
],
"typeParameters": [
{
- "id": 37268,
+ "id": 19979,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -793956,7 +794880,7 @@
}
},
{
- "id": 37269,
+ "id": 19980,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -793969,7 +794893,7 @@
],
"parameters": [
{
- "id": 37270,
+ "id": 19981,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -793993,14 +794917,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37271,
+ "id": 19982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37272,
+ "id": 19983,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -794023,7 +794947,7 @@
}
},
{
- "id": 37273,
+ "id": 19984,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -794050,8 +794974,8 @@
{
"title": "Properties",
"children": [
- 37272,
- 37273
+ 19983,
+ 19984
]
}
],
@@ -794126,7 +795050,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37262,
+ "target": 19973,
"name": "CreateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -794144,14 +795068,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -794166,14 +795090,14 @@
]
},
{
- "id": 37306,
+ "id": 20017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37307,
+ "id": 20018,
"name": "product_tags",
"variant": "declaration",
"kind": 1024,
@@ -794183,7 +795107,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L59"
}
],
"type": {
@@ -794264,14 +795188,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37308,
+ "id": 20019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37309,
+ "id": 20020,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -794285,7 +795209,7 @@
],
"signatures": [
{
- "id": 37310,
+ "id": 20021,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -794299,7 +795223,7 @@
],
"parameters": [
{
- "id": 37311,
+ "id": 20022,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -794310,14 +795234,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37312,
+ "id": 20023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37313,
+ "id": 20024,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -794341,7 +795265,7 @@
{
"title": "Properties",
"children": [
- 37313
+ 20024
]
}
],
@@ -794426,7 +795350,7 @@
{
"title": "Methods",
"children": [
- 37309
+ 20020
]
}
],
@@ -794467,7 +795391,7 @@
"defaultValue": "productTags"
},
{
- "id": 37314,
+ "id": 20025,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -794485,7 +795409,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 60,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L60"
}
],
"type": {
@@ -794508,8 +795432,8 @@
{
"title": "Properties",
"children": [
- 37307,
- 37314
+ 20018,
+ 20025
]
}
],
@@ -794518,12 +795442,12 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 58,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L58"
}
]
},
{
- "id": 37307,
+ "id": 20018,
"name": "product_tags",
"variant": "declaration",
"kind": 1024,
@@ -794533,7 +795457,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L59"
}
],
"type": {
@@ -794614,14 +795538,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37308,
+ "id": 20019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37309,
+ "id": 20020,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -794635,7 +795559,7 @@
],
"signatures": [
{
- "id": 37310,
+ "id": 20021,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -794649,7 +795573,7 @@
],
"parameters": [
{
- "id": 37311,
+ "id": 20022,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -794660,14 +795584,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37312,
+ "id": 20023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37313,
+ "id": 20024,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -794691,7 +795615,7 @@
{
"title": "Properties",
"children": [
- 37313
+ 20024
]
}
],
@@ -794776,7 +795700,7 @@
{
"title": "Methods",
"children": [
- 37309
+ 20020
]
}
],
@@ -794817,7 +795741,7 @@
"defaultValue": "productTags"
},
{
- "id": 37314,
+ "id": 20025,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -794835,7 +795759,7 @@
"fileName": "core-flows/src/product/workflows/create-product-tags.ts",
"line": 60,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L60"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-tags.ts#L60"
}
],
"type": {
@@ -794854,7 +795778,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37320,
+ "id": 20031,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -794874,7 +795798,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 43,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L43"
}
],
"type": {
@@ -794892,7 +795816,7 @@
}
},
{
- "id": 37324,
+ "id": 20035,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -794910,7 +795834,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 52,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L52"
}
],
"type": {
@@ -794919,7 +795843,7 @@
}
},
{
- "id": 37325,
+ "id": 20036,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -794955,7 +795879,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L59"
}
],
"type": {
@@ -794964,7 +795888,7 @@
}
},
{
- "id": 37322,
+ "id": 20033,
"name": "inventory_items",
"variant": "declaration",
"kind": 1024,
@@ -794984,7 +795908,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
}
],
"type": {
@@ -794992,14 +795916,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37323,
+ "id": 20034,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37324,
+ "id": 20035,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -795017,7 +795941,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 52,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L52"
}
],
"type": {
@@ -795026,7 +795950,7 @@
}
},
{
- "id": 37325,
+ "id": 20036,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -795062,7 +795986,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L59"
}
],
"type": {
@@ -795075,8 +795999,8 @@
{
"title": "Properties",
"children": [
- 37324,
- 37325
+ 20035,
+ 20036
]
}
],
@@ -795085,7 +796009,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 48,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
}
]
}
@@ -795093,7 +796017,7 @@
}
},
{
- "id": 37318,
+ "id": 20029,
"name": "product_variants",
"variant": "declaration",
"kind": 1024,
@@ -795111,7 +796035,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L39"
}
],
"type": {
@@ -795132,14 +796056,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37319,
+ "id": 20030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37320,
+ "id": 20031,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -795159,7 +796083,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 43,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L43"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L43"
}
],
"type": {
@@ -795181,7 +796105,7 @@
{
"title": "Properties",
"children": [
- 37320
+ 20031
]
}
],
@@ -795190,7 +796114,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 39,
"character": 60,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L39"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L39"
}
]
}
@@ -795198,14 +796122,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37321,
+ "id": 20032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37322,
+ "id": 20033,
"name": "inventory_items",
"variant": "declaration",
"kind": 1024,
@@ -795225,7 +796149,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
}
],
"type": {
@@ -795233,14 +796157,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37323,
+ "id": 20034,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37324,
+ "id": 20035,
"name": "inventory_item_id",
"variant": "declaration",
"kind": 1024,
@@ -795258,7 +796182,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 52,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L52"
}
],
"type": {
@@ -795267,7 +796191,7 @@
}
},
{
- "id": 37325,
+ "id": 20036,
"name": "required_quantity",
"variant": "declaration",
"kind": 1024,
@@ -795303,7 +796227,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L59"
}
],
"type": {
@@ -795316,8 +796240,8 @@
{
"title": "Properties",
"children": [
- 37324,
- 37325
+ 20035,
+ 20036
]
}
],
@@ -795326,7 +796250,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 48,
"character": 22,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L48"
}
]
}
@@ -795338,7 +796262,7 @@
{
"title": "Properties",
"children": [
- 37322
+ 20033
]
}
],
@@ -795347,7 +796271,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L44"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L44"
}
]
}
@@ -795357,7 +796281,7 @@
}
},
{
- "id": 37326,
+ "id": 20037,
"name": "createProductVariantsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -795369,7 +796293,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 201,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L201"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L201"
}
],
"type": {
@@ -795379,7 +796303,7 @@
"defaultValue": "\"create-product-variants\""
},
{
- "id": 37327,
+ "id": 20038,
"name": "createProductVariantsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -795449,7 +796373,7 @@
},
"children": [
{
- "id": 37364,
+ "id": 20075,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -795472,7 +796396,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37365,
+ "id": 20076,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -795486,7 +796410,7 @@
],
"signatures": [
{
- "id": 37366,
+ "id": 20077,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -795514,7 +796438,7 @@
],
"parameters": [
{
- "id": 37367,
+ "id": 20078,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -795530,14 +796454,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37368,
+ "id": 20079,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37369,
+ "id": 20080,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -795562,7 +796486,7 @@
"types": [
{
"type": "reference",
- "target": 37316,
+ "target": 20027,
"name": "CreateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -795575,7 +796499,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37316,
+ "target": 20027,
"name": "CreateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -795591,7 +796515,7 @@
{
"title": "Properties",
"children": [
- 37369
+ 20080
]
}
],
@@ -795617,14 +796541,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37370,
+ "id": 20081,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37371,
+ "id": 20082,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -795634,7 +796558,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -795652,7 +796576,7 @@
"defaultValue": "..."
},
{
- "id": 37372,
+ "id": 20083,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -795678,7 +796602,7 @@
}
},
{
- "id": 37373,
+ "id": 20084,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -795704,7 +796628,7 @@
}
},
{
- "id": 37374,
+ "id": 20085,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -795739,7 +796663,7 @@
}
},
{
- "id": 37375,
+ "id": 20086,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -795774,7 +796698,7 @@
}
},
{
- "id": 37376,
+ "id": 20087,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -795809,7 +796733,7 @@
}
},
{
- "id": 37377,
+ "id": 20088,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -795844,7 +796768,7 @@
}
},
{
- "id": 37378,
+ "id": 20089,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -795870,7 +796794,7 @@
}
},
{
- "id": 37379,
+ "id": 20090,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -795896,7 +796820,7 @@
}
},
{
- "id": 37380,
+ "id": 20091,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -795931,7 +796855,7 @@
}
},
{
- "id": 37381,
+ "id": 20092,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -795957,7 +796881,7 @@
}
},
{
- "id": 37382,
+ "id": 20093,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -795992,7 +796916,7 @@
}
},
{
- "id": 37383,
+ "id": 20094,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -796027,7 +796951,7 @@
}
},
{
- "id": 37384,
+ "id": 20095,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -796062,7 +796986,7 @@
}
},
{
- "id": 37385,
+ "id": 20096,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -796097,7 +797021,7 @@
}
},
{
- "id": 37386,
+ "id": 20097,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -796132,7 +797056,7 @@
}
},
{
- "id": 37387,
+ "id": 20098,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -796167,7 +797091,7 @@
}
},
{
- "id": 37388,
+ "id": 20099,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -796202,7 +797126,7 @@
}
},
{
- "id": 37389,
+ "id": 20100,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -796237,7 +797161,7 @@
}
},
{
- "id": 37390,
+ "id": 20101,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -796274,7 +797198,7 @@
}
},
{
- "id": 37391,
+ "id": 20102,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -796311,7 +797235,7 @@
}
},
{
- "id": 37392,
+ "id": 20103,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -796361,7 +797285,7 @@
}
},
{
- "id": 37393,
+ "id": 20104,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -796406,7 +797330,7 @@
}
},
{
- "id": 37394,
+ "id": 20105,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -796441,7 +797365,7 @@
}
},
{
- "id": 37395,
+ "id": 20106,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -796478,7 +797402,7 @@
}
},
{
- "id": 37396,
+ "id": 20107,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -796518,7 +797442,7 @@
}
},
{
- "id": 37397,
+ "id": 20108,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -796558,7 +797482,7 @@
}
},
{
- "id": 37398,
+ "id": 20109,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -796602,34 +797526,34 @@
{
"title": "Properties",
"children": [
- 37371,
- 37372,
- 37373,
- 37374,
- 37375,
- 37376,
- 37377,
- 37378,
- 37379,
- 37380,
- 37381,
- 37382,
- 37383,
- 37384,
- 37385,
- 37386,
- 37387,
- 37388,
- 37389,
- 37390,
- 37391,
- 37392,
- 37393,
- 37394,
- 37395,
- 37396,
- 37397,
- 37398
+ 20082,
+ 20083,
+ 20084,
+ 20085,
+ 20086,
+ 20087,
+ 20088,
+ 20089,
+ 20090,
+ 20091,
+ 20092,
+ 20093,
+ 20094,
+ 20095,
+ 20096,
+ 20097,
+ 20098,
+ 20099,
+ 20100,
+ 20101,
+ 20102,
+ 20103,
+ 20104,
+ 20105,
+ 20106,
+ 20107,
+ 20108,
+ 20109
]
}
],
@@ -796638,7 +797562,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -796653,14 +797577,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37399,
+ "id": 20110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37400,
+ "id": 20111,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -796670,7 +797594,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -796688,7 +797612,7 @@
"defaultValue": "..."
},
{
- "id": 37401,
+ "id": 20112,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -796714,7 +797638,7 @@
}
},
{
- "id": 37402,
+ "id": 20113,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -796740,7 +797664,7 @@
}
},
{
- "id": 37403,
+ "id": 20114,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -796775,7 +797699,7 @@
}
},
{
- "id": 37404,
+ "id": 20115,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -796810,7 +797734,7 @@
}
},
{
- "id": 37405,
+ "id": 20116,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -796845,7 +797769,7 @@
}
},
{
- "id": 37406,
+ "id": 20117,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -796880,7 +797804,7 @@
}
},
{
- "id": 37407,
+ "id": 20118,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -796906,7 +797830,7 @@
}
},
{
- "id": 37408,
+ "id": 20119,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -796932,7 +797856,7 @@
}
},
{
- "id": 37409,
+ "id": 20120,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -796967,7 +797891,7 @@
}
},
{
- "id": 37410,
+ "id": 20121,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -796993,7 +797917,7 @@
}
},
{
- "id": 37411,
+ "id": 20122,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -797028,7 +797952,7 @@
}
},
{
- "id": 37412,
+ "id": 20123,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -797063,7 +797987,7 @@
}
},
{
- "id": 37413,
+ "id": 20124,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -797098,7 +798022,7 @@
}
},
{
- "id": 37414,
+ "id": 20125,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -797133,7 +798057,7 @@
}
},
{
- "id": 37415,
+ "id": 20126,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -797168,7 +798092,7 @@
}
},
{
- "id": 37416,
+ "id": 20127,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -797203,7 +798127,7 @@
}
},
{
- "id": 37417,
+ "id": 20128,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -797238,7 +798162,7 @@
}
},
{
- "id": 37418,
+ "id": 20129,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -797273,7 +798197,7 @@
}
},
{
- "id": 37419,
+ "id": 20130,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -797310,7 +798234,7 @@
}
},
{
- "id": 37420,
+ "id": 20131,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -797347,7 +798271,7 @@
}
},
{
- "id": 37421,
+ "id": 20132,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -797397,7 +798321,7 @@
}
},
{
- "id": 37422,
+ "id": 20133,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -797442,7 +798366,7 @@
}
},
{
- "id": 37423,
+ "id": 20134,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -797477,7 +798401,7 @@
}
},
{
- "id": 37424,
+ "id": 20135,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -797514,7 +798438,7 @@
}
},
{
- "id": 37425,
+ "id": 20136,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -797554,7 +798478,7 @@
}
},
{
- "id": 37426,
+ "id": 20137,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -797594,7 +798518,7 @@
}
},
{
- "id": 37427,
+ "id": 20138,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -797638,34 +798562,34 @@
{
"title": "Properties",
"children": [
- 37400,
- 37401,
- 37402,
- 37403,
- 37404,
- 37405,
- 37406,
- 37407,
- 37408,
- 37409,
- 37410,
- 37411,
- 37412,
- 37413,
- 37414,
- 37415,
- 37416,
- 37417,
- 37418,
- 37419,
- 37420,
- 37421,
- 37422,
- 37423,
- 37424,
- 37425,
- 37426,
- 37427
+ 20111,
+ 20112,
+ 20113,
+ 20114,
+ 20115,
+ 20116,
+ 20117,
+ 20118,
+ 20119,
+ 20120,
+ 20121,
+ 20122,
+ 20123,
+ 20124,
+ 20125,
+ 20126,
+ 20127,
+ 20128,
+ 20129,
+ 20130,
+ 20131,
+ 20132,
+ 20133,
+ 20134,
+ 20135,
+ 20136,
+ 20137,
+ 20138
]
}
],
@@ -797674,7 +798598,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -797691,14 +798615,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37428,
+ "id": 20139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37429,
+ "id": 20140,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -797708,7 +798632,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -797726,7 +798650,7 @@
"defaultValue": "..."
},
{
- "id": 37430,
+ "id": 20141,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -797752,7 +798676,7 @@
}
},
{
- "id": 37431,
+ "id": 20142,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -797778,7 +798702,7 @@
}
},
{
- "id": 37432,
+ "id": 20143,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -797813,7 +798737,7 @@
}
},
{
- "id": 37433,
+ "id": 20144,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -797848,7 +798772,7 @@
}
},
{
- "id": 37434,
+ "id": 20145,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -797883,7 +798807,7 @@
}
},
{
- "id": 37435,
+ "id": 20146,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -797918,7 +798842,7 @@
}
},
{
- "id": 37436,
+ "id": 20147,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -797944,7 +798868,7 @@
}
},
{
- "id": 37437,
+ "id": 20148,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -797970,7 +798894,7 @@
}
},
{
- "id": 37438,
+ "id": 20149,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -798005,7 +798929,7 @@
}
},
{
- "id": 37439,
+ "id": 20150,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -798031,7 +798955,7 @@
}
},
{
- "id": 37440,
+ "id": 20151,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -798066,7 +798990,7 @@
}
},
{
- "id": 37441,
+ "id": 20152,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -798101,7 +799025,7 @@
}
},
{
- "id": 37442,
+ "id": 20153,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -798136,7 +799060,7 @@
}
},
{
- "id": 37443,
+ "id": 20154,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -798171,7 +799095,7 @@
}
},
{
- "id": 37444,
+ "id": 20155,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -798206,7 +799130,7 @@
}
},
{
- "id": 37445,
+ "id": 20156,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -798241,7 +799165,7 @@
}
},
{
- "id": 37446,
+ "id": 20157,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -798276,7 +799200,7 @@
}
},
{
- "id": 37447,
+ "id": 20158,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -798311,7 +799235,7 @@
}
},
{
- "id": 37448,
+ "id": 20159,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -798348,7 +799272,7 @@
}
},
{
- "id": 37449,
+ "id": 20160,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -798385,7 +799309,7 @@
}
},
{
- "id": 37450,
+ "id": 20161,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -798435,7 +799359,7 @@
}
},
{
- "id": 37451,
+ "id": 20162,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -798480,7 +799404,7 @@
}
},
{
- "id": 37452,
+ "id": 20163,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -798515,7 +799439,7 @@
}
},
{
- "id": 37453,
+ "id": 20164,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -798552,7 +799476,7 @@
}
},
{
- "id": 37454,
+ "id": 20165,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -798592,7 +799516,7 @@
}
},
{
- "id": 37455,
+ "id": 20166,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -798632,7 +799556,7 @@
}
},
{
- "id": 37456,
+ "id": 20167,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -798676,34 +799600,34 @@
{
"title": "Properties",
"children": [
- 37429,
- 37430,
- 37431,
- 37432,
- 37433,
- 37434,
- 37435,
- 37436,
- 37437,
- 37438,
- 37439,
- 37440,
- 37441,
- 37442,
- 37443,
- 37444,
- 37445,
- 37446,
- 37447,
- 37448,
- 37449,
- 37450,
- 37451,
- 37452,
- 37453,
- 37454,
- 37455,
- 37456
+ 20140,
+ 20141,
+ 20142,
+ 20143,
+ 20144,
+ 20145,
+ 20146,
+ 20147,
+ 20148,
+ 20149,
+ 20150,
+ 20151,
+ 20152,
+ 20153,
+ 20154,
+ 20155,
+ 20156,
+ 20157,
+ 20158,
+ 20159,
+ 20160,
+ 20161,
+ 20162,
+ 20163,
+ 20164,
+ 20165,
+ 20166,
+ 20167
]
}
],
@@ -798712,7 +799636,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -798730,14 +799654,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37457,
+ "id": 20168,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37458,
+ "id": 20169,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -798747,7 +799671,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -798765,7 +799689,7 @@
"defaultValue": "..."
},
{
- "id": 37459,
+ "id": 20170,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -798791,7 +799715,7 @@
}
},
{
- "id": 37460,
+ "id": 20171,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -798817,7 +799741,7 @@
}
},
{
- "id": 37461,
+ "id": 20172,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -798852,7 +799776,7 @@
}
},
{
- "id": 37462,
+ "id": 20173,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -798887,7 +799811,7 @@
}
},
{
- "id": 37463,
+ "id": 20174,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -798922,7 +799846,7 @@
}
},
{
- "id": 37464,
+ "id": 20175,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -798957,7 +799881,7 @@
}
},
{
- "id": 37465,
+ "id": 20176,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -798983,7 +799907,7 @@
}
},
{
- "id": 37466,
+ "id": 20177,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -799009,7 +799933,7 @@
}
},
{
- "id": 37467,
+ "id": 20178,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -799044,7 +799968,7 @@
}
},
{
- "id": 37468,
+ "id": 20179,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -799070,7 +799994,7 @@
}
},
{
- "id": 37469,
+ "id": 20180,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -799105,7 +800029,7 @@
}
},
{
- "id": 37470,
+ "id": 20181,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -799140,7 +800064,7 @@
}
},
{
- "id": 37471,
+ "id": 20182,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -799175,7 +800099,7 @@
}
},
{
- "id": 37472,
+ "id": 20183,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -799210,7 +800134,7 @@
}
},
{
- "id": 37473,
+ "id": 20184,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -799245,7 +800169,7 @@
}
},
{
- "id": 37474,
+ "id": 20185,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -799280,7 +800204,7 @@
}
},
{
- "id": 37475,
+ "id": 20186,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -799315,7 +800239,7 @@
}
},
{
- "id": 37476,
+ "id": 20187,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -799350,7 +800274,7 @@
}
},
{
- "id": 37477,
+ "id": 20188,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -799387,7 +800311,7 @@
}
},
{
- "id": 37478,
+ "id": 20189,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -799424,7 +800348,7 @@
}
},
{
- "id": 37479,
+ "id": 20190,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -799474,7 +800398,7 @@
}
},
{
- "id": 37480,
+ "id": 20191,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -799519,7 +800443,7 @@
}
},
{
- "id": 37481,
+ "id": 20192,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -799554,7 +800478,7 @@
}
},
{
- "id": 37482,
+ "id": 20193,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -799591,7 +800515,7 @@
}
},
{
- "id": 37483,
+ "id": 20194,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -799631,7 +800555,7 @@
}
},
{
- "id": 37484,
+ "id": 20195,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -799671,7 +800595,7 @@
}
},
{
- "id": 37485,
+ "id": 20196,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -799715,34 +800639,34 @@
{
"title": "Properties",
"children": [
- 37458,
- 37459,
- 37460,
- 37461,
- 37462,
- 37463,
- 37464,
- 37465,
- 37466,
- 37467,
- 37468,
- 37469,
- 37470,
- 37471,
- 37472,
- 37473,
- 37474,
- 37475,
- 37476,
- 37477,
- 37478,
- 37479,
- 37480,
- 37481,
- 37482,
- 37483,
- 37484,
- 37485
+ 20169,
+ 20170,
+ 20171,
+ 20172,
+ 20173,
+ 20174,
+ 20175,
+ 20176,
+ 20177,
+ 20178,
+ 20179,
+ 20180,
+ 20181,
+ 20182,
+ 20183,
+ 20184,
+ 20185,
+ 20186,
+ 20187,
+ 20188,
+ 20189,
+ 20190,
+ 20191,
+ 20192,
+ 20193,
+ 20194,
+ 20195,
+ 20196
]
}
],
@@ -799751,7 +800675,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -799764,14 +800688,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37486,
+ "id": 20197,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37487,
+ "id": 20198,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -799785,7 +800709,7 @@
],
"signatures": [
{
- "id": 37488,
+ "id": 20199,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -799799,7 +800723,7 @@
],
"parameters": [
{
- "id": 37489,
+ "id": 20200,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -799810,14 +800734,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37490,
+ "id": 20201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37491,
+ "id": 20202,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -799841,7 +800765,7 @@
{
"title": "Properties",
"children": [
- 37491
+ 20202
]
}
],
@@ -799907,14 +800831,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37492,
+ "id": 20203,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37493,
+ "id": 20204,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -799924,7 +800848,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -799942,7 +800866,7 @@
"defaultValue": "..."
},
{
- "id": 37494,
+ "id": 20205,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -799968,7 +800892,7 @@
}
},
{
- "id": 37495,
+ "id": 20206,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -799994,7 +800918,7 @@
}
},
{
- "id": 37496,
+ "id": 20207,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -800029,7 +800953,7 @@
}
},
{
- "id": 37497,
+ "id": 20208,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -800064,7 +800988,7 @@
}
},
{
- "id": 37498,
+ "id": 20209,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -800099,7 +801023,7 @@
}
},
{
- "id": 37499,
+ "id": 20210,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -800134,7 +801058,7 @@
}
},
{
- "id": 37500,
+ "id": 20211,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -800160,7 +801084,7 @@
}
},
{
- "id": 37501,
+ "id": 20212,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -800186,7 +801110,7 @@
}
},
{
- "id": 37502,
+ "id": 20213,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -800221,7 +801145,7 @@
}
},
{
- "id": 37503,
+ "id": 20214,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -800247,7 +801171,7 @@
}
},
{
- "id": 37504,
+ "id": 20215,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -800282,7 +801206,7 @@
}
},
{
- "id": 37505,
+ "id": 20216,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -800317,7 +801241,7 @@
}
},
{
- "id": 37506,
+ "id": 20217,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -800352,7 +801276,7 @@
}
},
{
- "id": 37507,
+ "id": 20218,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -800387,7 +801311,7 @@
}
},
{
- "id": 37508,
+ "id": 20219,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -800422,7 +801346,7 @@
}
},
{
- "id": 37509,
+ "id": 20220,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -800457,7 +801381,7 @@
}
},
{
- "id": 37510,
+ "id": 20221,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -800492,7 +801416,7 @@
}
},
{
- "id": 37511,
+ "id": 20222,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -800527,7 +801451,7 @@
}
},
{
- "id": 37512,
+ "id": 20223,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -800564,7 +801488,7 @@
}
},
{
- "id": 37513,
+ "id": 20224,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -800601,7 +801525,7 @@
}
},
{
- "id": 37514,
+ "id": 20225,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -800651,7 +801575,7 @@
}
},
{
- "id": 37515,
+ "id": 20226,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -800696,7 +801620,7 @@
}
},
{
- "id": 37516,
+ "id": 20227,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -800731,7 +801655,7 @@
}
},
{
- "id": 37517,
+ "id": 20228,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -800768,7 +801692,7 @@
}
},
{
- "id": 37518,
+ "id": 20229,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -800808,7 +801732,7 @@
}
},
{
- "id": 37519,
+ "id": 20230,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -800848,7 +801772,7 @@
}
},
{
- "id": 37520,
+ "id": 20231,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -800892,34 +801816,34 @@
{
"title": "Properties",
"children": [
- 37493,
- 37494,
- 37495,
- 37496,
- 37497,
- 37498,
- 37499,
- 37500,
- 37501,
- 37502,
- 37503,
- 37504,
- 37505,
- 37506,
- 37507,
- 37508,
- 37509,
- 37510,
- 37511,
- 37512,
- 37513,
- 37514,
- 37515,
- 37516,
- 37517,
- 37518,
- 37519,
- 37520
+ 20204,
+ 20205,
+ 20206,
+ 20207,
+ 20208,
+ 20209,
+ 20210,
+ 20211,
+ 20212,
+ 20213,
+ 20214,
+ 20215,
+ 20216,
+ 20217,
+ 20218,
+ 20219,
+ 20220,
+ 20221,
+ 20222,
+ 20223,
+ 20224,
+ 20225,
+ 20226,
+ 20227,
+ 20228,
+ 20229,
+ 20230,
+ 20231
]
}
],
@@ -800928,7 +801852,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -800946,7 +801870,7 @@
{
"title": "Methods",
"children": [
- 37487
+ 20198
]
}
],
@@ -800971,14 +801895,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37521,
+ "id": 20232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37522,
+ "id": 20233,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -800988,7 +801912,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -801006,7 +801930,7 @@
"defaultValue": "..."
},
{
- "id": 37523,
+ "id": 20234,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -801032,7 +801956,7 @@
}
},
{
- "id": 37524,
+ "id": 20235,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -801058,7 +801982,7 @@
}
},
{
- "id": 37525,
+ "id": 20236,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -801093,7 +802017,7 @@
}
},
{
- "id": 37526,
+ "id": 20237,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -801128,7 +802052,7 @@
}
},
{
- "id": 37527,
+ "id": 20238,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -801163,7 +802087,7 @@
}
},
{
- "id": 37528,
+ "id": 20239,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -801198,7 +802122,7 @@
}
},
{
- "id": 37529,
+ "id": 20240,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -801224,7 +802148,7 @@
}
},
{
- "id": 37530,
+ "id": 20241,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -801250,7 +802174,7 @@
}
},
{
- "id": 37531,
+ "id": 20242,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -801285,7 +802209,7 @@
}
},
{
- "id": 37532,
+ "id": 20243,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -801311,7 +802235,7 @@
}
},
{
- "id": 37533,
+ "id": 20244,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -801346,7 +802270,7 @@
}
},
{
- "id": 37534,
+ "id": 20245,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -801381,7 +802305,7 @@
}
},
{
- "id": 37535,
+ "id": 20246,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -801416,7 +802340,7 @@
}
},
{
- "id": 37536,
+ "id": 20247,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -801451,7 +802375,7 @@
}
},
{
- "id": 37537,
+ "id": 20248,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -801486,7 +802410,7 @@
}
},
{
- "id": 37538,
+ "id": 20249,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -801521,7 +802445,7 @@
}
},
{
- "id": 37539,
+ "id": 20250,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -801556,7 +802480,7 @@
}
},
{
- "id": 37540,
+ "id": 20251,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -801591,7 +802515,7 @@
}
},
{
- "id": 37541,
+ "id": 20252,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -801628,7 +802552,7 @@
}
},
{
- "id": 37542,
+ "id": 20253,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -801665,7 +802589,7 @@
}
},
{
- "id": 37543,
+ "id": 20254,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -801715,7 +802639,7 @@
}
},
{
- "id": 37544,
+ "id": 20255,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -801760,7 +802684,7 @@
}
},
{
- "id": 37545,
+ "id": 20256,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -801795,7 +802719,7 @@
}
},
{
- "id": 37546,
+ "id": 20257,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -801832,7 +802756,7 @@
}
},
{
- "id": 37547,
+ "id": 20258,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -801872,7 +802796,7 @@
}
},
{
- "id": 37548,
+ "id": 20259,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -801912,7 +802836,7 @@
}
},
{
- "id": 37549,
+ "id": 20260,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -801956,34 +802880,34 @@
{
"title": "Properties",
"children": [
- 37522,
- 37523,
- 37524,
- 37525,
- 37526,
- 37527,
- 37528,
- 37529,
- 37530,
- 37531,
- 37532,
- 37533,
- 37534,
- 37535,
- 37536,
- 37537,
- 37538,
- 37539,
- 37540,
- 37541,
- 37542,
- 37543,
- 37544,
- 37545,
- 37546,
- 37547,
- 37548,
- 37549
+ 20233,
+ 20234,
+ 20235,
+ 20236,
+ 20237,
+ 20238,
+ 20239,
+ 20240,
+ 20241,
+ 20242,
+ 20243,
+ 20244,
+ 20245,
+ 20246,
+ 20247,
+ 20248,
+ 20249,
+ 20250,
+ 20251,
+ 20252,
+ 20253,
+ 20254,
+ 20255,
+ 20256,
+ 20257,
+ 20258,
+ 20259,
+ 20260
]
}
],
@@ -801992,7 +802916,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -802010,7 +802934,7 @@
}
},
{
- "id": 37550,
+ "id": 20261,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -802033,7 +802957,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37551,
+ "id": 20262,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -802047,7 +802971,7 @@
],
"signatures": [
{
- "id": 37552,
+ "id": 20263,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -802075,7 +802999,7 @@
],
"typeParameters": [
{
- "id": 37553,
+ "id": 20264,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -802086,7 +803010,7 @@
}
},
{
- "id": 37554,
+ "id": 20265,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -802099,7 +803023,7 @@
],
"parameters": [
{
- "id": 37555,
+ "id": 20266,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -802132,7 +803056,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -802143,13 +803067,13 @@
},
"trueType": {
"type": "reference",
- "target": 37316,
+ "target": 20027,
"name": "CreateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -802182,7 +803106,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -802196,14 +803120,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37556,
+ "id": 20267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37557,
+ "id": 20268,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -802213,7 +803137,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -802231,7 +803155,7 @@
"defaultValue": "..."
},
{
- "id": 37558,
+ "id": 20269,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -802257,7 +803181,7 @@
}
},
{
- "id": 37559,
+ "id": 20270,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -802283,7 +803207,7 @@
}
},
{
- "id": 37560,
+ "id": 20271,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -802318,7 +803242,7 @@
}
},
{
- "id": 37561,
+ "id": 20272,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -802353,7 +803277,7 @@
}
},
{
- "id": 37562,
+ "id": 20273,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -802388,7 +803312,7 @@
}
},
{
- "id": 37563,
+ "id": 20274,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -802423,7 +803347,7 @@
}
},
{
- "id": 37564,
+ "id": 20275,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -802449,7 +803373,7 @@
}
},
{
- "id": 37565,
+ "id": 20276,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -802475,7 +803399,7 @@
}
},
{
- "id": 37566,
+ "id": 20277,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -802510,7 +803434,7 @@
}
},
{
- "id": 37567,
+ "id": 20278,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -802536,7 +803460,7 @@
}
},
{
- "id": 37568,
+ "id": 20279,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -802571,7 +803495,7 @@
}
},
{
- "id": 37569,
+ "id": 20280,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -802606,7 +803530,7 @@
}
},
{
- "id": 37570,
+ "id": 20281,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -802641,7 +803565,7 @@
}
},
{
- "id": 37571,
+ "id": 20282,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -802676,7 +803600,7 @@
}
},
{
- "id": 37572,
+ "id": 20283,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -802711,7 +803635,7 @@
}
},
{
- "id": 37573,
+ "id": 20284,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -802746,7 +803670,7 @@
}
},
{
- "id": 37574,
+ "id": 20285,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -802781,7 +803705,7 @@
}
},
{
- "id": 37575,
+ "id": 20286,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -802816,7 +803740,7 @@
}
},
{
- "id": 37576,
+ "id": 20287,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -802853,7 +803777,7 @@
}
},
{
- "id": 37577,
+ "id": 20288,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -802890,7 +803814,7 @@
}
},
{
- "id": 37578,
+ "id": 20289,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -802940,7 +803864,7 @@
}
},
{
- "id": 37579,
+ "id": 20290,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -802985,7 +803909,7 @@
}
},
{
- "id": 37580,
+ "id": 20291,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -803020,7 +803944,7 @@
}
},
{
- "id": 37581,
+ "id": 20292,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -803057,7 +803981,7 @@
}
},
{
- "id": 37582,
+ "id": 20293,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -803097,7 +804021,7 @@
}
},
{
- "id": 37583,
+ "id": 20294,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -803137,7 +804061,7 @@
}
},
{
- "id": 37584,
+ "id": 20295,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -803181,34 +804105,34 @@
{
"title": "Properties",
"children": [
- 37557,
- 37558,
- 37559,
- 37560,
- 37561,
- 37562,
- 37563,
- 37564,
- 37565,
- 37566,
- 37567,
- 37568,
- 37569,
- 37570,
- 37571,
- 37572,
- 37573,
- 37574,
- 37575,
- 37576,
- 37577,
- 37578,
- 37579,
- 37580,
- 37581,
- 37582,
- 37583,
- 37584
+ 20268,
+ 20269,
+ 20270,
+ 20271,
+ 20272,
+ 20273,
+ 20274,
+ 20275,
+ 20276,
+ 20277,
+ 20278,
+ 20279,
+ 20280,
+ 20281,
+ 20282,
+ 20283,
+ 20284,
+ 20285,
+ 20286,
+ 20287,
+ 20288,
+ 20289,
+ 20290,
+ 20291,
+ 20292,
+ 20293,
+ 20294,
+ 20295
]
}
],
@@ -803217,7 +804141,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -803225,7 +804149,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -803245,7 +804169,7 @@
}
},
{
- "id": 37585,
+ "id": 20296,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -803268,7 +804192,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37586,
+ "id": 20297,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -803282,7 +804206,7 @@
],
"signatures": [
{
- "id": 37587,
+ "id": 20298,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -803304,7 +804228,7 @@
}
},
{
- "id": 37588,
+ "id": 20299,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -803327,7 +804251,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37589,
+ "id": 20300,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -803341,7 +804265,7 @@
],
"signatures": [
{
- "id": 37590,
+ "id": 20301,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -803355,7 +804279,7 @@
],
"parameters": [
{
- "id": 37591,
+ "id": 20302,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -803381,7 +804305,7 @@
}
},
{
- "id": 37592,
+ "id": 20303,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -803404,14 +804328,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37593,
+ "id": 20304,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37594,
+ "id": 20305,
"name": "productVariantsCreated",
"variant": "declaration",
"kind": 1024,
@@ -803419,7 +804343,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37595,
+ "id": 20306,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -803433,7 +804357,7 @@
],
"signatures": [
{
- "id": 37596,
+ "id": 20307,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -803447,7 +804371,7 @@
],
"typeParameters": [
{
- "id": 37597,
+ "id": 20308,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -803456,7 +804380,7 @@
],
"parameters": [
{
- "id": 37598,
+ "id": 20309,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -803471,14 +804395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37599,
+ "id": 20310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37600,
+ "id": 20311,
"name": "product_variants",
"variant": "declaration",
"kind": 1024,
@@ -803488,7 +804412,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 365,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L365"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L365"
}
],
"type": {
@@ -803503,14 +804427,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37601,
+ "id": 20312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37602,
+ "id": 20313,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -803520,7 +804444,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -803538,7 +804462,7 @@
"defaultValue": "..."
},
{
- "id": 37603,
+ "id": 20314,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -803564,7 +804488,7 @@
}
},
{
- "id": 37604,
+ "id": 20315,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -803590,7 +804514,7 @@
}
},
{
- "id": 37605,
+ "id": 20316,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -803625,7 +804549,7 @@
}
},
{
- "id": 37606,
+ "id": 20317,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -803660,7 +804584,7 @@
}
},
{
- "id": 37607,
+ "id": 20318,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -803695,7 +804619,7 @@
}
},
{
- "id": 37608,
+ "id": 20319,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -803730,7 +804654,7 @@
}
},
{
- "id": 37609,
+ "id": 20320,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -803756,7 +804680,7 @@
}
},
{
- "id": 37610,
+ "id": 20321,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -803782,7 +804706,7 @@
}
},
{
- "id": 37611,
+ "id": 20322,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -803817,7 +804741,7 @@
}
},
{
- "id": 37612,
+ "id": 20323,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -803843,7 +804767,7 @@
}
},
{
- "id": 37613,
+ "id": 20324,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -803878,7 +804802,7 @@
}
},
{
- "id": 37614,
+ "id": 20325,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -803913,7 +804837,7 @@
}
},
{
- "id": 37615,
+ "id": 20326,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -803948,7 +804872,7 @@
}
},
{
- "id": 37616,
+ "id": 20327,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -803983,7 +804907,7 @@
}
},
{
- "id": 37617,
+ "id": 20328,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -804018,7 +804942,7 @@
}
},
{
- "id": 37618,
+ "id": 20329,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -804053,7 +804977,7 @@
}
},
{
- "id": 37619,
+ "id": 20330,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -804088,7 +805012,7 @@
}
},
{
- "id": 37620,
+ "id": 20331,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -804123,7 +805047,7 @@
}
},
{
- "id": 37621,
+ "id": 20332,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -804160,7 +805084,7 @@
}
},
{
- "id": 37622,
+ "id": 20333,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -804197,7 +805121,7 @@
}
},
{
- "id": 37623,
+ "id": 20334,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -804247,7 +805171,7 @@
}
},
{
- "id": 37624,
+ "id": 20335,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -804292,7 +805216,7 @@
}
},
{
- "id": 37625,
+ "id": 20336,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -804327,7 +805251,7 @@
}
},
{
- "id": 37626,
+ "id": 20337,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -804364,7 +805288,7 @@
}
},
{
- "id": 37627,
+ "id": 20338,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -804404,7 +805328,7 @@
}
},
{
- "id": 37628,
+ "id": 20339,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -804444,7 +805368,7 @@
}
},
{
- "id": 37629,
+ "id": 20340,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -804488,34 +805412,34 @@
{
"title": "Properties",
"children": [
- 37602,
- 37603,
- 37604,
- 37605,
- 37606,
- 37607,
- 37608,
- 37609,
- 37610,
- 37611,
- 37612,
- 37613,
- 37614,
- 37615,
- 37616,
- 37617,
- 37618,
- 37619,
- 37620,
- 37621,
- 37622,
- 37623,
- 37624,
- 37625,
- 37626,
- 37627,
- 37628,
- 37629
+ 20313,
+ 20314,
+ 20315,
+ 20316,
+ 20317,
+ 20318,
+ 20319,
+ 20320,
+ 20321,
+ 20322,
+ 20323,
+ 20324,
+ 20325,
+ 20326,
+ 20327,
+ 20328,
+ 20329,
+ 20330,
+ 20331,
+ 20332,
+ 20333,
+ 20334,
+ 20335,
+ 20336,
+ 20337,
+ 20338,
+ 20339,
+ 20340
]
}
],
@@ -804524,7 +805448,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -804537,7 +805461,7 @@
"defaultValue": "response"
},
{
- "id": 37630,
+ "id": 20341,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -804555,7 +805479,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 366,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L366"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L366"
}
],
"type": {
@@ -804578,8 +805502,8 @@
{
"title": "Properties",
"children": [
- 37600,
- 37630
+ 20311,
+ 20341
]
}
],
@@ -804588,7 +805512,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 364,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L364"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L364"
}
]
}
@@ -804599,7 +805523,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -804610,7 +805534,7 @@
}
},
{
- "id": 37631,
+ "id": 20342,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -804626,7 +805550,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -804647,7 +805571,7 @@
}
},
{
- "id": 43119,
+ "id": 26060,
"name": "productVariantsCreated",
"variant": "declaration",
"kind": 64,
@@ -804682,14 +805606,14 @@
},
"signatures": [
{
- "id": 43120,
+ "id": 26061,
"name": "productVariantsCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43121,
+ "id": 26062,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -804704,7 +805628,7 @@
},
"type": {
"type": "reference",
- "target": 37599,
+ "target": 20310,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -804718,13 +805642,13 @@
{
"title": "Properties",
"children": [
- 37594
+ 20305
]
},
{
"title": "Functions",
"children": [
- 43119
+ 26060
]
}
],
@@ -804741,7 +805665,7 @@
],
"documents": [
{
- "id": 43113,
+ "id": 26054,
"name": "createProductVariantsStep",
"variant": "document",
"kind": 8388608,
@@ -804767,7 +805691,7 @@
"frontmatter": {}
},
{
- "id": 43114,
+ "id": 26055,
"name": "createInventoryItemsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -804793,7 +805717,7 @@
"frontmatter": {}
},
{
- "id": 43115,
+ "id": 26056,
"name": "createLinksWorkflow",
"variant": "document",
"kind": 8388608,
@@ -804819,7 +805743,7 @@
"frontmatter": {}
},
{
- "id": 43116,
+ "id": 26057,
"name": "createPriceSetsStep",
"variant": "document",
"kind": 8388608,
@@ -804845,7 +805769,7 @@
"frontmatter": {}
},
{
- "id": 43117,
+ "id": 26058,
"name": "createVariantPricingLinkStep",
"variant": "document",
"kind": 8388608,
@@ -804871,7 +805795,7 @@
"frontmatter": {}
},
{
- "id": 43118,
+ "id": 26059,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -804897,7 +805821,7 @@
"frontmatter": {}
},
{
- "id": 43122,
+ "id": 26063,
"name": "productVariantsCreated",
"variant": "document",
"kind": 8388608,
@@ -804924,21 +805848,21 @@
}
],
"childrenIncludingDocuments": [
- 37364,
- 37550,
- 37585,
- 37588,
- 37592
+ 20075,
+ 20261,
+ 20296,
+ 20299,
+ 20303
],
"groups": [
{
"title": "Properties",
"children": [
- 37364,
- 37550,
- 37585,
- 37588,
- 37592
+ 20075,
+ 20261,
+ 20296,
+ 20299,
+ 20303
]
}
],
@@ -804947,12 +805871,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 249,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L249"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L249"
}
],
"signatures": [
{
- "id": 37328,
+ "id": 20039,
"name": "createProductVariantsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -805025,12 +805949,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 249,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L249"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L249"
}
],
"typeParameters": [
{
- "id": 37329,
+ "id": 20040,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -805041,7 +805965,7 @@
}
},
{
- "id": 37330,
+ "id": 20041,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -805054,7 +805978,7 @@
],
"parameters": [
{
- "id": 37331,
+ "id": 20042,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -805078,14 +806002,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37332,
+ "id": 20043,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37333,
+ "id": 20044,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -805108,7 +806032,7 @@
}
},
{
- "id": 37334,
+ "id": 20045,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -805135,8 +806059,8 @@
{
"title": "Properties",
"children": [
- 37333,
- 37334
+ 20044,
+ 20045
]
}
],
@@ -805211,7 +806135,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37316,
+ "target": 20027,
"name": "CreateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -805220,14 +806144,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37335,
+ "id": 20046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37336,
+ "id": 20047,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -805237,7 +806161,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -805255,7 +806179,7 @@
"defaultValue": "..."
},
{
- "id": 37337,
+ "id": 20048,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -805281,7 +806205,7 @@
}
},
{
- "id": 37338,
+ "id": 20049,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -805307,7 +806231,7 @@
}
},
{
- "id": 37339,
+ "id": 20050,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -805342,7 +806266,7 @@
}
},
{
- "id": 37340,
+ "id": 20051,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -805377,7 +806301,7 @@
}
},
{
- "id": 37341,
+ "id": 20052,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -805412,7 +806336,7 @@
}
},
{
- "id": 37342,
+ "id": 20053,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -805447,7 +806371,7 @@
}
},
{
- "id": 37343,
+ "id": 20054,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -805473,7 +806397,7 @@
}
},
{
- "id": 37344,
+ "id": 20055,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -805499,7 +806423,7 @@
}
},
{
- "id": 37345,
+ "id": 20056,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -805534,7 +806458,7 @@
}
},
{
- "id": 37346,
+ "id": 20057,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -805560,7 +806484,7 @@
}
},
{
- "id": 37347,
+ "id": 20058,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -805595,7 +806519,7 @@
}
},
{
- "id": 37348,
+ "id": 20059,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -805630,7 +806554,7 @@
}
},
{
- "id": 37349,
+ "id": 20060,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -805665,7 +806589,7 @@
}
},
{
- "id": 37350,
+ "id": 20061,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -805700,7 +806624,7 @@
}
},
{
- "id": 37351,
+ "id": 20062,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -805735,7 +806659,7 @@
}
},
{
- "id": 37352,
+ "id": 20063,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -805770,7 +806694,7 @@
}
},
{
- "id": 37353,
+ "id": 20064,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -805805,7 +806729,7 @@
}
},
{
- "id": 37354,
+ "id": 20065,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -805840,7 +806764,7 @@
}
},
{
- "id": 37355,
+ "id": 20066,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -805877,7 +806801,7 @@
}
},
{
- "id": 37356,
+ "id": 20067,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -805914,7 +806838,7 @@
}
},
{
- "id": 37357,
+ "id": 20068,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -805964,7 +806888,7 @@
}
},
{
- "id": 37358,
+ "id": 20069,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -806009,7 +806933,7 @@
}
},
{
- "id": 37359,
+ "id": 20070,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -806044,7 +806968,7 @@
}
},
{
- "id": 37360,
+ "id": 20071,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -806081,7 +807005,7 @@
}
},
{
- "id": 37361,
+ "id": 20072,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -806121,7 +807045,7 @@
}
},
{
- "id": 37362,
+ "id": 20073,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -806161,7 +807085,7 @@
}
},
{
- "id": 37363,
+ "id": 20074,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -806205,34 +807129,34 @@
{
"title": "Properties",
"children": [
- 37336,
- 37337,
- 37338,
- 37339,
- 37340,
- 37341,
- 37342,
- 37343,
- 37344,
- 37345,
- 37346,
- 37347,
- 37348,
- 37349,
- 37350,
- 37351,
- 37352,
- 37353,
- 37354,
- 37355,
- 37356,
- 37357,
- 37358,
- 37359,
- 37360,
- 37361,
- 37362,
- 37363
+ 20047,
+ 20048,
+ 20049,
+ 20050,
+ 20051,
+ 20052,
+ 20053,
+ 20054,
+ 20055,
+ 20056,
+ 20057,
+ 20058,
+ 20059,
+ 20060,
+ 20061,
+ 20062,
+ 20063,
+ 20064,
+ 20065,
+ 20066,
+ 20067,
+ 20068,
+ 20069,
+ 20070,
+ 20071,
+ 20072,
+ 20073,
+ 20074
]
}
],
@@ -806241,7 +807165,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -806249,14 +807173,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -806271,14 +807195,14 @@
]
},
{
- "id": 37335,
+ "id": 20046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37336,
+ "id": 20047,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -806288,7 +807212,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -806306,7 +807230,7 @@
"defaultValue": "..."
},
{
- "id": 37337,
+ "id": 20048,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -806332,7 +807256,7 @@
}
},
{
- "id": 37338,
+ "id": 20049,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -806358,7 +807282,7 @@
}
},
{
- "id": 37339,
+ "id": 20050,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -806393,7 +807317,7 @@
}
},
{
- "id": 37340,
+ "id": 20051,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -806428,7 +807352,7 @@
}
},
{
- "id": 37341,
+ "id": 20052,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -806463,7 +807387,7 @@
}
},
{
- "id": 37342,
+ "id": 20053,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -806498,7 +807422,7 @@
}
},
{
- "id": 37343,
+ "id": 20054,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -806524,7 +807448,7 @@
}
},
{
- "id": 37344,
+ "id": 20055,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -806550,7 +807474,7 @@
}
},
{
- "id": 37345,
+ "id": 20056,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -806585,7 +807509,7 @@
}
},
{
- "id": 37346,
+ "id": 20057,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -806611,7 +807535,7 @@
}
},
{
- "id": 37347,
+ "id": 20058,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -806646,7 +807570,7 @@
}
},
{
- "id": 37348,
+ "id": 20059,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -806681,7 +807605,7 @@
}
},
{
- "id": 37349,
+ "id": 20060,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -806716,7 +807640,7 @@
}
},
{
- "id": 37350,
+ "id": 20061,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -806751,7 +807675,7 @@
}
},
{
- "id": 37351,
+ "id": 20062,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -806786,7 +807710,7 @@
}
},
{
- "id": 37352,
+ "id": 20063,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -806821,7 +807745,7 @@
}
},
{
- "id": 37353,
+ "id": 20064,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -806856,7 +807780,7 @@
}
},
{
- "id": 37354,
+ "id": 20065,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -806891,7 +807815,7 @@
}
},
{
- "id": 37355,
+ "id": 20066,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -806928,7 +807852,7 @@
}
},
{
- "id": 37356,
+ "id": 20067,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -806965,7 +807889,7 @@
}
},
{
- "id": 37357,
+ "id": 20068,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -807015,7 +807939,7 @@
}
},
{
- "id": 37358,
+ "id": 20069,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -807060,7 +807984,7 @@
}
},
{
- "id": 37359,
+ "id": 20070,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -807095,7 +808019,7 @@
}
},
{
- "id": 37360,
+ "id": 20071,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -807132,7 +808056,7 @@
}
},
{
- "id": 37361,
+ "id": 20072,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -807172,7 +808096,7 @@
}
},
{
- "id": 37362,
+ "id": 20073,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -807212,7 +808136,7 @@
}
},
{
- "id": 37363,
+ "id": 20074,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -807256,34 +808180,34 @@
{
"title": "Properties",
"children": [
- 37336,
- 37337,
- 37338,
- 37339,
- 37340,
- 37341,
- 37342,
- 37343,
- 37344,
- 37345,
- 37346,
- 37347,
- 37348,
- 37349,
- 37350,
- 37351,
- 37352,
- 37353,
- 37354,
- 37355,
- 37356,
- 37357,
- 37358,
- 37359,
- 37360,
- 37361,
- 37362,
- 37363
+ 20047,
+ 20048,
+ 20049,
+ 20050,
+ 20051,
+ 20052,
+ 20053,
+ 20054,
+ 20055,
+ 20056,
+ 20057,
+ 20058,
+ 20059,
+ 20060,
+ 20061,
+ 20062,
+ 20063,
+ 20064,
+ 20065,
+ 20066,
+ 20067,
+ 20068,
+ 20069,
+ 20070,
+ 20071,
+ 20072,
+ 20073,
+ 20074
]
}
],
@@ -807292,12 +808216,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37336,
+ "id": 20047,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -807307,7 +808231,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -807325,14 +808249,14 @@
"defaultValue": "..."
},
{
- "id": 37370,
+ "id": 20081,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37371,
+ "id": 20082,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -807342,7 +808266,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -807360,7 +808284,7 @@
"defaultValue": "..."
},
{
- "id": 37372,
+ "id": 20083,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -807386,7 +808310,7 @@
}
},
{
- "id": 37373,
+ "id": 20084,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -807412,7 +808336,7 @@
}
},
{
- "id": 37374,
+ "id": 20085,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -807447,7 +808371,7 @@
}
},
{
- "id": 37375,
+ "id": 20086,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -807482,7 +808406,7 @@
}
},
{
- "id": 37376,
+ "id": 20087,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -807517,7 +808441,7 @@
}
},
{
- "id": 37377,
+ "id": 20088,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -807552,7 +808476,7 @@
}
},
{
- "id": 37378,
+ "id": 20089,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -807578,7 +808502,7 @@
}
},
{
- "id": 37379,
+ "id": 20090,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -807604,7 +808528,7 @@
}
},
{
- "id": 37380,
+ "id": 20091,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -807639,7 +808563,7 @@
}
},
{
- "id": 37381,
+ "id": 20092,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -807665,7 +808589,7 @@
}
},
{
- "id": 37382,
+ "id": 20093,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -807700,7 +808624,7 @@
}
},
{
- "id": 37383,
+ "id": 20094,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -807735,7 +808659,7 @@
}
},
{
- "id": 37384,
+ "id": 20095,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -807770,7 +808694,7 @@
}
},
{
- "id": 37385,
+ "id": 20096,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -807805,7 +808729,7 @@
}
},
{
- "id": 37386,
+ "id": 20097,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -807840,7 +808764,7 @@
}
},
{
- "id": 37387,
+ "id": 20098,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -807875,7 +808799,7 @@
}
},
{
- "id": 37388,
+ "id": 20099,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -807910,7 +808834,7 @@
}
},
{
- "id": 37389,
+ "id": 20100,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -807945,7 +808869,7 @@
}
},
{
- "id": 37390,
+ "id": 20101,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -807982,7 +808906,7 @@
}
},
{
- "id": 37391,
+ "id": 20102,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -808019,7 +808943,7 @@
}
},
{
- "id": 37392,
+ "id": 20103,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -808069,7 +808993,7 @@
}
},
{
- "id": 37393,
+ "id": 20104,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -808114,7 +809038,7 @@
}
},
{
- "id": 37394,
+ "id": 20105,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -808149,7 +809073,7 @@
}
},
{
- "id": 37395,
+ "id": 20106,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -808186,7 +809110,7 @@
}
},
{
- "id": 37396,
+ "id": 20107,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -808226,7 +809150,7 @@
}
},
{
- "id": 37397,
+ "id": 20108,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -808266,7 +809190,7 @@
}
},
{
- "id": 37398,
+ "id": 20109,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -808310,34 +809234,34 @@
{
"title": "Properties",
"children": [
- 37371,
- 37372,
- 37373,
- 37374,
- 37375,
- 37376,
- 37377,
- 37378,
- 37379,
- 37380,
- 37381,
- 37382,
- 37383,
- 37384,
- 37385,
- 37386,
- 37387,
- 37388,
- 37389,
- 37390,
- 37391,
- 37392,
- 37393,
- 37394,
- 37395,
- 37396,
- 37397,
- 37398
+ 20082,
+ 20083,
+ 20084,
+ 20085,
+ 20086,
+ 20087,
+ 20088,
+ 20089,
+ 20090,
+ 20091,
+ 20092,
+ 20093,
+ 20094,
+ 20095,
+ 20096,
+ 20097,
+ 20098,
+ 20099,
+ 20100,
+ 20101,
+ 20102,
+ 20103,
+ 20104,
+ 20105,
+ 20106,
+ 20107,
+ 20108,
+ 20109
]
}
],
@@ -808346,12 +809270,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37371,
+ "id": 20082,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -808361,7 +809285,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -808379,14 +809303,14 @@
"defaultValue": "..."
},
{
- "id": 37399,
+ "id": 20110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37400,
+ "id": 20111,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -808396,7 +809320,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -808414,7 +809338,7 @@
"defaultValue": "..."
},
{
- "id": 37401,
+ "id": 20112,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -808440,7 +809364,7 @@
}
},
{
- "id": 37402,
+ "id": 20113,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -808466,7 +809390,7 @@
}
},
{
- "id": 37403,
+ "id": 20114,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -808501,7 +809425,7 @@
}
},
{
- "id": 37404,
+ "id": 20115,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -808536,7 +809460,7 @@
}
},
{
- "id": 37405,
+ "id": 20116,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -808571,7 +809495,7 @@
}
},
{
- "id": 37406,
+ "id": 20117,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -808606,7 +809530,7 @@
}
},
{
- "id": 37407,
+ "id": 20118,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -808632,7 +809556,7 @@
}
},
{
- "id": 37408,
+ "id": 20119,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -808658,7 +809582,7 @@
}
},
{
- "id": 37409,
+ "id": 20120,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -808693,7 +809617,7 @@
}
},
{
- "id": 37410,
+ "id": 20121,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -808719,7 +809643,7 @@
}
},
{
- "id": 37411,
+ "id": 20122,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -808754,7 +809678,7 @@
}
},
{
- "id": 37412,
+ "id": 20123,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -808789,7 +809713,7 @@
}
},
{
- "id": 37413,
+ "id": 20124,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -808824,7 +809748,7 @@
}
},
{
- "id": 37414,
+ "id": 20125,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -808859,7 +809783,7 @@
}
},
{
- "id": 37415,
+ "id": 20126,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -808894,7 +809818,7 @@
}
},
{
- "id": 37416,
+ "id": 20127,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -808929,7 +809853,7 @@
}
},
{
- "id": 37417,
+ "id": 20128,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -808964,7 +809888,7 @@
}
},
{
- "id": 37418,
+ "id": 20129,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -808999,7 +809923,7 @@
}
},
{
- "id": 37419,
+ "id": 20130,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -809036,7 +809960,7 @@
}
},
{
- "id": 37420,
+ "id": 20131,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -809073,7 +809997,7 @@
}
},
{
- "id": 37421,
+ "id": 20132,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -809123,7 +810047,7 @@
}
},
{
- "id": 37422,
+ "id": 20133,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -809168,7 +810092,7 @@
}
},
{
- "id": 37423,
+ "id": 20134,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -809203,7 +810127,7 @@
}
},
{
- "id": 37424,
+ "id": 20135,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -809240,7 +810164,7 @@
}
},
{
- "id": 37425,
+ "id": 20136,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -809280,7 +810204,7 @@
}
},
{
- "id": 37426,
+ "id": 20137,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -809320,7 +810244,7 @@
}
},
{
- "id": 37427,
+ "id": 20138,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -809364,34 +810288,34 @@
{
"title": "Properties",
"children": [
- 37400,
- 37401,
- 37402,
- 37403,
- 37404,
- 37405,
- 37406,
- 37407,
- 37408,
- 37409,
- 37410,
- 37411,
- 37412,
- 37413,
- 37414,
- 37415,
- 37416,
- 37417,
- 37418,
- 37419,
- 37420,
- 37421,
- 37422,
- 37423,
- 37424,
- 37425,
- 37426,
- 37427
+ 20111,
+ 20112,
+ 20113,
+ 20114,
+ 20115,
+ 20116,
+ 20117,
+ 20118,
+ 20119,
+ 20120,
+ 20121,
+ 20122,
+ 20123,
+ 20124,
+ 20125,
+ 20126,
+ 20127,
+ 20128,
+ 20129,
+ 20130,
+ 20131,
+ 20132,
+ 20133,
+ 20134,
+ 20135,
+ 20136,
+ 20137,
+ 20138
]
}
],
@@ -809400,12 +810324,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37400,
+ "id": 20111,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -809415,7 +810339,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -809433,14 +810357,14 @@
"defaultValue": "..."
},
{
- "id": 37428,
+ "id": 20139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37429,
+ "id": 20140,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -809450,7 +810374,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -809468,7 +810392,7 @@
"defaultValue": "..."
},
{
- "id": 37430,
+ "id": 20141,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -809494,7 +810418,7 @@
}
},
{
- "id": 37431,
+ "id": 20142,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -809520,7 +810444,7 @@
}
},
{
- "id": 37432,
+ "id": 20143,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -809555,7 +810479,7 @@
}
},
{
- "id": 37433,
+ "id": 20144,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -809590,7 +810514,7 @@
}
},
{
- "id": 37434,
+ "id": 20145,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -809625,7 +810549,7 @@
}
},
{
- "id": 37435,
+ "id": 20146,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -809660,7 +810584,7 @@
}
},
{
- "id": 37436,
+ "id": 20147,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -809686,7 +810610,7 @@
}
},
{
- "id": 37437,
+ "id": 20148,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -809712,7 +810636,7 @@
}
},
{
- "id": 37438,
+ "id": 20149,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -809747,7 +810671,7 @@
}
},
{
- "id": 37439,
+ "id": 20150,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -809773,7 +810697,7 @@
}
},
{
- "id": 37440,
+ "id": 20151,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -809808,7 +810732,7 @@
}
},
{
- "id": 37441,
+ "id": 20152,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -809843,7 +810767,7 @@
}
},
{
- "id": 37442,
+ "id": 20153,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -809878,7 +810802,7 @@
}
},
{
- "id": 37443,
+ "id": 20154,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -809913,7 +810837,7 @@
}
},
{
- "id": 37444,
+ "id": 20155,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -809948,7 +810872,7 @@
}
},
{
- "id": 37445,
+ "id": 20156,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -809983,7 +810907,7 @@
}
},
{
- "id": 37446,
+ "id": 20157,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -810018,7 +810942,7 @@
}
},
{
- "id": 37447,
+ "id": 20158,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -810053,7 +810977,7 @@
}
},
{
- "id": 37448,
+ "id": 20159,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -810090,7 +811014,7 @@
}
},
{
- "id": 37449,
+ "id": 20160,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -810127,7 +811051,7 @@
}
},
{
- "id": 37450,
+ "id": 20161,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -810177,7 +811101,7 @@
}
},
{
- "id": 37451,
+ "id": 20162,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -810222,7 +811146,7 @@
}
},
{
- "id": 37452,
+ "id": 20163,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -810257,7 +811181,7 @@
}
},
{
- "id": 37453,
+ "id": 20164,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -810294,7 +811218,7 @@
}
},
{
- "id": 37454,
+ "id": 20165,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -810334,7 +811258,7 @@
}
},
{
- "id": 37455,
+ "id": 20166,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -810374,7 +811298,7 @@
}
},
{
- "id": 37456,
+ "id": 20167,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -810418,34 +811342,34 @@
{
"title": "Properties",
"children": [
- 37429,
- 37430,
- 37431,
- 37432,
- 37433,
- 37434,
- 37435,
- 37436,
- 37437,
- 37438,
- 37439,
- 37440,
- 37441,
- 37442,
- 37443,
- 37444,
- 37445,
- 37446,
- 37447,
- 37448,
- 37449,
- 37450,
- 37451,
- 37452,
- 37453,
- 37454,
- 37455,
- 37456
+ 20140,
+ 20141,
+ 20142,
+ 20143,
+ 20144,
+ 20145,
+ 20146,
+ 20147,
+ 20148,
+ 20149,
+ 20150,
+ 20151,
+ 20152,
+ 20153,
+ 20154,
+ 20155,
+ 20156,
+ 20157,
+ 20158,
+ 20159,
+ 20160,
+ 20161,
+ 20162,
+ 20163,
+ 20164,
+ 20165,
+ 20166,
+ 20167
]
}
],
@@ -810454,12 +811378,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37429,
+ "id": 20140,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -810469,7 +811393,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -810487,14 +811411,14 @@
"defaultValue": "..."
},
{
- "id": 37457,
+ "id": 20168,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37458,
+ "id": 20169,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -810504,7 +811428,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -810522,7 +811446,7 @@
"defaultValue": "..."
},
{
- "id": 37459,
+ "id": 20170,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -810548,7 +811472,7 @@
}
},
{
- "id": 37460,
+ "id": 20171,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -810574,7 +811498,7 @@
}
},
{
- "id": 37461,
+ "id": 20172,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -810609,7 +811533,7 @@
}
},
{
- "id": 37462,
+ "id": 20173,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -810644,7 +811568,7 @@
}
},
{
- "id": 37463,
+ "id": 20174,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -810679,7 +811603,7 @@
}
},
{
- "id": 37464,
+ "id": 20175,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -810714,7 +811638,7 @@
}
},
{
- "id": 37465,
+ "id": 20176,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -810740,7 +811664,7 @@
}
},
{
- "id": 37466,
+ "id": 20177,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -810766,7 +811690,7 @@
}
},
{
- "id": 37467,
+ "id": 20178,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -810801,7 +811725,7 @@
}
},
{
- "id": 37468,
+ "id": 20179,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -810827,7 +811751,7 @@
}
},
{
- "id": 37469,
+ "id": 20180,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -810862,7 +811786,7 @@
}
},
{
- "id": 37470,
+ "id": 20181,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -810897,7 +811821,7 @@
}
},
{
- "id": 37471,
+ "id": 20182,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -810932,7 +811856,7 @@
}
},
{
- "id": 37472,
+ "id": 20183,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -810967,7 +811891,7 @@
}
},
{
- "id": 37473,
+ "id": 20184,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -811002,7 +811926,7 @@
}
},
{
- "id": 37474,
+ "id": 20185,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -811037,7 +811961,7 @@
}
},
{
- "id": 37475,
+ "id": 20186,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -811072,7 +811996,7 @@
}
},
{
- "id": 37476,
+ "id": 20187,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -811107,7 +812031,7 @@
}
},
{
- "id": 37477,
+ "id": 20188,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -811144,7 +812068,7 @@
}
},
{
- "id": 37478,
+ "id": 20189,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -811181,7 +812105,7 @@
}
},
{
- "id": 37479,
+ "id": 20190,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -811231,7 +812155,7 @@
}
},
{
- "id": 37480,
+ "id": 20191,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -811276,7 +812200,7 @@
}
},
{
- "id": 37481,
+ "id": 20192,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -811311,7 +812235,7 @@
}
},
{
- "id": 37482,
+ "id": 20193,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -811348,7 +812272,7 @@
}
},
{
- "id": 37483,
+ "id": 20194,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -811388,7 +812312,7 @@
}
},
{
- "id": 37484,
+ "id": 20195,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -811428,7 +812352,7 @@
}
},
{
- "id": 37485,
+ "id": 20196,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -811472,34 +812396,34 @@
{
"title": "Properties",
"children": [
- 37458,
- 37459,
- 37460,
- 37461,
- 37462,
- 37463,
- 37464,
- 37465,
- 37466,
- 37467,
- 37468,
- 37469,
- 37470,
- 37471,
- 37472,
- 37473,
- 37474,
- 37475,
- 37476,
- 37477,
- 37478,
- 37479,
- 37480,
- 37481,
- 37482,
- 37483,
- 37484,
- 37485
+ 20169,
+ 20170,
+ 20171,
+ 20172,
+ 20173,
+ 20174,
+ 20175,
+ 20176,
+ 20177,
+ 20178,
+ 20179,
+ 20180,
+ 20181,
+ 20182,
+ 20183,
+ 20184,
+ 20185,
+ 20186,
+ 20187,
+ 20188,
+ 20189,
+ 20190,
+ 20191,
+ 20192,
+ 20193,
+ 20194,
+ 20195,
+ 20196
]
}
],
@@ -811508,12 +812432,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37458,
+ "id": 20169,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -811523,7 +812447,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -811541,14 +812465,14 @@
"defaultValue": "..."
},
{
- "id": 37492,
+ "id": 20203,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37493,
+ "id": 20204,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -811558,7 +812482,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -811576,7 +812500,7 @@
"defaultValue": "..."
},
{
- "id": 37494,
+ "id": 20205,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -811602,7 +812526,7 @@
}
},
{
- "id": 37495,
+ "id": 20206,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -811628,7 +812552,7 @@
}
},
{
- "id": 37496,
+ "id": 20207,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -811663,7 +812587,7 @@
}
},
{
- "id": 37497,
+ "id": 20208,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -811698,7 +812622,7 @@
}
},
{
- "id": 37498,
+ "id": 20209,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -811733,7 +812657,7 @@
}
},
{
- "id": 37499,
+ "id": 20210,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -811768,7 +812692,7 @@
}
},
{
- "id": 37500,
+ "id": 20211,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -811794,7 +812718,7 @@
}
},
{
- "id": 37501,
+ "id": 20212,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -811820,7 +812744,7 @@
}
},
{
- "id": 37502,
+ "id": 20213,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -811855,7 +812779,7 @@
}
},
{
- "id": 37503,
+ "id": 20214,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -811881,7 +812805,7 @@
}
},
{
- "id": 37504,
+ "id": 20215,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -811916,7 +812840,7 @@
}
},
{
- "id": 37505,
+ "id": 20216,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -811951,7 +812875,7 @@
}
},
{
- "id": 37506,
+ "id": 20217,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -811986,7 +812910,7 @@
}
},
{
- "id": 37507,
+ "id": 20218,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -812021,7 +812945,7 @@
}
},
{
- "id": 37508,
+ "id": 20219,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -812056,7 +812980,7 @@
}
},
{
- "id": 37509,
+ "id": 20220,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -812091,7 +813015,7 @@
}
},
{
- "id": 37510,
+ "id": 20221,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -812126,7 +813050,7 @@
}
},
{
- "id": 37511,
+ "id": 20222,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -812161,7 +813085,7 @@
}
},
{
- "id": 37512,
+ "id": 20223,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -812198,7 +813122,7 @@
}
},
{
- "id": 37513,
+ "id": 20224,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -812235,7 +813159,7 @@
}
},
{
- "id": 37514,
+ "id": 20225,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -812285,7 +813209,7 @@
}
},
{
- "id": 37515,
+ "id": 20226,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -812330,7 +813254,7 @@
}
},
{
- "id": 37516,
+ "id": 20227,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -812365,7 +813289,7 @@
}
},
{
- "id": 37517,
+ "id": 20228,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -812402,7 +813326,7 @@
}
},
{
- "id": 37518,
+ "id": 20229,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -812442,7 +813366,7 @@
}
},
{
- "id": 37519,
+ "id": 20230,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -812482,7 +813406,7 @@
}
},
{
- "id": 37520,
+ "id": 20231,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -812526,34 +813450,34 @@
{
"title": "Properties",
"children": [
- 37493,
- 37494,
- 37495,
- 37496,
- 37497,
- 37498,
- 37499,
- 37500,
- 37501,
- 37502,
- 37503,
- 37504,
- 37505,
- 37506,
- 37507,
- 37508,
- 37509,
- 37510,
- 37511,
- 37512,
- 37513,
- 37514,
- 37515,
- 37516,
- 37517,
- 37518,
- 37519,
- 37520
+ 20204,
+ 20205,
+ 20206,
+ 20207,
+ 20208,
+ 20209,
+ 20210,
+ 20211,
+ 20212,
+ 20213,
+ 20214,
+ 20215,
+ 20216,
+ 20217,
+ 20218,
+ 20219,
+ 20220,
+ 20221,
+ 20222,
+ 20223,
+ 20224,
+ 20225,
+ 20226,
+ 20227,
+ 20228,
+ 20229,
+ 20230,
+ 20231
]
}
],
@@ -812562,12 +813486,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37493,
+ "id": 20204,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -812577,7 +813501,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -812595,14 +813519,14 @@
"defaultValue": "..."
},
{
- "id": 37521,
+ "id": 20232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37522,
+ "id": 20233,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -812612,7 +813536,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -812630,7 +813554,7 @@
"defaultValue": "..."
},
{
- "id": 37523,
+ "id": 20234,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -812656,7 +813580,7 @@
}
},
{
- "id": 37524,
+ "id": 20235,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -812682,7 +813606,7 @@
}
},
{
- "id": 37525,
+ "id": 20236,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -812717,7 +813641,7 @@
}
},
{
- "id": 37526,
+ "id": 20237,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -812752,7 +813676,7 @@
}
},
{
- "id": 37527,
+ "id": 20238,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -812787,7 +813711,7 @@
}
},
{
- "id": 37528,
+ "id": 20239,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -812822,7 +813746,7 @@
}
},
{
- "id": 37529,
+ "id": 20240,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -812848,7 +813772,7 @@
}
},
{
- "id": 37530,
+ "id": 20241,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -812874,7 +813798,7 @@
}
},
{
- "id": 37531,
+ "id": 20242,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -812909,7 +813833,7 @@
}
},
{
- "id": 37532,
+ "id": 20243,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -812935,7 +813859,7 @@
}
},
{
- "id": 37533,
+ "id": 20244,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -812970,7 +813894,7 @@
}
},
{
- "id": 37534,
+ "id": 20245,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -813005,7 +813929,7 @@
}
},
{
- "id": 37535,
+ "id": 20246,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -813040,7 +813964,7 @@
}
},
{
- "id": 37536,
+ "id": 20247,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -813075,7 +813999,7 @@
}
},
{
- "id": 37537,
+ "id": 20248,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -813110,7 +814034,7 @@
}
},
{
- "id": 37538,
+ "id": 20249,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -813145,7 +814069,7 @@
}
},
{
- "id": 37539,
+ "id": 20250,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -813180,7 +814104,7 @@
}
},
{
- "id": 37540,
+ "id": 20251,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -813215,7 +814139,7 @@
}
},
{
- "id": 37541,
+ "id": 20252,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -813252,7 +814176,7 @@
}
},
{
- "id": 37542,
+ "id": 20253,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -813289,7 +814213,7 @@
}
},
{
- "id": 37543,
+ "id": 20254,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -813339,7 +814263,7 @@
}
},
{
- "id": 37544,
+ "id": 20255,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -813384,7 +814308,7 @@
}
},
{
- "id": 37545,
+ "id": 20256,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -813419,7 +814343,7 @@
}
},
{
- "id": 37546,
+ "id": 20257,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -813456,7 +814380,7 @@
}
},
{
- "id": 37547,
+ "id": 20258,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -813496,7 +814420,7 @@
}
},
{
- "id": 37548,
+ "id": 20259,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -813536,7 +814460,7 @@
}
},
{
- "id": 37549,
+ "id": 20260,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -813580,34 +814504,34 @@
{
"title": "Properties",
"children": [
- 37522,
- 37523,
- 37524,
- 37525,
- 37526,
- 37527,
- 37528,
- 37529,
- 37530,
- 37531,
- 37532,
- 37533,
- 37534,
- 37535,
- 37536,
- 37537,
- 37538,
- 37539,
- 37540,
- 37541,
- 37542,
- 37543,
- 37544,
- 37545,
- 37546,
- 37547,
- 37548,
- 37549
+ 20233,
+ 20234,
+ 20235,
+ 20236,
+ 20237,
+ 20238,
+ 20239,
+ 20240,
+ 20241,
+ 20242,
+ 20243,
+ 20244,
+ 20245,
+ 20246,
+ 20247,
+ 20248,
+ 20249,
+ 20250,
+ 20251,
+ 20252,
+ 20253,
+ 20254,
+ 20255,
+ 20256,
+ 20257,
+ 20258,
+ 20259,
+ 20260
]
}
],
@@ -813616,12 +814540,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37522,
+ "id": 20233,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -813631,7 +814555,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -813649,14 +814573,14 @@
"defaultValue": "..."
},
{
- "id": 37556,
+ "id": 20267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37557,
+ "id": 20268,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -813666,7 +814590,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -813684,7 +814608,7 @@
"defaultValue": "..."
},
{
- "id": 37558,
+ "id": 20269,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -813710,7 +814634,7 @@
}
},
{
- "id": 37559,
+ "id": 20270,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -813736,7 +814660,7 @@
}
},
{
- "id": 37560,
+ "id": 20271,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -813771,7 +814695,7 @@
}
},
{
- "id": 37561,
+ "id": 20272,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -813806,7 +814730,7 @@
}
},
{
- "id": 37562,
+ "id": 20273,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -813841,7 +814765,7 @@
}
},
{
- "id": 37563,
+ "id": 20274,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -813876,7 +814800,7 @@
}
},
{
- "id": 37564,
+ "id": 20275,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -813902,7 +814826,7 @@
}
},
{
- "id": 37565,
+ "id": 20276,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -813928,7 +814852,7 @@
}
},
{
- "id": 37566,
+ "id": 20277,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -813963,7 +814887,7 @@
}
},
{
- "id": 37567,
+ "id": 20278,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -813989,7 +814913,7 @@
}
},
{
- "id": 37568,
+ "id": 20279,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -814024,7 +814948,7 @@
}
},
{
- "id": 37569,
+ "id": 20280,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -814059,7 +814983,7 @@
}
},
{
- "id": 37570,
+ "id": 20281,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -814094,7 +815018,7 @@
}
},
{
- "id": 37571,
+ "id": 20282,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -814129,7 +815053,7 @@
}
},
{
- "id": 37572,
+ "id": 20283,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -814164,7 +815088,7 @@
}
},
{
- "id": 37573,
+ "id": 20284,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -814199,7 +815123,7 @@
}
},
{
- "id": 37574,
+ "id": 20285,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -814234,7 +815158,7 @@
}
},
{
- "id": 37575,
+ "id": 20286,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -814269,7 +815193,7 @@
}
},
{
- "id": 37576,
+ "id": 20287,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -814306,7 +815230,7 @@
}
},
{
- "id": 37577,
+ "id": 20288,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -814343,7 +815267,7 @@
}
},
{
- "id": 37578,
+ "id": 20289,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -814393,7 +815317,7 @@
}
},
{
- "id": 37579,
+ "id": 20290,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -814438,7 +815362,7 @@
}
},
{
- "id": 37580,
+ "id": 20291,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -814473,7 +815397,7 @@
}
},
{
- "id": 37581,
+ "id": 20292,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -814510,7 +815434,7 @@
}
},
{
- "id": 37582,
+ "id": 20293,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -814550,7 +815474,7 @@
}
},
{
- "id": 37583,
+ "id": 20294,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -814590,7 +815514,7 @@
}
},
{
- "id": 37584,
+ "id": 20295,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -814634,34 +815558,34 @@
{
"title": "Properties",
"children": [
- 37557,
- 37558,
- 37559,
- 37560,
- 37561,
- 37562,
- 37563,
- 37564,
- 37565,
- 37566,
- 37567,
- 37568,
- 37569,
- 37570,
- 37571,
- 37572,
- 37573,
- 37574,
- 37575,
- 37576,
- 37577,
- 37578,
- 37579,
- 37580,
- 37581,
- 37582,
- 37583,
- 37584
+ 20268,
+ 20269,
+ 20270,
+ 20271,
+ 20272,
+ 20273,
+ 20274,
+ 20275,
+ 20276,
+ 20277,
+ 20278,
+ 20279,
+ 20280,
+ 20281,
+ 20282,
+ 20283,
+ 20284,
+ 20285,
+ 20286,
+ 20287,
+ 20288,
+ 20289,
+ 20290,
+ 20291,
+ 20292,
+ 20293,
+ 20294,
+ 20295
]
}
],
@@ -814670,12 +815594,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37557,
+ "id": 20268,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -814685,7 +815609,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -814703,14 +815627,14 @@
"defaultValue": "..."
},
{
- "id": 37599,
+ "id": 20310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37600,
+ "id": 20311,
"name": "product_variants",
"variant": "declaration",
"kind": 1024,
@@ -814720,7 +815644,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 365,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L365"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L365"
}
],
"type": {
@@ -814735,14 +815659,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37601,
+ "id": 20312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37602,
+ "id": 20313,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -814752,7 +815676,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -814770,7 +815694,7 @@
"defaultValue": "..."
},
{
- "id": 37603,
+ "id": 20314,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -814796,7 +815720,7 @@
}
},
{
- "id": 37604,
+ "id": 20315,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -814822,7 +815746,7 @@
}
},
{
- "id": 37605,
+ "id": 20316,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -814857,7 +815781,7 @@
}
},
{
- "id": 37606,
+ "id": 20317,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -814892,7 +815816,7 @@
}
},
{
- "id": 37607,
+ "id": 20318,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -814927,7 +815851,7 @@
}
},
{
- "id": 37608,
+ "id": 20319,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -814962,7 +815886,7 @@
}
},
{
- "id": 37609,
+ "id": 20320,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -814988,7 +815912,7 @@
}
},
{
- "id": 37610,
+ "id": 20321,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -815014,7 +815938,7 @@
}
},
{
- "id": 37611,
+ "id": 20322,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -815049,7 +815973,7 @@
}
},
{
- "id": 37612,
+ "id": 20323,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -815075,7 +815999,7 @@
}
},
{
- "id": 37613,
+ "id": 20324,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -815110,7 +816034,7 @@
}
},
{
- "id": 37614,
+ "id": 20325,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -815145,7 +816069,7 @@
}
},
{
- "id": 37615,
+ "id": 20326,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -815180,7 +816104,7 @@
}
},
{
- "id": 37616,
+ "id": 20327,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -815215,7 +816139,7 @@
}
},
{
- "id": 37617,
+ "id": 20328,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -815250,7 +816174,7 @@
}
},
{
- "id": 37618,
+ "id": 20329,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -815285,7 +816209,7 @@
}
},
{
- "id": 37619,
+ "id": 20330,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -815320,7 +816244,7 @@
}
},
{
- "id": 37620,
+ "id": 20331,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -815355,7 +816279,7 @@
}
},
{
- "id": 37621,
+ "id": 20332,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -815392,7 +816316,7 @@
}
},
{
- "id": 37622,
+ "id": 20333,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -815429,7 +816353,7 @@
}
},
{
- "id": 37623,
+ "id": 20334,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -815479,7 +816403,7 @@
}
},
{
- "id": 37624,
+ "id": 20335,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -815524,7 +816448,7 @@
}
},
{
- "id": 37625,
+ "id": 20336,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -815559,7 +816483,7 @@
}
},
{
- "id": 37626,
+ "id": 20337,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -815596,7 +816520,7 @@
}
},
{
- "id": 37627,
+ "id": 20338,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -815636,7 +816560,7 @@
}
},
{
- "id": 37628,
+ "id": 20339,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -815676,7 +816600,7 @@
}
},
{
- "id": 37629,
+ "id": 20340,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -815720,34 +816644,34 @@
{
"title": "Properties",
"children": [
- 37602,
- 37603,
- 37604,
- 37605,
- 37606,
- 37607,
- 37608,
- 37609,
- 37610,
- 37611,
- 37612,
- 37613,
- 37614,
- 37615,
- 37616,
- 37617,
- 37618,
- 37619,
- 37620,
- 37621,
- 37622,
- 37623,
- 37624,
- 37625,
- 37626,
- 37627,
- 37628,
- 37629
+ 20313,
+ 20314,
+ 20315,
+ 20316,
+ 20317,
+ 20318,
+ 20319,
+ 20320,
+ 20321,
+ 20322,
+ 20323,
+ 20324,
+ 20325,
+ 20326,
+ 20327,
+ 20328,
+ 20329,
+ 20330,
+ 20331,
+ 20332,
+ 20333,
+ 20334,
+ 20335,
+ 20336,
+ 20337,
+ 20338,
+ 20339,
+ 20340
]
}
],
@@ -815756,7 +816680,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -815769,7 +816693,7 @@
"defaultValue": "response"
},
{
- "id": 37630,
+ "id": 20341,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -815787,7 +816711,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 366,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L366"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L366"
}
],
"type": {
@@ -815810,8 +816734,8 @@
{
"title": "Properties",
"children": [
- 37600,
- 37630
+ 20311,
+ 20341
]
}
],
@@ -815820,19 +816744,19 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 364,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L364"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L364"
}
]
},
{
- "id": 37601,
+ "id": 20312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37602,
+ "id": 20313,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -815842,7 +816766,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -815860,7 +816784,7 @@
"defaultValue": "..."
},
{
- "id": 37603,
+ "id": 20314,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -815886,7 +816810,7 @@
}
},
{
- "id": 37604,
+ "id": 20315,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -815912,7 +816836,7 @@
}
},
{
- "id": 37605,
+ "id": 20316,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -815947,7 +816871,7 @@
}
},
{
- "id": 37606,
+ "id": 20317,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -815982,7 +816906,7 @@
}
},
{
- "id": 37607,
+ "id": 20318,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -816017,7 +816941,7 @@
}
},
{
- "id": 37608,
+ "id": 20319,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -816052,7 +816976,7 @@
}
},
{
- "id": 37609,
+ "id": 20320,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -816078,7 +817002,7 @@
}
},
{
- "id": 37610,
+ "id": 20321,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -816104,7 +817028,7 @@
}
},
{
- "id": 37611,
+ "id": 20322,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -816139,7 +817063,7 @@
}
},
{
- "id": 37612,
+ "id": 20323,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -816165,7 +817089,7 @@
}
},
{
- "id": 37613,
+ "id": 20324,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -816200,7 +817124,7 @@
}
},
{
- "id": 37614,
+ "id": 20325,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -816235,7 +817159,7 @@
}
},
{
- "id": 37615,
+ "id": 20326,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -816270,7 +817194,7 @@
}
},
{
- "id": 37616,
+ "id": 20327,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -816305,7 +817229,7 @@
}
},
{
- "id": 37617,
+ "id": 20328,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -816340,7 +817264,7 @@
}
},
{
- "id": 37618,
+ "id": 20329,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -816375,7 +817299,7 @@
}
},
{
- "id": 37619,
+ "id": 20330,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -816410,7 +817334,7 @@
}
},
{
- "id": 37620,
+ "id": 20331,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -816445,7 +817369,7 @@
}
},
{
- "id": 37621,
+ "id": 20332,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -816482,7 +817406,7 @@
}
},
{
- "id": 37622,
+ "id": 20333,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -816519,7 +817443,7 @@
}
},
{
- "id": 37623,
+ "id": 20334,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -816569,7 +817493,7 @@
}
},
{
- "id": 37624,
+ "id": 20335,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -816614,7 +817538,7 @@
}
},
{
- "id": 37625,
+ "id": 20336,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -816649,7 +817573,7 @@
}
},
{
- "id": 37626,
+ "id": 20337,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -816686,7 +817610,7 @@
}
},
{
- "id": 37627,
+ "id": 20338,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -816726,7 +817650,7 @@
}
},
{
- "id": 37628,
+ "id": 20339,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -816766,7 +817690,7 @@
}
},
{
- "id": 37629,
+ "id": 20340,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -816810,34 +817734,34 @@
{
"title": "Properties",
"children": [
- 37602,
- 37603,
- 37604,
- 37605,
- 37606,
- 37607,
- 37608,
- 37609,
- 37610,
- 37611,
- 37612,
- 37613,
- 37614,
- 37615,
- 37616,
- 37617,
- 37618,
- 37619,
- 37620,
- 37621,
- 37622,
- 37623,
- 37624,
- 37625,
- 37626,
- 37627,
- 37628,
- 37629
+ 20313,
+ 20314,
+ 20315,
+ 20316,
+ 20317,
+ 20318,
+ 20319,
+ 20320,
+ 20321,
+ 20322,
+ 20323,
+ 20324,
+ 20325,
+ 20326,
+ 20327,
+ 20328,
+ 20329,
+ 20330,
+ 20331,
+ 20332,
+ 20333,
+ 20334,
+ 20335,
+ 20336,
+ 20337,
+ 20338,
+ 20339,
+ 20340
]
}
],
@@ -816846,12 +817770,12 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
},
{
- "id": 37602,
+ "id": 20313,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -816861,7 +817785,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -816879,7 +817803,7 @@
"defaultValue": "..."
},
{
- "id": 37600,
+ "id": 20311,
"name": "product_variants",
"variant": "declaration",
"kind": 1024,
@@ -816889,7 +817813,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 365,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L365"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L365"
}
],
"type": {
@@ -816904,14 +817828,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37601,
+ "id": 20312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37602,
+ "id": 20313,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -816921,7 +817845,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 348,
"character": 10,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L348"
}
],
"type": {
@@ -816939,7 +817863,7 @@
"defaultValue": "..."
},
{
- "id": 37603,
+ "id": 20314,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -816965,7 +817889,7 @@
}
},
{
- "id": 37604,
+ "id": 20315,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -816991,7 +817915,7 @@
}
},
{
- "id": 37605,
+ "id": 20316,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -817026,7 +817950,7 @@
}
},
{
- "id": 37606,
+ "id": 20317,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -817061,7 +817985,7 @@
}
},
{
- "id": 37607,
+ "id": 20318,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -817096,7 +818020,7 @@
}
},
{
- "id": 37608,
+ "id": 20319,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -817131,7 +818055,7 @@
}
},
{
- "id": 37609,
+ "id": 20320,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -817157,7 +818081,7 @@
}
},
{
- "id": 37610,
+ "id": 20321,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -817183,7 +818107,7 @@
}
},
{
- "id": 37611,
+ "id": 20322,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -817218,7 +818142,7 @@
}
},
{
- "id": 37612,
+ "id": 20323,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -817244,7 +818168,7 @@
}
},
{
- "id": 37613,
+ "id": 20324,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -817279,7 +818203,7 @@
}
},
{
- "id": 37614,
+ "id": 20325,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -817314,7 +818238,7 @@
}
},
{
- "id": 37615,
+ "id": 20326,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -817349,7 +818273,7 @@
}
},
{
- "id": 37616,
+ "id": 20327,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -817384,7 +818308,7 @@
}
},
{
- "id": 37617,
+ "id": 20328,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -817419,7 +818343,7 @@
}
},
{
- "id": 37618,
+ "id": 20329,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -817454,7 +818378,7 @@
}
},
{
- "id": 37619,
+ "id": 20330,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -817489,7 +818413,7 @@
}
},
{
- "id": 37620,
+ "id": 20331,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -817524,7 +818448,7 @@
}
},
{
- "id": 37621,
+ "id": 20332,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -817561,7 +818485,7 @@
}
},
{
- "id": 37622,
+ "id": 20333,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -817598,7 +818522,7 @@
}
},
{
- "id": 37623,
+ "id": 20334,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -817648,7 +818572,7 @@
}
},
{
- "id": 37624,
+ "id": 20335,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -817693,7 +818617,7 @@
}
},
{
- "id": 37625,
+ "id": 20336,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -817728,7 +818652,7 @@
}
},
{
- "id": 37626,
+ "id": 20337,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -817765,7 +818689,7 @@
}
},
{
- "id": 37627,
+ "id": 20338,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -817805,7 +818729,7 @@
}
},
{
- "id": 37628,
+ "id": 20339,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -817845,7 +818769,7 @@
}
},
{
- "id": 37629,
+ "id": 20340,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -817889,34 +818813,34 @@
{
"title": "Properties",
"children": [
- 37602,
- 37603,
- 37604,
- 37605,
- 37606,
- 37607,
- 37608,
- 37609,
- 37610,
- 37611,
- 37612,
- 37613,
- 37614,
- 37615,
- 37616,
- 37617,
- 37618,
- 37619,
- 37620,
- 37621,
- 37622,
- 37623,
- 37624,
- 37625,
- 37626,
- 37627,
- 37628,
- 37629
+ 20313,
+ 20314,
+ 20315,
+ 20316,
+ 20317,
+ 20318,
+ 20319,
+ 20320,
+ 20321,
+ 20322,
+ 20323,
+ 20324,
+ 20325,
+ 20326,
+ 20327,
+ 20328,
+ 20329,
+ 20330,
+ 20331,
+ 20332,
+ 20333,
+ 20334,
+ 20335,
+ 20336,
+ 20337,
+ 20338,
+ 20339,
+ 20340
]
}
],
@@ -817925,7 +818849,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 346,
"character": 69,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L346"
}
]
}
@@ -817938,7 +818862,7 @@
"defaultValue": "response"
},
{
- "id": 37630,
+ "id": 20341,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -817956,7 +818880,7 @@
"fileName": "core-flows/src/product/workflows/create-product-variants.ts",
"line": 366,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L366"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-product-variants.ts#L366"
}
],
"type": {
@@ -817975,7 +818899,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37633,
+ "id": 20344,
"name": "products",
"variant": "declaration",
"kind": 1024,
@@ -817993,7 +818917,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L34"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L34"
}
],
"type": {
@@ -818025,7 +818949,7 @@
}
},
{
- "id": 37634,
+ "id": 20345,
"name": "validateProductInputStep",
"variant": "declaration",
"kind": 64,
@@ -818051,7 +818975,7 @@
},
"children": [
{
- "id": 37643,
+ "id": 20354,
"name": "__type",
"variant": "declaration",
"kind": 1024,
@@ -818069,7 +818993,7 @@
}
},
{
- "id": 37644,
+ "id": 20355,
"name": "__step__",
"variant": "declaration",
"kind": 1024,
@@ -818091,8 +819015,8 @@
{
"title": "Properties",
"children": [
- 37643,
- 37644
+ 20354,
+ 20355
]
}
],
@@ -818101,12 +819025,12 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L73"
}
],
"signatures": [
{
- "id": 37635,
+ "id": 20346,
"name": "validateProductInputStep",
"variant": "signature",
"kind": 4096,
@@ -818135,12 +819059,12 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 73,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L73"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L73"
}
],
"parameters": [
{
- "id": 37636,
+ "id": 20347,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -818150,7 +819074,7 @@
"types": [
{
"type": "reference",
- "target": 37632,
+ "target": 20343,
"name": "ValidateProductInputStepInput",
"package": "@medusajs/core-flows"
},
@@ -818163,7 +819087,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37632,
+ "target": 20343,
"name": "ValidateProductInputStepInput",
"package": "@medusajs/core-flows"
}
@@ -818196,14 +819120,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37637,
+ "id": 20348,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37638,
+ "id": 20349,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -818217,7 +819141,7 @@
],
"signatures": [
{
- "id": 37639,
+ "id": 20350,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -818231,7 +819155,7 @@
],
"parameters": [
{
- "id": 37640,
+ "id": 20351,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -818242,14 +819166,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37641,
+ "id": 20352,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37642,
+ "id": 20353,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -818273,7 +819197,7 @@
{
"title": "Properties",
"children": [
- 37642
+ 20353
]
}
],
@@ -818350,7 +819274,7 @@
{
"title": "Methods",
"children": [
- 37638
+ 20349
]
}
],
@@ -818384,7 +819308,7 @@
]
},
{
- "id": 37647,
+ "id": 20358,
"name": "products",
"variant": "declaration",
"kind": 1024,
@@ -818402,7 +819326,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L100"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L100"
}
],
"type": {
@@ -818419,7 +819343,7 @@
}
},
{
- "id": 37648,
+ "id": 20359,
"name": "createProductsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -818431,7 +819355,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L103"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L103"
}
],
"type": {
@@ -818441,7 +819365,7 @@
"defaultValue": "\"create-products\""
},
{
- "id": 37649,
+ "id": 20360,
"name": "createProductsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -818512,7 +819436,7 @@
},
"children": [
{
- "id": 37657,
+ "id": 20368,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -818535,7 +819459,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37658,
+ "id": 20369,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -818549,7 +819473,7 @@
],
"signatures": [
{
- "id": 37659,
+ "id": 20370,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -818577,7 +819501,7 @@
],
"parameters": [
{
- "id": 37660,
+ "id": 20371,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -818593,14 +819517,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37661,
+ "id": 20372,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37662,
+ "id": 20373,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -818625,7 +819549,7 @@
"types": [
{
"type": "reference",
- "target": 37645,
+ "target": 20356,
"name": "CreateProductsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -818638,7 +819562,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37645,
+ "target": 20356,
"name": "CreateProductsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -818654,7 +819578,7 @@
{
"title": "Properties",
"children": [
- 37662
+ 20373
]
}
],
@@ -818747,14 +819671,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37663,
+ "id": 20374,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37664,
+ "id": 20375,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -818768,7 +819692,7 @@
],
"signatures": [
{
- "id": 37665,
+ "id": 20376,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -818782,7 +819706,7 @@
],
"parameters": [
{
- "id": 37666,
+ "id": 20377,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -818793,14 +819717,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37667,
+ "id": 20378,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37668,
+ "id": 20379,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -818824,7 +819748,7 @@
{
"title": "Properties",
"children": [
- 37668
+ 20379
]
}
],
@@ -818909,7 +819833,7 @@
{
"title": "Methods",
"children": [
- 37664
+ 20375
]
}
],
@@ -818953,7 +819877,7 @@
}
},
{
- "id": 37669,
+ "id": 20380,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -818976,7 +819900,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37670,
+ "id": 20381,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -818990,7 +819914,7 @@
],
"signatures": [
{
- "id": 37671,
+ "id": 20382,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -819018,7 +819942,7 @@
],
"typeParameters": [
{
- "id": 37672,
+ "id": 20383,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -819029,7 +819953,7 @@
}
},
{
- "id": 37673,
+ "id": 20384,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -819042,7 +819966,7 @@
],
"parameters": [
{
- "id": 37674,
+ "id": 20385,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -819075,7 +819999,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -819086,13 +820010,13 @@
},
"trueType": {
"type": "reference",
- "target": 37645,
+ "target": 20356,
"name": "CreateProductsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -819125,7 +820049,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -819148,7 +820072,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -819168,7 +820092,7 @@
}
},
{
- "id": 37675,
+ "id": 20386,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -819191,7 +820115,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37676,
+ "id": 20387,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -819205,7 +820129,7 @@
],
"signatures": [
{
- "id": 37677,
+ "id": 20388,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -819227,7 +820151,7 @@
}
},
{
- "id": 37678,
+ "id": 20389,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -819250,7 +820174,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37679,
+ "id": 20390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -819264,7 +820188,7 @@
],
"signatures": [
{
- "id": 37680,
+ "id": 20391,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -819278,7 +820202,7 @@
],
"parameters": [
{
- "id": 37681,
+ "id": 20392,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -819304,7 +820228,7 @@
}
},
{
- "id": 37682,
+ "id": 20393,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -819327,14 +820251,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37683,
+ "id": 20394,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37684,
+ "id": 20395,
"name": "productsCreated",
"variant": "declaration",
"kind": 1024,
@@ -819342,7 +820266,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37685,
+ "id": 20396,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -819356,7 +820280,7 @@
],
"signatures": [
{
- "id": 37686,
+ "id": 20397,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -819370,7 +820294,7 @@
],
"typeParameters": [
{
- "id": 37687,
+ "id": 20398,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -819379,7 +820303,7 @@
],
"parameters": [
{
- "id": 37688,
+ "id": 20399,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -819394,14 +820318,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37689,
+ "id": 20400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37690,
+ "id": 20401,
"name": "products",
"variant": "declaration",
"kind": 1024,
@@ -819411,7 +820335,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 282,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L282"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L282"
}
],
"type": {
@@ -819440,7 +820364,7 @@
"defaultValue": "response"
},
{
- "id": 37691,
+ "id": 20402,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -819458,7 +820382,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 283,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L283"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L283"
}
],
"type": {
@@ -819481,8 +820405,8 @@
{
"title": "Properties",
"children": [
- 37690,
- 37691
+ 20401,
+ 20402
]
}
],
@@ -819491,7 +820415,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 281,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L281"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L281"
}
]
}
@@ -819502,7 +820426,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -819513,7 +820437,7 @@
}
},
{
- "id": 37692,
+ "id": 20403,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -819529,7 +820453,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -819550,7 +820474,7 @@
}
},
{
- "id": 43128,
+ "id": 26069,
"name": "productsCreated",
"variant": "declaration",
"kind": 64,
@@ -819585,14 +820509,14 @@
},
"signatures": [
{
- "id": 43129,
+ "id": 26070,
"name": "productsCreated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43130,
+ "id": 26071,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -819607,7 +820531,7 @@
},
"type": {
"type": "reference",
- "target": 37689,
+ "target": 20400,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -819621,13 +820545,13 @@
{
"title": "Properties",
"children": [
- 37684
+ 20395
]
},
{
"title": "Functions",
"children": [
- 43128
+ 26069
]
}
],
@@ -819644,7 +820568,7 @@
],
"documents": [
{
- "id": 43123,
+ "id": 26064,
"name": "createProductsStep",
"variant": "document",
"kind": 8388608,
@@ -819670,7 +820594,7 @@
"frontmatter": {}
},
{
- "id": 43124,
+ "id": 26065,
"name": "associateProductsWithSalesChannelsStep",
"variant": "document",
"kind": 8388608,
@@ -819696,7 +820620,7 @@
"frontmatter": {}
},
{
- "id": 43125,
+ "id": 26066,
"name": "createRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -819722,7 +820646,7 @@
"frontmatter": {}
},
{
- "id": 43126,
+ "id": 26067,
"name": "createProductVariantsWorkflow",
"variant": "document",
"kind": 8388608,
@@ -819748,7 +820672,7 @@
"frontmatter": {}
},
{
- "id": 43127,
+ "id": 26068,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -819774,7 +820698,7 @@
"frontmatter": {}
},
{
- "id": 43131,
+ "id": 26072,
"name": "productsCreated",
"variant": "document",
"kind": 8388608,
@@ -819801,21 +820725,21 @@
}
],
"childrenIncludingDocuments": [
- 37657,
- 37669,
- 37675,
- 37678,
- 37682
+ 20368,
+ 20380,
+ 20386,
+ 20389,
+ 20393
],
"groups": [
{
"title": "Properties",
"children": [
- 37657,
- 37669,
- 37675,
- 37678,
- 37682
+ 20368,
+ 20380,
+ 20386,
+ 20389,
+ 20393
]
}
],
@@ -819824,12 +820748,12 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 163,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L163"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L163"
}
],
"signatures": [
{
- "id": 37650,
+ "id": 20361,
"name": "createProductsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -819903,12 +820827,12 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 163,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L163"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L163"
}
],
"typeParameters": [
{
- "id": 37651,
+ "id": 20362,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -819919,7 +820843,7 @@
}
},
{
- "id": 37652,
+ "id": 20363,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -819932,7 +820856,7 @@
],
"parameters": [
{
- "id": 37653,
+ "id": 20364,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -819956,14 +820880,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37654,
+ "id": 20365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37655,
+ "id": 20366,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -819986,7 +820910,7 @@
}
},
{
- "id": 37656,
+ "id": 20367,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -820013,8 +820937,8 @@
{
"title": "Properties",
"children": [
- 37655,
- 37656
+ 20366,
+ 20367
]
}
],
@@ -820089,7 +821013,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37645,
+ "target": 20356,
"name": "CreateProductsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -820107,14 +821031,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -820129,14 +821053,14 @@
]
},
{
- "id": 37689,
+ "id": 20400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37690,
+ "id": 20401,
"name": "products",
"variant": "declaration",
"kind": 1024,
@@ -820146,7 +821070,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 282,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L282"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L282"
}
],
"type": {
@@ -820175,7 +821099,7 @@
"defaultValue": "response"
},
{
- "id": 37691,
+ "id": 20402,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -820193,7 +821117,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 283,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L283"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L283"
}
],
"type": {
@@ -820216,8 +821140,8 @@
{
"title": "Properties",
"children": [
- 37690,
- 37691
+ 20401,
+ 20402
]
}
],
@@ -820226,12 +821150,12 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 281,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L281"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L281"
}
]
},
{
- "id": 37690,
+ "id": 20401,
"name": "products",
"variant": "declaration",
"kind": 1024,
@@ -820241,7 +821165,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 282,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L282"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L282"
}
],
"type": {
@@ -820270,7 +821194,7 @@
"defaultValue": "response"
},
{
- "id": 37691,
+ "id": 20402,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -820288,7 +821212,7 @@
"fileName": "core-flows/src/product/workflows/create-products.ts",
"line": 283,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/create-products.ts#L283"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/create-products.ts#L283"
}
],
"type": {
@@ -820307,7 +821231,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37695,
+ "id": 20406,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -820325,7 +821249,7 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L23"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L23"
}
],
"type": {
@@ -820337,7 +821261,7 @@
}
},
{
- "id": 37696,
+ "id": 20407,
"name": "deleteCollectionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -820349,7 +821273,7 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L26"
}
],
"type": {
@@ -820359,7 +821283,7 @@
"defaultValue": "\"delete-collections\""
},
{
- "id": 37697,
+ "id": 20408,
"name": "deleteCollectionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -820412,7 +821336,7 @@
},
"children": [
{
- "id": 37705,
+ "id": 20416,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -820435,7 +821359,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37706,
+ "id": 20417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -820449,7 +821373,7 @@
],
"signatures": [
{
- "id": 37707,
+ "id": 20418,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -820477,7 +821401,7 @@
],
"parameters": [
{
- "id": 37708,
+ "id": 20419,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -820493,14 +821417,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37709,
+ "id": 20420,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37710,
+ "id": 20421,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -820525,7 +821449,7 @@
"types": [
{
"type": "reference",
- "target": 37693,
+ "target": 20404,
"name": "DeleteCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -820538,7 +821462,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37693,
+ "target": 20404,
"name": "DeleteCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -820554,7 +821478,7 @@
{
"title": "Properties",
"children": [
- 37710
+ 20421
]
}
],
@@ -820579,7 +821503,7 @@
}
},
{
- "id": 37711,
+ "id": 20422,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -820602,7 +821526,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37712,
+ "id": 20423,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -820616,7 +821540,7 @@
],
"signatures": [
{
- "id": 37713,
+ "id": 20424,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -820644,7 +821568,7 @@
],
"typeParameters": [
{
- "id": 37714,
+ "id": 20425,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -820655,7 +821579,7 @@
}
},
{
- "id": 37715,
+ "id": 20426,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -820668,7 +821592,7 @@
],
"parameters": [
{
- "id": 37716,
+ "id": 20427,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -820701,7 +821625,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -820712,13 +821636,13 @@
},
"trueType": {
"type": "reference",
- "target": 37693,
+ "target": 20404,
"name": "DeleteCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -820751,7 +821675,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -820766,7 +821690,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -820786,7 +821710,7 @@
}
},
{
- "id": 37717,
+ "id": 20428,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -820809,7 +821733,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37718,
+ "id": 20429,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -820823,7 +821747,7 @@
],
"signatures": [
{
- "id": 37719,
+ "id": 20430,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -820845,7 +821769,7 @@
}
},
{
- "id": 37720,
+ "id": 20431,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -820868,7 +821792,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37721,
+ "id": 20432,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -820882,7 +821806,7 @@
],
"signatures": [
{
- "id": 37722,
+ "id": 20433,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -820896,7 +821820,7 @@
],
"parameters": [
{
- "id": 37723,
+ "id": 20434,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -820922,7 +821846,7 @@
}
},
{
- "id": 37724,
+ "id": 20435,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -820945,14 +821869,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37725,
+ "id": 20436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37726,
+ "id": 20437,
"name": "collectionsDeleted",
"variant": "declaration",
"kind": 1024,
@@ -820960,7 +821884,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37727,
+ "id": 20438,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -820974,7 +821898,7 @@
],
"signatures": [
{
- "id": 37728,
+ "id": 20439,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -820988,7 +821912,7 @@
],
"typeParameters": [
{
- "id": 37729,
+ "id": 20440,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -820997,7 +821921,7 @@
],
"parameters": [
{
- "id": 37730,
+ "id": 20441,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -821012,14 +821936,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37731,
+ "id": 20442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37732,
+ "id": 20443,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -821029,7 +821953,7 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 72,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L72"
}
],
"type": {
@@ -821081,7 +822005,7 @@
{
"title": "Properties",
"children": [
- 37732
+ 20443
]
}
],
@@ -821090,7 +822014,7 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 71,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L71"
}
]
}
@@ -821101,7 +822025,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -821112,7 +822036,7 @@
}
},
{
- "id": 37733,
+ "id": 20444,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -821128,7 +822052,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -821149,7 +822073,7 @@
}
},
{
- "id": 43135,
+ "id": 26076,
"name": "collectionsDeleted",
"variant": "declaration",
"kind": 64,
@@ -821184,14 +822108,14 @@
},
"signatures": [
{
- "id": 43136,
+ "id": 26077,
"name": "collectionsDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43137,
+ "id": 26078,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -821206,7 +822130,7 @@
},
"type": {
"type": "reference",
- "target": 37731,
+ "target": 20442,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -821220,13 +822144,13 @@
{
"title": "Properties",
"children": [
- 37726
+ 20437
]
},
{
"title": "Functions",
"children": [
- 43135
+ 26076
]
}
],
@@ -821243,7 +822167,7 @@
],
"documents": [
{
- "id": 43132,
+ "id": 26073,
"name": "deleteCollectionsStep",
"variant": "document",
"kind": 8388608,
@@ -821269,7 +822193,7 @@
"frontmatter": {}
},
{
- "id": 43133,
+ "id": 26074,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -821295,7 +822219,7 @@
"frontmatter": {}
},
{
- "id": 43134,
+ "id": 26075,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -821321,7 +822245,7 @@
"frontmatter": {}
},
{
- "id": 43138,
+ "id": 26079,
"name": "collectionsDeleted",
"variant": "document",
"kind": 8388608,
@@ -821348,21 +822272,21 @@
}
],
"childrenIncludingDocuments": [
- 37705,
- 37711,
- 37717,
- 37720,
- 37724
+ 20416,
+ 20422,
+ 20428,
+ 20431,
+ 20435
],
"groups": [
{
"title": "Properties",
"children": [
- 37705,
- 37711,
- 37717,
- 37720,
- 37724
+ 20416,
+ 20422,
+ 20428,
+ 20431,
+ 20435
]
}
],
@@ -821371,12 +822295,12 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L50"
}
],
"signatures": [
{
- "id": 37698,
+ "id": 20409,
"name": "deleteCollectionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -821432,12 +822356,12 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L50"
}
],
"typeParameters": [
{
- "id": 37699,
+ "id": 20410,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -821448,7 +822372,7 @@
}
},
{
- "id": 37700,
+ "id": 20411,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -821461,7 +822385,7 @@
],
"parameters": [
{
- "id": 37701,
+ "id": 20412,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -821485,14 +822409,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37702,
+ "id": 20413,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37703,
+ "id": 20414,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -821515,7 +822439,7 @@
}
},
{
- "id": 37704,
+ "id": 20415,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -821542,8 +822466,8 @@
{
"title": "Properties",
"children": [
- 37703,
- 37704
+ 20414,
+ 20415
]
}
],
@@ -821618,7 +822542,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37693,
+ "target": 20404,
"name": "DeleteCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -821628,14 +822552,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -821650,14 +822574,14 @@
]
},
{
- "id": 37731,
+ "id": 20442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37732,
+ "id": 20443,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -821667,7 +822591,7 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 72,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L72"
}
],
"type": {
@@ -821719,7 +822643,7 @@
{
"title": "Properties",
"children": [
- 37732
+ 20443
]
}
],
@@ -821728,12 +822652,12 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 71,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L71"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L71"
}
]
},
{
- "id": 37732,
+ "id": 20443,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -821743,7 +822667,7 @@
"fileName": "core-flows/src/product/workflows/delete-collections.ts",
"line": 72,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-collections.ts#L72"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-collections.ts#L72"
}
],
"type": {
@@ -821791,7 +822715,7 @@
"defaultValue": "input.ids"
},
{
- "id": 37736,
+ "id": 20447,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -821809,7 +822733,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L21"
}
],
"type": {
@@ -821821,7 +822745,7 @@
}
},
{
- "id": 37737,
+ "id": 20448,
"name": "deleteProductOptionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -821833,7 +822757,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L24"
}
],
"type": {
@@ -821843,7 +822767,7 @@
"defaultValue": "\"delete-product-options\""
},
{
- "id": 37738,
+ "id": 20449,
"name": "deleteProductOptionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -821896,7 +822820,7 @@
},
"children": [
{
- "id": 37746,
+ "id": 20457,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -821919,7 +822843,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37747,
+ "id": 20458,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -821933,7 +822857,7 @@
],
"signatures": [
{
- "id": 37748,
+ "id": 20459,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -821961,7 +822885,7 @@
],
"parameters": [
{
- "id": 37749,
+ "id": 20460,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -821977,14 +822901,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37750,
+ "id": 20461,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37751,
+ "id": 20462,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -822009,7 +822933,7 @@
"types": [
{
"type": "reference",
- "target": 37734,
+ "target": 20445,
"name": "DeleteProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -822022,7 +822946,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37734,
+ "target": 20445,
"name": "DeleteProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -822038,7 +822962,7 @@
{
"title": "Properties",
"children": [
- 37751
+ 20462
]
}
],
@@ -822063,7 +822987,7 @@
}
},
{
- "id": 37752,
+ "id": 20463,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -822086,7 +823010,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37753,
+ "id": 20464,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -822100,7 +823024,7 @@
],
"signatures": [
{
- "id": 37754,
+ "id": 20465,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -822128,7 +823052,7 @@
],
"typeParameters": [
{
- "id": 37755,
+ "id": 20466,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -822139,7 +823063,7 @@
}
},
{
- "id": 37756,
+ "id": 20467,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -822152,7 +823076,7 @@
],
"parameters": [
{
- "id": 37757,
+ "id": 20468,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -822185,7 +823109,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -822196,13 +823120,13 @@
},
"trueType": {
"type": "reference",
- "target": 37734,
+ "target": 20445,
"name": "DeleteProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -822235,7 +823159,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -822250,7 +823174,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -822270,7 +823194,7 @@
}
},
{
- "id": 37758,
+ "id": 20469,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -822293,7 +823217,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37759,
+ "id": 20470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -822307,7 +823231,7 @@
],
"signatures": [
{
- "id": 37760,
+ "id": 20471,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -822329,7 +823253,7 @@
}
},
{
- "id": 37761,
+ "id": 20472,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -822352,7 +823276,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37762,
+ "id": 20473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -822366,7 +823290,7 @@
],
"signatures": [
{
- "id": 37763,
+ "id": 20474,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -822380,7 +823304,7 @@
],
"parameters": [
{
- "id": 37764,
+ "id": 20475,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -822406,7 +823330,7 @@
}
},
{
- "id": 37765,
+ "id": 20476,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -822429,14 +823353,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37766,
+ "id": 20477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37767,
+ "id": 20478,
"name": "productOptionsDeleted",
"variant": "declaration",
"kind": 1024,
@@ -822444,7 +823368,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37768,
+ "id": 20479,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -822458,7 +823382,7 @@
],
"signatures": [
{
- "id": 37769,
+ "id": 20480,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -822472,7 +823396,7 @@
],
"typeParameters": [
{
- "id": 37770,
+ "id": 20481,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -822481,7 +823405,7 @@
],
"parameters": [
{
- "id": 37771,
+ "id": 20482,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -822496,14 +823420,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37772,
+ "id": 20483,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37773,
+ "id": 20484,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -822513,7 +823437,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 53,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L53"
}
],
"type": {
@@ -822565,7 +823489,7 @@
{
"title": "Properties",
"children": [
- 37773
+ 20484
]
}
],
@@ -822574,7 +823498,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 52,
"character": 70,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L52"
}
]
}
@@ -822585,7 +823509,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -822596,7 +823520,7 @@
}
},
{
- "id": 37774,
+ "id": 20485,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -822612,7 +823536,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -822633,7 +823557,7 @@
}
},
{
- "id": 43140,
+ "id": 26081,
"name": "productOptionsDeleted",
"variant": "declaration",
"kind": 64,
@@ -822668,14 +823592,14 @@
},
"signatures": [
{
- "id": 43141,
+ "id": 26082,
"name": "productOptionsDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43142,
+ "id": 26083,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -822690,7 +823614,7 @@
},
"type": {
"type": "reference",
- "target": 37772,
+ "target": 20483,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -822704,13 +823628,13 @@
{
"title": "Properties",
"children": [
- 37767
+ 20478
]
},
{
"title": "Functions",
"children": [
- 43140
+ 26081
]
}
],
@@ -822727,7 +823651,7 @@
],
"documents": [
{
- "id": 43139,
+ "id": 26080,
"name": "deleteProductOptionsStep",
"variant": "document",
"kind": 8388608,
@@ -822753,7 +823677,7 @@
"frontmatter": {}
},
{
- "id": 43143,
+ "id": 26084,
"name": "productOptionsDeleted",
"variant": "document",
"kind": 8388608,
@@ -822779,7 +823703,7 @@
"frontmatter": {}
},
{
- "id": 43144,
+ "id": 26085,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -822805,7 +823729,7 @@
"frontmatter": {}
},
{
- "id": 43145,
+ "id": 26086,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -822832,21 +823756,21 @@
}
],
"childrenIncludingDocuments": [
- 37746,
- 37752,
- 37758,
- 37761,
- 37765
+ 20457,
+ 20463,
+ 20469,
+ 20472,
+ 20476
],
"groups": [
{
"title": "Properties",
"children": [
- 37746,
- 37752,
- 37758,
- 37761,
- 37765
+ 20457,
+ 20463,
+ 20469,
+ 20472,
+ 20476
]
}
],
@@ -822855,12 +823779,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L48"
}
],
"signatures": [
{
- "id": 37739,
+ "id": 20450,
"name": "deleteProductOptionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -822916,12 +823840,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L48"
}
],
"typeParameters": [
{
- "id": 37740,
+ "id": 20451,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -822932,7 +823856,7 @@
}
},
{
- "id": 37741,
+ "id": 20452,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -822945,7 +823869,7 @@
],
"parameters": [
{
- "id": 37742,
+ "id": 20453,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -822969,14 +823893,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37743,
+ "id": 20454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37744,
+ "id": 20455,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -822999,7 +823923,7 @@
}
},
{
- "id": 37745,
+ "id": 20456,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -823026,8 +823950,8 @@
{
"title": "Properties",
"children": [
- 37744,
- 37745
+ 20455,
+ 20456
]
}
],
@@ -823102,7 +824026,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37734,
+ "target": 20445,
"name": "DeleteProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -823112,14 +824036,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -823134,14 +824058,14 @@
]
},
{
- "id": 37772,
+ "id": 20483,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37773,
+ "id": 20484,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -823151,7 +824075,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 53,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L53"
}
],
"type": {
@@ -823203,7 +824127,7 @@
{
"title": "Properties",
"children": [
- 37773
+ 20484
]
}
],
@@ -823212,12 +824136,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 52,
"character": 70,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L52"
}
]
},
{
- "id": 37773,
+ "id": 20484,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -823227,7 +824151,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-options.ts",
"line": 53,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-options.ts#L53"
}
],
"type": {
@@ -823275,7 +824199,7 @@
"defaultValue": "input.ids"
},
{
- "id": 37777,
+ "id": 20488,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -823293,7 +824217,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L21"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L21"
}
],
"type": {
@@ -823305,7 +824229,7 @@
}
},
{
- "id": 37778,
+ "id": 20489,
"name": "deleteProductTypesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -823317,7 +824241,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 24,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L24"
}
],
"type": {
@@ -823327,7 +824251,7 @@
"defaultValue": "\"delete-product-types\""
},
{
- "id": 37779,
+ "id": 20490,
"name": "deleteProductTypesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -823380,7 +824304,7 @@
},
"children": [
{
- "id": 37787,
+ "id": 20498,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -823403,7 +824327,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37788,
+ "id": 20499,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -823417,7 +824341,7 @@
],
"signatures": [
{
- "id": 37789,
+ "id": 20500,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -823445,7 +824369,7 @@
],
"parameters": [
{
- "id": 37790,
+ "id": 20501,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -823461,14 +824385,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37791,
+ "id": 20502,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37792,
+ "id": 20503,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -823493,7 +824417,7 @@
"types": [
{
"type": "reference",
- "target": 37775,
+ "target": 20486,
"name": "DeleteProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -823506,7 +824430,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37775,
+ "target": 20486,
"name": "DeleteProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -823522,7 +824446,7 @@
{
"title": "Properties",
"children": [
- 37792
+ 20503
]
}
],
@@ -823547,7 +824471,7 @@
}
},
{
- "id": 37793,
+ "id": 20504,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -823570,7 +824494,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37794,
+ "id": 20505,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -823584,7 +824508,7 @@
],
"signatures": [
{
- "id": 37795,
+ "id": 20506,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -823612,7 +824536,7 @@
],
"typeParameters": [
{
- "id": 37796,
+ "id": 20507,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -823623,7 +824547,7 @@
}
},
{
- "id": 37797,
+ "id": 20508,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -823636,7 +824560,7 @@
],
"parameters": [
{
- "id": 37798,
+ "id": 20509,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -823669,7 +824593,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -823680,13 +824604,13 @@
},
"trueType": {
"type": "reference",
- "target": 37775,
+ "target": 20486,
"name": "DeleteProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -823719,7 +824643,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -823734,7 +824658,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -823754,7 +824678,7 @@
}
},
{
- "id": 37799,
+ "id": 20510,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -823777,7 +824701,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37800,
+ "id": 20511,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -823791,7 +824715,7 @@
],
"signatures": [
{
- "id": 37801,
+ "id": 20512,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -823813,7 +824737,7 @@
}
},
{
- "id": 37802,
+ "id": 20513,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -823836,7 +824760,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37803,
+ "id": 20514,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -823850,7 +824774,7 @@
],
"signatures": [
{
- "id": 37804,
+ "id": 20515,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -823864,7 +824788,7 @@
],
"parameters": [
{
- "id": 37805,
+ "id": 20516,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -823890,7 +824814,7 @@
}
},
{
- "id": 37806,
+ "id": 20517,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -823913,14 +824837,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37807,
+ "id": 20518,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37808,
+ "id": 20519,
"name": "productTypesDeleted",
"variant": "declaration",
"kind": 1024,
@@ -823928,7 +824852,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37809,
+ "id": 20520,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -823942,7 +824866,7 @@
],
"signatures": [
{
- "id": 37810,
+ "id": 20521,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -823956,7 +824880,7 @@
],
"typeParameters": [
{
- "id": 37811,
+ "id": 20522,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -823965,7 +824889,7 @@
],
"parameters": [
{
- "id": 37812,
+ "id": 20523,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -823980,14 +824904,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37813,
+ "id": 20524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37814,
+ "id": 20525,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -823997,7 +824921,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 53,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L53"
}
],
"type": {
@@ -824049,7 +824973,7 @@
{
"title": "Properties",
"children": [
- 37814
+ 20525
]
}
],
@@ -824058,7 +824982,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 52,
"character": 66,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L52"
}
]
}
@@ -824069,7 +824993,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -824080,7 +825004,7 @@
}
},
{
- "id": 37815,
+ "id": 20526,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -824096,7 +825020,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -824117,7 +825041,7 @@
}
},
{
- "id": 43147,
+ "id": 26088,
"name": "productTypesDeleted",
"variant": "declaration",
"kind": 64,
@@ -824152,14 +825076,14 @@
},
"signatures": [
{
- "id": 43148,
+ "id": 26089,
"name": "productTypesDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43149,
+ "id": 26090,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -824174,7 +825098,7 @@
},
"type": {
"type": "reference",
- "target": 37813,
+ "target": 20524,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -824188,13 +825112,13 @@
{
"title": "Properties",
"children": [
- 37808
+ 20519
]
},
{
"title": "Functions",
"children": [
- 43147
+ 26088
]
}
],
@@ -824211,7 +825135,7 @@
],
"documents": [
{
- "id": 43146,
+ "id": 26087,
"name": "deleteProductTypesStep",
"variant": "document",
"kind": 8388608,
@@ -824237,7 +825161,7 @@
"frontmatter": {}
},
{
- "id": 43150,
+ "id": 26091,
"name": "productTypesDeleted",
"variant": "document",
"kind": 8388608,
@@ -824263,7 +825187,7 @@
"frontmatter": {}
},
{
- "id": 43151,
+ "id": 26092,
"name": "removeRemoteLinkStep",
"variant": "document",
"kind": 8388608,
@@ -824289,7 +825213,7 @@
"frontmatter": {}
},
{
- "id": 43152,
+ "id": 26093,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -824316,21 +825240,21 @@
}
],
"childrenIncludingDocuments": [
- 37787,
- 37793,
- 37799,
- 37802,
- 37806
+ 20498,
+ 20504,
+ 20510,
+ 20513,
+ 20517
],
"groups": [
{
"title": "Properties",
"children": [
- 37787,
- 37793,
- 37799,
- 37802,
- 37806
+ 20498,
+ 20504,
+ 20510,
+ 20513,
+ 20517
]
}
],
@@ -824339,12 +825263,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L48"
}
],
"signatures": [
{
- "id": 37780,
+ "id": 20491,
"name": "deleteProductTypesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -824400,12 +825324,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 48,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L48"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L48"
}
],
"typeParameters": [
{
- "id": 37781,
+ "id": 20492,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -824416,7 +825340,7 @@
}
},
{
- "id": 37782,
+ "id": 20493,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -824429,7 +825353,7 @@
],
"parameters": [
{
- "id": 37783,
+ "id": 20494,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -824453,14 +825377,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37784,
+ "id": 20495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37785,
+ "id": 20496,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -824483,7 +825407,7 @@
}
},
{
- "id": 37786,
+ "id": 20497,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -824510,8 +825434,8 @@
{
"title": "Properties",
"children": [
- 37785,
- 37786
+ 20496,
+ 20497
]
}
],
@@ -824586,7 +825510,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37775,
+ "target": 20486,
"name": "DeleteProductTypesWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -824596,14 +825520,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -824618,14 +825542,14 @@
]
},
{
- "id": 37813,
+ "id": 20524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37814,
+ "id": 20525,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -824635,7 +825559,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 53,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L53"
}
],
"type": {
@@ -824687,7 +825611,7 @@
{
"title": "Properties",
"children": [
- 37814
+ 20525
]
}
],
@@ -824696,12 +825620,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 52,
"character": 66,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L52"
}
]
},
{
- "id": 37814,
+ "id": 20525,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -824711,7 +825635,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-types.ts",
"line": 53,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-types.ts#L53"
}
],
"type": {
@@ -824759,7 +825683,7 @@
"defaultValue": "input.ids"
},
{
- "id": 37818,
+ "id": 20529,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -824777,7 +825701,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L19"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L19"
}
],
"type": {
@@ -824789,7 +825713,7 @@
}
},
{
- "id": 37819,
+ "id": 20530,
"name": "deleteProductTagsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -824801,7 +825725,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 22,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L22"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L22"
}
],
"type": {
@@ -824811,7 +825735,7 @@
"defaultValue": "\"delete-product-tags\""
},
{
- "id": 37820,
+ "id": 20531,
"name": "deleteProductTagsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -824864,7 +825788,7 @@
},
"children": [
{
- "id": 37828,
+ "id": 20539,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -824887,7 +825811,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37829,
+ "id": 20540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -824901,7 +825825,7 @@
],
"signatures": [
{
- "id": 37830,
+ "id": 20541,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -824929,7 +825853,7 @@
],
"parameters": [
{
- "id": 37831,
+ "id": 20542,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -824945,14 +825869,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37832,
+ "id": 20543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37833,
+ "id": 20544,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -824977,7 +825901,7 @@
"types": [
{
"type": "reference",
- "target": 37816,
+ "target": 20527,
"name": "DeleteProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -824990,7 +825914,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37816,
+ "target": 20527,
"name": "DeleteProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -825006,7 +825930,7 @@
{
"title": "Properties",
"children": [
- 37833
+ 20544
]
}
],
@@ -825031,7 +825955,7 @@
}
},
{
- "id": 37834,
+ "id": 20545,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -825054,7 +825978,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37835,
+ "id": 20546,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -825068,7 +825992,7 @@
],
"signatures": [
{
- "id": 37836,
+ "id": 20547,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -825096,7 +826020,7 @@
],
"typeParameters": [
{
- "id": 37837,
+ "id": 20548,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -825107,7 +826031,7 @@
}
},
{
- "id": 37838,
+ "id": 20549,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -825120,7 +826044,7 @@
],
"parameters": [
{
- "id": 37839,
+ "id": 20550,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -825153,7 +826077,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -825164,13 +826088,13 @@
},
"trueType": {
"type": "reference",
- "target": 37816,
+ "target": 20527,
"name": "DeleteProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -825203,7 +826127,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -825218,7 +826142,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -825238,7 +826162,7 @@
}
},
{
- "id": 37840,
+ "id": 20551,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -825261,7 +826185,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37841,
+ "id": 20552,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -825275,7 +826199,7 @@
],
"signatures": [
{
- "id": 37842,
+ "id": 20553,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -825297,7 +826221,7 @@
}
},
{
- "id": 37843,
+ "id": 20554,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -825320,7 +826244,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37844,
+ "id": 20555,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -825334,7 +826258,7 @@
],
"signatures": [
{
- "id": 37845,
+ "id": 20556,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -825348,7 +826272,7 @@
],
"parameters": [
{
- "id": 37846,
+ "id": 20557,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -825374,7 +826298,7 @@
}
},
{
- "id": 37847,
+ "id": 20558,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -825397,14 +826321,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37848,
+ "id": 20559,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37849,
+ "id": 20560,
"name": "productTagsDeleted",
"variant": "declaration",
"kind": 1024,
@@ -825412,7 +826336,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37850,
+ "id": 20561,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -825426,7 +826350,7 @@
],
"signatures": [
{
- "id": 37851,
+ "id": 20562,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -825440,7 +826364,7 @@
],
"typeParameters": [
{
- "id": 37852,
+ "id": 20563,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -825449,7 +826373,7 @@
],
"parameters": [
{
- "id": 37853,
+ "id": 20564,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -825464,14 +826388,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37854,
+ "id": 20565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37855,
+ "id": 20566,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -825481,7 +826405,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L51"
}
],
"type": {
@@ -825533,7 +826457,7 @@
{
"title": "Properties",
"children": [
- 37855
+ 20566
]
}
],
@@ -825542,7 +826466,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 50,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L50"
}
]
}
@@ -825553,7 +826477,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -825564,7 +826488,7 @@
}
},
{
- "id": 37856,
+ "id": 20567,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -825580,7 +826504,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -825601,7 +826525,7 @@
}
},
{
- "id": 43154,
+ "id": 26095,
"name": "productTagsDeleted",
"variant": "declaration",
"kind": 64,
@@ -825636,14 +826560,14 @@
},
"signatures": [
{
- "id": 43155,
+ "id": 26096,
"name": "productTagsDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43156,
+ "id": 26097,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -825658,7 +826582,7 @@
},
"type": {
"type": "reference",
- "target": 37854,
+ "target": 20565,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -825672,13 +826596,13 @@
{
"title": "Properties",
"children": [
- 37849
+ 20560
]
},
{
"title": "Functions",
"children": [
- 43154
+ 26095
]
}
],
@@ -825695,7 +826619,7 @@
],
"documents": [
{
- "id": 43153,
+ "id": 26094,
"name": "deleteProductTagsStep",
"variant": "document",
"kind": 8388608,
@@ -825721,7 +826645,7 @@
"frontmatter": {}
},
{
- "id": 43157,
+ "id": 26098,
"name": "productTagsDeleted",
"variant": "document",
"kind": 8388608,
@@ -825747,7 +826671,7 @@
"frontmatter": {}
},
{
- "id": 43158,
+ "id": 26099,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -825774,21 +826698,21 @@
}
],
"childrenIncludingDocuments": [
- 37828,
- 37834,
- 37840,
- 37843,
- 37847
+ 20539,
+ 20545,
+ 20551,
+ 20554,
+ 20558
],
"groups": [
{
"title": "Properties",
"children": [
- 37828,
- 37834,
- 37840,
- 37843,
- 37847
+ 20539,
+ 20545,
+ 20551,
+ 20554,
+ 20558
]
}
],
@@ -825797,12 +826721,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L46"
}
],
"signatures": [
{
- "id": 37821,
+ "id": 20532,
"name": "deleteProductTagsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -825858,12 +826782,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 46,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L46"
}
],
"typeParameters": [
{
- "id": 37822,
+ "id": 20533,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -825874,7 +826798,7 @@
}
},
{
- "id": 37823,
+ "id": 20534,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -825887,7 +826811,7 @@
],
"parameters": [
{
- "id": 37824,
+ "id": 20535,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -825911,14 +826835,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37825,
+ "id": 20536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37826,
+ "id": 20537,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -825941,7 +826865,7 @@
}
},
{
- "id": 37827,
+ "id": 20538,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -825968,8 +826892,8 @@
{
"title": "Properties",
"children": [
- 37826,
- 37827
+ 20537,
+ 20538
]
}
],
@@ -826044,7 +826968,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37816,
+ "target": 20527,
"name": "DeleteProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -826054,14 +826978,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -826076,14 +827000,14 @@
]
},
{
- "id": 37854,
+ "id": 20565,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37855,
+ "id": 20566,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -826093,7 +827017,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L51"
}
],
"type": {
@@ -826145,7 +827069,7 @@
{
"title": "Properties",
"children": [
- 37855
+ 20566
]
}
],
@@ -826154,12 +827078,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 50,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L50"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L50"
}
]
},
{
- "id": 37855,
+ "id": 20566,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -826169,7 +827093,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-tags.ts",
"line": 51,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L51"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-tags.ts#L51"
}
],
"type": {
@@ -826217,7 +827141,7 @@
"defaultValue": "input.ids"
},
{
- "id": 37859,
+ "id": 20570,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -826235,7 +827159,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L27"
}
],
"type": {
@@ -826247,7 +827171,7 @@
}
},
{
- "id": 37860,
+ "id": 20571,
"name": "deleteProductVariantsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -826259,7 +827183,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L30"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L30"
}
],
"type": {
@@ -826269,7 +827193,7 @@
"defaultValue": "\"delete-product-variants\""
},
{
- "id": 37861,
+ "id": 20572,
"name": "deleteProductVariantsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -826331,7 +827255,7 @@
},
"children": [
{
- "id": 37869,
+ "id": 20580,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -826354,7 +827278,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37870,
+ "id": 20581,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -826368,7 +827292,7 @@
],
"signatures": [
{
- "id": 37871,
+ "id": 20582,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -826396,7 +827320,7 @@
],
"parameters": [
{
- "id": 37872,
+ "id": 20583,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -826412,14 +827336,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37873,
+ "id": 20584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37874,
+ "id": 20585,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -826444,7 +827368,7 @@
"types": [
{
"type": "reference",
- "target": 37857,
+ "target": 20568,
"name": "DeleteProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -826457,7 +827381,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37857,
+ "target": 20568,
"name": "DeleteProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -826473,7 +827397,7 @@
{
"title": "Properties",
"children": [
- 37874
+ 20585
]
}
],
@@ -826498,7 +827422,7 @@
}
},
{
- "id": 37875,
+ "id": 20586,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -826521,7 +827445,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37876,
+ "id": 20587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -826535,7 +827459,7 @@
],
"signatures": [
{
- "id": 37877,
+ "id": 20588,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -826563,7 +827487,7 @@
],
"typeParameters": [
{
- "id": 37878,
+ "id": 20589,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -826574,7 +827498,7 @@
}
},
{
- "id": 37879,
+ "id": 20590,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -826587,7 +827511,7 @@
],
"parameters": [
{
- "id": 37880,
+ "id": 20591,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -826620,7 +827544,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -826631,13 +827555,13 @@
},
"trueType": {
"type": "reference",
- "target": 37857,
+ "target": 20568,
"name": "DeleteProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -826670,7 +827594,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -826685,7 +827609,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -826705,7 +827629,7 @@
}
},
{
- "id": 37881,
+ "id": 20592,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -826728,7 +827652,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37882,
+ "id": 20593,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -826742,7 +827666,7 @@
],
"signatures": [
{
- "id": 37883,
+ "id": 20594,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -826764,7 +827688,7 @@
}
},
{
- "id": 37884,
+ "id": 20595,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -826787,7 +827711,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37885,
+ "id": 20596,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -826801,7 +827725,7 @@
],
"signatures": [
{
- "id": 37886,
+ "id": 20597,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -826815,7 +827739,7 @@
],
"parameters": [
{
- "id": 37887,
+ "id": 20598,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -826841,7 +827765,7 @@
}
},
{
- "id": 37888,
+ "id": 20599,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -826864,14 +827788,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37889,
+ "id": 20600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37890,
+ "id": 20601,
"name": "productVariantsDeleted",
"variant": "declaration",
"kind": 1024,
@@ -826879,7 +827803,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37891,
+ "id": 20602,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -826893,7 +827817,7 @@
],
"signatures": [
{
- "id": 37892,
+ "id": 20603,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -826907,7 +827831,7 @@
],
"typeParameters": [
{
- "id": 37893,
+ "id": 20604,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -826916,7 +827840,7 @@
],
"parameters": [
{
- "id": 37894,
+ "id": 20605,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -826931,14 +827855,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37895,
+ "id": 20606,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37896,
+ "id": 20607,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -826948,7 +827872,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L116"
}
],
"type": {
@@ -827000,7 +827924,7 @@
{
"title": "Properties",
"children": [
- 37896
+ 20607
]
}
],
@@ -827009,7 +827933,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 115,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L115"
}
]
}
@@ -827020,7 +827944,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -827031,7 +827955,7 @@
}
},
{
- "id": 37897,
+ "id": 20608,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -827047,7 +827971,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -827068,7 +827992,7 @@
}
},
{
- "id": 43163,
+ "id": 26104,
"name": "productVariantsDeleted",
"variant": "declaration",
"kind": 64,
@@ -827103,14 +828027,14 @@
},
"signatures": [
{
- "id": 43164,
+ "id": 26105,
"name": "productVariantsDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43165,
+ "id": 26106,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -827125,7 +828049,7 @@
},
"type": {
"type": "reference",
- "target": 37895,
+ "target": 20606,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -827139,13 +828063,13 @@
{
"title": "Properties",
"children": [
- 37890
+ 20601
]
},
{
"title": "Functions",
"children": [
- 43163
+ 26104
]
}
],
@@ -827162,7 +828086,7 @@
],
"documents": [
{
- "id": 43159,
+ "id": 26100,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -827188,7 +828112,7 @@
"frontmatter": {}
},
{
- "id": 43160,
+ "id": 26101,
"name": "deleteInventoryItemWorkflow",
"variant": "document",
"kind": 8388608,
@@ -827214,7 +828138,7 @@
"frontmatter": {}
},
{
- "id": 43161,
+ "id": 26102,
"name": "deleteProductVariantsStep",
"variant": "document",
"kind": 8388608,
@@ -827240,7 +828164,7 @@
"frontmatter": {}
},
{
- "id": 43162,
+ "id": 26103,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -827266,7 +828190,7 @@
"frontmatter": {}
},
{
- "id": 43166,
+ "id": 26107,
"name": "productVariantsDeleted",
"variant": "document",
"kind": 8388608,
@@ -827293,21 +828217,21 @@
}
],
"childrenIncludingDocuments": [
- 37869,
- 37875,
- 37881,
- 37884,
- 37888
+ 20580,
+ 20586,
+ 20592,
+ 20595,
+ 20599
],
"groups": [
{
"title": "Properties",
"children": [
- 37869,
- 37875,
- 37881,
- 37884,
- 37888
+ 20580,
+ 20586,
+ 20592,
+ 20595,
+ 20599
]
}
],
@@ -827316,12 +828240,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L54"
}
],
"signatures": [
{
- "id": 37862,
+ "id": 20573,
"name": "deleteProductVariantsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -827386,12 +828310,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L54"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L54"
}
],
"typeParameters": [
{
- "id": 37863,
+ "id": 20574,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -827402,7 +828326,7 @@
}
},
{
- "id": 37864,
+ "id": 20575,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -827415,7 +828339,7 @@
],
"parameters": [
{
- "id": 37865,
+ "id": 20576,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -827439,14 +828363,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37866,
+ "id": 20577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37867,
+ "id": 20578,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -827469,7 +828393,7 @@
}
},
{
- "id": 37868,
+ "id": 20579,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -827496,8 +828420,8 @@
{
"title": "Properties",
"children": [
- 37867,
- 37868
+ 20578,
+ 20579
]
}
],
@@ -827572,7 +828496,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37857,
+ "target": 20568,
"name": "DeleteProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -827582,14 +828506,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -827604,14 +828528,14 @@
]
},
{
- "id": 37895,
+ "id": 20606,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37896,
+ "id": 20607,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -827621,7 +828545,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L116"
}
],
"type": {
@@ -827673,7 +828597,7 @@
{
"title": "Properties",
"children": [
- 37896
+ 20607
]
}
],
@@ -827682,12 +828606,12 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 115,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L115"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L115"
}
]
},
{
- "id": 37896,
+ "id": 20607,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -827697,7 +828621,7 @@
"fileName": "core-flows/src/product/workflows/delete-product-variants.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L116"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-product-variants.ts#L116"
}
],
"type": {
@@ -827745,7 +828669,7 @@
"defaultValue": "input.ids"
},
{
- "id": 37900,
+ "id": 20611,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -827763,7 +828687,7 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L26"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L26"
}
],
"type": {
@@ -827775,7 +828699,7 @@
}
},
{
- "id": 37901,
+ "id": 20612,
"name": "deleteProductsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -827787,7 +828711,7 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 29,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L29"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L29"
}
],
"type": {
@@ -827797,7 +828721,7 @@
"defaultValue": "\"delete-products\""
},
{
- "id": 37902,
+ "id": 20613,
"name": "deleteProductsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -827859,7 +828783,7 @@
},
"children": [
{
- "id": 37910,
+ "id": 20621,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -827882,7 +828806,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37911,
+ "id": 20622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -827896,7 +828820,7 @@
],
"signatures": [
{
- "id": 37912,
+ "id": 20623,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -827924,7 +828848,7 @@
],
"parameters": [
{
- "id": 37913,
+ "id": 20624,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -827940,14 +828864,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37914,
+ "id": 20625,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37915,
+ "id": 20626,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -827972,7 +828896,7 @@
"types": [
{
"type": "reference",
- "target": 37898,
+ "target": 20609,
"name": "DeleteProductsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -827985,7 +828909,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37898,
+ "target": 20609,
"name": "DeleteProductsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -828001,7 +828925,7 @@
{
"title": "Properties",
"children": [
- 37915
+ 20626
]
}
],
@@ -828026,7 +828950,7 @@
}
},
{
- "id": 37916,
+ "id": 20627,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -828049,7 +828973,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37917,
+ "id": 20628,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -828063,7 +828987,7 @@
],
"signatures": [
{
- "id": 37918,
+ "id": 20629,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -828091,7 +829015,7 @@
],
"typeParameters": [
{
- "id": 37919,
+ "id": 20630,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -828102,7 +829026,7 @@
}
},
{
- "id": 37920,
+ "id": 20631,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -828115,7 +829039,7 @@
],
"parameters": [
{
- "id": 37921,
+ "id": 20632,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -828148,7 +829072,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -828159,13 +829083,13 @@
},
"trueType": {
"type": "reference",
- "target": 37898,
+ "target": 20609,
"name": "DeleteProductsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -828198,7 +829122,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -828213,7 +829137,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -828233,7 +829157,7 @@
}
},
{
- "id": 37922,
+ "id": 20633,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -828256,7 +829180,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37923,
+ "id": 20634,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -828270,7 +829194,7 @@
],
"signatures": [
{
- "id": 37924,
+ "id": 20635,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -828292,7 +829216,7 @@
}
},
{
- "id": 37925,
+ "id": 20636,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -828315,7 +829239,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37926,
+ "id": 20637,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -828329,7 +829253,7 @@
],
"signatures": [
{
- "id": 37927,
+ "id": 20638,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -828343,7 +829267,7 @@
],
"parameters": [
{
- "id": 37928,
+ "id": 20639,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -828369,7 +829293,7 @@
}
},
{
- "id": 37929,
+ "id": 20640,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -828392,14 +829316,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37930,
+ "id": 20641,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37931,
+ "id": 20642,
"name": "productsDeleted",
"variant": "declaration",
"kind": 1024,
@@ -828407,7 +829331,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37932,
+ "id": 20643,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -828421,7 +829345,7 @@
],
"signatures": [
{
- "id": 37933,
+ "id": 20644,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -828435,7 +829359,7 @@
],
"typeParameters": [
{
- "id": 37934,
+ "id": 20645,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -828444,7 +829368,7 @@
],
"parameters": [
{
- "id": 37935,
+ "id": 20646,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -828459,14 +829383,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37936,
+ "id": 20647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37937,
+ "id": 20648,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -828476,7 +829400,7 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 126,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L126"
}
],
"type": {
@@ -828528,7 +829452,7 @@
{
"title": "Properties",
"children": [
- 37937
+ 20648
]
}
],
@@ -828537,7 +829461,7 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 125,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L125"
}
]
}
@@ -828548,7 +829472,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -828559,7 +829483,7 @@
}
},
{
- "id": 37938,
+ "id": 20649,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -828575,7 +829499,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -828596,7 +829520,7 @@
}
},
{
- "id": 43172,
+ "id": 26113,
"name": "productsDeleted",
"variant": "declaration",
"kind": 64,
@@ -828631,14 +829555,14 @@
},
"signatures": [
{
- "id": 43173,
+ "id": 26114,
"name": "productsDeleted",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43174,
+ "id": 26115,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -828653,7 +829577,7 @@
},
"type": {
"type": "reference",
- "target": 37936,
+ "target": 20647,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -828667,13 +829591,13 @@
{
"title": "Properties",
"children": [
- 37931
+ 20642
]
},
{
"title": "Functions",
"children": [
- 43172
+ 26113
]
}
],
@@ -828690,7 +829614,7 @@
],
"documents": [
{
- "id": 43167,
+ "id": 26108,
"name": "getProductsStep",
"variant": "document",
"kind": 8388608,
@@ -828716,7 +829640,7 @@
"frontmatter": {}
},
{
- "id": 43168,
+ "id": 26109,
"name": "useQueryGraphStep",
"variant": "document",
"kind": 8388608,
@@ -828742,7 +829666,7 @@
"frontmatter": {}
},
{
- "id": 43169,
+ "id": 26110,
"name": "deleteInventoryItemWorkflow",
"variant": "document",
"kind": 8388608,
@@ -828768,7 +829692,7 @@
"frontmatter": {}
},
{
- "id": 43170,
+ "id": 26111,
"name": "deleteProductsStep",
"variant": "document",
"kind": 8388608,
@@ -828794,7 +829718,7 @@
"frontmatter": {}
},
{
- "id": 43171,
+ "id": 26112,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -828820,7 +829744,7 @@
"frontmatter": {}
},
{
- "id": 43175,
+ "id": 26116,
"name": "productsDeleted",
"variant": "document",
"kind": 8388608,
@@ -828847,21 +829771,21 @@
}
],
"childrenIncludingDocuments": [
- 37910,
- 37916,
- 37922,
- 37925,
- 37929
+ 20621,
+ 20627,
+ 20633,
+ 20636,
+ 20640
],
"groups": [
{
"title": "Properties",
"children": [
- 37910,
- 37916,
- 37922,
- 37925,
- 37929
+ 20621,
+ 20627,
+ 20633,
+ 20636,
+ 20640
]
}
],
@@ -828870,12 +829794,12 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L53"
}
],
"signatures": [
{
- "id": 37903,
+ "id": 20614,
"name": "deleteProductsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -828940,12 +829864,12 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 53,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L53"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L53"
}
],
"typeParameters": [
{
- "id": 37904,
+ "id": 20615,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -828956,7 +829880,7 @@
}
},
{
- "id": 37905,
+ "id": 20616,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -828969,7 +829893,7 @@
],
"parameters": [
{
- "id": 37906,
+ "id": 20617,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -828993,14 +829917,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37907,
+ "id": 20618,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37908,
+ "id": 20619,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -829023,7 +829947,7 @@
}
},
{
- "id": 37909,
+ "id": 20620,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -829050,8 +829974,8 @@
{
"title": "Properties",
"children": [
- 37908,
- 37909
+ 20619,
+ 20620
]
}
],
@@ -829126,7 +830050,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37898,
+ "target": 20609,
"name": "DeleteProductsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -829136,14 +830060,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -829158,14 +830082,14 @@
]
},
{
- "id": 37936,
+ "id": 20647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37937,
+ "id": 20648,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -829175,7 +830099,7 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 126,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L126"
}
],
"type": {
@@ -829227,7 +830151,7 @@
{
"title": "Properties",
"children": [
- 37937
+ 20648
]
}
],
@@ -829236,12 +830160,12 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 125,
"character": 58,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L125"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L125"
}
]
},
{
- "id": 37937,
+ "id": 20648,
"name": "ids",
"variant": "declaration",
"kind": 1024,
@@ -829251,7 +830175,7 @@
"fileName": "core-flows/src/product/workflows/delete-products.ts",
"line": 126,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/delete-products.ts#L126"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/delete-products.ts#L126"
}
],
"type": {
@@ -829299,7 +830223,7 @@
"defaultValue": "input.ids"
},
{
- "id": 37941,
+ "id": 20652,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -829317,7 +830241,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L20"
}
],
"type": {
@@ -829332,7 +830256,7 @@
}
},
{
- "id": 37942,
+ "id": 20653,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -829350,7 +830274,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L24"
}
],
"type": {
@@ -829365,7 +830289,7 @@
}
},
{
- "id": 37943,
+ "id": 20654,
"name": "updateCollectionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -829377,7 +830301,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L27"
}
],
"type": {
@@ -829387,7 +830311,7 @@
"defaultValue": "\"update-collections\""
},
{
- "id": 37944,
+ "id": 20655,
"name": "updateCollectionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -829448,7 +830372,7 @@
},
"children": [
{
- "id": 37952,
+ "id": 20663,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -829471,7 +830395,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37953,
+ "id": 20664,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -829485,7 +830409,7 @@
],
"signatures": [
{
- "id": 37954,
+ "id": 20665,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -829513,7 +830437,7 @@
],
"parameters": [
{
- "id": 37955,
+ "id": 20666,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -829529,14 +830453,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37956,
+ "id": 20667,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37957,
+ "id": 20668,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -829561,7 +830485,7 @@
"types": [
{
"type": "reference",
- "target": 37939,
+ "target": 20650,
"name": "UpdateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -829574,7 +830498,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37939,
+ "target": 20650,
"name": "UpdateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -829590,7 +830514,7 @@
{
"title": "Properties",
"children": [
- 37957
+ 20668
]
}
],
@@ -829683,14 +830607,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37958,
+ "id": 20669,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37959,
+ "id": 20670,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -829704,7 +830628,7 @@
],
"signatures": [
{
- "id": 37960,
+ "id": 20671,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -829718,7 +830642,7 @@
],
"parameters": [
{
- "id": 37961,
+ "id": 20672,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -829729,14 +830653,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37962,
+ "id": 20673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37963,
+ "id": 20674,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -829760,7 +830684,7 @@
{
"title": "Properties",
"children": [
- 37963
+ 20674
]
}
],
@@ -829845,7 +830769,7 @@
{
"title": "Methods",
"children": [
- 37959
+ 20670
]
}
],
@@ -829889,7 +830813,7 @@
}
},
{
- "id": 37964,
+ "id": 20675,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -829912,7 +830836,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37965,
+ "id": 20676,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -829926,7 +830850,7 @@
],
"signatures": [
{
- "id": 37966,
+ "id": 20677,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -829954,7 +830878,7 @@
],
"typeParameters": [
{
- "id": 37967,
+ "id": 20678,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -829965,7 +830889,7 @@
}
},
{
- "id": 37968,
+ "id": 20679,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -829978,7 +830902,7 @@
],
"parameters": [
{
- "id": 37969,
+ "id": 20680,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -830011,7 +830935,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -830022,13 +830946,13 @@
},
"trueType": {
"type": "reference",
- "target": 37939,
+ "target": 20650,
"name": "UpdateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -830061,7 +830985,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -830084,7 +831008,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -830104,7 +831028,7 @@
}
},
{
- "id": 37970,
+ "id": 20681,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -830127,7 +831051,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37971,
+ "id": 20682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -830141,7 +831065,7 @@
],
"signatures": [
{
- "id": 37972,
+ "id": 20683,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -830163,7 +831087,7 @@
}
},
{
- "id": 37973,
+ "id": 20684,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -830186,7 +831110,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37974,
+ "id": 20685,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -830200,7 +831124,7 @@
],
"signatures": [
{
- "id": 37975,
+ "id": 20686,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -830214,7 +831138,7 @@
],
"parameters": [
{
- "id": 37976,
+ "id": 20687,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -830240,7 +831164,7 @@
}
},
{
- "id": 37977,
+ "id": 20688,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -830263,14 +831187,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37978,
+ "id": 20689,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37979,
+ "id": 20690,
"name": "collectionsUpdated",
"variant": "declaration",
"kind": 1024,
@@ -830278,7 +831202,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 37980,
+ "id": 20691,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -830292,7 +831216,7 @@
],
"signatures": [
{
- "id": 37981,
+ "id": 20692,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -830306,7 +831230,7 @@
],
"typeParameters": [
{
- "id": 37982,
+ "id": 20693,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -830315,7 +831239,7 @@
],
"parameters": [
{
- "id": 37983,
+ "id": 20694,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -830330,14 +831254,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37984,
+ "id": 20695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37985,
+ "id": 20696,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -830355,7 +831279,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 83,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L83"
}
],
"type": {
@@ -830374,7 +831298,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37986,
+ "id": 20697,
"name": "collections",
"variant": "declaration",
"kind": 1024,
@@ -830384,7 +831308,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L84"
}
],
"type": {
@@ -830465,14 +831389,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37987,
+ "id": 20698,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37988,
+ "id": 20699,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -830486,7 +831410,7 @@
],
"signatures": [
{
- "id": 37989,
+ "id": 20700,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -830500,7 +831424,7 @@
],
"parameters": [
{
- "id": 37990,
+ "id": 20701,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -830511,14 +831435,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37991,
+ "id": 20702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37992,
+ "id": 20703,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -830542,7 +831466,7 @@
{
"title": "Properties",
"children": [
- 37992
+ 20703
]
}
],
@@ -830627,7 +831551,7 @@
{
"title": "Methods",
"children": [
- 37988
+ 20699
]
}
],
@@ -830672,8 +831596,8 @@
{
"title": "Properties",
"children": [
- 37985,
- 37986
+ 20696,
+ 20697
]
}
],
@@ -830682,7 +831606,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 82,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L82"
}
]
}
@@ -830693,7 +831617,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -830704,7 +831628,7 @@
}
},
{
- "id": 37993,
+ "id": 20704,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -830720,7 +831644,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -830741,7 +831665,7 @@
}
},
{
- "id": 43178,
+ "id": 26119,
"name": "collectionsUpdated",
"variant": "declaration",
"kind": 64,
@@ -830776,14 +831700,14 @@
},
"signatures": [
{
- "id": 43179,
+ "id": 26120,
"name": "collectionsUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43180,
+ "id": 26121,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -830798,7 +831722,7 @@
},
"type": {
"type": "reference",
- "target": 37984,
+ "target": 20695,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -830812,13 +831736,13 @@
{
"title": "Properties",
"children": [
- 37979
+ 20690
]
},
{
"title": "Functions",
"children": [
- 43178
+ 26119
]
}
],
@@ -830835,7 +831759,7 @@
],
"documents": [
{
- "id": 43176,
+ "id": 26117,
"name": "updateCollectionsStep",
"variant": "document",
"kind": 8388608,
@@ -830861,7 +831785,7 @@
"frontmatter": {}
},
{
- "id": 43177,
+ "id": 26118,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -830887,7 +831811,7 @@
"frontmatter": {}
},
{
- "id": 43181,
+ "id": 26122,
"name": "collectionsUpdated",
"variant": "document",
"kind": 8388608,
@@ -830914,21 +831838,21 @@
}
],
"childrenIncludingDocuments": [
- 37952,
- 37964,
- 37970,
- 37973,
- 37977
+ 20663,
+ 20675,
+ 20681,
+ 20684,
+ 20688
],
"groups": [
{
"title": "Properties",
"children": [
- 37952,
- 37964,
- 37970,
- 37973,
- 37977
+ 20663,
+ 20675,
+ 20681,
+ 20684,
+ 20688
]
}
],
@@ -830937,12 +831861,12 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L59"
}
],
"signatures": [
{
- "id": 37945,
+ "id": 20656,
"name": "updateCollectionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -831006,12 +831930,12 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L59"
}
],
"typeParameters": [
{
- "id": 37946,
+ "id": 20657,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -831022,7 +831946,7 @@
}
},
{
- "id": 37947,
+ "id": 20658,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -831035,7 +831959,7 @@
],
"parameters": [
{
- "id": 37948,
+ "id": 20659,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -831059,14 +831983,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 37949,
+ "id": 20660,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37950,
+ "id": 20661,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -831089,7 +832013,7 @@
}
},
{
- "id": 37951,
+ "id": 20662,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -831116,8 +832040,8 @@
{
"title": "Properties",
"children": [
- 37950,
- 37951
+ 20661,
+ 20662
]
}
],
@@ -831192,7 +832116,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37939,
+ "target": 20650,
"name": "UpdateCollectionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -831210,14 +832134,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -831232,14 +832156,14 @@
]
},
{
- "id": 37984,
+ "id": 20695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37985,
+ "id": 20696,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -831257,7 +832181,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 83,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L83"
}
],
"type": {
@@ -831276,7 +832200,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37986,
+ "id": 20697,
"name": "collections",
"variant": "declaration",
"kind": 1024,
@@ -831286,7 +832210,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L84"
}
],
"type": {
@@ -831367,14 +832291,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37987,
+ "id": 20698,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37988,
+ "id": 20699,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -831388,7 +832312,7 @@
],
"signatures": [
{
- "id": 37989,
+ "id": 20700,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -831402,7 +832326,7 @@
],
"parameters": [
{
- "id": 37990,
+ "id": 20701,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -831413,14 +832337,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37991,
+ "id": 20702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37992,
+ "id": 20703,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -831444,7 +832368,7 @@
{
"title": "Properties",
"children": [
- 37992
+ 20703
]
}
],
@@ -831529,7 +832453,7 @@
{
"title": "Methods",
"children": [
- 37988
+ 20699
]
}
],
@@ -831574,8 +832498,8 @@
{
"title": "Properties",
"children": [
- 37985,
- 37986
+ 20696,
+ 20697
]
}
],
@@ -831584,12 +832508,12 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 82,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L82"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L82"
}
]
},
{
- "id": 37985,
+ "id": 20696,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -831607,7 +832531,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 83,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L83"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L83"
}
],
"type": {
@@ -831626,7 +832550,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 37986,
+ "id": 20697,
"name": "collections",
"variant": "declaration",
"kind": 1024,
@@ -831636,7 +832560,7 @@
"fileName": "core-flows/src/product/workflows/update-collections.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-collections.ts#L84"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-collections.ts#L84"
}
],
"type": {
@@ -831717,14 +832641,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37987,
+ "id": 20698,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37988,
+ "id": 20699,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -831738,7 +832662,7 @@
],
"signatures": [
{
- "id": 37989,
+ "id": 20700,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -831752,7 +832676,7 @@
],
"parameters": [
{
- "id": 37990,
+ "id": 20701,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -831763,14 +832687,14 @@
{
"type": "reflection",
"declaration": {
- "id": 37991,
+ "id": 20702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 37992,
+ "id": 20703,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -831794,7 +832718,7 @@
{
"title": "Properties",
"children": [
- 37992
+ 20703
]
}
],
@@ -831879,7 +832803,7 @@
{
"title": "Methods",
"children": [
- 37988
+ 20699
]
}
],
@@ -831920,7 +832844,7 @@
"defaultValue": "updatedCollections"
},
{
- "id": 37996,
+ "id": 20707,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -831938,7 +832862,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L20"
}
],
"type": {
@@ -831953,7 +832877,7 @@
}
},
{
- "id": 37997,
+ "id": 20708,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -831971,7 +832895,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L24"
}
],
"type": {
@@ -831986,7 +832910,7 @@
}
},
{
- "id": 37998,
+ "id": 20709,
"name": "updateProductOptionsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -831998,7 +832922,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L27"
}
],
"type": {
@@ -832008,7 +832932,7 @@
"defaultValue": "\"update-product-options\""
},
{
- "id": 37999,
+ "id": 20710,
"name": "updateProductOptionsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -832069,7 +832993,7 @@
},
"children": [
{
- "id": 38007,
+ "id": 20718,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -832092,7 +833016,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38008,
+ "id": 20719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -832106,7 +833030,7 @@
],
"signatures": [
{
- "id": 38009,
+ "id": 20720,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -832134,7 +833058,7 @@
],
"parameters": [
{
- "id": 38010,
+ "id": 20721,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -832150,14 +833074,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38011,
+ "id": 20722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38012,
+ "id": 20723,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -832182,7 +833106,7 @@
"types": [
{
"type": "reference",
- "target": 37994,
+ "target": 20705,
"name": "UpdateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -832195,7 +833119,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37994,
+ "target": 20705,
"name": "UpdateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -832211,7 +833135,7 @@
{
"title": "Properties",
"children": [
- 38012
+ 20723
]
}
],
@@ -832304,14 +833228,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38013,
+ "id": 20724,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38014,
+ "id": 20725,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -832325,7 +833249,7 @@
],
"signatures": [
{
- "id": 38015,
+ "id": 20726,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -832339,7 +833263,7 @@
],
"parameters": [
{
- "id": 38016,
+ "id": 20727,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -832350,14 +833274,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38017,
+ "id": 20728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38018,
+ "id": 20729,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -832381,7 +833305,7 @@
{
"title": "Properties",
"children": [
- 38018
+ 20729
]
}
],
@@ -832466,7 +833390,7 @@
{
"title": "Methods",
"children": [
- 38014
+ 20725
]
}
],
@@ -832510,7 +833434,7 @@
}
},
{
- "id": 38019,
+ "id": 20730,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -832533,7 +833457,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38020,
+ "id": 20731,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -832547,7 +833471,7 @@
],
"signatures": [
{
- "id": 38021,
+ "id": 20732,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -832575,7 +833499,7 @@
],
"typeParameters": [
{
- "id": 38022,
+ "id": 20733,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -832586,7 +833510,7 @@
}
},
{
- "id": 38023,
+ "id": 20734,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -832599,7 +833523,7 @@
],
"parameters": [
{
- "id": 38024,
+ "id": 20735,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -832632,7 +833556,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -832643,13 +833567,13 @@
},
"trueType": {
"type": "reference",
- "target": 37994,
+ "target": 20705,
"name": "UpdateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -832682,7 +833606,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -832705,7 +833629,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -832725,7 +833649,7 @@
}
},
{
- "id": 38025,
+ "id": 20736,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -832748,7 +833672,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38026,
+ "id": 20737,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -832762,7 +833686,7 @@
],
"signatures": [
{
- "id": 38027,
+ "id": 20738,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -832784,7 +833708,7 @@
}
},
{
- "id": 38028,
+ "id": 20739,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -832807,7 +833731,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38029,
+ "id": 20740,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -832821,7 +833745,7 @@
],
"signatures": [
{
- "id": 38030,
+ "id": 20741,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -832835,7 +833759,7 @@
],
"parameters": [
{
- "id": 38031,
+ "id": 20742,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -832861,7 +833785,7 @@
}
},
{
- "id": 38032,
+ "id": 20743,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -832884,14 +833808,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38033,
+ "id": 20744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38034,
+ "id": 20745,
"name": "productOptionsUpdated",
"variant": "declaration",
"kind": 1024,
@@ -832899,7 +833823,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38035,
+ "id": 20746,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -832913,7 +833837,7 @@
],
"signatures": [
{
- "id": 38036,
+ "id": 20747,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -832927,7 +833851,7 @@
],
"typeParameters": [
{
- "id": 38037,
+ "id": 20748,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -832936,7 +833860,7 @@
],
"parameters": [
{
- "id": 38038,
+ "id": 20749,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -832951,14 +833875,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38039,
+ "id": 20750,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38040,
+ "id": 20751,
"name": "product_options",
"variant": "declaration",
"kind": 1024,
@@ -832968,7 +833892,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L63"
}
],
"type": {
@@ -833049,14 +833973,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38041,
+ "id": 20752,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38042,
+ "id": 20753,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -833070,7 +833994,7 @@
],
"signatures": [
{
- "id": 38043,
+ "id": 20754,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -833084,7 +834008,7 @@
],
"parameters": [
{
- "id": 38044,
+ "id": 20755,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -833095,14 +834019,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38045,
+ "id": 20756,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38046,
+ "id": 20757,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -833126,7 +834050,7 @@
{
"title": "Properties",
"children": [
- 38046
+ 20757
]
}
],
@@ -833211,7 +834135,7 @@
{
"title": "Methods",
"children": [
- 38042
+ 20753
]
}
],
@@ -833252,7 +834176,7 @@
"defaultValue": "updatedProductOptions"
},
{
- "id": 38047,
+ "id": 20758,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -833270,7 +834194,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L64"
}
],
"type": {
@@ -833293,8 +834217,8 @@
{
"title": "Properties",
"children": [
- 38040,
- 38047
+ 20751,
+ 20758
]
}
],
@@ -833303,7 +834227,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 62,
"character": 70,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L62"
}
]
}
@@ -833314,7 +834238,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -833325,7 +834249,7 @@
}
},
{
- "id": 38048,
+ "id": 20759,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -833341,7 +834265,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -833362,7 +834286,7 @@
}
},
{
- "id": 43183,
+ "id": 26124,
"name": "productOptionsUpdated",
"variant": "declaration",
"kind": 64,
@@ -833397,14 +834321,14 @@
},
"signatures": [
{
- "id": 43184,
+ "id": 26125,
"name": "productOptionsUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43185,
+ "id": 26126,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -833419,7 +834343,7 @@
},
"type": {
"type": "reference",
- "target": 38039,
+ "target": 20750,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -833433,13 +834357,13 @@
{
"title": "Properties",
"children": [
- 38034
+ 20745
]
},
{
"title": "Functions",
"children": [
- 43183
+ 26124
]
}
],
@@ -833456,7 +834380,7 @@
],
"documents": [
{
- "id": 43182,
+ "id": 26123,
"name": "updateProductOptionsStep",
"variant": "document",
"kind": 8388608,
@@ -833482,7 +834406,7 @@
"frontmatter": {}
},
{
- "id": 43186,
+ "id": 26127,
"name": "productOptionsUpdated",
"variant": "document",
"kind": 8388608,
@@ -833508,7 +834432,7 @@
"frontmatter": {}
},
{
- "id": 43187,
+ "id": 26128,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -833535,21 +834459,21 @@
}
],
"childrenIncludingDocuments": [
- 38007,
- 38019,
- 38025,
- 38028,
- 38032
+ 20718,
+ 20730,
+ 20736,
+ 20739,
+ 20743
],
"groups": [
{
"title": "Properties",
"children": [
- 38007,
- 38019,
- 38025,
- 38028,
- 38032
+ 20718,
+ 20730,
+ 20736,
+ 20739,
+ 20743
]
}
],
@@ -833558,12 +834482,12 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L58"
}
],
"signatures": [
{
- "id": 38000,
+ "id": 20711,
"name": "updateProductOptionsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -833627,12 +834551,12 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 58,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L58"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L58"
}
],
"typeParameters": [
{
- "id": 38001,
+ "id": 20712,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -833643,7 +834567,7 @@
}
},
{
- "id": 38002,
+ "id": 20713,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -833656,7 +834580,7 @@
],
"parameters": [
{
- "id": 38003,
+ "id": 20714,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -833680,14 +834604,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38004,
+ "id": 20715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38005,
+ "id": 20716,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -833710,7 +834634,7 @@
}
},
{
- "id": 38006,
+ "id": 20717,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -833737,8 +834661,8 @@
{
"title": "Properties",
"children": [
- 38005,
- 38006
+ 20716,
+ 20717
]
}
],
@@ -833813,7 +834737,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 37994,
+ "target": 20705,
"name": "UpdateProductOptionsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -833831,14 +834755,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -833853,14 +834777,14 @@
]
},
{
- "id": 38039,
+ "id": 20750,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38040,
+ "id": 20751,
"name": "product_options",
"variant": "declaration",
"kind": 1024,
@@ -833870,7 +834794,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L63"
}
],
"type": {
@@ -833951,14 +834875,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38041,
+ "id": 20752,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38042,
+ "id": 20753,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -833972,7 +834896,7 @@
],
"signatures": [
{
- "id": 38043,
+ "id": 20754,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -833986,7 +834910,7 @@
],
"parameters": [
{
- "id": 38044,
+ "id": 20755,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -833997,14 +834921,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38045,
+ "id": 20756,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38046,
+ "id": 20757,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -834028,7 +834952,7 @@
{
"title": "Properties",
"children": [
- 38046
+ 20757
]
}
],
@@ -834113,7 +835037,7 @@
{
"title": "Methods",
"children": [
- 38042
+ 20753
]
}
],
@@ -834154,7 +835078,7 @@
"defaultValue": "updatedProductOptions"
},
{
- "id": 38047,
+ "id": 20758,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -834172,7 +835096,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L64"
}
],
"type": {
@@ -834195,8 +835119,8 @@
{
"title": "Properties",
"children": [
- 38040,
- 38047
+ 20751,
+ 20758
]
}
],
@@ -834205,12 +835129,12 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 62,
"character": 70,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L62"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L62"
}
]
},
{
- "id": 38040,
+ "id": 20751,
"name": "product_options",
"variant": "declaration",
"kind": 1024,
@@ -834220,7 +835144,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L63"
}
],
"type": {
@@ -834301,14 +835225,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38041,
+ "id": 20752,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38042,
+ "id": 20753,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -834322,7 +835246,7 @@
],
"signatures": [
{
- "id": 38043,
+ "id": 20754,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -834336,7 +835260,7 @@
],
"parameters": [
{
- "id": 38044,
+ "id": 20755,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -834347,14 +835271,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38045,
+ "id": 20756,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38046,
+ "id": 20757,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -834378,7 +835302,7 @@
{
"title": "Properties",
"children": [
- 38046
+ 20757
]
}
],
@@ -834463,7 +835387,7 @@
{
"title": "Methods",
"children": [
- 38042
+ 20753
]
}
],
@@ -834504,7 +835428,7 @@
"defaultValue": "updatedProductOptions"
},
{
- "id": 38047,
+ "id": 20758,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -834522,7 +835446,7 @@
"fileName": "core-flows/src/product/workflows/update-product-options.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-options.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-options.ts#L64"
}
],
"type": {
@@ -834541,7 +835465,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 38049,
+ "id": 20760,
"name": "updateProductTypesWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -834553,7 +835477,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L27"
}
],
"type": {
@@ -834563,7 +835487,7 @@
"defaultValue": "\"update-product-types\""
},
{
- "id": 38050,
+ "id": 20761,
"name": "updateProductTypesWorkflow",
"variant": "declaration",
"kind": 64,
@@ -834624,7 +835548,7 @@
},
"children": [
{
- "id": 38058,
+ "id": 20769,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -834647,7 +835571,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38059,
+ "id": 20770,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -834661,7 +835585,7 @@
],
"signatures": [
{
- "id": 38060,
+ "id": 20771,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -834689,7 +835613,7 @@
],
"parameters": [
{
- "id": 38061,
+ "id": 20772,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -834705,14 +835629,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38062,
+ "id": 20773,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38063,
+ "id": 20774,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -834772,7 +835696,7 @@
{
"title": "Properties",
"children": [
- 38063
+ 20774
]
}
],
@@ -834865,14 +835789,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38064,
+ "id": 20775,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38065,
+ "id": 20776,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -834886,7 +835810,7 @@
],
"signatures": [
{
- "id": 38066,
+ "id": 20777,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -834900,7 +835824,7 @@
],
"parameters": [
{
- "id": 38067,
+ "id": 20778,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -834911,14 +835835,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38068,
+ "id": 20779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38069,
+ "id": 20780,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -834942,7 +835866,7 @@
{
"title": "Properties",
"children": [
- 38069
+ 20780
]
}
],
@@ -835027,7 +835951,7 @@
{
"title": "Methods",
"children": [
- 38065
+ 20776
]
}
],
@@ -835071,7 +835995,7 @@
}
},
{
- "id": 38070,
+ "id": 20781,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -835094,7 +836018,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38071,
+ "id": 20782,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -835108,7 +836032,7 @@
],
"signatures": [
{
- "id": 38072,
+ "id": 20783,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -835136,7 +836060,7 @@
],
"typeParameters": [
{
- "id": 38073,
+ "id": 20784,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -835147,7 +836071,7 @@
}
},
{
- "id": 38074,
+ "id": 20785,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -835160,7 +836084,7 @@
],
"parameters": [
{
- "id": 38075,
+ "id": 20786,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -835193,7 +836117,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -835213,7 +836137,7 @@
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -835246,7 +836170,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -835269,7 +836193,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -835289,7 +836213,7 @@
}
},
{
- "id": 38076,
+ "id": 20787,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -835312,7 +836236,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38077,
+ "id": 20788,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -835326,7 +836250,7 @@
],
"signatures": [
{
- "id": 38078,
+ "id": 20789,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -835348,7 +836272,7 @@
}
},
{
- "id": 38079,
+ "id": 20790,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -835371,7 +836295,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38080,
+ "id": 20791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -835385,7 +836309,7 @@
],
"signatures": [
{
- "id": 38081,
+ "id": 20792,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -835399,7 +836323,7 @@
],
"parameters": [
{
- "id": 38082,
+ "id": 20793,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -835425,7 +836349,7 @@
}
},
{
- "id": 38083,
+ "id": 20794,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -835448,14 +836372,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38084,
+ "id": 20795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38085,
+ "id": 20796,
"name": "productTypesUpdated",
"variant": "declaration",
"kind": 1024,
@@ -835463,7 +836387,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38086,
+ "id": 20797,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -835477,7 +836401,7 @@
],
"signatures": [
{
- "id": 38087,
+ "id": 20798,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -835491,7 +836415,7 @@
],
"typeParameters": [
{
- "id": 38088,
+ "id": 20799,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -835500,7 +836424,7 @@
],
"parameters": [
{
- "id": 38089,
+ "id": 20800,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -835515,14 +836439,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38090,
+ "id": 20801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38091,
+ "id": 20802,
"name": "product_types",
"variant": "declaration",
"kind": 1024,
@@ -835532,7 +836456,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L64"
}
],
"type": {
@@ -835613,14 +836537,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38092,
+ "id": 20803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38093,
+ "id": 20804,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -835634,7 +836558,7 @@
],
"signatures": [
{
- "id": 38094,
+ "id": 20805,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -835648,7 +836572,7 @@
],
"parameters": [
{
- "id": 38095,
+ "id": 20806,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -835659,14 +836583,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38096,
+ "id": 20807,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38097,
+ "id": 20808,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -835690,7 +836614,7 @@
{
"title": "Properties",
"children": [
- 38097
+ 20808
]
}
],
@@ -835775,7 +836699,7 @@
{
"title": "Methods",
"children": [
- 38093
+ 20804
]
}
],
@@ -835816,7 +836740,7 @@
"defaultValue": "updatedProductTypes"
},
{
- "id": 38098,
+ "id": 20809,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -835834,7 +836758,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L65"
}
],
"type": {
@@ -835857,8 +836781,8 @@
{
"title": "Properties",
"children": [
- 38091,
- 38098
+ 20802,
+ 20809
]
}
],
@@ -835867,7 +836791,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 63,
"character": 66,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L63"
}
]
}
@@ -835878,7 +836802,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -835889,7 +836813,7 @@
}
},
{
- "id": 38099,
+ "id": 20810,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -835905,7 +836829,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -835926,7 +836850,7 @@
}
},
{
- "id": 43189,
+ "id": 26130,
"name": "productTypesUpdated",
"variant": "declaration",
"kind": 64,
@@ -835961,14 +836885,14 @@
},
"signatures": [
{
- "id": 43190,
+ "id": 26131,
"name": "productTypesUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43191,
+ "id": 26132,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -835983,7 +836907,7 @@
},
"type": {
"type": "reference",
- "target": 38090,
+ "target": 20801,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -835997,13 +836921,13 @@
{
"title": "Properties",
"children": [
- 38085
+ 20796
]
},
{
"title": "Functions",
"children": [
- 43189
+ 26130
]
}
],
@@ -836020,7 +836944,7 @@
],
"documents": [
{
- "id": 43188,
+ "id": 26129,
"name": "updateProductTypesStep",
"variant": "document",
"kind": 8388608,
@@ -836046,7 +836970,7 @@
"frontmatter": {}
},
{
- "id": 43192,
+ "id": 26133,
"name": "productTypesUpdated",
"variant": "document",
"kind": 8388608,
@@ -836072,7 +836996,7 @@
"frontmatter": {}
},
{
- "id": 43193,
+ "id": 26134,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -836099,21 +837023,21 @@
}
],
"childrenIncludingDocuments": [
- 38058,
- 38070,
- 38076,
- 38079,
- 38083
+ 20769,
+ 20781,
+ 20787,
+ 20790,
+ 20794
],
"groups": [
{
"title": "Properties",
"children": [
- 38058,
- 38070,
- 38076,
- 38079,
- 38083
+ 20769,
+ 20781,
+ 20787,
+ 20790,
+ 20794
]
}
],
@@ -836122,12 +837046,12 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L59"
}
],
"signatures": [
{
- "id": 38051,
+ "id": 20762,
"name": "updateProductTypesWorkflow",
"variant": "signature",
"kind": 4096,
@@ -836191,12 +837115,12 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L59"
}
],
"typeParameters": [
{
- "id": 38052,
+ "id": 20763,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -836207,7 +837131,7 @@
}
},
{
- "id": 38053,
+ "id": 20764,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -836220,7 +837144,7 @@
],
"parameters": [
{
- "id": 38054,
+ "id": 20765,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -836244,14 +837168,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38055,
+ "id": 20766,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38056,
+ "id": 20767,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -836274,7 +837198,7 @@
}
},
{
- "id": 38057,
+ "id": 20768,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -836301,8 +837225,8 @@
{
"title": "Properties",
"children": [
- 38056,
- 38057
+ 20767,
+ 20768
]
}
],
@@ -836398,14 +837322,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -836420,14 +837344,14 @@
]
},
{
- "id": 38090,
+ "id": 20801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38091,
+ "id": 20802,
"name": "product_types",
"variant": "declaration",
"kind": 1024,
@@ -836437,7 +837361,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L64"
}
],
"type": {
@@ -836518,14 +837442,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38092,
+ "id": 20803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38093,
+ "id": 20804,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -836539,7 +837463,7 @@
],
"signatures": [
{
- "id": 38094,
+ "id": 20805,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -836553,7 +837477,7 @@
],
"parameters": [
{
- "id": 38095,
+ "id": 20806,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -836564,14 +837488,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38096,
+ "id": 20807,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38097,
+ "id": 20808,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -836595,7 +837519,7 @@
{
"title": "Properties",
"children": [
- 38097
+ 20808
]
}
],
@@ -836680,7 +837604,7 @@
{
"title": "Methods",
"children": [
- 38093
+ 20804
]
}
],
@@ -836721,7 +837645,7 @@
"defaultValue": "updatedProductTypes"
},
{
- "id": 38098,
+ "id": 20809,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -836739,7 +837663,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L65"
}
],
"type": {
@@ -836762,8 +837686,8 @@
{
"title": "Properties",
"children": [
- 38091,
- 38098
+ 20802,
+ 20809
]
}
],
@@ -836772,12 +837696,12 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 63,
"character": 66,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L63"
}
]
},
{
- "id": 38091,
+ "id": 20802,
"name": "product_types",
"variant": "declaration",
"kind": 1024,
@@ -836787,7 +837711,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L64"
}
],
"type": {
@@ -836868,14 +837792,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38092,
+ "id": 20803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38093,
+ "id": 20804,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -836889,7 +837813,7 @@
],
"signatures": [
{
- "id": 38094,
+ "id": 20805,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -836903,7 +837827,7 @@
],
"parameters": [
{
- "id": 38095,
+ "id": 20806,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -836914,14 +837838,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38096,
+ "id": 20807,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38097,
+ "id": 20808,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -836945,7 +837869,7 @@
{
"title": "Properties",
"children": [
- 38097
+ 20808
]
}
],
@@ -837030,7 +837954,7 @@
{
"title": "Methods",
"children": [
- 38093
+ 20804
]
}
],
@@ -837071,7 +837995,7 @@
"defaultValue": "updatedProductTypes"
},
{
- "id": 38098,
+ "id": 20809,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -837089,7 +838013,7 @@
"fileName": "core-flows/src/product/workflows/update-product-types.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-types.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-types.ts#L65"
}
],
"type": {
@@ -837108,7 +838032,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 38102,
+ "id": 20813,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -837126,7 +838050,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L20"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L20"
}
],
"type": {
@@ -837141,7 +838065,7 @@
}
},
{
- "id": 38103,
+ "id": 20814,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -837159,7 +838083,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L24"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L24"
}
],
"type": {
@@ -837174,7 +838098,7 @@
}
},
{
- "id": 38104,
+ "id": 20815,
"name": "updateProductTagsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -837186,7 +838110,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 27,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L27"
}
],
"type": {
@@ -837196,7 +838120,7 @@
"defaultValue": "\"update-product-tags\""
},
{
- "id": 38105,
+ "id": 20816,
"name": "updateProductTagsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -837257,7 +838181,7 @@
},
"children": [
{
- "id": 38113,
+ "id": 20824,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -837280,7 +838204,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38114,
+ "id": 20825,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -837294,7 +838218,7 @@
],
"signatures": [
{
- "id": 38115,
+ "id": 20826,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -837322,7 +838246,7 @@
],
"parameters": [
{
- "id": 38116,
+ "id": 20827,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -837338,14 +838262,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38117,
+ "id": 20828,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38118,
+ "id": 20829,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -837370,7 +838294,7 @@
"types": [
{
"type": "reference",
- "target": 38100,
+ "target": 20811,
"name": "UpdateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -837383,7 +838307,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 38100,
+ "target": 20811,
"name": "UpdateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -837399,7 +838323,7 @@
{
"title": "Properties",
"children": [
- 38118
+ 20829
]
}
],
@@ -837492,14 +838416,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38119,
+ "id": 20830,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38120,
+ "id": 20831,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -837513,7 +838437,7 @@
],
"signatures": [
{
- "id": 38121,
+ "id": 20832,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -837527,7 +838451,7 @@
],
"parameters": [
{
- "id": 38122,
+ "id": 20833,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -837538,14 +838462,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38123,
+ "id": 20834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38124,
+ "id": 20835,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -837569,7 +838493,7 @@
{
"title": "Properties",
"children": [
- 38124
+ 20835
]
}
],
@@ -837654,7 +838578,7 @@
{
"title": "Methods",
"children": [
- 38120
+ 20831
]
}
],
@@ -837698,7 +838622,7 @@
}
},
{
- "id": 38125,
+ "id": 20836,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -837721,7 +838645,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38126,
+ "id": 20837,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -837735,7 +838659,7 @@
],
"signatures": [
{
- "id": 38127,
+ "id": 20838,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -837763,7 +838687,7 @@
],
"typeParameters": [
{
- "id": 38128,
+ "id": 20839,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -837774,7 +838698,7 @@
}
},
{
- "id": 38129,
+ "id": 20840,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -837787,7 +838711,7 @@
],
"parameters": [
{
- "id": 38130,
+ "id": 20841,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -837820,7 +838744,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -837831,13 +838755,13 @@
},
"trueType": {
"type": "reference",
- "target": 38100,
+ "target": 20811,
"name": "UpdateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -837870,7 +838794,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -837893,7 +838817,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -837913,7 +838837,7 @@
}
},
{
- "id": 38131,
+ "id": 20842,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -837936,7 +838860,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38132,
+ "id": 20843,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -837950,7 +838874,7 @@
],
"signatures": [
{
- "id": 38133,
+ "id": 20844,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -837972,7 +838896,7 @@
}
},
{
- "id": 38134,
+ "id": 20845,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -837995,7 +838919,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38135,
+ "id": 20846,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -838009,7 +838933,7 @@
],
"signatures": [
{
- "id": 38136,
+ "id": 20847,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -838023,7 +838947,7 @@
],
"parameters": [
{
- "id": 38137,
+ "id": 20848,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -838049,7 +838973,7 @@
}
},
{
- "id": 38138,
+ "id": 20849,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -838072,14 +838996,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38139,
+ "id": 20850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38140,
+ "id": 20851,
"name": "productTagsUpdated",
"variant": "declaration",
"kind": 1024,
@@ -838087,7 +839011,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38141,
+ "id": 20852,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -838101,7 +839025,7 @@
],
"signatures": [
{
- "id": 38142,
+ "id": 20853,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -838115,7 +839039,7 @@
],
"typeParameters": [
{
- "id": 38143,
+ "id": 20854,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -838124,7 +839048,7 @@
],
"parameters": [
{
- "id": 38144,
+ "id": 20855,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -838139,14 +839063,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38145,
+ "id": 20856,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38146,
+ "id": 20857,
"name": "product_tags",
"variant": "declaration",
"kind": 1024,
@@ -838156,7 +839080,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L64"
}
],
"type": {
@@ -838237,14 +839161,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38147,
+ "id": 20858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38148,
+ "id": 20859,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -838258,7 +839182,7 @@
],
"signatures": [
{
- "id": 38149,
+ "id": 20860,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -838272,7 +839196,7 @@
],
"parameters": [
{
- "id": 38150,
+ "id": 20861,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -838283,14 +839207,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38151,
+ "id": 20862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38152,
+ "id": 20863,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -838314,7 +839238,7 @@
{
"title": "Properties",
"children": [
- 38152
+ 20863
]
}
],
@@ -838399,7 +839323,7 @@
{
"title": "Methods",
"children": [
- 38148
+ 20859
]
}
],
@@ -838440,7 +839364,7 @@
"defaultValue": "updatedProductTags"
},
{
- "id": 38153,
+ "id": 20864,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -838458,7 +839382,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L65"
}
],
"type": {
@@ -838481,8 +839405,8 @@
{
"title": "Properties",
"children": [
- 38146,
- 38153
+ 20857,
+ 20864
]
}
],
@@ -838491,7 +839415,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 63,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L63"
}
]
}
@@ -838502,7 +839426,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -838513,7 +839437,7 @@
}
},
{
- "id": 38154,
+ "id": 20865,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -838529,7 +839453,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -838550,7 +839474,7 @@
}
},
{
- "id": 43195,
+ "id": 26136,
"name": "productTagsUpdated",
"variant": "declaration",
"kind": 64,
@@ -838585,14 +839509,14 @@
},
"signatures": [
{
- "id": 43196,
+ "id": 26137,
"name": "productTagsUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43197,
+ "id": 26138,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -838607,7 +839531,7 @@
},
"type": {
"type": "reference",
- "target": 38145,
+ "target": 20856,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -838621,13 +839545,13 @@
{
"title": "Properties",
"children": [
- 38140
+ 20851
]
},
{
"title": "Functions",
"children": [
- 43195
+ 26136
]
}
],
@@ -838644,7 +839568,7 @@
],
"documents": [
{
- "id": 43194,
+ "id": 26135,
"name": "updateProductTagsStep",
"variant": "document",
"kind": 8388608,
@@ -838670,7 +839594,7 @@
"frontmatter": {}
},
{
- "id": 43198,
+ "id": 26139,
"name": "productTagsUpdated",
"variant": "document",
"kind": 8388608,
@@ -838696,7 +839620,7 @@
"frontmatter": {}
},
{
- "id": 43199,
+ "id": 26140,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -838723,21 +839647,21 @@
}
],
"childrenIncludingDocuments": [
- 38113,
- 38125,
- 38131,
- 38134,
- 38138
+ 20824,
+ 20836,
+ 20842,
+ 20845,
+ 20849
],
"groups": [
{
"title": "Properties",
"children": [
- 38113,
- 38125,
- 38131,
- 38134,
- 38138
+ 20824,
+ 20836,
+ 20842,
+ 20845,
+ 20849
]
}
],
@@ -838746,12 +839670,12 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L59"
}
],
"signatures": [
{
- "id": 38106,
+ "id": 20817,
"name": "updateProductTagsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -838815,12 +839739,12 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 59,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L59"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L59"
}
],
"typeParameters": [
{
- "id": 38107,
+ "id": 20818,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -838831,7 +839755,7 @@
}
},
{
- "id": 38108,
+ "id": 20819,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -838844,7 +839768,7 @@
],
"parameters": [
{
- "id": 38109,
+ "id": 20820,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -838868,14 +839792,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38110,
+ "id": 20821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38111,
+ "id": 20822,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -838898,7 +839822,7 @@
}
},
{
- "id": 38112,
+ "id": 20823,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -838925,8 +839849,8 @@
{
"title": "Properties",
"children": [
- 38111,
- 38112
+ 20822,
+ 20823
]
}
],
@@ -839001,7 +839925,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 38100,
+ "target": 20811,
"name": "UpdateProductTagsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -839019,14 +839943,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -839041,14 +839965,14 @@
]
},
{
- "id": 38145,
+ "id": 20856,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38146,
+ "id": 20857,
"name": "product_tags",
"variant": "declaration",
"kind": 1024,
@@ -839058,7 +839982,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L64"
}
],
"type": {
@@ -839139,14 +840063,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38147,
+ "id": 20858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38148,
+ "id": 20859,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -839160,7 +840084,7 @@
],
"signatures": [
{
- "id": 38149,
+ "id": 20860,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -839174,7 +840098,7 @@
],
"parameters": [
{
- "id": 38150,
+ "id": 20861,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -839185,14 +840109,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38151,
+ "id": 20862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38152,
+ "id": 20863,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -839216,7 +840140,7 @@
{
"title": "Properties",
"children": [
- 38152
+ 20863
]
}
],
@@ -839301,7 +840225,7 @@
{
"title": "Methods",
"children": [
- 38148
+ 20859
]
}
],
@@ -839342,7 +840266,7 @@
"defaultValue": "updatedProductTags"
},
{
- "id": 38153,
+ "id": 20864,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -839360,7 +840284,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L65"
}
],
"type": {
@@ -839383,8 +840307,8 @@
{
"title": "Properties",
"children": [
- 38146,
- 38153
+ 20857,
+ 20864
]
}
],
@@ -839393,12 +840317,12 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 63,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L63"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L63"
}
]
},
{
- "id": 38146,
+ "id": 20857,
"name": "product_tags",
"variant": "declaration",
"kind": 1024,
@@ -839408,7 +840332,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L64"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L64"
}
],
"type": {
@@ -839489,14 +840413,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38147,
+ "id": 20858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38148,
+ "id": 20859,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -839510,7 +840434,7 @@
],
"signatures": [
{
- "id": 38149,
+ "id": 20860,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -839524,7 +840448,7 @@
],
"parameters": [
{
- "id": 38150,
+ "id": 20861,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -839535,14 +840459,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38151,
+ "id": 20862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38152,
+ "id": 20863,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -839566,7 +840490,7 @@
{
"title": "Properties",
"children": [
- 38152
+ 20863
]
}
],
@@ -839651,7 +840575,7 @@
{
"title": "Methods",
"children": [
- 38148
+ 20859
]
}
],
@@ -839692,7 +840616,7 @@
"defaultValue": "updatedProductTags"
},
{
- "id": 38153,
+ "id": 20864,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -839710,7 +840634,7 @@
"fileName": "core-flows/src/product/workflows/update-product-tags.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L65"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-tags.ts#L65"
}
],
"type": {
@@ -839729,7 +840653,7 @@
"defaultValue": "input.additional_data"
},
{
- "id": 38157,
+ "id": 20868,
"name": "selector",
"variant": "declaration",
"kind": 1024,
@@ -839747,7 +840671,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 27,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L27"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L27"
}
],
"type": {
@@ -839762,7 +840686,7 @@
}
},
{
- "id": 38160,
+ "id": 20871,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -839782,7 +840706,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 35,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L35"
}
],
"type": {
@@ -839811,7 +840735,7 @@
}
},
{
- "id": 38158,
+ "id": 20869,
"name": "update",
"variant": "declaration",
"kind": 1024,
@@ -839829,7 +840753,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 31,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L31"
}
],
"type": {
@@ -839848,14 +840772,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38159,
+ "id": 20870,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38160,
+ "id": 20871,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -839875,7 +840799,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 35,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L35"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L35"
}
],
"type": {
@@ -839908,7 +840832,7 @@
{
"title": "Properties",
"children": [
- 38160
+ 20871
]
}
],
@@ -839917,7 +840841,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 31,
"character": 53,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L31"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L31"
}
]
}
@@ -839926,7 +840850,7 @@
}
},
{
- "id": 38164,
+ "id": 20875,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -839946,7 +840870,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 46,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L46"
}
],
"type": {
@@ -839975,7 +840899,7 @@
}
},
{
- "id": 38162,
+ "id": 20873,
"name": "product_variants",
"variant": "declaration",
"kind": 1024,
@@ -839993,7 +840917,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L42"
}
],
"type": {
@@ -840014,14 +840938,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38163,
+ "id": 20874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38164,
+ "id": 20875,
"name": "prices",
"variant": "declaration",
"kind": 1024,
@@ -840041,7 +840965,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 46,
"character": 8,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L46"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L46"
}
],
"type": {
@@ -840074,7 +840998,7 @@
{
"title": "Properties",
"children": [
- 38164
+ 20875
]
}
],
@@ -840083,7 +841007,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 42,
"character": 64,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L42"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L42"
}
]
}
@@ -840093,7 +841017,7 @@
}
},
{
- "id": 38165,
+ "id": 20876,
"name": "updateProductVariantsWorkflowId",
"variant": "declaration",
"kind": 32,
@@ -840105,7 +841029,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L52"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L52"
}
],
"type": {
@@ -840115,7 +841039,7 @@
"defaultValue": "\"update-product-variants\""
},
{
- "id": 38166,
+ "id": 20877,
"name": "updateProductVariantsWorkflow",
"variant": "declaration",
"kind": 64,
@@ -840188,7 +841112,7 @@
},
"children": [
{
- "id": 38203,
+ "id": 20914,
"name": "runAsStep",
"variant": "declaration",
"kind": 1024,
@@ -840211,7 +841135,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38204,
+ "id": 20915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -840225,7 +841149,7 @@
],
"signatures": [
{
- "id": 38205,
+ "id": 20916,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -840253,7 +841177,7 @@
],
"parameters": [
{
- "id": 38206,
+ "id": 20917,
"name": "param0",
"variant": "param",
"kind": 32768,
@@ -840269,14 +841193,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38207,
+ "id": 20918,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38208,
+ "id": 20919,
"name": "input",
"variant": "declaration",
"kind": 1024,
@@ -840301,7 +841225,7 @@
"types": [
{
"type": "reference",
- "target": 38155,
+ "target": 20866,
"name": "UpdateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -840314,7 +841238,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 38155,
+ "target": 20866,
"name": "UpdateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
}
@@ -840330,7 +841254,7 @@
{
"title": "Properties",
"children": [
- 38208
+ 20919
]
}
],
@@ -840356,14 +841280,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38209,
+ "id": 20920,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38210,
+ "id": 20921,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -840373,7 +841297,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -840397,7 +841321,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38211,
+ "id": 20922,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -840423,7 +841347,7 @@
}
},
{
- "id": 38212,
+ "id": 20923,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -840449,7 +841373,7 @@
}
},
{
- "id": 38213,
+ "id": 20924,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -840484,7 +841408,7 @@
}
},
{
- "id": 38214,
+ "id": 20925,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -840519,7 +841443,7 @@
}
},
{
- "id": 38215,
+ "id": 20926,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -840554,7 +841478,7 @@
}
},
{
- "id": 38216,
+ "id": 20927,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -840589,7 +841513,7 @@
}
},
{
- "id": 38217,
+ "id": 20928,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -840615,7 +841539,7 @@
}
},
{
- "id": 38218,
+ "id": 20929,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -840641,7 +841565,7 @@
}
},
{
- "id": 38219,
+ "id": 20930,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -840676,7 +841600,7 @@
}
},
{
- "id": 38220,
+ "id": 20931,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -840702,7 +841626,7 @@
}
},
{
- "id": 38221,
+ "id": 20932,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -840737,7 +841661,7 @@
}
},
{
- "id": 38222,
+ "id": 20933,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -840772,7 +841696,7 @@
}
},
{
- "id": 38223,
+ "id": 20934,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -840807,7 +841731,7 @@
}
},
{
- "id": 38224,
+ "id": 20935,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -840842,7 +841766,7 @@
}
},
{
- "id": 38225,
+ "id": 20936,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -840877,7 +841801,7 @@
}
},
{
- "id": 38226,
+ "id": 20937,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -840912,7 +841836,7 @@
}
},
{
- "id": 38227,
+ "id": 20938,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -840947,7 +841871,7 @@
}
},
{
- "id": 38228,
+ "id": 20939,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -840982,7 +841906,7 @@
}
},
{
- "id": 38229,
+ "id": 20940,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -841019,7 +841943,7 @@
}
},
{
- "id": 38230,
+ "id": 20941,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -841056,7 +841980,7 @@
}
},
{
- "id": 38231,
+ "id": 20942,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -841106,7 +842030,7 @@
}
},
{
- "id": 38232,
+ "id": 20943,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -841151,7 +842075,7 @@
}
},
{
- "id": 38233,
+ "id": 20944,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -841186,7 +842110,7 @@
}
},
{
- "id": 38234,
+ "id": 20945,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -841223,7 +842147,7 @@
}
},
{
- "id": 38235,
+ "id": 20946,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -841263,7 +842187,7 @@
}
},
{
- "id": 38236,
+ "id": 20947,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -841303,7 +842227,7 @@
}
},
{
- "id": 38237,
+ "id": 20948,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -841347,34 +842271,34 @@
{
"title": "Properties",
"children": [
- 38210,
- 38211,
- 38212,
- 38213,
- 38214,
- 38215,
- 38216,
- 38217,
- 38218,
- 38219,
- 38220,
- 38221,
- 38222,
- 38223,
- 38224,
- 38225,
- 38226,
- 38227,
- 38228,
- 38229,
- 38230,
- 38231,
- 38232,
- 38233,
- 38234,
- 38235,
- 38236,
- 38237
+ 20921,
+ 20922,
+ 20923,
+ 20924,
+ 20925,
+ 20926,
+ 20927,
+ 20928,
+ 20929,
+ 20930,
+ 20931,
+ 20932,
+ 20933,
+ 20934,
+ 20935,
+ 20936,
+ 20937,
+ 20938,
+ 20939,
+ 20940,
+ 20941,
+ 20942,
+ 20943,
+ 20944,
+ 20945,
+ 20946,
+ 20947,
+ 20948
]
}
],
@@ -841383,7 +842307,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -841398,14 +842322,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38238,
+ "id": 20949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38239,
+ "id": 20950,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -841415,7 +842339,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -841439,7 +842363,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38240,
+ "id": 20951,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -841465,7 +842389,7 @@
}
},
{
- "id": 38241,
+ "id": 20952,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -841491,7 +842415,7 @@
}
},
{
- "id": 38242,
+ "id": 20953,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -841526,7 +842450,7 @@
}
},
{
- "id": 38243,
+ "id": 20954,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -841561,7 +842485,7 @@
}
},
{
- "id": 38244,
+ "id": 20955,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -841596,7 +842520,7 @@
}
},
{
- "id": 38245,
+ "id": 20956,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -841631,7 +842555,7 @@
}
},
{
- "id": 38246,
+ "id": 20957,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -841657,7 +842581,7 @@
}
},
{
- "id": 38247,
+ "id": 20958,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -841683,7 +842607,7 @@
}
},
{
- "id": 38248,
+ "id": 20959,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -841718,7 +842642,7 @@
}
},
{
- "id": 38249,
+ "id": 20960,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -841744,7 +842668,7 @@
}
},
{
- "id": 38250,
+ "id": 20961,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -841779,7 +842703,7 @@
}
},
{
- "id": 38251,
+ "id": 20962,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -841814,7 +842738,7 @@
}
},
{
- "id": 38252,
+ "id": 20963,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -841849,7 +842773,7 @@
}
},
{
- "id": 38253,
+ "id": 20964,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -841884,7 +842808,7 @@
}
},
{
- "id": 38254,
+ "id": 20965,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -841919,7 +842843,7 @@
}
},
{
- "id": 38255,
+ "id": 20966,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -841954,7 +842878,7 @@
}
},
{
- "id": 38256,
+ "id": 20967,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -841989,7 +842913,7 @@
}
},
{
- "id": 38257,
+ "id": 20968,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -842024,7 +842948,7 @@
}
},
{
- "id": 38258,
+ "id": 20969,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -842061,7 +842985,7 @@
}
},
{
- "id": 38259,
+ "id": 20970,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -842098,7 +843022,7 @@
}
},
{
- "id": 38260,
+ "id": 20971,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -842148,7 +843072,7 @@
}
},
{
- "id": 38261,
+ "id": 20972,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -842193,7 +843117,7 @@
}
},
{
- "id": 38262,
+ "id": 20973,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -842228,7 +843152,7 @@
}
},
{
- "id": 38263,
+ "id": 20974,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -842265,7 +843189,7 @@
}
},
{
- "id": 38264,
+ "id": 20975,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -842305,7 +843229,7 @@
}
},
{
- "id": 38265,
+ "id": 20976,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -842345,7 +843269,7 @@
}
},
{
- "id": 38266,
+ "id": 20977,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -842389,34 +843313,34 @@
{
"title": "Properties",
"children": [
- 38239,
- 38240,
- 38241,
- 38242,
- 38243,
- 38244,
- 38245,
- 38246,
- 38247,
- 38248,
- 38249,
- 38250,
- 38251,
- 38252,
- 38253,
- 38254,
- 38255,
- 38256,
- 38257,
- 38258,
- 38259,
- 38260,
- 38261,
- 38262,
- 38263,
- 38264,
- 38265,
- 38266
+ 20950,
+ 20951,
+ 20952,
+ 20953,
+ 20954,
+ 20955,
+ 20956,
+ 20957,
+ 20958,
+ 20959,
+ 20960,
+ 20961,
+ 20962,
+ 20963,
+ 20964,
+ 20965,
+ 20966,
+ 20967,
+ 20968,
+ 20969,
+ 20970,
+ 20971,
+ 20972,
+ 20973,
+ 20974,
+ 20975,
+ 20976,
+ 20977
]
}
],
@@ -842425,7 +843349,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -842442,14 +843366,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38267,
+ "id": 20978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38268,
+ "id": 20979,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -842459,7 +843383,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -842483,7 +843407,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38269,
+ "id": 20980,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -842509,7 +843433,7 @@
}
},
{
- "id": 38270,
+ "id": 20981,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -842535,7 +843459,7 @@
}
},
{
- "id": 38271,
+ "id": 20982,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -842570,7 +843494,7 @@
}
},
{
- "id": 38272,
+ "id": 20983,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -842605,7 +843529,7 @@
}
},
{
- "id": 38273,
+ "id": 20984,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -842640,7 +843564,7 @@
}
},
{
- "id": 38274,
+ "id": 20985,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -842675,7 +843599,7 @@
}
},
{
- "id": 38275,
+ "id": 20986,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -842701,7 +843625,7 @@
}
},
{
- "id": 38276,
+ "id": 20987,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -842727,7 +843651,7 @@
}
},
{
- "id": 38277,
+ "id": 20988,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -842762,7 +843686,7 @@
}
},
{
- "id": 38278,
+ "id": 20989,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -842788,7 +843712,7 @@
}
},
{
- "id": 38279,
+ "id": 20990,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -842823,7 +843747,7 @@
}
},
{
- "id": 38280,
+ "id": 20991,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -842858,7 +843782,7 @@
}
},
{
- "id": 38281,
+ "id": 20992,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -842893,7 +843817,7 @@
}
},
{
- "id": 38282,
+ "id": 20993,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -842928,7 +843852,7 @@
}
},
{
- "id": 38283,
+ "id": 20994,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -842963,7 +843887,7 @@
}
},
{
- "id": 38284,
+ "id": 20995,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -842998,7 +843922,7 @@
}
},
{
- "id": 38285,
+ "id": 20996,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -843033,7 +843957,7 @@
}
},
{
- "id": 38286,
+ "id": 20997,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -843068,7 +843992,7 @@
}
},
{
- "id": 38287,
+ "id": 20998,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -843105,7 +844029,7 @@
}
},
{
- "id": 38288,
+ "id": 20999,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -843142,7 +844066,7 @@
}
},
{
- "id": 38289,
+ "id": 21000,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -843192,7 +844116,7 @@
}
},
{
- "id": 38290,
+ "id": 21001,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -843237,7 +844161,7 @@
}
},
{
- "id": 38291,
+ "id": 21002,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -843272,7 +844196,7 @@
}
},
{
- "id": 38292,
+ "id": 21003,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -843309,7 +844233,7 @@
}
},
{
- "id": 38293,
+ "id": 21004,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -843349,7 +844273,7 @@
}
},
{
- "id": 38294,
+ "id": 21005,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -843389,7 +844313,7 @@
}
},
{
- "id": 38295,
+ "id": 21006,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -843433,34 +844357,34 @@
{
"title": "Properties",
"children": [
- 38268,
- 38269,
- 38270,
- 38271,
- 38272,
- 38273,
- 38274,
- 38275,
- 38276,
- 38277,
- 38278,
- 38279,
- 38280,
- 38281,
- 38282,
- 38283,
- 38284,
- 38285,
- 38286,
- 38287,
- 38288,
- 38289,
- 38290,
- 38291,
- 38292,
- 38293,
- 38294,
- 38295
+ 20979,
+ 20980,
+ 20981,
+ 20982,
+ 20983,
+ 20984,
+ 20985,
+ 20986,
+ 20987,
+ 20988,
+ 20989,
+ 20990,
+ 20991,
+ 20992,
+ 20993,
+ 20994,
+ 20995,
+ 20996,
+ 20997,
+ 20998,
+ 20999,
+ 21000,
+ 21001,
+ 21002,
+ 21003,
+ 21004,
+ 21005,
+ 21006
]
}
],
@@ -843469,7 +844393,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -843487,14 +844411,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38296,
+ "id": 21007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38297,
+ "id": 21008,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -843504,7 +844428,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -843528,7 +844452,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38298,
+ "id": 21009,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -843554,7 +844478,7 @@
}
},
{
- "id": 38299,
+ "id": 21010,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -843580,7 +844504,7 @@
}
},
{
- "id": 38300,
+ "id": 21011,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -843615,7 +844539,7 @@
}
},
{
- "id": 38301,
+ "id": 21012,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -843650,7 +844574,7 @@
}
},
{
- "id": 38302,
+ "id": 21013,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -843685,7 +844609,7 @@
}
},
{
- "id": 38303,
+ "id": 21014,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -843720,7 +844644,7 @@
}
},
{
- "id": 38304,
+ "id": 21015,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -843746,7 +844670,7 @@
}
},
{
- "id": 38305,
+ "id": 21016,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -843772,7 +844696,7 @@
}
},
{
- "id": 38306,
+ "id": 21017,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -843807,7 +844731,7 @@
}
},
{
- "id": 38307,
+ "id": 21018,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -843833,7 +844757,7 @@
}
},
{
- "id": 38308,
+ "id": 21019,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -843868,7 +844792,7 @@
}
},
{
- "id": 38309,
+ "id": 21020,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -843903,7 +844827,7 @@
}
},
{
- "id": 38310,
+ "id": 21021,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -843938,7 +844862,7 @@
}
},
{
- "id": 38311,
+ "id": 21022,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -843973,7 +844897,7 @@
}
},
{
- "id": 38312,
+ "id": 21023,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -844008,7 +844932,7 @@
}
},
{
- "id": 38313,
+ "id": 21024,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -844043,7 +844967,7 @@
}
},
{
- "id": 38314,
+ "id": 21025,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -844078,7 +845002,7 @@
}
},
{
- "id": 38315,
+ "id": 21026,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -844113,7 +845037,7 @@
}
},
{
- "id": 38316,
+ "id": 21027,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -844150,7 +845074,7 @@
}
},
{
- "id": 38317,
+ "id": 21028,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -844187,7 +845111,7 @@
}
},
{
- "id": 38318,
+ "id": 21029,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -844237,7 +845161,7 @@
}
},
{
- "id": 38319,
+ "id": 21030,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -844282,7 +845206,7 @@
}
},
{
- "id": 38320,
+ "id": 21031,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -844317,7 +845241,7 @@
}
},
{
- "id": 38321,
+ "id": 21032,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -844354,7 +845278,7 @@
}
},
{
- "id": 38322,
+ "id": 21033,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -844394,7 +845318,7 @@
}
},
{
- "id": 38323,
+ "id": 21034,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -844434,7 +845358,7 @@
}
},
{
- "id": 38324,
+ "id": 21035,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -844478,34 +845402,34 @@
{
"title": "Properties",
"children": [
- 38297,
- 38298,
- 38299,
- 38300,
- 38301,
- 38302,
- 38303,
- 38304,
- 38305,
- 38306,
- 38307,
- 38308,
- 38309,
- 38310,
- 38311,
- 38312,
- 38313,
- 38314,
- 38315,
- 38316,
- 38317,
- 38318,
- 38319,
- 38320,
- 38321,
- 38322,
- 38323,
- 38324
+ 21008,
+ 21009,
+ 21010,
+ 21011,
+ 21012,
+ 21013,
+ 21014,
+ 21015,
+ 21016,
+ 21017,
+ 21018,
+ 21019,
+ 21020,
+ 21021,
+ 21022,
+ 21023,
+ 21024,
+ 21025,
+ 21026,
+ 21027,
+ 21028,
+ 21029,
+ 21030,
+ 21031,
+ 21032,
+ 21033,
+ 21034,
+ 21035
]
}
],
@@ -844514,7 +845438,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -844527,14 +845451,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38325,
+ "id": 21036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38326,
+ "id": 21037,
"name": "config",
"variant": "declaration",
"kind": 2048,
@@ -844548,7 +845472,7 @@
],
"signatures": [
{
- "id": 38327,
+ "id": 21038,
"name": "config",
"variant": "signature",
"kind": 4096,
@@ -844562,7 +845486,7 @@
],
"parameters": [
{
- "id": 38328,
+ "id": 21039,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -844573,14 +845497,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38329,
+ "id": 21040,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38330,
+ "id": 21041,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -844604,7 +845528,7 @@
{
"title": "Properties",
"children": [
- 38330
+ 21041
]
}
],
@@ -844670,14 +845594,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38331,
+ "id": 21042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38332,
+ "id": 21043,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -844687,7 +845611,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -844711,7 +845635,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38333,
+ "id": 21044,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -844737,7 +845661,7 @@
}
},
{
- "id": 38334,
+ "id": 21045,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -844763,7 +845687,7 @@
}
},
{
- "id": 38335,
+ "id": 21046,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -844798,7 +845722,7 @@
}
},
{
- "id": 38336,
+ "id": 21047,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -844833,7 +845757,7 @@
}
},
{
- "id": 38337,
+ "id": 21048,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -844868,7 +845792,7 @@
}
},
{
- "id": 38338,
+ "id": 21049,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -844903,7 +845827,7 @@
}
},
{
- "id": 38339,
+ "id": 21050,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -844929,7 +845853,7 @@
}
},
{
- "id": 38340,
+ "id": 21051,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -844955,7 +845879,7 @@
}
},
{
- "id": 38341,
+ "id": 21052,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -844990,7 +845914,7 @@
}
},
{
- "id": 38342,
+ "id": 21053,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -845016,7 +845940,7 @@
}
},
{
- "id": 38343,
+ "id": 21054,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -845051,7 +845975,7 @@
}
},
{
- "id": 38344,
+ "id": 21055,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -845086,7 +846010,7 @@
}
},
{
- "id": 38345,
+ "id": 21056,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -845121,7 +846045,7 @@
}
},
{
- "id": 38346,
+ "id": 21057,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -845156,7 +846080,7 @@
}
},
{
- "id": 38347,
+ "id": 21058,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -845191,7 +846115,7 @@
}
},
{
- "id": 38348,
+ "id": 21059,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -845226,7 +846150,7 @@
}
},
{
- "id": 38349,
+ "id": 21060,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -845261,7 +846185,7 @@
}
},
{
- "id": 38350,
+ "id": 21061,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -845296,7 +846220,7 @@
}
},
{
- "id": 38351,
+ "id": 21062,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -845333,7 +846257,7 @@
}
},
{
- "id": 38352,
+ "id": 21063,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -845370,7 +846294,7 @@
}
},
{
- "id": 38353,
+ "id": 21064,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -845420,7 +846344,7 @@
}
},
{
- "id": 38354,
+ "id": 21065,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -845465,7 +846389,7 @@
}
},
{
- "id": 38355,
+ "id": 21066,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -845500,7 +846424,7 @@
}
},
{
- "id": 38356,
+ "id": 21067,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -845537,7 +846461,7 @@
}
},
{
- "id": 38357,
+ "id": 21068,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -845577,7 +846501,7 @@
}
},
{
- "id": 38358,
+ "id": 21069,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -845617,7 +846541,7 @@
}
},
{
- "id": 38359,
+ "id": 21070,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -845661,34 +846585,34 @@
{
"title": "Properties",
"children": [
- 38332,
- 38333,
- 38334,
- 38335,
- 38336,
- 38337,
- 38338,
- 38339,
- 38340,
- 38341,
- 38342,
- 38343,
- 38344,
- 38345,
- 38346,
- 38347,
- 38348,
- 38349,
- 38350,
- 38351,
- 38352,
- 38353,
- 38354,
- 38355,
- 38356,
- 38357,
- 38358,
- 38359
+ 21043,
+ 21044,
+ 21045,
+ 21046,
+ 21047,
+ 21048,
+ 21049,
+ 21050,
+ 21051,
+ 21052,
+ 21053,
+ 21054,
+ 21055,
+ 21056,
+ 21057,
+ 21058,
+ 21059,
+ 21060,
+ 21061,
+ 21062,
+ 21063,
+ 21064,
+ 21065,
+ 21066,
+ 21067,
+ 21068,
+ 21069,
+ 21070
]
}
],
@@ -845697,7 +846621,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -845715,7 +846639,7 @@
{
"title": "Methods",
"children": [
- 38326
+ 21037
]
}
],
@@ -845740,14 +846664,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38360,
+ "id": 21071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38361,
+ "id": 21072,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -845757,7 +846681,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -845781,7 +846705,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38362,
+ "id": 21073,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -845807,7 +846731,7 @@
}
},
{
- "id": 38363,
+ "id": 21074,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -845833,7 +846757,7 @@
}
},
{
- "id": 38364,
+ "id": 21075,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -845868,7 +846792,7 @@
}
},
{
- "id": 38365,
+ "id": 21076,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -845903,7 +846827,7 @@
}
},
{
- "id": 38366,
+ "id": 21077,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -845938,7 +846862,7 @@
}
},
{
- "id": 38367,
+ "id": 21078,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -845973,7 +846897,7 @@
}
},
{
- "id": 38368,
+ "id": 21079,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -845999,7 +846923,7 @@
}
},
{
- "id": 38369,
+ "id": 21080,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -846025,7 +846949,7 @@
}
},
{
- "id": 38370,
+ "id": 21081,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -846060,7 +846984,7 @@
}
},
{
- "id": 38371,
+ "id": 21082,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -846086,7 +847010,7 @@
}
},
{
- "id": 38372,
+ "id": 21083,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -846121,7 +847045,7 @@
}
},
{
- "id": 38373,
+ "id": 21084,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -846156,7 +847080,7 @@
}
},
{
- "id": 38374,
+ "id": 21085,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -846191,7 +847115,7 @@
}
},
{
- "id": 38375,
+ "id": 21086,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -846226,7 +847150,7 @@
}
},
{
- "id": 38376,
+ "id": 21087,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -846261,7 +847185,7 @@
}
},
{
- "id": 38377,
+ "id": 21088,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -846296,7 +847220,7 @@
}
},
{
- "id": 38378,
+ "id": 21089,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -846331,7 +847255,7 @@
}
},
{
- "id": 38379,
+ "id": 21090,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -846366,7 +847290,7 @@
}
},
{
- "id": 38380,
+ "id": 21091,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -846403,7 +847327,7 @@
}
},
{
- "id": 38381,
+ "id": 21092,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -846440,7 +847364,7 @@
}
},
{
- "id": 38382,
+ "id": 21093,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -846490,7 +847414,7 @@
}
},
{
- "id": 38383,
+ "id": 21094,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -846535,7 +847459,7 @@
}
},
{
- "id": 38384,
+ "id": 21095,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -846570,7 +847494,7 @@
}
},
{
- "id": 38385,
+ "id": 21096,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -846607,7 +847531,7 @@
}
},
{
- "id": 38386,
+ "id": 21097,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -846647,7 +847571,7 @@
}
},
{
- "id": 38387,
+ "id": 21098,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -846687,7 +847611,7 @@
}
},
{
- "id": 38388,
+ "id": 21099,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -846731,34 +847655,34 @@
{
"title": "Properties",
"children": [
- 38361,
- 38362,
- 38363,
- 38364,
- 38365,
- 38366,
- 38367,
- 38368,
- 38369,
- 38370,
- 38371,
- 38372,
- 38373,
- 38374,
- 38375,
- 38376,
- 38377,
- 38378,
- 38379,
- 38380,
- 38381,
- 38382,
- 38383,
- 38384,
- 38385,
- 38386,
- 38387,
- 38388
+ 21072,
+ 21073,
+ 21074,
+ 21075,
+ 21076,
+ 21077,
+ 21078,
+ 21079,
+ 21080,
+ 21081,
+ 21082,
+ 21083,
+ 21084,
+ 21085,
+ 21086,
+ 21087,
+ 21088,
+ 21089,
+ 21090,
+ 21091,
+ 21092,
+ 21093,
+ 21094,
+ 21095,
+ 21096,
+ 21097,
+ 21098,
+ 21099
]
}
],
@@ -846767,7 +847691,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -846785,7 +847709,7 @@
}
},
{
- "id": 38389,
+ "id": 21100,
"name": "run",
"variant": "declaration",
"kind": 1024,
@@ -846808,7 +847732,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38390,
+ "id": 21101,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -846822,7 +847746,7 @@
],
"signatures": [
{
- "id": 38391,
+ "id": 21102,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -846850,7 +847774,7 @@
],
"typeParameters": [
{
- "id": 38392,
+ "id": 21103,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -846861,7 +847785,7 @@
}
},
{
- "id": 38393,
+ "id": 21104,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -846874,7 +847798,7 @@
],
"parameters": [
{
- "id": 38394,
+ "id": 21105,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -846907,7 +847831,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -846918,13 +847842,13 @@
},
"trueType": {
"type": "reference",
- "target": 38155,
+ "target": 20866,
"name": "UpdateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
"falseType": {
"type": "reference",
- "target": 17499,
+ "target": 207,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -846957,7 +847881,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -846971,14 +847895,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38395,
+ "id": 21106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38396,
+ "id": 21107,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -846988,7 +847912,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -847012,7 +847936,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38397,
+ "id": 21108,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -847038,7 +847962,7 @@
}
},
{
- "id": 38398,
+ "id": 21109,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -847064,7 +847988,7 @@
}
},
{
- "id": 38399,
+ "id": 21110,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -847099,7 +848023,7 @@
}
},
{
- "id": 38400,
+ "id": 21111,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -847134,7 +848058,7 @@
}
},
{
- "id": 38401,
+ "id": 21112,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -847169,7 +848093,7 @@
}
},
{
- "id": 38402,
+ "id": 21113,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -847204,7 +848128,7 @@
}
},
{
- "id": 38403,
+ "id": 21114,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -847230,7 +848154,7 @@
}
},
{
- "id": 38404,
+ "id": 21115,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -847256,7 +848180,7 @@
}
},
{
- "id": 38405,
+ "id": 21116,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -847291,7 +848215,7 @@
}
},
{
- "id": 38406,
+ "id": 21117,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -847317,7 +848241,7 @@
}
},
{
- "id": 38407,
+ "id": 21118,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -847352,7 +848276,7 @@
}
},
{
- "id": 38408,
+ "id": 21119,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -847387,7 +848311,7 @@
}
},
{
- "id": 38409,
+ "id": 21120,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -847422,7 +848346,7 @@
}
},
{
- "id": 38410,
+ "id": 21121,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -847457,7 +848381,7 @@
}
},
{
- "id": 38411,
+ "id": 21122,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -847492,7 +848416,7 @@
}
},
{
- "id": 38412,
+ "id": 21123,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -847527,7 +848451,7 @@
}
},
{
- "id": 38413,
+ "id": 21124,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -847562,7 +848486,7 @@
}
},
{
- "id": 38414,
+ "id": 21125,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -847597,7 +848521,7 @@
}
},
{
- "id": 38415,
+ "id": 21126,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -847634,7 +848558,7 @@
}
},
{
- "id": 38416,
+ "id": 21127,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -847671,7 +848595,7 @@
}
},
{
- "id": 38417,
+ "id": 21128,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -847721,7 +848645,7 @@
}
},
{
- "id": 38418,
+ "id": 21129,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -847766,7 +848690,7 @@
}
},
{
- "id": 38419,
+ "id": 21130,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -847801,7 +848725,7 @@
}
},
{
- "id": 38420,
+ "id": 21131,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -847838,7 +848762,7 @@
}
},
{
- "id": 38421,
+ "id": 21132,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -847878,7 +848802,7 @@
}
},
{
- "id": 38422,
+ "id": 21133,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -847918,7 +848842,7 @@
}
},
{
- "id": 38423,
+ "id": 21134,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -847962,34 +848886,34 @@
{
"title": "Properties",
"children": [
- 38396,
- 38397,
- 38398,
- 38399,
- 38400,
- 38401,
- 38402,
- 38403,
- 38404,
- 38405,
- 38406,
- 38407,
- 38408,
- 38409,
- 38410,
- 38411,
- 38412,
- 38413,
- 38414,
- 38415,
- 38416,
- 38417,
- 38418,
- 38419,
- 38420,
- 38421,
- 38422,
- 38423
+ 21107,
+ 21108,
+ 21109,
+ 21110,
+ 21111,
+ 21112,
+ 21113,
+ 21114,
+ 21115,
+ 21116,
+ 21117,
+ 21118,
+ 21119,
+ 21120,
+ 21121,
+ 21122,
+ 21123,
+ 21124,
+ 21125,
+ 21126,
+ 21127,
+ 21128,
+ 21129,
+ 21130,
+ 21131,
+ 21132,
+ 21133,
+ 21134
]
}
],
@@ -847998,7 +848922,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -848006,7 +848930,7 @@
},
"falseType": {
"type": "reference",
- "target": 17500,
+ "target": 208,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -848026,7 +848950,7 @@
}
},
{
- "id": 38424,
+ "id": 21135,
"name": "getName",
"variant": "declaration",
"kind": 1024,
@@ -848049,7 +848973,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38425,
+ "id": 21136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -848063,7 +848987,7 @@
],
"signatures": [
{
- "id": 38426,
+ "id": 21137,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -848085,7 +849009,7 @@
}
},
{
- "id": 38427,
+ "id": 21138,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -848108,7 +849032,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38428,
+ "id": 21139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -848122,7 +849046,7 @@
],
"signatures": [
{
- "id": 38429,
+ "id": 21140,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -848136,7 +849060,7 @@
],
"parameters": [
{
- "id": 38430,
+ "id": 21141,
"name": "config",
"variant": "param",
"kind": 32768,
@@ -848162,7 +849086,7 @@
}
},
{
- "id": 38431,
+ "id": 21142,
"name": "hooks",
"variant": "declaration",
"kind": 1024,
@@ -848185,14 +849109,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38432,
+ "id": 21143,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38433,
+ "id": 21144,
"name": "productVariantsUpdated",
"variant": "declaration",
"kind": 1024,
@@ -848200,7 +849124,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 38434,
+ "id": 21145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -848214,7 +849138,7 @@
],
"signatures": [
{
- "id": 38435,
+ "id": 21146,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -848228,7 +849152,7 @@
],
"typeParameters": [
{
- "id": 38436,
+ "id": 21147,
"name": "TCompensateInput",
"variant": "typeParam",
"kind": 131072,
@@ -848237,7 +849161,7 @@
],
"parameters": [
{
- "id": 38437,
+ "id": 21148,
"name": "invoke",
"variant": "param",
"kind": 32768,
@@ -848252,14 +849176,14 @@
{
"type": "reflection",
"declaration": {
- "id": 38438,
+ "id": 21149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38439,
+ "id": 21150,
"name": "product_variants",
"variant": "declaration",
"kind": 1024,
@@ -848269,7 +849193,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 252,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L252"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L252"
}
],
"type": {
@@ -848284,14 +849208,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38440,
+ "id": 21151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38441,
+ "id": 21152,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -848301,7 +849225,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -848325,7 +849249,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38442,
+ "id": 21153,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -848351,7 +849275,7 @@
}
},
{
- "id": 38443,
+ "id": 21154,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -848377,7 +849301,7 @@
}
},
{
- "id": 38444,
+ "id": 21155,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -848412,7 +849336,7 @@
}
},
{
- "id": 38445,
+ "id": 21156,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -848447,7 +849371,7 @@
}
},
{
- "id": 38446,
+ "id": 21157,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -848482,7 +849406,7 @@
}
},
{
- "id": 38447,
+ "id": 21158,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -848517,7 +849441,7 @@
}
},
{
- "id": 38448,
+ "id": 21159,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -848543,7 +849467,7 @@
}
},
{
- "id": 38449,
+ "id": 21160,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -848569,7 +849493,7 @@
}
},
{
- "id": 38450,
+ "id": 21161,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -848604,7 +849528,7 @@
}
},
{
- "id": 38451,
+ "id": 21162,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -848630,7 +849554,7 @@
}
},
{
- "id": 38452,
+ "id": 21163,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -848665,7 +849589,7 @@
}
},
{
- "id": 38453,
+ "id": 21164,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -848700,7 +849624,7 @@
}
},
{
- "id": 38454,
+ "id": 21165,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -848735,7 +849659,7 @@
}
},
{
- "id": 38455,
+ "id": 21166,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -848770,7 +849694,7 @@
}
},
{
- "id": 38456,
+ "id": 21167,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -848805,7 +849729,7 @@
}
},
{
- "id": 38457,
+ "id": 21168,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -848840,7 +849764,7 @@
}
},
{
- "id": 38458,
+ "id": 21169,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -848875,7 +849799,7 @@
}
},
{
- "id": 38459,
+ "id": 21170,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -848910,7 +849834,7 @@
}
},
{
- "id": 38460,
+ "id": 21171,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -848947,7 +849871,7 @@
}
},
{
- "id": 38461,
+ "id": 21172,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -848984,7 +849908,7 @@
}
},
{
- "id": 38462,
+ "id": 21173,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -849034,7 +849958,7 @@
}
},
{
- "id": 38463,
+ "id": 21174,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -849079,7 +850003,7 @@
}
},
{
- "id": 38464,
+ "id": 21175,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -849114,7 +850038,7 @@
}
},
{
- "id": 38465,
+ "id": 21176,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -849151,7 +850075,7 @@
}
},
{
- "id": 38466,
+ "id": 21177,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -849191,7 +850115,7 @@
}
},
{
- "id": 38467,
+ "id": 21178,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -849231,7 +850155,7 @@
}
},
{
- "id": 38468,
+ "id": 21179,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -849275,34 +850199,34 @@
{
"title": "Properties",
"children": [
- 38441,
- 38442,
- 38443,
- 38444,
- 38445,
- 38446,
- 38447,
- 38448,
- 38449,
- 38450,
- 38451,
- 38452,
- 38453,
- 38454,
- 38455,
- 38456,
- 38457,
- 38458,
- 38459,
- 38460,
- 38461,
- 38462,
- 38463,
- 38464,
- 38465,
- 38466,
- 38467,
- 38468
+ 21152,
+ 21153,
+ 21154,
+ 21155,
+ 21156,
+ 21157,
+ 21158,
+ 21159,
+ 21160,
+ 21161,
+ 21162,
+ 21163,
+ 21164,
+ 21165,
+ 21166,
+ 21167,
+ 21168,
+ 21169,
+ 21170,
+ 21171,
+ 21172,
+ 21173,
+ 21174,
+ 21175,
+ 21176,
+ 21177,
+ 21178,
+ 21179
]
}
],
@@ -849311,7 +850235,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -849324,7 +850248,7 @@
"defaultValue": "response"
},
{
- "id": 38469,
+ "id": 21180,
"name": "additional_data",
"variant": "declaration",
"kind": 1024,
@@ -849342,7 +850266,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 253,
"character": 6,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L253"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L253"
}
],
"type": {
@@ -849365,8 +850289,8 @@
{
"title": "Properties",
"children": [
- 38439,
- 38469
+ 21150,
+ 21180
]
}
],
@@ -849375,7 +850299,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 251,
"character": 72,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L251"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L251"
}
]
}
@@ -849386,7 +850310,7 @@
},
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -849397,7 +850321,7 @@
}
},
{
- "id": 38470,
+ "id": 21181,
"name": "compensate",
"variant": "param",
"kind": 32768,
@@ -849413,7 +850337,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 17514,
+ "target": 222,
"name": "TCompensateInput",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -849434,7 +850358,7 @@
}
},
{
- "id": 43203,
+ "id": 26144,
"name": "productVariantsUpdated",
"variant": "declaration",
"kind": 64,
@@ -849469,14 +850393,14 @@
},
"signatures": [
{
- "id": 43204,
+ "id": 26145,
"name": "productVariantsUpdated",
"variant": "signature",
"kind": 1601536,
"flags": {},
"parameters": [
{
- "id": 43205,
+ "id": 26146,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -849491,7 +850415,7 @@
},
"type": {
"type": "reference",
- "target": 38438,
+ "target": 21149,
"name": "object",
"package": "@medusajs/core-flows"
}
@@ -849505,13 +850429,13 @@
{
"title": "Properties",
"children": [
- 38433
+ 21144
]
},
{
"title": "Functions",
"children": [
- 43203
+ 26144
]
}
],
@@ -849528,7 +850452,7 @@
],
"documents": [
{
- "id": 43200,
+ "id": 26141,
"name": "updateProductVariantsStep",
"variant": "document",
"kind": 8388608,
@@ -849554,7 +850478,7 @@
"frontmatter": {}
},
{
- "id": 43201,
+ "id": 26142,
"name": "updatePriceSetsStep",
"variant": "document",
"kind": 8388608,
@@ -849580,7 +850504,7 @@
"frontmatter": {}
},
{
- "id": 43202,
+ "id": 26143,
"name": "emitEventStep",
"variant": "document",
"kind": 8388608,
@@ -849606,7 +850530,7 @@
"frontmatter": {}
},
{
- "id": 43206,
+ "id": 26147,
"name": "productVariantsUpdated",
"variant": "document",
"kind": 8388608,
@@ -849633,21 +850557,21 @@
}
],
"childrenIncludingDocuments": [
- 38203,
- 38389,
- 38424,
- 38427,
- 38431
+ 20914,
+ 21100,
+ 21135,
+ 21138,
+ 21142
],
"groups": [
{
"title": "Properties",
"children": [
- 38203,
- 38389,
- 38424,
- 38427,
- 38431
+ 20914,
+ 21100,
+ 21135,
+ 21138,
+ 21142
]
}
],
@@ -849656,12 +850580,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L127"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L127"
}
],
"signatures": [
{
- "id": 38167,
+ "id": 20878,
"name": "updateProductVariantsWorkflow",
"variant": "signature",
"kind": 4096,
@@ -849737,12 +850661,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L127"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L127"
}
],
"typeParameters": [
{
- "id": 38168,
+ "id": 20879,
"name": "TDataOverride",
"variant": "typeParam",
"kind": 131072,
@@ -849753,7 +850677,7 @@
}
},
{
- "id": 38169,
+ "id": 20880,
"name": "TResultOverride",
"variant": "typeParam",
"kind": 131072,
@@ -849766,7 +850690,7 @@
],
"parameters": [
{
- "id": 38170,
+ "id": 20881,
"name": "container",
"variant": "param",
"kind": 32768,
@@ -849790,14 +850714,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38171,
+ "id": 20882,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38172,
+ "id": 20883,
"name": "__joinerConfig",
"variant": "declaration",
"kind": 1024,
@@ -849820,7 +850744,7 @@
}
},
{
- "id": 38173,
+ "id": 20884,
"name": "__definition",
"variant": "declaration",
"kind": 1024,
@@ -849847,8 +850771,8 @@
{
"title": "Properties",
"children": [
- 38172,
- 38173
+ 20883,
+ 20884
]
}
],
@@ -849923,7 +850847,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 38155,
+ "target": 20866,
"name": "UpdateProductVariantsWorkflowInput",
"package": "@medusajs/core-flows"
},
@@ -849932,14 +850856,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 38174,
+ "id": 20885,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38175,
+ "id": 20886,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -849949,7 +850873,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -849973,7 +850897,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38176,
+ "id": 20887,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -849999,7 +850923,7 @@
}
},
{
- "id": 38177,
+ "id": 20888,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -850025,7 +850949,7 @@
}
},
{
- "id": 38178,
+ "id": 20889,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -850060,7 +850984,7 @@
}
},
{
- "id": 38179,
+ "id": 20890,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -850095,7 +851019,7 @@
}
},
{
- "id": 38180,
+ "id": 20891,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -850130,7 +851054,7 @@
}
},
{
- "id": 38181,
+ "id": 20892,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -850165,7 +851089,7 @@
}
},
{
- "id": 38182,
+ "id": 20893,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -850191,7 +851115,7 @@
}
},
{
- "id": 38183,
+ "id": 20894,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -850217,7 +851141,7 @@
}
},
{
- "id": 38184,
+ "id": 20895,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -850252,7 +851176,7 @@
}
},
{
- "id": 38185,
+ "id": 20896,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -850278,7 +851202,7 @@
}
},
{
- "id": 38186,
+ "id": 20897,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -850313,7 +851237,7 @@
}
},
{
- "id": 38187,
+ "id": 20898,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -850348,7 +851272,7 @@
}
},
{
- "id": 38188,
+ "id": 20899,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -850383,7 +851307,7 @@
}
},
{
- "id": 38189,
+ "id": 20900,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -850418,7 +851342,7 @@
}
},
{
- "id": 38190,
+ "id": 20901,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -850453,7 +851377,7 @@
}
},
{
- "id": 38191,
+ "id": 20902,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -850488,7 +851412,7 @@
}
},
{
- "id": 38192,
+ "id": 20903,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -850523,7 +851447,7 @@
}
},
{
- "id": 38193,
+ "id": 20904,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -850558,7 +851482,7 @@
}
},
{
- "id": 38194,
+ "id": 20905,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -850595,7 +851519,7 @@
}
},
{
- "id": 38195,
+ "id": 20906,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -850632,7 +851556,7 @@
}
},
{
- "id": 38196,
+ "id": 20907,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -850682,7 +851606,7 @@
}
},
{
- "id": 38197,
+ "id": 20908,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -850727,7 +851651,7 @@
}
},
{
- "id": 38198,
+ "id": 20909,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -850762,7 +851686,7 @@
}
},
{
- "id": 38199,
+ "id": 20910,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -850799,7 +851723,7 @@
}
},
{
- "id": 38200,
+ "id": 20911,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -850839,7 +851763,7 @@
}
},
{
- "id": 38201,
+ "id": 20912,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -850879,7 +851803,7 @@
}
},
{
- "id": 38202,
+ "id": 20913,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -850923,34 +851847,34 @@
{
"title": "Properties",
"children": [
- 38175,
- 38176,
- 38177,
- 38178,
- 38179,
- 38180,
- 38181,
- 38182,
- 38183,
- 38184,
- 38185,
- 38186,
- 38187,
- 38188,
- 38189,
- 38190,
- 38191,
- 38192,
- 38193,
- 38194,
- 38195,
- 38196,
- 38197,
- 38198,
- 38199,
- 38200,
- 38201,
- 38202
+ 20886,
+ 20887,
+ 20888,
+ 20889,
+ 20890,
+ 20891,
+ 20892,
+ 20893,
+ 20894,
+ 20895,
+ 20896,
+ 20897,
+ 20898,
+ 20899,
+ 20900,
+ 20901,
+ 20902,
+ 20903,
+ 20904,
+ 20905,
+ 20906,
+ 20907,
+ 20908,
+ 20909,
+ 20910,
+ 20911,
+ 20912,
+ 20913
]
}
],
@@ -850959,7 +851883,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
}
@@ -850967,14 +851891,14 @@
},
{
"type": "reference",
- "target": 17478,
+ "target": 186,
"name": "TDataOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 17479,
+ "target": 187,
"name": "TResultOverride",
"package": "@medusajs/workflows-sdk",
"refersToTypeParameter": true
@@ -850989,14 +851913,14 @@
]
},
{
- "id": 38174,
+ "id": 20885,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38175,
+ "id": 20886,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -851006,7 +851930,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -851030,7 +851954,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38176,
+ "id": 20887,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -851056,7 +851980,7 @@
}
},
{
- "id": 38177,
+ "id": 20888,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -851082,7 +852006,7 @@
}
},
{
- "id": 38178,
+ "id": 20889,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -851117,7 +852041,7 @@
}
},
{
- "id": 38179,
+ "id": 20890,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -851152,7 +852076,7 @@
}
},
{
- "id": 38180,
+ "id": 20891,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -851187,7 +852111,7 @@
}
},
{
- "id": 38181,
+ "id": 20892,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -851222,7 +852146,7 @@
}
},
{
- "id": 38182,
+ "id": 20893,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -851248,7 +852172,7 @@
}
},
{
- "id": 38183,
+ "id": 20894,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -851274,7 +852198,7 @@
}
},
{
- "id": 38184,
+ "id": 20895,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -851309,7 +852233,7 @@
}
},
{
- "id": 38185,
+ "id": 20896,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -851335,7 +852259,7 @@
}
},
{
- "id": 38186,
+ "id": 20897,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -851370,7 +852294,7 @@
}
},
{
- "id": 38187,
+ "id": 20898,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -851405,7 +852329,7 @@
}
},
{
- "id": 38188,
+ "id": 20899,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -851440,7 +852364,7 @@
}
},
{
- "id": 38189,
+ "id": 20900,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -851475,7 +852399,7 @@
}
},
{
- "id": 38190,
+ "id": 20901,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -851510,7 +852434,7 @@
}
},
{
- "id": 38191,
+ "id": 20902,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -851545,7 +852469,7 @@
}
},
{
- "id": 38192,
+ "id": 20903,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -851580,7 +852504,7 @@
}
},
{
- "id": 38193,
+ "id": 20904,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -851615,7 +852539,7 @@
}
},
{
- "id": 38194,
+ "id": 20905,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -851652,7 +852576,7 @@
}
},
{
- "id": 38195,
+ "id": 20906,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -851689,7 +852613,7 @@
}
},
{
- "id": 38196,
+ "id": 20907,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -851739,7 +852663,7 @@
}
},
{
- "id": 38197,
+ "id": 20908,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -851784,7 +852708,7 @@
}
},
{
- "id": 38198,
+ "id": 20909,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -851819,7 +852743,7 @@
}
},
{
- "id": 38199,
+ "id": 20910,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -851856,7 +852780,7 @@
}
},
{
- "id": 38200,
+ "id": 20911,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -851896,7 +852820,7 @@
}
},
{
- "id": 38201,
+ "id": 20912,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -851936,7 +852860,7 @@
}
},
{
- "id": 38202,
+ "id": 20913,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -851980,34 +852904,34 @@
{
"title": "Properties",
"children": [
- 38175,
- 38176,
- 38177,
- 38178,
- 38179,
- 38180,
- 38181,
- 38182,
- 38183,
- 38184,
- 38185,
- 38186,
- 38187,
- 38188,
- 38189,
- 38190,
- 38191,
- 38192,
- 38193,
- 38194,
- 38195,
- 38196,
- 38197,
- 38198,
- 38199,
- 38200,
- 38201,
- 38202
+ 20886,
+ 20887,
+ 20888,
+ 20889,
+ 20890,
+ 20891,
+ 20892,
+ 20893,
+ 20894,
+ 20895,
+ 20896,
+ 20897,
+ 20898,
+ 20899,
+ 20900,
+ 20901,
+ 20902,
+ 20903,
+ 20904,
+ 20905,
+ 20906,
+ 20907,
+ 20908,
+ 20909,
+ 20910,
+ 20911,
+ 20912,
+ 20913
]
}
],
@@ -852016,12 +852940,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
},
{
- "id": 38175,
+ "id": 20886,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -852031,7 +852955,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -852055,14 +852979,14 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38209,
+ "id": 20920,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38210,
+ "id": 20921,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -852072,7 +852996,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -852096,7 +853020,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38211,
+ "id": 20922,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -852122,7 +853046,7 @@
}
},
{
- "id": 38212,
+ "id": 20923,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -852148,7 +853072,7 @@
}
},
{
- "id": 38213,
+ "id": 20924,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -852183,7 +853107,7 @@
}
},
{
- "id": 38214,
+ "id": 20925,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -852218,7 +853142,7 @@
}
},
{
- "id": 38215,
+ "id": 20926,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -852253,7 +853177,7 @@
}
},
{
- "id": 38216,
+ "id": 20927,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -852288,7 +853212,7 @@
}
},
{
- "id": 38217,
+ "id": 20928,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -852314,7 +853238,7 @@
}
},
{
- "id": 38218,
+ "id": 20929,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -852340,7 +853264,7 @@
}
},
{
- "id": 38219,
+ "id": 20930,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -852375,7 +853299,7 @@
}
},
{
- "id": 38220,
+ "id": 20931,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -852401,7 +853325,7 @@
}
},
{
- "id": 38221,
+ "id": 20932,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -852436,7 +853360,7 @@
}
},
{
- "id": 38222,
+ "id": 20933,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -852471,7 +853395,7 @@
}
},
{
- "id": 38223,
+ "id": 20934,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -852506,7 +853430,7 @@
}
},
{
- "id": 38224,
+ "id": 20935,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -852541,7 +853465,7 @@
}
},
{
- "id": 38225,
+ "id": 20936,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -852576,7 +853500,7 @@
}
},
{
- "id": 38226,
+ "id": 20937,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -852611,7 +853535,7 @@
}
},
{
- "id": 38227,
+ "id": 20938,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -852646,7 +853570,7 @@
}
},
{
- "id": 38228,
+ "id": 20939,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -852681,7 +853605,7 @@
}
},
{
- "id": 38229,
+ "id": 20940,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -852718,7 +853642,7 @@
}
},
{
- "id": 38230,
+ "id": 20941,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -852755,7 +853679,7 @@
}
},
{
- "id": 38231,
+ "id": 20942,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -852805,7 +853729,7 @@
}
},
{
- "id": 38232,
+ "id": 20943,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -852850,7 +853774,7 @@
}
},
{
- "id": 38233,
+ "id": 20944,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -852885,7 +853809,7 @@
}
},
{
- "id": 38234,
+ "id": 20945,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -852922,7 +853846,7 @@
}
},
{
- "id": 38235,
+ "id": 20946,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -852962,7 +853886,7 @@
}
},
{
- "id": 38236,
+ "id": 20947,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -853002,7 +853926,7 @@
}
},
{
- "id": 38237,
+ "id": 20948,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -853046,34 +853970,34 @@
{
"title": "Properties",
"children": [
- 38210,
- 38211,
- 38212,
- 38213,
- 38214,
- 38215,
- 38216,
- 38217,
- 38218,
- 38219,
- 38220,
- 38221,
- 38222,
- 38223,
- 38224,
- 38225,
- 38226,
- 38227,
- 38228,
- 38229,
- 38230,
- 38231,
- 38232,
- 38233,
- 38234,
- 38235,
- 38236,
- 38237
+ 20921,
+ 20922,
+ 20923,
+ 20924,
+ 20925,
+ 20926,
+ 20927,
+ 20928,
+ 20929,
+ 20930,
+ 20931,
+ 20932,
+ 20933,
+ 20934,
+ 20935,
+ 20936,
+ 20937,
+ 20938,
+ 20939,
+ 20940,
+ 20941,
+ 20942,
+ 20943,
+ 20944,
+ 20945,
+ 20946,
+ 20947,
+ 20948
]
}
],
@@ -853082,12 +854006,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
},
{
- "id": 38210,
+ "id": 20921,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -853097,7 +854021,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -853121,14 +854045,14 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38238,
+ "id": 20949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38239,
+ "id": 20950,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -853138,7 +854062,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -853162,7 +854086,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38240,
+ "id": 20951,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -853188,7 +854112,7 @@
}
},
{
- "id": 38241,
+ "id": 20952,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -853214,7 +854138,7 @@
}
},
{
- "id": 38242,
+ "id": 20953,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -853249,7 +854173,7 @@
}
},
{
- "id": 38243,
+ "id": 20954,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -853284,7 +854208,7 @@
}
},
{
- "id": 38244,
+ "id": 20955,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -853319,7 +854243,7 @@
}
},
{
- "id": 38245,
+ "id": 20956,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -853354,7 +854278,7 @@
}
},
{
- "id": 38246,
+ "id": 20957,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -853380,7 +854304,7 @@
}
},
{
- "id": 38247,
+ "id": 20958,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -853406,7 +854330,7 @@
}
},
{
- "id": 38248,
+ "id": 20959,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -853441,7 +854365,7 @@
}
},
{
- "id": 38249,
+ "id": 20960,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -853467,7 +854391,7 @@
}
},
{
- "id": 38250,
+ "id": 20961,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -853502,7 +854426,7 @@
}
},
{
- "id": 38251,
+ "id": 20962,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -853537,7 +854461,7 @@
}
},
{
- "id": 38252,
+ "id": 20963,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -853572,7 +854496,7 @@
}
},
{
- "id": 38253,
+ "id": 20964,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -853607,7 +854531,7 @@
}
},
{
- "id": 38254,
+ "id": 20965,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -853642,7 +854566,7 @@
}
},
{
- "id": 38255,
+ "id": 20966,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -853677,7 +854601,7 @@
}
},
{
- "id": 38256,
+ "id": 20967,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -853712,7 +854636,7 @@
}
},
{
- "id": 38257,
+ "id": 20968,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -853747,7 +854671,7 @@
}
},
{
- "id": 38258,
+ "id": 20969,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -853784,7 +854708,7 @@
}
},
{
- "id": 38259,
+ "id": 20970,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -853821,7 +854745,7 @@
}
},
{
- "id": 38260,
+ "id": 20971,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -853871,7 +854795,7 @@
}
},
{
- "id": 38261,
+ "id": 20972,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -853916,7 +854840,7 @@
}
},
{
- "id": 38262,
+ "id": 20973,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -853951,7 +854875,7 @@
}
},
{
- "id": 38263,
+ "id": 20974,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -853988,7 +854912,7 @@
}
},
{
- "id": 38264,
+ "id": 20975,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -854028,7 +854952,7 @@
}
},
{
- "id": 38265,
+ "id": 20976,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -854068,7 +854992,7 @@
}
},
{
- "id": 38266,
+ "id": 20977,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -854112,34 +855036,34 @@
{
"title": "Properties",
"children": [
- 38239,
- 38240,
- 38241,
- 38242,
- 38243,
- 38244,
- 38245,
- 38246,
- 38247,
- 38248,
- 38249,
- 38250,
- 38251,
- 38252,
- 38253,
- 38254,
- 38255,
- 38256,
- 38257,
- 38258,
- 38259,
- 38260,
- 38261,
- 38262,
- 38263,
- 38264,
- 38265,
- 38266
+ 20950,
+ 20951,
+ 20952,
+ 20953,
+ 20954,
+ 20955,
+ 20956,
+ 20957,
+ 20958,
+ 20959,
+ 20960,
+ 20961,
+ 20962,
+ 20963,
+ 20964,
+ 20965,
+ 20966,
+ 20967,
+ 20968,
+ 20969,
+ 20970,
+ 20971,
+ 20972,
+ 20973,
+ 20974,
+ 20975,
+ 20976,
+ 20977
]
}
],
@@ -854148,12 +855072,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
},
{
- "id": 38239,
+ "id": 20950,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -854163,7 +855087,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -854187,14 +855111,14 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38267,
+ "id": 20978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38268,
+ "id": 20979,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -854204,7 +855128,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -854228,7 +855152,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38269,
+ "id": 20980,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -854254,7 +855178,7 @@
}
},
{
- "id": 38270,
+ "id": 20981,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -854280,7 +855204,7 @@
}
},
{
- "id": 38271,
+ "id": 20982,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -854315,7 +855239,7 @@
}
},
{
- "id": 38272,
+ "id": 20983,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -854350,7 +855274,7 @@
}
},
{
- "id": 38273,
+ "id": 20984,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -854385,7 +855309,7 @@
}
},
{
- "id": 38274,
+ "id": 20985,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -854420,7 +855344,7 @@
}
},
{
- "id": 38275,
+ "id": 20986,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -854446,7 +855370,7 @@
}
},
{
- "id": 38276,
+ "id": 20987,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -854472,7 +855396,7 @@
}
},
{
- "id": 38277,
+ "id": 20988,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -854507,7 +855431,7 @@
}
},
{
- "id": 38278,
+ "id": 20989,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -854533,7 +855457,7 @@
}
},
{
- "id": 38279,
+ "id": 20990,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -854568,7 +855492,7 @@
}
},
{
- "id": 38280,
+ "id": 20991,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -854603,7 +855527,7 @@
}
},
{
- "id": 38281,
+ "id": 20992,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -854638,7 +855562,7 @@
}
},
{
- "id": 38282,
+ "id": 20993,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -854673,7 +855597,7 @@
}
},
{
- "id": 38283,
+ "id": 20994,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -854708,7 +855632,7 @@
}
},
{
- "id": 38284,
+ "id": 20995,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -854743,7 +855667,7 @@
}
},
{
- "id": 38285,
+ "id": 20996,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -854778,7 +855702,7 @@
}
},
{
- "id": 38286,
+ "id": 20997,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -854813,7 +855737,7 @@
}
},
{
- "id": 38287,
+ "id": 20998,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -854850,7 +855774,7 @@
}
},
{
- "id": 38288,
+ "id": 20999,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -854887,7 +855811,7 @@
}
},
{
- "id": 38289,
+ "id": 21000,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -854937,7 +855861,7 @@
}
},
{
- "id": 38290,
+ "id": 21001,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -854982,7 +855906,7 @@
}
},
{
- "id": 38291,
+ "id": 21002,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -855017,7 +855941,7 @@
}
},
{
- "id": 38292,
+ "id": 21003,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -855054,7 +855978,7 @@
}
},
{
- "id": 38293,
+ "id": 21004,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -855094,7 +856018,7 @@
}
},
{
- "id": 38294,
+ "id": 21005,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -855134,7 +856058,7 @@
}
},
{
- "id": 38295,
+ "id": 21006,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -855178,34 +856102,34 @@
{
"title": "Properties",
"children": [
- 38268,
- 38269,
- 38270,
- 38271,
- 38272,
- 38273,
- 38274,
- 38275,
- 38276,
- 38277,
- 38278,
- 38279,
- 38280,
- 38281,
- 38282,
- 38283,
- 38284,
- 38285,
- 38286,
- 38287,
- 38288,
- 38289,
- 38290,
- 38291,
- 38292,
- 38293,
- 38294,
- 38295
+ 20979,
+ 20980,
+ 20981,
+ 20982,
+ 20983,
+ 20984,
+ 20985,
+ 20986,
+ 20987,
+ 20988,
+ 20989,
+ 20990,
+ 20991,
+ 20992,
+ 20993,
+ 20994,
+ 20995,
+ 20996,
+ 20997,
+ 20998,
+ 20999,
+ 21000,
+ 21001,
+ 21002,
+ 21003,
+ 21004,
+ 21005,
+ 21006
]
}
],
@@ -855214,12 +856138,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
},
{
- "id": 38268,
+ "id": 20979,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -855229,7 +856153,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -855253,14 +856177,14 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38296,
+ "id": 21007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38297,
+ "id": 21008,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -855270,7 +856194,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -855294,7 +856218,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38298,
+ "id": 21009,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -855320,7 +856244,7 @@
}
},
{
- "id": 38299,
+ "id": 21010,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -855346,7 +856270,7 @@
}
},
{
- "id": 38300,
+ "id": 21011,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -855381,7 +856305,7 @@
}
},
{
- "id": 38301,
+ "id": 21012,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -855416,7 +856340,7 @@
}
},
{
- "id": 38302,
+ "id": 21013,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -855451,7 +856375,7 @@
}
},
{
- "id": 38303,
+ "id": 21014,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -855486,7 +856410,7 @@
}
},
{
- "id": 38304,
+ "id": 21015,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -855512,7 +856436,7 @@
}
},
{
- "id": 38305,
+ "id": 21016,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -855538,7 +856462,7 @@
}
},
{
- "id": 38306,
+ "id": 21017,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -855573,7 +856497,7 @@
}
},
{
- "id": 38307,
+ "id": 21018,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -855599,7 +856523,7 @@
}
},
{
- "id": 38308,
+ "id": 21019,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -855634,7 +856558,7 @@
}
},
{
- "id": 38309,
+ "id": 21020,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -855669,7 +856593,7 @@
}
},
{
- "id": 38310,
+ "id": 21021,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -855704,7 +856628,7 @@
}
},
{
- "id": 38311,
+ "id": 21022,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -855739,7 +856663,7 @@
}
},
{
- "id": 38312,
+ "id": 21023,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -855774,7 +856698,7 @@
}
},
{
- "id": 38313,
+ "id": 21024,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -855809,7 +856733,7 @@
}
},
{
- "id": 38314,
+ "id": 21025,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -855844,7 +856768,7 @@
}
},
{
- "id": 38315,
+ "id": 21026,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -855879,7 +856803,7 @@
}
},
{
- "id": 38316,
+ "id": 21027,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -855916,7 +856840,7 @@
}
},
{
- "id": 38317,
+ "id": 21028,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -855953,7 +856877,7 @@
}
},
{
- "id": 38318,
+ "id": 21029,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -856003,7 +856927,7 @@
}
},
{
- "id": 38319,
+ "id": 21030,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -856048,7 +856972,7 @@
}
},
{
- "id": 38320,
+ "id": 21031,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -856083,7 +857007,7 @@
}
},
{
- "id": 38321,
+ "id": 21032,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -856120,7 +857044,7 @@
}
},
{
- "id": 38322,
+ "id": 21033,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -856160,7 +857084,7 @@
}
},
{
- "id": 38323,
+ "id": 21034,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -856200,7 +857124,7 @@
}
},
{
- "id": 38324,
+ "id": 21035,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -856244,34 +857168,34 @@
{
"title": "Properties",
"children": [
- 38297,
- 38298,
- 38299,
- 38300,
- 38301,
- 38302,
- 38303,
- 38304,
- 38305,
- 38306,
- 38307,
- 38308,
- 38309,
- 38310,
- 38311,
- 38312,
- 38313,
- 38314,
- 38315,
- 38316,
- 38317,
- 38318,
- 38319,
- 38320,
- 38321,
- 38322,
- 38323,
- 38324
+ 21008,
+ 21009,
+ 21010,
+ 21011,
+ 21012,
+ 21013,
+ 21014,
+ 21015,
+ 21016,
+ 21017,
+ 21018,
+ 21019,
+ 21020,
+ 21021,
+ 21022,
+ 21023,
+ 21024,
+ 21025,
+ 21026,
+ 21027,
+ 21028,
+ 21029,
+ 21030,
+ 21031,
+ 21032,
+ 21033,
+ 21034,
+ 21035
]
}
],
@@ -856280,12 +857204,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
},
{
- "id": 38297,
+ "id": 21008,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -856295,7 +857219,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -856319,14 +857243,14 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38331,
+ "id": 21042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38332,
+ "id": 21043,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -856336,7 +857260,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -856360,7 +857284,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38333,
+ "id": 21044,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -856386,7 +857310,7 @@
}
},
{
- "id": 38334,
+ "id": 21045,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -856412,7 +857336,7 @@
}
},
{
- "id": 38335,
+ "id": 21046,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -856447,7 +857371,7 @@
}
},
{
- "id": 38336,
+ "id": 21047,
"name": "barcode",
"variant": "declaration",
"kind": 1024,
@@ -856482,7 +857406,7 @@
}
},
{
- "id": 38337,
+ "id": 21048,
"name": "ean",
"variant": "declaration",
"kind": 1024,
@@ -856517,7 +857441,7 @@
}
},
{
- "id": 38338,
+ "id": 21049,
"name": "upc",
"variant": "declaration",
"kind": 1024,
@@ -856552,7 +857476,7 @@
}
},
{
- "id": 38339,
+ "id": 21050,
"name": "allow_backorder",
"variant": "declaration",
"kind": 1024,
@@ -856578,7 +857502,7 @@
}
},
{
- "id": 38340,
+ "id": 21051,
"name": "manage_inventory",
"variant": "declaration",
"kind": 1024,
@@ -856604,7 +857528,7 @@
}
},
{
- "id": 38341,
+ "id": 21052,
"name": "thumbnail",
"variant": "declaration",
"kind": 1024,
@@ -856639,7 +857563,7 @@
}
},
{
- "id": 38342,
+ "id": 21053,
"name": "requires_shipping",
"variant": "declaration",
"kind": 1024,
@@ -856665,7 +857589,7 @@
}
},
{
- "id": 38343,
+ "id": 21054,
"name": "hs_code",
"variant": "declaration",
"kind": 1024,
@@ -856700,7 +857624,7 @@
}
},
{
- "id": 38344,
+ "id": 21055,
"name": "origin_country",
"variant": "declaration",
"kind": 1024,
@@ -856735,7 +857659,7 @@
}
},
{
- "id": 38345,
+ "id": 21056,
"name": "mid_code",
"variant": "declaration",
"kind": 1024,
@@ -856770,7 +857694,7 @@
}
},
{
- "id": 38346,
+ "id": 21057,
"name": "material",
"variant": "declaration",
"kind": 1024,
@@ -856805,7 +857729,7 @@
}
},
{
- "id": 38347,
+ "id": 21058,
"name": "weight",
"variant": "declaration",
"kind": 1024,
@@ -856840,7 +857764,7 @@
}
},
{
- "id": 38348,
+ "id": 21059,
"name": "length",
"variant": "declaration",
"kind": 1024,
@@ -856875,7 +857799,7 @@
}
},
{
- "id": 38349,
+ "id": 21060,
"name": "height",
"variant": "declaration",
"kind": 1024,
@@ -856910,7 +857834,7 @@
}
},
{
- "id": 38350,
+ "id": 21061,
"name": "width",
"variant": "declaration",
"kind": 1024,
@@ -856945,7 +857869,7 @@
}
},
{
- "id": 38351,
+ "id": 21062,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -856982,7 +857906,7 @@
}
},
{
- "id": 38352,
+ "id": 21063,
"name": "images",
"variant": "declaration",
"kind": 1024,
@@ -857019,7 +857943,7 @@
}
},
{
- "id": 38353,
+ "id": 21064,
"name": "metadata",
"variant": "declaration",
"kind": 1024,
@@ -857069,7 +857993,7 @@
}
},
{
- "id": 38354,
+ "id": 21065,
"name": "product",
"variant": "declaration",
"kind": 1024,
@@ -857114,7 +858038,7 @@
}
},
{
- "id": 38355,
+ "id": 21066,
"name": "product_id",
"variant": "declaration",
"kind": 1024,
@@ -857149,7 +858073,7 @@
}
},
{
- "id": 38356,
+ "id": 21067,
"name": "variant_rank",
"variant": "declaration",
"kind": 1024,
@@ -857186,7 +858110,7 @@
}
},
{
- "id": 38357,
+ "id": 21068,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -857226,7 +858150,7 @@
}
},
{
- "id": 38358,
+ "id": 21069,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -857266,7 +858190,7 @@
}
},
{
- "id": 38359,
+ "id": 21070,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -857310,34 +858234,34 @@
{
"title": "Properties",
"children": [
- 38332,
- 38333,
- 38334,
- 38335,
- 38336,
- 38337,
- 38338,
- 38339,
- 38340,
- 38341,
- 38342,
- 38343,
- 38344,
- 38345,
- 38346,
- 38347,
- 38348,
- 38349,
- 38350,
- 38351,
- 38352,
- 38353,
- 38354,
- 38355,
- 38356,
- 38357,
- 38358,
- 38359
+ 21043,
+ 21044,
+ 21045,
+ 21046,
+ 21047,
+ 21048,
+ 21049,
+ 21050,
+ 21051,
+ 21052,
+ 21053,
+ 21054,
+ 21055,
+ 21056,
+ 21057,
+ 21058,
+ 21059,
+ 21060,
+ 21061,
+ 21062,
+ 21063,
+ 21064,
+ 21065,
+ 21066,
+ 21067,
+ 21068,
+ 21069,
+ 21070
]
}
],
@@ -857346,12 +858270,12 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 17,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
]
},
{
- "id": 38332,
+ "id": 21043,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -857361,7 +858285,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -857385,14 +858309,14 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38360,
+ "id": 21071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 38361,
+ "id": 21072,
"name": "price_set",
"variant": "declaration",
"kind": 1024,
@@ -857402,7 +858326,7 @@
"fileName": "core-flows/src/product/workflows/update-product-variants.ts",
"line": 235,
"character": 31,
- "url": "https://github.com/medusajs/medusa/blob/da5d0e3a1430979ab9cda7f239ea7066ded1f7ab/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
+ "url": "https://github.com/medusajs/medusa/blob/75eac9ebec217fd299c6e5d8f161a597b46e4e19/packages/core/core-flows/src/product/workflows/update-product-variants.ts#L235"
}
],
"type": {
@@ -857426,7 +858350,7 @@
"defaultValue": "priceSetForVariant"
},
{
- "id": 38362,
+ "id": 21073,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -857452,7 +858376,7 @@
}
},
{
- "id": 38363,
+ "id": 21074,
"name": "title",
"variant": "declaration",
"kind": 1024,
@@ -857478,7 +858402,7 @@
}
},
{
- "id": 38364,
+ "id": 21075,
"name": "sku",
"variant": "declaration",
"kind": 1024,
@@ -857513,7 +858437,7 @@
}