analytica.click 0.0.425 → 0.0.427

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.
Files changed (54) hide show
  1. package/dist/{components → analytica.click/src/components}/AnalyticaConfig/index.d.ts +1 -1
  2. package/dist/{helpers → analytica.click/src/helpers}/errorTrack.d.ts +1 -1
  3. package/dist/{helpers → analytica.click/src/helpers}/track.d.ts +1 -1
  4. package/dist/{helpers → analytica.click/src/helpers}/trackServer.d.ts +1 -1
  5. package/dist/analytica.click/src/index.d.ts +2 -0
  6. package/dist/common/src/api/apis/DefaultApi.d.ts +117 -0
  7. package/dist/common/src/api/apis/index.d.ts +1 -0
  8. package/dist/common/src/api/index.d.ts +3 -0
  9. package/dist/common/src/api/models/ApiKey.d.ts +45 -0
  10. package/dist/common/src/api/models/ArchiveErrors.d.ts +27 -0
  11. package/dist/common/src/api/models/BingIntegration.d.ts +33 -0
  12. package/dist/common/src/api/models/Browser.d.ts +57 -0
  13. package/dist/common/src/api/models/DeleteAccount.d.ts +27 -0
  14. package/dist/common/src/api/models/Event.d.ts +57 -0
  15. package/dist/common/src/api/models/GetAccount.d.ts +51 -0
  16. package/dist/common/src/api/models/GetAccounts.d.ts +52 -0
  17. package/dist/common/src/api/models/GoogleIntegration.d.ts +39 -0
  18. package/dist/common/src/api/models/Language.d.ts +57 -0
  19. package/dist/common/src/api/models/Location.d.ts +57 -0
  20. package/dist/common/src/api/models/ModelError.d.ts +99 -0
  21. package/dist/common/src/api/models/PostAccount.d.ts +27 -0
  22. package/dist/common/src/api/models/PostError.d.ts +34 -0
  23. package/dist/common/src/api/models/PostErrorData.d.ts +51 -0
  24. package/dist/common/src/api/models/PostSiteTrack.d.ts +34 -0
  25. package/dist/common/src/api/models/PostSiteTrackData.d.ts +57 -0
  26. package/dist/common/src/api/models/Query.d.ts +69 -0
  27. package/dist/common/src/api/models/Referrer.d.ts +57 -0
  28. package/dist/common/src/api/models/Resolution.d.ts +57 -0
  29. package/dist/common/src/api/models/Rollup.d.ts +94 -0
  30. package/dist/common/src/api/models/RollupTopBrowsers.d.ts +33 -0
  31. package/dist/common/src/api/models/RollupTopErrors.d.ts +33 -0
  32. package/dist/common/src/api/models/RollupTopEvents.d.ts +33 -0
  33. package/dist/common/src/api/models/RollupTopLanguages.d.ts +33 -0
  34. package/dist/common/src/api/models/RollupTopLocations.d.ts +33 -0
  35. package/dist/common/src/api/models/RollupTopQueries.d.ts +33 -0
  36. package/dist/common/src/api/models/RollupTopReferrers.d.ts +33 -0
  37. package/dist/common/src/api/models/RollupTopResolutions.d.ts +33 -0
  38. package/dist/common/src/api/models/SeoResult.d.ts +64 -0
  39. package/dist/common/src/api/models/SeoResultValues.d.ts +45 -0
  40. package/dist/common/src/api/models/SiteData.d.ts +94 -0
  41. package/dist/common/src/api/models/SiteDetails.d.ts +45 -0
  42. package/dist/common/src/api/models/index.d.ts +33 -0
  43. package/dist/common/src/helpers/logsend.d.ts +2 -0
  44. package/dist/common-ui/src/components/ErrorBoundary/index.d.ts +16 -0
  45. package/dist/common-ui/src/types/widgets.d.ts +17 -0
  46. package/dist/helpers/trackServer.js +1 -1
  47. package/dist/index.d.ts +4 -4
  48. package/dist/index.js +2 -2
  49. package/package.json +2 -2
  50. /package/dist/{components → analytica.click/src/components}/ErrorBoundary/index.d.ts +0 -0
  51. /package/dist/{components → analytica.click/src/components}/index.d.ts +0 -0
  52. /package/dist/{helpers → analytica.click/src/helpers}/index.d.ts +0 -0
  53. /package/dist/{helpers → analytica.click/src/helpers}/log.d.ts +0 -0
  54. /package/dist/{helpers → analytica.click/src/helpers}/object.d.ts +0 -0
