formica-ui-lib 1.0.110 → 1.0.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  import { CartItemCardProps } from "../../../molecules/card/cartItemCard/CartItemCardProps";
2
2
  export type ShoppingCartFlyoutItem = CartItemCardProps & {
3
3
  id: string;
4
+ bigCommerceProductId: string;
4
5
  };
5
6
  export type CartFlyoutProps = {
6
7
  isOpen: boolean;
@@ -34,6 +34,7 @@ export type ProductDetailProduct = {
34
34
  patternRepeat?: string;
35
35
  currency?: string;
36
36
  price?: ProductDetailPrice;
37
+ bigCommerceProductId: string;
37
38
  };
38
39
  export type ProductDetailContent = {
39
40
  defaultPurchaseTab?: string;
@@ -129,6 +130,7 @@ export type ProductDetailVariant = {
129
130
  grade?: string;
130
131
  isEcomm?: boolean;
131
132
  isMTO?: boolean;
133
+ bigCommerceProductId?: string;
132
134
  publishDate: string;
133
135
  unpublishDate: string;
134
136
  };
@@ -204,6 +206,7 @@ export type ProductDetailPageTemplateProps = {
204
206
  sku?: string;
205
207
  decor?: string;
206
208
  product: string | null;
209
+ grade: string | null;
207
210
  texture: string | null;
208
211
  size: string | null;
209
212
  quantity: number;