fix(medusa): use correct request type for create cart API route (#8820)
This commit is contained in:
@@ -11,7 +11,7 @@ import {
|
|||||||
import { refetchCart } from "./helpers"
|
import { refetchCart } from "./helpers"
|
||||||
|
|
||||||
export const POST = async (
|
export const POST = async (
|
||||||
req: AuthenticatedMedusaRequest<CreateCartWorkflowInputDTO & AdditionalData>,
|
req: AuthenticatedMedusaRequest<HttpTypes.StoreCreateCart & AdditionalData>,
|
||||||
res: MedusaResponse<HttpTypes.StoreCartResponse>
|
res: MedusaResponse<HttpTypes.StoreCartResponse>
|
||||||
) => {
|
) => {
|
||||||
const workflowInput = {
|
const workflowInput = {
|
||||||
@@ -20,7 +20,7 @@ export const POST = async (
|
|||||||
}
|
}
|
||||||
|
|
||||||
const { result } = await createCartWorkflow(req.scope).run({
|
const { result } = await createCartWorkflow(req.scope).run({
|
||||||
input: workflowInput,
|
input: workflowInput as CreateCartWorkflowInputDTO,
|
||||||
})
|
})
|
||||||
|
|
||||||
const cart = await refetchCart(
|
const cart = await refetchCart(
|
||||||
|
|||||||
Reference in New Issue
Block a user