analytica.click 0.0.432 → 0.0.433

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 (53) hide show
  1. package/dist/index.d.ts +5 -148
  2. package/package.json +2 -1
  3. package/dist/analytica.click/src/index.d.ts +0 -2
  4. package/dist/common/src/api/apis/DefaultApi.d.ts +0 -117
  5. package/dist/common/src/api/apis/index.d.ts +0 -1
  6. package/dist/common/src/api/index.d.ts +0 -3
  7. package/dist/common/src/api/models/ApiKey.d.ts +0 -45
  8. package/dist/common/src/api/models/ArchiveErrors.d.ts +0 -27
  9. package/dist/common/src/api/models/BingIntegration.d.ts +0 -33
  10. package/dist/common/src/api/models/Browser.d.ts +0 -57
  11. package/dist/common/src/api/models/DeleteAccount.d.ts +0 -27
  12. package/dist/common/src/api/models/Event.d.ts +0 -57
  13. package/dist/common/src/api/models/GetAccount.d.ts +0 -51
  14. package/dist/common/src/api/models/GetAccounts.d.ts +0 -52
  15. package/dist/common/src/api/models/GoogleIntegration.d.ts +0 -39
  16. package/dist/common/src/api/models/Language.d.ts +0 -57
  17. package/dist/common/src/api/models/Location.d.ts +0 -57
  18. package/dist/common/src/api/models/ModelError.d.ts +0 -99
  19. package/dist/common/src/api/models/PostAccount.d.ts +0 -27
  20. package/dist/common/src/api/models/PostError.d.ts +0 -34
  21. package/dist/common/src/api/models/PostErrorData.d.ts +0 -51
  22. package/dist/common/src/api/models/PostSiteTrack.d.ts +0 -34
  23. package/dist/common/src/api/models/PostSiteTrackData.d.ts +0 -57
  24. package/dist/common/src/api/models/Query.d.ts +0 -69
  25. package/dist/common/src/api/models/Referrer.d.ts +0 -57
  26. package/dist/common/src/api/models/Resolution.d.ts +0 -57
  27. package/dist/common/src/api/models/Rollup.d.ts +0 -94
  28. package/dist/common/src/api/models/RollupTopBrowsers.d.ts +0 -33
  29. package/dist/common/src/api/models/RollupTopErrors.d.ts +0 -33
  30. package/dist/common/src/api/models/RollupTopEvents.d.ts +0 -33
  31. package/dist/common/src/api/models/RollupTopLanguages.d.ts +0 -33
  32. package/dist/common/src/api/models/RollupTopLocations.d.ts +0 -33
  33. package/dist/common/src/api/models/RollupTopQueries.d.ts +0 -33
  34. package/dist/common/src/api/models/RollupTopReferrers.d.ts +0 -33
  35. package/dist/common/src/api/models/RollupTopResolutions.d.ts +0 -33
  36. package/dist/common/src/api/models/SeoResult.d.ts +0 -64
  37. package/dist/common/src/api/models/SeoResultValues.d.ts +0 -45
  38. package/dist/common/src/api/models/SiteData.d.ts +0 -94
  39. package/dist/common/src/api/models/SiteDetails.d.ts +0 -45
  40. package/dist/common/src/api/models/index.d.ts +0 -33
  41. package/dist/common/src/helpers/logsend.d.ts +0 -2
  42. /package/dist/{analytica.click/src/components → components}/AnalyticaClickProvider/index.d.ts +0 -0
  43. /package/dist/{analytica.click/src/components → components}/ErrorBoundary/Comp.d.ts +0 -0
  44. /package/dist/{analytica.click/src/components → components}/ErrorBoundary/index.d.ts +0 -0
  45. /package/dist/{analytica.click/src/components → components}/index.d.ts +0 -0
  46. /package/dist/{analytica.click/src/helpers → helpers}/browser.d.ts +0 -0
  47. /package/dist/{analytica.click/src/helpers → helpers}/console.d.ts +0 -0
  48. /package/dist/{analytica.click/src/helpers → helpers}/errorTrack.d.ts +0 -0
  49. /package/dist/{analytica.click/src/helpers → helpers}/index.d.ts +0 -0
  50. /package/dist/{analytica.click/src/helpers → helpers}/log.d.ts +0 -0
  51. /package/dist/{analytica.click/src/helpers → helpers}/object.d.ts +0 -0
  52. /package/dist/{analytica.click/src/helpers → helpers}/track.d.ts +0 -0
  53. /package/dist/{analytica.click/src/helpers → helpers}/trackServer.d.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -1,152 +1,9 @@
