@types/matomo-tracker-react-native 0.3.0 → 0.3.2

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.
File without changes
@@ -6,107 +6,9 @@ This package contains type definitions for matomo-tracker-react-native (https://
6
6
 
7
7
  # Details
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/matomo-tracker-react-native.
9
- ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/matomo-tracker-react-native/index.d.ts)
10
- ````ts
11
- // Type definitions for matomo-tracker-react-native 0.3
12
- // Project: https://github.com/donni106/matomo-tracker-react-native
13
- // Definitions by: Zeynep Ece Ergin <https://github.com/zecergin>
14
- // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
15
- // TypeScript Version: 4.4
16
-
17
- import * as React from 'react';
18
-
19
- export interface AppStart {
20
- userInfo?: {
21
- uid?: string
22
- };
23
- }
24
-
25
- export interface Action {
26
- name: string;
27
- userInfo?:
28
- {
29
- uid?: string
30
- };
31
- }
32
-
33
- export interface Event {
34
- category: string;
35
- action: string;
36
- name?: string;
37
- value?: number;
38
- userInfo?: {
39
- uid?: string
40
- };
41
- }
42
-
43
- export interface SiteSearch {
44
- keyword: string;
45
- category?: string;
46
- count?: number;
47
- userInfo?: {
48
- uid?: string
49
- };
50
- }
51
-
52
- export interface Link {
53
- link: string;
54
- url?: string;
55
- userInfo?: {
56
- uid?: string
57
- };
58
- }
59
-
60
- export interface Download {
61
- download: string;
62
- url?: string;
63
- userInfo?: {
64
- uid?: string
65
- };
66
- }
67
-
68
- export function useMatomo(): {
69
- trackAppStart: (params: AppStart) => undefined | Promise<Response>,
70
- trackScreenView: (params: Action) => undefined | Promise<Response>,
71
- trackAction: (params: Action) => undefined | Promise<Response>,
72
- trackEvent: (params: Event) => undefined | Promise<Response>,
73
- trackSiteSearch: (params: SiteSearch) => undefined | Promise<Response>,
74
- trackLink: (params: Link) => undefined | Promise<Response>,
75
- trackDownload: (params: Download) => undefined | Promise<Response>
76
- };
77
-
78
- export interface MatomoProviderProps {
79
- instance: MatomoTracker;
80
- children: React.ReactElement;
81
- }
82
-
83
- export function MatomoProvider(props: MatomoProviderProps): JSX.Element;
84
-
85
- export const MatomoContext: React.Context<{}>;
86
- export interface InstanceProps {
87
- urlBase: string;
88
- siteId: number;
89
- trackerUrl?: string;
90
- userId?: string;
91
- disabled?: boolean;
92
- log?: boolean;
93
- }
94
-
95
- export default class MatomoTracker {
96
- constructor(props: InstanceProps);
97
- trackAppStart(params: AppStart): Promise<Response>;
98
- trackScreenView(params: Action): Promise<Response>;
99
- trackAction(params: Action): Promise<Response>;
100
- trackEvent(params: Event): Promise<Response>;
101
- trackSiteSearch(params: SiteSearch): Promise<Response>;
102
- trackLink(params: Link): Promise<Response>;
103
- trackDownload(params: Download): Promise<Response>;
104
- }
105
-
106
- ````
107
9
 
108
10
  ### Additional Details
