chore(medusa): remove empty object type for set cart's customer route (#13549)

This commit is contained in:
Shahed Nasser
2025-09-22 09:22:12 +03:00
committed by GitHub
parent 68a643bb3a
commit 730d73306d
2 changed files with 6 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
"@medusajs/medusa": patch
---
chore(medusa): remove empty object type for set cart's customer route

View File

@@ -7,11 +7,10 @@ import {
} from "@medusajs/framework/http"
import { Modules } from "@medusajs/framework/utils"
import { refetchCart } from "../../helpers"
import { StoreUpdateCartCustomerType } from "../../validators"
import { AdditionalData } from "@medusajs/types"
export const POST = async (
req: AuthenticatedMedusaRequest<StoreUpdateCartCustomerType & AdditionalData>,
req: AuthenticatedMedusaRequest<AdditionalData>,
res: MedusaResponse<HttpTypes.StoreCartResponse>
) => {
const we = req.scope.resolve(Modules.WORKFLOW_ENGINE)