1
- declare module 'analytica.click/analytica.click/src/components/AnalyticaClickProvider/index' {
2
- import type { IAnalyticaConfig } from 'common-ui/src/types/widgets';
3
- import React from 'react';
4
- export const AnalyticaConfigContext: React.Context<IAnalyticaConfig>;
5
- export const AnalyticaClickProvider: ({ children, values, }: {
6
- children: React.ReactNode;
7
- values: IAnalyticaConfig;
8
- }) => import("react/jsx-runtime").JSX.Element;
1
+ export * from './components';
2
+ export * from './helpers';
9
3
 
10
- }
11
- declare module 'analytica.click/analytica.click/src/components/ErrorBoundary/Comp' {
12
- import type { TErrorMessage } from 'common-ui/src/types/widgets';
13
- import React, { Component } from 'react';
14
- export interface IErrorBoundaryProps {
15
- notify?: TErrorMessage;
16
- children?: React.ReactNode;
17
- }
18
- export class ErrorBoundary extends Component<IErrorBoundaryProps, {
19
- hasError: ErrorEvent | undefined;
20
- }> {
21
- seenError: boolean;
22
- constructor(props: any);
23
- static getDerivedStateFromError(errorV: any): {
24
- hasError: any;
25
- };
26
- render(): string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
27
- }
28
-
29
- }
30
- declare module 'analytica.click/analytica.click/src/components/ErrorBoundary/index' {
31
- import React from 'react';
32
- export const ErrorBoundary: ({ children, }: {
33
- children?: React.ReactNode;
34
- }) => JSX.Element;
35
-
36
- }
37
- declare module 'analytica.click/analytica.click/src/components/index' {
38
- export * from 'analytica.click/analytica.click/src/components/AnalyticaClickProvider/index';
39
-
40
- }
41
- declare module 'analytica.click/analytica.click/src/helpers/browser' {
42
- import type { IAnalyticaConfig } from 'common-ui/src/types';
43
- export function onBrowserError({ ev: { error: { message, stack }, filename, }, values, }: {
44
- ev: ErrorEvent;
45
- values: IAnalyticaConfig;
46
- }): Promise<void>;
47
- export function OverloadBrowser(values: IAnalyticaConfig): void;
48
-
49
- }
50
- declare module 'analytica.click/analytica.click/src/helpers/console' {
51
- import type { IAnalyticaConfig } from 'common-ui/src/types';
52
- export function OverloadConsole(values: IAnalyticaConfig): void;
53
-
54
- }
55
- declare module 'analytica.click/analytica.click/src/helpers/errorTrack' {
56
- import type { PostError } from 'common-ui/src/types/api';
57
- export const errorTrack: ({ data, overrideBaseUrl, ignoreBrowserErrors, }: {
58
- data: PostError;
59
- overrideBaseUrl?: string | undefined;
60
- /** will ignore any errors that contain these strings */
61
- ignoreBrowserErrors?: string[] | undefined;
62
- }) => Promise<{} | undefined>;
63
-
64
- }
65
- declare module 'analytica.click/analytica.click/src/helpers/index' {
66
- export * from 'analytica.click/analytica.click/src/helpers/errorTrack';
67
- export * from 'analytica.click/analytica.click/src/helpers/log';
68
- export * from 'analytica.click/analytica.click/src/helpers/track';
69
- export * from 'analytica.click/analytica.click/src/helpers/trackServer';
70
-
71
- }
72
- declare module 'analytica.click/analytica.click/src/helpers/log' {
73
- export const tokenMissing: (comp: string) => string;
74
-
75
- }
76
- declare module 'analytica.click/analytica.click/src/helpers/object' {
77
- export const takeObject: <T>(ob: Record<string, T>, num: number) => {
78
- part: T[];
79
- rest: Record<string, T>;
80
- };
81
-
82
- }
83
- declare module 'analytica.click/analytica.click/src/helpers/track' {
84
- import type { ITrack } from 'common-ui/src/types/widgets';
85
- import { page, track } from 'analytica.click/analytica.click/src/helpers/trackServer';
86
- export const useTrack: () => {
87
- page: (d: Omit<ITrack, 'eventName' | 'analyticaToken' | 'overrideBaseUrl'>) => void;
88
- track: (d: Omit<ITrack, 'analyticaToken' | 'overrideBaseUrl'>) => void;
89
- };
90
-
91
- }
92
- declare module 'analytica.click/analytica.click/src/helpers/trackServer' {
93
- import type { TTrack, TTrackNoEvent } from 'common-ui/src/types/widgets';
94
- export const track: TTrack;
95
- export const page: TTrackNoEvent;
96
-
97
- }
98
- declare module 'analytica.click/analytica.click/src/index' {
99
- export * from 'analytica.click/analytica.click/src/components/index';
100
- export * from 'analytica.click/analytica.click/src/helpers/index';
101
-
102
- }
103
- declare module 'analytica.click/common-ui/src/types/api' {
104
- export interface PostError {
105
- key: string;
106
- data: PostErrorData;
107
- }
108
- export interface PostErrorData {
109
- message: string;
110
- name?: string;
111
- stack?: string;
112
- href: string;
113
- filename?: string;
114
- }
115
-
116
- }
117
- declare module 'analytica.click/common-ui/src/types/index' {
118
- export * from 'analytica.click/common-ui/src/types/api';
119
- export * from 'analytica.click/common-ui/src/types/widgets';
120
-
121
- }
122
- declare module 'analytica.click/common-ui/src/types/widgets' {
123
- export type TTrackNoEvent = (p: Omit<ITrack, 'eventName'>) => Promise<{
124
- error?: string;
125
- }>;
126
- export type TTrack = (p: ITrack) => Promise<{
127
- error?: string;
128
- }>;
129
- export interface ITrack {
130
- analyticaToken: string;
131
- overrideBaseUrl?: string;
132
- eventName: string;
133
- }
134
- export type TErrorMessage = (m: ErrorEvent) => Promise<void>;
135
- export interface IAnalyticaConfig {
136
- analyticaToken?: string;
137
- overrideBaseUrl?: string;
138
- devMode?: boolean;
139
- /** ignore any browser errors that include these words */
140
- ignoreBrowserErrors?: string[];
141
- }
142
-
143
- }
144
- declare module 'analytica.click' {
145
- import main = require('analytica.click/types');
146
- export = main;
147
- }
148
4
  declare module 'analytica.click/types' {
149
5
  export * from 'analytica.click/common-ui/src/types/index';
150
- export * from 'analytica.click/analytica.click/src/components/index';
151
- export * from 'analytica.click/analytica.click/src/helpers/index';
6
+ export * from 'analytica.click/common/src/types/index';
7
+ export * from 'analytica.click/components/index';
8
+ export * from 'analytica.click/helpers/index';
152
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica.click",
3
- "version": "0.0.432",
3
+ "version": "0.0.433",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -16,6 +16,7 @@
16
16
  "cross-env": "^7",
17
17
  "esbuild": "^0.20.0",
18
18
  "esbuild-plugin-d.ts": "^1",
19
+ "glob": "^10.3.10",
19
20
  "jsonwebtoken": "^9",
20
21
  "nodemon": "^3",
21
22
  "react": "^18",
@@ -1,2 +0,0 @@
1
- export * from './components';
2
- export * from './helpers';
@@ -1,117 +0,0 @@
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 * as runtime from '../runtime';
13
- import { ArchiveErrors, BingIntegration, DeleteAccount, GetAccounts, GoogleIntegration, PostAccount, PostError, PostSiteTrack, SiteData } from '../models';
14
- export interface ArchiveErrorRequest {
15
- id: string;
16
- }
17
- export interface ArchiveErrorsRequest {
18
- archiveErrors: ArchiveErrors;
19
- }
20
- export interface BingIntegrationPostRequest {
21
- bingIntegration: BingIntegration;
22
- }
23
- export interface GetTrackingAllSitesRequest {
24
- minDate: string;
25
- maxDate: string;
26
- }
27
- export interface GetTrackingSiteRequest {
28
- id: string;
29
- minDate: string;
30
- maxDate: string;
31
- }
32
- export interface GoogleIntegrationPostRequest {
33
- googleIntegration: GoogleIntegration;
34
- }
35
- export interface PostErrorsRequest {
36
- postError: Array<PostError>;
37
- }
38
- export interface PostPageTrackRequest {
39
- postSiteTrack: PostSiteTrack;
40
- }
41
- export interface SiteDeleteRequest {
42
- deleteAccount: DeleteAccount;
43
- }
44
- export interface SitePostRequest {
45
- postAccount: PostAccount;
46
- }
47
- /**
48
- *
49
- */
50
- export declare class DefaultApi extends runtime.BaseAPI {
51
- /**
52
- */
53
- accountGetRaw(initOverrides?: RequestInit): Promise<runtime.ApiResponse<GetAccounts>>;
54
- /**
55
- */
56
- accountGet(initOverrides?: RequestInit): Promise<GetAccounts>;
57
- /**
58
- */
59
- archiveErrorRaw(requestParameters: ArchiveErrorRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
60
- /**
61
- */
62
- archiveError(requestParameters: ArchiveErrorRequest, initOverrides?: RequestInit): Promise<void>;
63
- /**
64
- */
65
- archiveErrorsRaw(requestParameters: ArchiveErrorsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
66
- /**
67
- */
68
- archiveErrors(requestParameters: ArchiveErrorsRequest, initOverrides?: RequestInit): Promise<void>;
69
- /**
70
- */
71
- bingIntegrationPostRaw(requestParameters: BingIntegrationPostRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
72
- /**
73
- */
74
- bingIntegrationPost(requestParameters: BingIntegrationPostRequest, initOverrides?: RequestInit): Promise<void>;
75
- /**
76
- */
77
- getTrackingAllSitesRaw(requestParameters: GetTrackingAllSitesRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Array<SiteData>>>;
78
- /**
79
- */
80
- getTrackingAllSites(requestParameters: GetTrackingAllSitesRequest, initOverrides?: RequestInit): Promise<Array<SiteData>>;
81
- /**
82
- */
83
- getTrackingSiteRaw(requestParameters: GetTrackingSiteRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<SiteData>>;
84
- /**
85
- */
86
- getTrackingSite(requestParameters: GetTrackingSiteRequest, initOverrides?: RequestInit): Promise<SiteData>;
87
- /**
88
- */
89
- googleIntegrationPostRaw(requestParameters: GoogleIntegrationPostRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
90
- /**
91
- */
92
- googleIntegrationPost(requestParameters: GoogleIntegrationPostRequest, initOverrides?: RequestInit): Promise<void>;
93
- /**
94
- */
95
- postErrorsRaw(requestParameters: PostErrorsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
96
- /**
97
- */
98
- postErrors(requestParameters: PostErrorsRequest, initOverrides?: RequestInit): Promise<void>;
99
- /**
100
- */
101
- postPageTrackRaw(requestParameters: PostPageTrackRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
102
- /**
103
- */
104
- postPageTrack(requestParameters: PostPageTrackRequest, initOverrides?: RequestInit): Promise<void>;
105
- /**
106
- */
107
- siteDeleteRaw(requestParameters: SiteDeleteRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
108
- /**
109
- */
110
- siteDelete(requestParameters: SiteDeleteRequest, initOverrides?: RequestInit): Promise<void>;
111
- /**
112
- */
113
- sitePostRaw(requestParameters: SitePostRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
114
- /**
115
- */
116
- sitePost(requestParameters: SitePostRequest, initOverrides?: RequestInit): Promise<void>;
117
- }
@@ -1 +0,0 @@
1
- export * from './DefaultApi';
@@ -1,3 +0,0 @@
1
- export * from './runtime';
2
- export * from './apis';
3
- export * from './models';
@@ -1,45 +0,0 @@
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 ApiKey
16
- */
17
- export interface ApiKey {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof ApiKey
22
- */
23
- key: string;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof ApiKey
28
- */
29
- adminKey: string;
30
- /**
31
- *
32
- * @type {string}
33
- * @memberof ApiKey
34
- */
35
- site: string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof ApiKey
40
- */
41
- account: string;
42
- }
43
- export declare function ApiKeyFromJSON(json: any): ApiKey;
44
- export declare function ApiKeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiKey;
45
- export declare function ApiKeyToJSON(value?: ApiKey | null): any;
@@ -1,27 +0,0 @@
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 ArchiveErrors
16
- */
17
- export interface ArchiveErrors {
18
- /**
19
- *
20
- * @type {Array<string>}
21
- * @memberof ArchiveErrors
22
- */
23
- PKsB64: Array<string>;
24
- }
25
- export declare function ArchiveErrorsFromJSON(json: any): ArchiveErrors;
26
- export declare function ArchiveErrorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArchiveErrors;
27
- export declare function ArchiveErrorsToJSON(value?: ArchiveErrors | null): any;
@@ -1,33 +0,0 @@
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 BingIntegration
16
- */
17
- export interface BingIntegration {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof BingIntegration
22
- */
23
- key: string;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof BingIntegration
28
- */
29
- account: string;
30
- }
31
- export declare function BingIntegrationFromJSON(json: any): BingIntegration;
32
- export declare function BingIntegrationFromJSONTyped(json: any, ignoreDiscriminator: boolean): BingIntegration;
33
- export declare function BingIntegrationToJSON(value?: BingIntegration | null): any;
@@ -1,57 +0,0 @@
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 Browser
16
- */
17
- export interface Browser {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof Browser
22
- */
23
- account?: string;
24
- /**
25
- *
26
- * @type {number}
27
- * @memberof Browser
28
- */
29
- datetime: number;
30
- /**
31
- *
32
- * @type {string}
33
- * @memberof Browser
34
- */
35
- site: string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof Browser
40
- */
41
- browser: string;
42
- /**
43
- *
44
- * @type {number}
45
- * @memberof Browser
46
- */
47
- count: number;
48
- /**
49
- *
50
- * @type {string}
51
- * @memberof Browser
52
- */
53
- category: string;
54
- }
55
- export declare function BrowserFromJSON(json: any): Browser;
56
- export declare function BrowserFromJSONTyped(json: any, ignoreDiscriminator: boolean): Browser;
57
- export declare function BrowserToJSON(value?: Browser | null): any;
@@ -1,27 +0,0 @@
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 DeleteAccount
16
- */
17
- export interface DeleteAccount {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof DeleteAccount
22
- */
23
- site: string;
24
- }
25
- export declare function DeleteAccountFromJSON(json: any): DeleteAccount;
26
- export declare function DeleteAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteAccount;
27
- export declare function DeleteAccountToJSON(value?: DeleteAccount | null): any;
@@ -1,57 +0,0 @@
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 Event
16
- */
17
- export interface Event {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof Event
22
- */
23
- account?: string;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof Event
28
- */
29
- site: string;
30
- /**
31
- *
32
- * @type {string}
33
- * @memberof Event
34
- */
35
- eventName: string;
36
- /**
37
- *
38
- * @type {number}
39
- * @memberof Event
40
- */
41
- datetime: number;
42
- /**
43
- *
44
- * @type {number}
45
- * @memberof Event
46
- */
47
- count: number;
48
- /**
49
- *
50
- * @type {string}
51
- * @memberof Event
52
- */
53
- category: string;
54
- }
55
- export declare function EventFromJSON(json: any): Event;
56
- export declare function EventFromJSONTyped(json: any, ignoreDiscriminator: boolean): Event;
57
- export declare function EventToJSON(value?: Event | null): any;
@@ -1,51 +0,0 @@
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 GetAccount
16
- */
17
- export interface GetAccount {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof GetAccount
22
- */
23
- site: string;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof GetAccount
28
- */
29
- account: string;
30
- /**
31
- *
32
- * @type {string}
33
- * @memberof GetAccount
34
- */
35
- apiKey: string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof GetAccount
40
- */
41
- adminApiKey: string;
42
- /**
43
- *
44
- * @type {string}
45
- * @memberof GetAccount
46
- */
47
- favicon?: string;
48
- }
49
- export declare function GetAccountFromJSON(json: any): GetAccount;
50
- export declare function GetAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccount;
51
- export declare function GetAccountToJSON(value?: GetAccount | null): any;
@@ -1,52 +0,0 @@
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 { GetAccount } from './';
13
- /**
14
- *
15
- * @export
16
- * @interface GetAccounts
17
- */
18
- export interface GetAccounts {
19
- /**
20
- *
21
- * @type {Array<GetAccount>}
22
- * @memberof GetAccounts
23
- */
24
- accounts: Array<GetAccount>;
25
- /**
26
- *
27
- * @type {string}
28
- * @memberof GetAccounts
29
- */
30
- googleEmail?: string;
31
- /**
32
- *
33
- * @type {string}
34
- * @memberof GetAccounts
35
- */
36
- googleKey?: string;
37
- /**
38
- *
39
- * @type {string}
40
- * @memberof GetAccounts
41
- */
42
- bingKey?: string;
43
- /**
44
- *
45
- * @type {string}
46
- * @memberof GetAccounts
47
- */
48
- bingAccount?: string;
49
- }
50
- export declare function GetAccountsFromJSON(json: any): GetAccounts;
51
- export declare function GetAccountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccounts;
52
- export declare function GetAccountsToJSON(value?: GetAccounts | null): any;