109
- * Last updated: Mon, 29 Nov 2021 08:01:03 GMT
11
+ * Last updated: Wed, 27 Sep 2023 09:42:15 GMT
110
12
  * Dependencies: [@types/react](https://npmjs.com/package/@types/react)
111
13
  * Global values: none
112
14
 
@@ -4,91 +4,105 @@
4
4
  // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
5
  // TypeScript Version: 4.4
6
6
 
7
- import * as React from 'react';
7
+ import * as React from "react";
8
8
 
9
9
  export interface AppStart {
10
- userInfo?: {
11
- uid?: string
12
- };
10
+ userInfo?: {
11
+ uid?: string;
12
+ cid?: string;
13
+ urlref?: string;
14
+ lang?: string;
15
+ ua?: string;
16
+ _idvc?: string;
17
+ new_visit?: number;
18
+ _viewts?: number;
19
+ _idts?: number;
20
+ res?: number;
21
+ h?: number;
22
+ m?: number;
23
+ s?: number;
24
+ cookie?: number;
25
+ uadata?: object;
26
+ dimension?: number;
27
+ };
13
28
  }
14
29
 
15
30
  export interface Action {
16
- name: string;
17
- userInfo?:
18
- {
19
- uid?: string
20
- };
31
+ name: string;
32
+ userInfo?: {
33
+ uid?: string;
34
+ };
21
35
  }
22
36
 
23
37
  export interface Event {
24
- category: string;
25
- action: string;
26
- name?: string;
27
- value?: number;
28
- userInfo?: {
29
- uid?: string
30
- };
38
+ category: string;
39
+ action: string;
40
+ name?: string;
41
+ value?: number;
42
+ userInfo?: {
43
+ uid?: string;
44
+ };
31
45
  }
32
46
 
33
47
  export interface SiteSearch {
34
- keyword: string;
35
- category?: string;
36
- count?: number;
37
- userInfo?: {
38
- uid?: string
39
- };
48
+ keyword: string;
49
+ category?: string;
50
+ count?: number;
51
+ userInfo?: {
52
+ uid?: string;
53
+ };
40
54
  }
41
55
 
42
56
  export interface Link {
43
- link: string;
44
- url?: string;
45
- userInfo?: {
46
- uid?: string
47
- };
57
+ link: string;
58
+ url?: string;
59
+ userInfo?: {
60
+ uid?: string;
61
+ };
48
62
  }
49
63
 
50
64
  export interface Download {
51
- download: string;
52
- url?: string;
53
- userInfo?: {
54
- uid?: string
55
- };
65
+ download: string;
66
+ url?: string;
67
+ userInfo?: {
68
+ uid?: string;
69
+ };
56
70
  }
57
71
 
58
72
  export function useMatomo(): {
59
- trackAppStart: (params: AppStart) => undefined | Promise<Response>,
60
- trackScreenView: (params: Action) => undefined | Promise<Response>,
61
- trackAction: (params: Action) => undefined | Promise<Response>,
62
- trackEvent: (params: Event) => undefined | Promise<Response>,
63
- trackSiteSearch: (params: SiteSearch) => undefined | Promise<Response>,
64
- trackLink: (params: Link) => undefined | Promise<Response>,
65
- trackDownload: (params: Download) => undefined | Promise<Response>
73
+ trackAppStart: (params: AppStart) => undefined | Promise<Response>;
74
+ trackScreenView: (params: Action) => undefined | Promise<Response>;
75
+ trackAction: (params: Action) => undefined | Promise<Response>;
76
+ trackEvent: (params: Event) => undefined | Promise<Response>;
77
+ trackSiteSearch: (params: SiteSearch) => undefined | Promise<Response>;
78
+ trackLink: (params: Link) => undefined | Promise<Response>;
79
+ trackDownload: (params: Download) => undefined | Promise<Response>;
66
80
  };
67
81
 
68
82
  export interface MatomoProviderProps {
69
- instance: MatomoTracker;
70
- children: React.ReactElement;
83
+ instance: MatomoTracker;
84
+ children: React.ReactElement;
71
85
  }
72
86
 
73
87
  export function MatomoProvider(props: MatomoProviderProps): JSX.Element;
74
88
 
75
89
  export const MatomoContext: React.Context<{}>;
76
90
  export interface InstanceProps {
77
- urlBase: string;
78
- siteId: number;
79
- trackerUrl?: string;
80
- userId?: string;
81
- disabled?: boolean;
82
- log?: boolean;
91
+ urlBase: string;
92
+ siteId: number;
93
+ trackerUrl?: string;
94
+ userId?: string;
95
+ disabled?: boolean;
96
+ log?: boolean;
83
97
  }
84
98
 
85
99
  export default class MatomoTracker {
86
- constructor(props: InstanceProps);
87
- trackAppStart(params: AppStart): Promise<Response>;
88
- trackScreenView(params: Action): Promise<Response>;
89
- trackAction(params: Action): Promise<Response>;
90
- trackEvent(params: Event): Promise<Response>;
91
- trackSiteSearch(params: SiteSearch): Promise<Response>;
92
- trackLink(params: Link): Promise<Response>;
93
- trackDownload(params: Download): Promise<Response>;
100
+ constructor(props: InstanceProps);
101
+ trackAppStart(params: AppStart): Promise<Response>;
102
+ trackScreenView(params: Action): Promise<Response>;
103
+ trackAction(params: Action): Promise<Response>;
104
+ trackEvent(params: Event): Promise<Response>;
105
+ trackSiteSearch(params: SiteSearch): Promise<Response>;
106
+ trackLink(params: Link): Promise<Response>;
107
+ trackDownload(params: Download): Promise<Response>;
94
108
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/matomo-tracker-react-native",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "TypeScript definitions for matomo-tracker-react-native",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/matomo-tracker-react-native",
6
6
  "license": "MIT",
@@ -22,6 +22,6 @@
22
22
  "dependencies": {
23
23
  "@types/react": "*"
24
24
  },
25
- "typesPublisherContentHash": "250ec231306f46a3f57bcab863c3aba14be71076e999fce485d9f1ecf045cc66",
26
- "typeScriptVersion": "4.4"
25
+ "typesPublisherContentHash": "e2ac2fd7743a6a51e6463d016ef1e8762ff0f6409dc3e5dbf1d61cd372b9f2e4",
26
+ "typeScriptVersion": "4.5"
27
27
  }