@jetshop/core 6.2.3 → 6.2.4
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/types.d.ts +6 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
@@ -1704,6 +1704,7 @@ export type Tracking = {
|
|
1704
1704
|
ga4?: Maybe<GoogleAnalytics4>;
|
1705
1705
|
gtm?: Maybe<GoogleTagManager>;
|
1706
1706
|
fca?: Maybe<FacebookConversionsApi>;
|
1707
|
+
trackingConsents?: Maybe<TrackingConsents>;
|
1707
1708
|
};
|
1708
1709
|
|
1709
1710
|
export type GoogleAnalytics = {
|
@@ -1730,6 +1731,11 @@ export type FacebookConversionsApi = {
|
|
1730
1731
|
pixelId?: Maybe<Scalars['String']>;
|
1731
1732
|
};
|
1732
1733
|
|
1734
|
+
export type TrackingConsents = {
|
1735
|
+
__typename?: 'TrackingConsents';
|
1736
|
+
useTrackingConsentApi?: Maybe<Scalars['Boolean']>;
|
1737
|
+
};
|
1738
|
+
|
1733
1739
|
export type Cart = {
|
1734
1740
|
__typename?: 'Cart';
|
1735
1741
|
id?: Maybe<Scalars['String']>;
|