react-marketing-tools 0.3.9 → 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/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
  /**