@anker-in/shopify-react 1.2.2-beta.5 → 1.2.2-beta.6

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.
@@ -57,7 +57,11 @@ declare const trackBeginCheckoutGA: ({ lineItems, currencyCode, gtmParams, }: {
57
57
  * This triggers begin_checkout event for buy now actions
58
58
  */
59
59
  declare const trackBuyNowGA: ({ lineItems, gtmParams, }: {
60
- lineItems: AddToCartLineItem[];
60
+ lineItems: Array<NormalizedLineItem & {
61
+ gtmParams?: {
62
+ item_category_id?: number | string;
63
+ };
64
+ }>;
61
65
  gtmParams?: GtmParams;
62
66
  }) => void;
63
67
  /**
@@ -57,7 +57,11 @@ declare const trackBeginCheckoutGA: ({ lineItems, currencyCode, gtmParams, }: {
57
57
  * This triggers begin_checkout event for buy now actions
58
58
  */
59
59
  declare const trackBuyNowGA: ({ lineItems, gtmParams, }: {
60
- lineItems: AddToCartLineItem[];
60
+ lineItems: Array<NormalizedLineItem & {
61
+ gtmParams?: {
62
+ item_category_id?: number | string;
63
+ };
64
+ }>;
61
65
  gtmParams?: GtmParams;
62
66
  }) => void;
63
67
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anker-in/shopify-react",
3
- "version": "1.2.2-beta.05",
3
+ "version": "1.2.2-beta.06",
4
4
  "description": "React hooks and components for Shopify SDK",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",