formica-ui-lib 1.0.108 → 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.
- package/dist/componentProps/organisms/cart/cartflyout/CartFlyoutProps.d.ts +1 -0
- package/dist/componentProps/templates/productdetailpagetemplate/ProductDetailPageTemplateProps.d.ts +3 -0
- package/dist/index.cjs +7 -7
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1037 -1034
- package/package.json +1 -1
package/dist/componentProps/templates/productdetailpagetemplate/ProductDetailPageTemplateProps.d.ts
CHANGED
|
@@ -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;
|