From 5c29efab191740625acc985e77342420a4851c8d Mon Sep 17 00:00:00 2001 From: Ella Nan <38847123+ellanan@users.noreply.github.com> Date: Thu, 24 Oct 2024 09:53:20 -0400 Subject: [PATCH] feat: add optional promotion source type in order --- src/types/order.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/order.d.ts b/src/types/order.d.ts index 8849593..9d23783 100644 --- a/src/types/order.d.ts +++ b/src/types/order.d.ts @@ -272,6 +272,7 @@ export interface OrderItem extends Identifiable, OrderItemBase { } id: string code: string + promotion_source?: string } ] components?: ProductComponents @@ -285,6 +286,7 @@ export interface OrderItem extends Identifiable, OrderItemBase { catalog_source?: 'pim' custom_inputs?: Record shipping_group_id?: string + promotion_source?: string } export type PurchasePaymentMethod = 'purchase'