Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core-flows): fixes build fails #8584

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import {
} from "@medusajs/workflows-sdk"
import { useRemoteQueryStep } from "../../../common"
import { previewOrderChangeStep } from "../../steps"
import { createOrderChangeActionsStep } from "../../steps/create-order-change-actions"
import { createOrderShippingMethods } from "../../steps/create-order-shipping-methods"
import {
throwIfIsCancelled,
throwIfOrderChangeIsNotActive,
} from "../../utils/order-validation"
import { createOrderChangeActionsWorkflow } from "../create-order-change-actions"

/**
* This step validates that a shipping method can be created for an order edit.
Expand Down Expand Up @@ -141,7 +141,9 @@ export const createOrderEditShippingMethodWorkflow = createWorkflow(
}
)

createOrderChangeActionsStep([orderChangeActionInput])
createOrderChangeActionsWorkflow.runAsStep({
input: [orderChangeActionInput],
})

return new WorkflowResponse(previewOrderChangeStep(order.id))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import {
transform,
} from "@medusajs/workflows-sdk"
import { useRemoteQueryStep } from "../../../common"
import { createOrderChangeActionsStep } from "../../steps/create-order-change-actions"
import { previewOrderChangeStep } from "../../steps/preview-order-change"
import {
throwIfIsCancelled,
throwIfOrderChangeIsNotActive,
} from "../../utils/order-validation"
import { addOrderLineItemsWorkflow } from "../add-line-items"
import { createOrderChangeActionsWorkflow } from "../create-order-change-actions"

/**
* This step validates that new items can be added to an order edit.
Expand Down Expand Up @@ -93,7 +93,9 @@ export const orderOrderEditAddNewItemWorkflow = createWorkflow(
}
)

createOrderChangeActionsStep(orderChangeActionInput)
createOrderChangeActionsWorkflow.runAsStep({
input: orderChangeActionInput,
})

return new WorkflowResponse(previewOrderChangeStep(input.order_id))
}
Expand Down
Loading