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

chore: add new update cart prop #924

Merged
merged 1 commit into from
Oct 14, 2024
Merged
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
4 changes: 3 additions & 1 deletion vtex/actions/cart/updateItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export interface Item {
export interface Props {
orderItems: Item[];
allowedOutdatedData?: Array<"paymentData">;
noSplitItem?: boolean;
}

/**
Expand All @@ -26,6 +27,7 @@ const action = async (
const {
orderItems,
allowedOutdatedData = ["paymentData"],
noSplitItem,
} = props;
const { orderFormId } = parseCookie(req.headers);
const cookie = req.headers.get("cookie") ?? "";
Expand All @@ -37,7 +39,7 @@ const action = async (
allowedOutdatedData,
sc: segment?.payload.channel,
}, {
body: { orderItems },
body: { orderItems, noSplitItem: Boolean(noSplitItem) },
headers: {
"content-type": "application/json",
accept: "application/json",
Expand Down
Loading