@@ -0,0 +1,99 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ModelError
16
+ */
17
+ export interface ModelError {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ModelError
22
+ */
23
+ PK: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ModelError
28
+ */
29
+ messageHash?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof ModelError
34
+ */
35
+ site: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ModelError
40
+ */
41
+ account: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof ModelError
46
+ */
47
+ message?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof ModelError
52
+ */
53
+ name?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof ModelError
58
+ */
59
+ stack?: string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof ModelError
64
+ */
65
+ href: string;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof ModelError
70
+ */
71
+ filename?: string;
72
+ /**
73
+ *
74
+ * @type {number}
75
+ * @memberof ModelError
76
+ */
77
+ datetime: number;
78
+ /**
79
+ *
80
+ * @type {boolean}
81
+ * @memberof ModelError
82
+ */
83
+ archived?: boolean;
84
+ /**
85
+ *
86
+ * @type {number}
87
+ * @memberof ModelError
88
+ */
89
+ count: number;
90
+ /**
91
+ *
92
+ * @type {string}
93
+ * @memberof ModelError
94
+ */
95
+ category: string;
96
+ }
97
+ export declare function ModelErrorFromJSON(json: any): ModelError;
98
+ export declare function ModelErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelError;
99
+ export declare function ModelErrorToJSON(value?: ModelError | null): any;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PostAccount
16
+ */
17
+ export interface PostAccount {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof PostAccount
22
+ */
23
+ site: string;
24
+ }
25
+ export declare function PostAccountFromJSON(json: any): PostAccount;
26
+ export declare function PostAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostAccount;
27
+ export declare function PostAccountToJSON(value?: PostAccount | null): any;
@@ -0,0 +1,34 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PostErrorData } from './';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PostError
17
+ */
18
+ export interface PostError {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof PostError
23
+ */
24
+ key: string;
25
+ /**
26
+ *
27
+ * @type {PostErrorData}
28
+ * @memberof PostError
29
+ */
30
+ data: PostErrorData;
31
+ }
32
+ export declare function PostErrorFromJSON(json: any): PostError;
33
+ export declare function PostErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostError;
34
+ export declare function PostErrorToJSON(value?: PostError | null): any;
@@ -0,0 +1,51 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PostErrorData
16
+ */
17
+ export interface PostErrorData {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof PostErrorData
22
+ */
23
+ message: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PostErrorData
28
+ */
29
+ name?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PostErrorData
34
+ */
35
+ stack?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof PostErrorData
40
+ */
41
+ href: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof PostErrorData
46
+ */
47
+ filename?: string;
48
+ }
49
+ export declare function PostErrorDataFromJSON(json: any): PostErrorData;
50
+ export declare function PostErrorDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostErrorData;
51
+ export declare function PostErrorDataToJSON(value?: PostErrorData | null): any;
@@ -0,0 +1,34 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PostSiteTrackData } from './';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PostSiteTrack
17
+ */
18
+ export interface PostSiteTrack {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof PostSiteTrack
23
+ */
24
+ key: string;
25
+ /**
26
+ *
27
+ * @type {PostSiteTrackData}
28
+ * @memberof PostSiteTrack
29
+ */
30
+ data: PostSiteTrackData;
31
+ }
32
+ export declare function PostSiteTrackFromJSON(json: any): PostSiteTrack;
33
+ export declare function PostSiteTrackFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostSiteTrack;
34
+ export declare function PostSiteTrackToJSON(value?: PostSiteTrack | null): any;
@@ -0,0 +1,57 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PostSiteTrackData
16
+ */
17
+ export interface PostSiteTrackData {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof PostSiteTrackData
22
+ */
23
+ eventName: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PostSiteTrackData
28
+ */
29
+ pageLocation?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PostSiteTrackData
34
+ */
35
+ pageReferrer?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof PostSiteTrackData
40
+ */
41
+ pageTitle?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof PostSiteTrackData
46
+ */
47
+ browserResolution?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof PostSiteTrackData
52
+ */
53
+ browserLanguage?: string;
54
+ }
55
+ export declare function PostSiteTrackDataFromJSON(json: any): PostSiteTrackData;
56
+ export declare function PostSiteTrackDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostSiteTrackData;
57
+ export declare function PostSiteTrackDataToJSON(value?: PostSiteTrackData | null): any;
@@ -0,0 +1,69 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface Query
16
+ */
17
+ export interface Query {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof Query
22
+ */
23
+ account?: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof Query
28
+ */
29
+ datetime: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof Query
34
+ */
35
+ site: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof Query
40
+ */
41
+ pathName: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof Query
46
+ */
47
+ search?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof Query
52
+ */
53
+ hash?: string;
54
+ /**
55
+ *
56
+ * @type {number}
57
+ * @memberof Query
58
+ */
59
+ count: number;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof Query
64
+ */
65
+ category: string;
66
+ }
67
+ export declare function QueryFromJSON(json: any): Query;
68
+ export declare function QueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): Query;
69
+ export declare function QueryToJSON(value?: Query | null): any;
@@ -0,0 +1,57 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface Referrer
16
+ */
17
+ export interface Referrer {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof Referrer
22
+ */
23
+ account?: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof Referrer
28
+ */
29
+ datetime: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof Referrer
34
+ */
35
+ site: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof Referrer
40
+ */
41
+ referrer: string;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof Referrer
46
+ */
47
+ count: number;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof Referrer
52
+ */
53
+ category: string;
54
+ }
55
+ export declare function ReferrerFromJSON(json: any): Referrer;
56
+ export declare function ReferrerFromJSONTyped(json: any, ignoreDiscriminator: boolean): Referrer;
57
+ export declare function ReferrerToJSON(value?: Referrer | null): any;
@@ -0,0 +1,57 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface Resolution
16
+ */
17
+ export interface Resolution {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof Resolution
22
+ */
23
+ account?: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof Resolution
28
+ */
29
+ datetime: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof Resolution
34
+ */
35
+ site: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof Resolution
40
+ */
41
+ resolution: string;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof Resolution
46
+ */
47
+ count: number;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof Resolution
52
+ */
53
+ category: string;
54
+ }
55
+ export declare function ResolutionFromJSON(json: any): Resolution;
56
+ export declare function ResolutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Resolution;
57
+ export declare function ResolutionToJSON(value?: Resolution | null): any;
@@ -0,0 +1,94 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { RollupTopBrowsers, RollupTopErrors, RollupTopEvents, RollupTopLanguages, RollupTopLocations, RollupTopQueries, RollupTopReferrers, RollupTopResolutions } from './';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface Rollup
17
+ */
18
+ export interface Rollup {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof Rollup
23
+ */
24
+ account: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof Rollup
29
+ */
30
+ site: string;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof Rollup
35
+ */
36
+ datetime: number;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof Rollup
41
+ */
42
+ category: string;
43
+ /**
44
+ *
45
+ * @type {Array<RollupTopReferrers>}
46
+ * @memberof Rollup
47
+ */
48
+ topReferrers?: Array<RollupTopReferrers>;
49
+ /**
50
+ *
51
+ * @type {Array<RollupTopResolutions>}
52
+ * @memberof Rollup
53
+ */
54
+ topResolutions?: Array<RollupTopResolutions>;
55
+ /**
56
+ *
57
+ * @type {Array<RollupTopQueries>}
58
+ * @memberof Rollup
59
+ */
60
+ topQueries?: Array<RollupTopQueries>;
61
+ /**
62
+ *
63
+ * @type {Array<RollupTopLocations>}
64
+ * @memberof Rollup
65
+ */
66
+ topLocations?: Array<RollupTopLocations>;
67
+ /**
68
+ *
69
+ * @type {Array<RollupTopBrowsers>}
70
+ * @memberof Rollup
71
+ */
72
+ topBrowsers?: Array<RollupTopBrowsers>;
73
+ /**
74
+ *
75
+ * @type {Array<RollupTopEvents>}
76
+ * @memberof Rollup
77
+ */
78
+ topEvents?: Array<RollupTopEvents>;
79
+ /**
80
+ *
81
+ * @type {Array<RollupTopLanguages>}
82
+ * @memberof Rollup
83
+ */
84
+ topLanguages?: Array<RollupTopLanguages>;
85
+ /**
86
+ *
87
+ * @type {Array<RollupTopErrors>}
88
+ * @memberof Rollup
89
+ */
90
+ topErrors?: Array<RollupTopErrors>;
91
+ }
92
+ export declare function RollupFromJSON(json: any): Rollup;
93
+ export declare function RollupFromJSONTyped(json: any, ignoreDiscriminator: boolean): Rollup;
94
+ export declare function RollupToJSON(value?: Rollup | null): any;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface RollupTopBrowsers
16
+ */
17
+ export interface RollupTopBrowsers {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof RollupTopBrowsers
22
+ */
23
+ browser: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof RollupTopBrowsers
28
+ */
29
+ count: number;
30
+ }
31
+ export declare function RollupTopBrowsersFromJSON(json: any): RollupTopBrowsers;
32
+ export declare function RollupTopBrowsersFromJSONTyped(json: any, ignoreDiscriminator: boolean): RollupTopBrowsers;
33
+ export declare function RollupTopBrowsersToJSON(value?: RollupTopBrowsers | null): any;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface RollupTopErrors
16
+ */
17
+ export interface RollupTopErrors {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof RollupTopErrors
22
+ */
23
+ href: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof RollupTopErrors
28
+ */
29
+ count: number;
30
+ }
31
+ export declare function RollupTopErrorsFromJSON(json: any): RollupTopErrors;
32
+ export declare function RollupTopErrorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RollupTopErrors;
33
+ export declare function RollupTopErrorsToJSON(value?: RollupTopErrors | null): any;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * analytica.click
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: support@analytica.click
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface RollupTopEvents
16
+ */
17
+ export interface RollupTopEvents {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof RollupTopEvents
22
+ */
23
+ eventName: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof RollupTopEvents
28
+ */
29
+ count: number;
30
+ }
31
+ export declare function RollupTopEventsFromJSON(json: any): RollupTopEvents;
32
+ export declare function RollupTopEventsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RollupTopEvents;
33
+ export declare function RollupTopEventsToJSON(value?: RollupTopEvents | null): any;