react-marketing-tools 0.3.8 → 0.4.0

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/README.md CHANGED
@@ -3,8 +3,8 @@
3
3
 
4
4
  React Marketing Tools are a set of tools to make it easier for you to implement analytics and track user journeys, interactions throughout your App. using dataLayer/Google Tag Manager, GA4 fetch directly or coming soon facebook pixel.
5
5
 
6
- [React Marketing Tools Demo](https://codepen.io/roryfn/pen/OJBGvMG)
7
- [Detailed Blog post on React Marketing Tools Implementation](https://blog.heyrory.com/google-analytics-4-google-tag-manager)
6
+ * [React Marketing Tools Demo](https://codepen.io/bronz3beard/pen/yLZmMeg)
7
+ * [Detailed Blog post on React Marketing Tools Implementation](https://blog.heyrory.com/google-analytics-4-google-tag-manager)
8
8
 
9
9
 
10
10
  # PR's
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ReactNode, Context } from 'react';
2
2
  import type { ProviderStateProps, ProviderApiProps } from './types';
3
- export type { Event, GooglePayload, EventNameInfo, AllowedTypes, TrackAnalyticsEventOptions, GlobalVars, DataLayer, ConsoleLogData, AnalyticsTrackerDataOptions, HandleDataLayerPushOptions, ServerLocationData, IpInfo, Ga4GoogleAnalyticsEventTracking, Platform, AnalyticsPlatform, Tokens, Config, BuildConfigOptions, ProviderStateProps, ProviderApiProps, } from './types';
3
+ export type { Event, GooglePayload, EventNameInfo, AllowedTypes, TrackAnalyticsEventOptions, GlobalVars, DataLayer, ConsoleLogData, AnalyticsTrackerDataOptions, HandleDataLayerPushOptions, ServerLocationData, IpInfo, Ga4GoogleAnalyticsEventTracking, Platform, AnalyticsPlatform, Tokens, Config, BuildConfigOptions, ProviderStateProps, ProviderApiProps, AnalyticsEventActionPrefix, AnalyticsGlobalEventAction, } from './types';
4
4
  export { config, analyticsPlatform, buildConfig, showMeBuildInAnalyticsPlatform, showMeBuildInGlobalEventActionList, showMeBuildInEventActionPrefixList, } from './buildConfig';
5
5
  export { trackAnalyticsEvent } from './analytics/analyticsEventService';
6
6
  export declare const ContextState: Context<ProviderStateProps>;
@@ -12,9 +12,9 @@ export declare const ReactMarketingProvider: ({ children, }: ReactMarketingProvi
12
12
  /**
13
13
  * @property {string} appName
14
14
  * @property {string} appSessionCookieName
15
- * @property {object} analyticsPlatform
16
- * @property {object} eventActionPrefixList
17
- * @property {object} analyticsGlobalEventActionList
15
+ * @property {AnalyticsPlatform} analyticsPlatform
16
+ * @property {AnalyticsEventActionPrefix} eventActionPrefixList
17
+ * @property {AnalyticsGlobalEventAction} analyticsGlobalEventActionList
18
18
  */
19
19
  export declare const useMarketingState: () => ProviderStateProps;
20
20
  /**