rozmova-analytics 1.1.47 → 1.1.49

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/types.d.ts DELETED
@@ -1,68 +0,0 @@
1
- export type AnalyticsCommonParams = {
2
- utm_source: string;
3
- utm_medium: string;
4
- utm_campaign: string;
5
- utm_campaign_id: string;
6
- utm_advertiser_id: string;
7
- utm_adset_id: string;
8
- utm_adset_name: string;
9
- utm_ad_id: string;
10
- utm_ad_name: string;
11
- utm_keyword: string;
12
- referrer: string;
13
- search_query: string;
14
- landing_page_url: string;
15
- fbp?: string;
16
- fbc?: string;
17
- session_id: string | null;
18
- user_pseudo_id: string;
19
- funnel_name?: string;
20
- language: string;
21
- platform: string;
22
- url: string;
23
- device: string;
24
- browser: string;
25
- system: string;
26
- rid: string;
27
- locale: string;
28
- logged_in: boolean;
29
- user_id: string;
30
- };
31
- export type EventParams = Record<string, unknown>;
32
- export interface UserAttributionProperties {
33
- funnelInfo?: {
34
- funnelType?: string | null;
35
- funnelName?: string | null;
36
- platform: string;
37
- listName: string | null;
38
- index: number | string | null;
39
- placement: string | null;
40
- rankingSessionId?: string | null;
41
- };
42
- trackingParams?: {
43
- source: string;
44
- medium: string;
45
- advertiserId: string;
46
- campaignId: string;
47
- campaignName: string;
48
- adsetId: string;
49
- adId: string;
50
- adName: string;
51
- keyword: string;
52
- searchQuery: string;
53
- referrer: string;
54
- landingPageUrl: string;
55
- };
56
- externalAnalyticsUserInfo?: {
57
- gaSessionId: string | null;
58
- gaClientId: string | null;
59
- rid: string;
60
- fbp?: string;
61
- fbc?: string;
62
- mxDistinctId?: string | null;
63
- cioAnonId?: string;
64
- };
65
- }
66
- export type ForcedAttributionProperties = {
67
- funnelName?: string;
68
- };