analytica.click 0.0.392 → 0.0.394
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 +111 -2
- package/package.json +2 -2
- package/dist/esbuild.json +0 -1175
package/dist/index.d.ts
CHANGED
@@ -1,6 +1,115 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
declare module 'analytica.click/analytica.click/src/components/AnalyticaConfig/index' {
|
2
|
+
import type { IAnalyticaConfig } from 'analytica.click/common-ui/src/types/widgets';
|
3
|
+
import React from 'react';
|
4
|
+
export const AnalyticaConfigContext: React.Context<IAnalyticaConfig>;
|
5
|
+
export const AnalyticaConfigProvider: ({ children, values, }: {
|
6
|
+
children: React.ReactNode;
|
7
|
+
values: IAnalyticaConfig;
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
3
9
|
|
10
|
+
}
|
11
|
+
declare module 'analytica.click/analytica.click/src/components/ErrorBoundary/index' {
|
12
|
+
/// <reference types="react" />
|
13
|
+
export const ErrorBoundary: ({ children, filterBrowserError, }: {
|
14
|
+
children?: JSX.Element | JSX.Element[] | undefined;
|
15
|
+
filterBrowserError?: ((e: ErrorEvent | Error) => boolean) | undefined;
|
16
|
+
}) => JSX.Element;
|
17
|
+
|
18
|
+
}
|
19
|
+
declare module 'analytica.click/analytica.click/src/components/index' {
|
20
|
+
export * from 'analytica.click/analytica.click/src/components/AnalyticaConfig/index';
|
21
|
+
export * from 'analytica.click/analytica.click/src/components/ErrorBoundary/index';
|
22
|
+
|
23
|
+
}
|
24
|
+
declare module 'analytica.click/analytica.click/src/helpers/errorTrack' {
|
25
|
+
import type { PostError } from 'analytica.click/common-ui/src/types/api';
|
26
|
+
export const errorTrack: ({ data, overrideBaseUrl, }: {
|
27
|
+
data: PostError;
|
28
|
+
overrideBaseUrl?: string | undefined;
|
29
|
+
}) => Promise<{}>;
|
30
|
+
|
31
|
+
}
|
32
|
+
declare module 'analytica.click/analytica.click/src/helpers/index' {
|
33
|
+
export * from 'analytica.click/analytica.click/src/helpers/errorTrack';
|
34
|
+
export * from 'analytica.click/analytica.click/src/helpers/log';
|
35
|
+
export * from 'analytica.click/analytica.click/src/helpers/track';
|
36
|
+
export * from 'analytica.click/analytica.click/src/helpers/trackServer';
|
37
|
+
|
38
|
+
}
|
39
|
+
declare module 'analytica.click/analytica.click/src/helpers/log' {
|
40
|
+
export const tokenMissing: (comp: string) => string;
|
41
|
+
|
42
|
+
}
|
43
|
+
declare module 'analytica.click/analytica.click/src/helpers/object' {
|
44
|
+
export const takeObject: <T>(ob: Record<string, T>, num: number) => {
|
45
|
+
part: T[];
|
46
|
+
rest: Record<string, T>;
|
47
|
+
};
|
48
|
+
|
49
|
+
}
|
50
|
+
declare module 'analytica.click/analytica.click/src/helpers/track' {
|
51
|
+
import type { ITrack } from 'analytica.click/common-ui/src/types/widgets';
|
52
|
+
import { page, track } from 'analytica.click/analytica.click/src/helpers/trackServer';
|
53
|
+
export const useTrack: () => {
|
54
|
+
page: (d: Omit<ITrack, 'eventName' | 'analyticaToken' | 'overrideBaseUrl'>) => void;
|
55
|
+
track: (d: Omit<ITrack, 'analyticaToken' | 'overrideBaseUrl'>) => void;
|
56
|
+
};
|
57
|
+
|
58
|
+
}
|
59
|
+
declare module 'analytica.click/analytica.click/src/helpers/trackServer' {
|
60
|
+
import type { TTrack, TTrackNoEvent } from 'analytica.click/common-ui/src/types/widgets';
|
61
|
+
export const track: TTrack;
|
62
|
+
export const page: TTrackNoEvent;
|
63
|
+
|
64
|
+
}
|
65
|
+
declare module 'analytica.click/analytica.click/src/index' {
|
66
|
+
export * from 'analytica.click/analytica.click/src/components/index';
|
67
|
+
export * from 'analytica.click/analytica.click/src/helpers/index';
|
68
|
+
|
69
|
+
}
|
70
|
+
declare module 'analytica.click/common-ui/src/types/api' {
|
71
|
+
export interface PostError {
|
72
|
+
key: string;
|
73
|
+
data: PostErrorData;
|
74
|
+
}
|
75
|
+
export interface PostErrorData {
|
76
|
+
message: string;
|
77
|
+
name?: string;
|
78
|
+
stack?: string;
|
79
|
+
href: string;
|
80
|
+
filename?: string;
|
81
|
+
}
|
82
|
+
|
83
|
+
}
|
84
|
+
declare module 'analytica.click/common-ui/src/types/index' {
|
85
|
+
export * from 'analytica.click/common-ui/src/types/api';
|
86
|
+
export * from 'analytica.click/common-ui/src/types/widgets';
|
87
|
+
|
88
|
+
}
|
89
|
+
declare module 'analytica.click/common-ui/src/types/widgets' {
|
90
|
+
export type TTrackNoEvent = (p: Omit<ITrack, 'eventName'>) => Promise<{
|
91
|
+
error?: string;
|
92
|
+
}>;
|
93
|
+
export type TTrack = (p: ITrack) => Promise<{
|
94
|
+
error?: string;
|
95
|
+
}>;
|
96
|
+
export interface ITrack {
|
97
|
+
analyticaToken: string;
|
98
|
+
overrideBaseUrl?: string;
|
99
|
+
eventName: string;
|
100
|
+
}
|
101
|
+
export type TErrorMessage = (m: Error | ErrorEvent) => Promise<void>;
|
102
|
+
export interface IAnalyticaConfig {
|
103
|
+
analyticaToken?: string;
|
104
|
+
overrideBaseUrl?: string;
|
105
|
+
devMode?: boolean;
|
106
|
+
}
|
107
|
+
|
108
|
+
}
|
109
|
+
declare module 'analytica.click' {
|
110
|
+
import main = require('analytica.click/types');
|
111
|
+
export = main;
|
112
|
+
}
|
4
113
|
declare module 'analytica.click/types' {
|
5
114
|
export * from 'analytica.click/common-ui/src/types/index';
|
6
115
|
export * from 'analytica.click/analytica.click/src/components/index';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "analytica.click",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.394",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -11,7 +11,7 @@
|
|
11
11
|
"@emotion/styled": "^11",
|
12
12
|
"@types/jsonwebtoken": "^9",
|
13
13
|
"@types/react": "^18",
|
14
|
-
"ag-common": "^0.0.
|
14
|
+
"ag-common": "^0.0.563",
|
15
15
|
"axios": "^1",
|
16
16
|
"cross-env": "^7",
|
17
17
|
"esbuild": "^0.19",
|
package/dist/esbuild.json
DELETED
@@ -1,1175 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"inputs": {
|
3
|
-
"../common/dist/api/runtime.js": {
|
4
|
-
"bytes": 9424,
|
5
|
-
"imports": [
|
6
|
-
{
|
7
|
-
"path": "url",
|
8
|
-
"kind": "require-call",
|
9
|
-
"external": true
|
10
|
-
}
|
11
|
-
],
|
12
|
-
"format": "cjs"
|
13
|
-
},
|
14
|
-
"../common/dist/api/models/ApiKey.js": {
|
15
|
-
"bytes": 1309,
|
16
|
-
"imports": [],
|
17
|
-
"format": "cjs"
|
18
|
-
},
|
19
|
-
"../common/dist/api/models/ArchiveErrors.js": {
|
20
|
-
"bytes": 1284,
|
21
|
-
"imports": [],
|
22
|
-
"format": "cjs"
|
23
|
-
},
|
24
|
-
"../common/dist/api/models/BingIntegration.js": {
|
25
|
-
"bytes": 1368,
|
26
|
-
"imports": [],
|
27
|
-
"format": "cjs"
|
28
|
-
},
|
29
|
-
"../common/dist/api/models/BingResult.js": {
|
30
|
-
"bytes": 1533,
|
31
|
-
"imports": [],
|
32
|
-
"format": "cjs"
|
33
|
-
},
|
34
|
-
"../common/dist/api/models/Browser.js": {
|
35
|
-
"bytes": 1569,
|
36
|
-
"imports": [
|
37
|
-
{
|
38
|
-
"path": "../common/dist/api/runtime.js",
|
39
|
-
"kind": "require-call",
|
40
|
-
"original": "../runtime"
|
41
|
-
}
|
42
|
-
],
|
43
|
-
"format": "cjs"
|
44
|
-
},
|
45
|
-
"../common/dist/api/models/DeleteAccount.js": {
|
46
|
-
"bytes": 1276,
|
47
|
-
"imports": [],
|
48
|
-
"format": "cjs"
|
49
|
-
},
|
50
|
-
"../common/dist/api/models/Event.js": {
|
51
|
-
"bytes": 1551,
|
52
|
-
"imports": [
|
53
|
-
{
|
54
|
-
"path": "../common/dist/api/runtime.js",
|
55
|
-
"kind": "require-call",
|
56
|
-
"original": "../runtime"
|
57
|
-
}
|
58
|
-
],
|
59
|
-
"format": "cjs"
|
60
|
-
},
|
61
|
-
"../common/dist/api/models/GetAccount.js": {
|
62
|
-
"bytes": 1538,
|
63
|
-
"imports": [
|
64
|
-
{
|
65
|
-
"path": "../common/dist/api/runtime.js",
|
66
|
-
"kind": "require-call",
|
67
|
-
"original": "../runtime"
|
68
|
-
}
|
69
|
-
],
|
70
|
-
"format": "cjs"
|
71
|
-
},
|
72
|
-
"../common/dist/api/models/GetAccounts.js": {
|
73
|
-
"bytes": 1935,
|
74
|
-
"imports": [
|
75
|
-
{
|
76
|
-
"path": "../common/dist/api/runtime.js",
|
77
|
-
"kind": "require-call",
|
78
|
-
"original": "../runtime"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"path": "../common/dist/api/models/index.js",
|
82
|
-
"kind": "require-call",
|
83
|
-
"original": "./"
|
84
|
-
}
|
85
|
-
],
|
86
|
-
"format": "cjs"
|
87
|
-
},
|
88
|
-
"../common/dist/api/models/GoogleIntegration.js": {
|
89
|
-
"bytes": 1456,
|
90
|
-
"imports": [],
|
91
|
-
"format": "cjs"
|
92
|
-
},
|
93
|
-
"../common/dist/api/models/GoogleQuery.js": {
|
94
|
-
"bytes": 1530,
|
95
|
-
"imports": [],
|
96
|
-
"format": "cjs"
|
97
|
-
},
|
98
|
-
"../common/dist/api/models/GoogleResult.js": {
|
99
|
-
"bytes": 1849,
|
100
|
-
"imports": [
|
101
|
-
{
|
102
|
-
"path": "../common/dist/api/models/index.js",
|
103
|
-
"kind": "require-call",
|
104
|
-
"original": "./"
|
105
|
-
}
|
106
|
-
],
|
107
|
-
"format": "cjs"
|
108
|
-
},
|
109
|
-
"../common/dist/api/models/Language.js": {
|
110
|
-
"bytes": 1586,
|
111
|
-
"imports": [
|
112
|
-
{
|
113
|
-
"path": "../common/dist/api/runtime.js",
|
114
|
-
"kind": "require-call",
|
115
|
-
"original": "../runtime"
|
116
|
-
}
|
117
|
-
],
|
118
|
-
"format": "cjs"
|
119
|
-
},
|
120
|
-
"../common/dist/api/models/Location.js": {
|
121
|
-
"bytes": 1606,
|
122
|
-
"imports": [
|
123
|
-
{
|
124
|
-
"path": "../common/dist/api/runtime.js",
|
125
|
-
"kind": "require-call",
|
126
|
-
"original": "../runtime"
|
127
|
-
}
|
128
|
-
],
|
129
|
-
"format": "cjs"
|
130
|
-
},
|
131
|
-
"../common/dist/api/models/ModelError.js": {
|
132
|
-
"bytes": 2341,
|
133
|
-
"imports": [
|
134
|
-
{
|
135
|
-
"path": "../common/dist/api/runtime.js",
|
136
|
-
"kind": "require-call",
|
137
|
-
"original": "../runtime"
|
138
|
-
}
|
139
|
-
],
|
140
|
-
"format": "cjs"
|
141
|
-
},
|
142
|
-
"../common/dist/api/models/PostAccount.js": {
|
143
|
-
"bytes": 1250,
|
144
|
-
"imports": [],
|
145
|
-
"format": "cjs"
|
146
|
-
},
|
147
|
-
"../common/dist/api/models/PostError.js": {
|
148
|
-
"bytes": 1364,
|
149
|
-
"imports": [
|
150
|
-
{
|
151
|
-
"path": "../common/dist/api/models/index.js",
|
152
|
-
"kind": "require-call",
|
153
|
-
"original": "./"
|
154
|
-
}
|
155
|
-
],
|
156
|
-
"format": "cjs"
|
157
|
-
},
|
158
|
-
"../common/dist/api/models/PostErrorData.js": {
|
159
|
-
"bytes": 1739,
|
160
|
-
"imports": [
|
161
|
-
{
|
162
|
-
"path": "../common/dist/api/runtime.js",
|
163
|
-
"kind": "require-call",
|
164
|
-
"original": "../runtime"
|
165
|
-
}
|
166
|
-
],
|
167
|
-
"format": "cjs"
|
168
|
-
},
|
169
|
-
"../common/dist/api/models/PostSiteTrack.js": {
|
170
|
-
"bytes": 1424,
|
171
|
-
"imports": [
|
172
|
-
{
|
173
|
-
"path": "../common/dist/api/models/index.js",
|
174
|
-
"kind": "require-call",
|
175
|
-
"original": "./"
|
176
|
-
}
|
177
|
-
],
|
178
|
-
"format": "cjs"
|
179
|
-
},
|
180
|
-
"../common/dist/api/models/PostSiteTrackData.js": {
|
181
|
-
"bytes": 2159,
|
182
|
-
"imports": [
|
183
|
-
{
|
184
|
-
"path": "../common/dist/api/runtime.js",
|
185
|
-
"kind": "require-call",
|
186
|
-
"original": "../runtime"
|
187
|
-
}
|
188
|
-
],
|
189
|
-
"format": "cjs"
|
190
|
-
},
|
191
|
-
"../common/dist/api/models/Query.js": {
|
192
|
-
"bytes": 1775,
|
193
|
-
"imports": [
|
194
|
-
{
|
195
|
-
"path": "../common/dist/api/runtime.js",
|
196
|
-
"kind": "require-call",
|
197
|
-
"original": "../runtime"
|
198
|
-
}
|
199
|
-
],
|
200
|
-
"format": "cjs"
|
201
|
-
},
|
202
|
-
"../common/dist/api/models/Referrer.js": {
|
203
|
-
"bytes": 1586,
|
204
|
-
"imports": [
|
205
|
-
{
|
206
|
-
"path": "../common/dist/api/runtime.js",
|
207
|
-
"kind": "require-call",
|
208
|
-
"original": "../runtime"
|
209
|
-
}
|
210
|
-
],
|
211
|
-
"format": "cjs"
|
212
|
-
},
|
213
|
-
"../common/dist/api/models/Resolution.js": {
|
214
|
-
"bytes": 1620,
|
215
|
-
"imports": [
|
216
|
-
{
|
217
|
-
"path": "../common/dist/api/runtime.js",
|
218
|
-
"kind": "require-call",
|
219
|
-
"original": "../runtime"
|
220
|
-
}
|
221
|
-
],
|
222
|
-
"format": "cjs"
|
223
|
-
},
|
224
|
-
"../common/dist/api/models/Rollup.js": {
|
225
|
-
"bytes": 3484,
|
226
|
-
"imports": [
|
227
|
-
{
|
228
|
-
"path": "../common/dist/api/runtime.js",
|
229
|
-
"kind": "require-call",
|
230
|
-
"original": "../runtime"
|
231
|
-
},
|
232
|
-
{
|
233
|
-
"path": "../common/dist/api/models/index.js",
|
234
|
-
"kind": "require-call",
|
235
|
-
"original": "./"
|
236
|
-
}
|
237
|
-
],
|
238
|
-
"format": "cjs"
|
239
|
-
},
|
240
|
-
"../common/dist/api/models/RollupTopBrowsers.js": {
|
241
|
-
"bytes": 1402,
|
242
|
-
"imports": [],
|
243
|
-
"format": "cjs"
|
244
|
-
},
|
245
|
-
"../common/dist/api/models/RollupTopErrors.js": {
|
246
|
-
"bytes": 1364,
|
247
|
-
"imports": [],
|
248
|
-
"format": "cjs"
|
249
|
-
},
|
250
|
-
"../common/dist/api/models/RollupTopEvents.js": {
|
251
|
-
"bytes": 1384,
|
252
|
-
"imports": [],
|
253
|
-
"format": "cjs"
|
254
|
-
},
|
255
|
-
"../common/dist/api/models/RollupTopLanguages.js": {
|
256
|
-
"bytes": 1419,
|
257
|
-
"imports": [],
|
258
|
-
"format": "cjs"
|
259
|
-
},
|
260
|
-
"../common/dist/api/models/RollupTopLocations.js": {
|
261
|
-
"bytes": 1439,
|
262
|
-
"imports": [],
|
263
|
-
"format": "cjs"
|
264
|
-
},
|
265
|
-
"../common/dist/api/models/RollupTopQueries.js": {
|
266
|
-
"bytes": 1393,
|
267
|
-
"imports": [],
|
268
|
-
"format": "cjs"
|
269
|
-
},
|
270
|
-
"../common/dist/api/models/RollupTopReferrers.js": {
|
271
|
-
"bytes": 1419,
|
272
|
-
"imports": [],
|
273
|
-
"format": "cjs"
|
274
|
-
},
|
275
|
-
"../common/dist/api/models/RollupTopResolutions.js": {
|
276
|
-
"bytes": 1453,
|
277
|
-
"imports": [],
|
278
|
-
"format": "cjs"
|
279
|
-
},
|
280
|
-
"../common/dist/api/models/SiteData.js": {
|
281
|
-
"bytes": 3828,
|
282
|
-
"imports": [
|
283
|
-
{
|
284
|
-
"path": "../common/dist/api/runtime.js",
|
285
|
-
"kind": "require-call",
|
286
|
-
"original": "../runtime"
|
287
|
-
},
|
288
|
-
{
|
289
|
-
"path": "../common/dist/api/models/index.js",
|
290
|
-
"kind": "require-call",
|
291
|
-
"original": "./"
|
292
|
-
}
|
293
|
-
],
|
294
|
-
"format": "cjs"
|
295
|
-
},
|
296
|
-
"../common/dist/api/models/SiteDetails.js": {
|
297
|
-
"bytes": 1485,
|
298
|
-
"imports": [
|
299
|
-
{
|
300
|
-
"path": "../common/dist/api/runtime.js",
|
301
|
-
"kind": "require-call",
|
302
|
-
"original": "../runtime"
|
303
|
-
}
|
304
|
-
],
|
305
|
-
"format": "cjs"
|
306
|
-
},
|
307
|
-
"../common/dist/api/models/index.js": {
|
308
|
-
"bytes": 2495,
|
309
|
-
"imports": [
|
310
|
-
{
|
311
|
-
"path": "../common/dist/api/models/ApiKey.js",
|
312
|
-
"kind": "require-call",
|
313
|
-
"original": "./ApiKey"
|
314
|
-
},
|
315
|
-
{
|
316
|
-
"path": "../common/dist/api/models/ArchiveErrors.js",
|
317
|
-
"kind": "require-call",
|
318
|
-
"original": "./ArchiveErrors"
|
319
|
-
},
|
320
|
-
{
|
321
|
-
"path": "../common/dist/api/models/BingIntegration.js",
|
322
|
-
"kind": "require-call",
|
323
|
-
"original": "./BingIntegration"
|
324
|
-
},
|
325
|
-
{
|
326
|
-
"path": "../common/dist/api/models/BingResult.js",
|
327
|
-
"kind": "require-call",
|
328
|
-
"original": "./BingResult"
|
329
|
-
},
|
330
|
-
{
|
331
|
-
"path": "../common/dist/api/models/Browser.js",
|
332
|
-
"kind": "require-call",
|
333
|
-
"original": "./Browser"
|
334
|
-
},
|
335
|
-
{
|
336
|
-
"path": "../common/dist/api/models/DeleteAccount.js",
|
337
|
-
"kind": "require-call",
|
338
|
-
"original": "./DeleteAccount"
|
339
|
-
},
|
340
|
-
{
|
341
|
-
"path": "../common/dist/api/models/Event.js",
|
342
|
-
"kind": "require-call",
|
343
|
-
"original": "./Event"
|
344
|
-
},
|
345
|
-
{
|
346
|
-
"path": "../common/dist/api/models/GetAccount.js",
|
347
|
-
"kind": "require-call",
|
348
|
-
"original": "./GetAccount"
|
349
|
-
},
|
350
|
-
{
|
351
|
-
"path": "../common/dist/api/models/GetAccounts.js",
|
352
|
-
"kind": "require-call",
|
353
|
-
"original": "./GetAccounts"
|
354
|
-
},
|
355
|
-
{
|
356
|
-
"path": "../common/dist/api/models/GoogleIntegration.js",
|
357
|
-
"kind": "require-call",
|
358
|
-
"original": "./GoogleIntegration"
|
359
|
-
},
|
360
|
-
{
|
361
|
-
"path": "../common/dist/api/models/GoogleQuery.js",
|
362
|
-
"kind": "require-call",
|
363
|
-
"original": "./GoogleQuery"
|
364
|
-
},
|
365
|
-
{
|
366
|
-
"path": "../common/dist/api/models/GoogleResult.js",
|
367
|
-
"kind": "require-call",
|
368
|
-
"original": "./GoogleResult"
|
369
|
-
},
|
370
|
-
{
|
371
|
-
"path": "../common/dist/api/models/Language.js",
|
372
|
-
"kind": "require-call",
|
373
|
-
"original": "./Language"
|
374
|
-
},
|
375
|
-
{
|
376
|
-
"path": "../common/dist/api/models/Location.js",
|
377
|
-
"kind": "require-call",
|
378
|
-
"original": "./Location"
|
379
|
-
},
|
380
|
-
{
|
381
|
-
"path": "../common/dist/api/models/ModelError.js",
|
382
|
-
"kind": "require-call",
|
383
|
-
"original": "./ModelError"
|
384
|
-
},
|
385
|
-
{
|
386
|
-
"path": "../common/dist/api/models/PostAccount.js",
|
387
|
-
"kind": "require-call",
|
388
|
-
"original": "./PostAccount"
|
389
|
-
},
|
390
|
-
{
|
391
|
-
"path": "../common/dist/api/models/PostError.js",
|
392
|
-
"kind": "require-call",
|
393
|
-
"original": "./PostError"
|
394
|
-
},
|
395
|
-
{
|
396
|
-
"path": "../common/dist/api/models/PostErrorData.js",
|
397
|
-
"kind": "require-call",
|
398
|
-
"original": "./PostErrorData"
|
399
|
-
},
|
400
|
-
{
|
401
|
-
"path": "../common/dist/api/models/PostSiteTrack.js",
|
402
|
-
"kind": "require-call",
|
403
|
-
"original": "./PostSiteTrack"
|
404
|
-
},
|
405
|
-
{
|
406
|
-
"path": "../common/dist/api/models/PostSiteTrackData.js",
|
407
|
-
"kind": "require-call",
|
408
|
-
"original": "./PostSiteTrackData"
|
409
|
-
},
|
410
|
-
{
|
411
|
-
"path": "../common/dist/api/models/Query.js",
|
412
|
-
"kind": "require-call",
|
413
|
-
"original": "./Query"
|
414
|
-
},
|
415
|
-
{
|
416
|
-
"path": "../common/dist/api/models/Referrer.js",
|
417
|
-
"kind": "require-call",
|
418
|
-
"original": "./Referrer"
|
419
|
-
},
|
420
|
-
{
|
421
|
-
"path": "../common/dist/api/models/Resolution.js",
|
422
|
-
"kind": "require-call",
|
423
|
-
"original": "./Resolution"
|
424
|
-
},
|
425
|
-
{
|
426
|
-
"path": "../common/dist/api/models/Rollup.js",
|
427
|
-
"kind": "require-call",
|
428
|
-
"original": "./Rollup"
|
429
|
-
},
|
430
|
-
{
|
431
|
-
"path": "../common/dist/api/models/RollupTopBrowsers.js",
|
432
|
-
"kind": "require-call",
|
433
|
-
"original": "./RollupTopBrowsers"
|
434
|
-
},
|
435
|
-
{
|
436
|
-
"path": "../common/dist/api/models/RollupTopErrors.js",
|
437
|
-
"kind": "require-call",
|
438
|
-
"original": "./RollupTopErrors"
|
439
|
-
},
|
440
|
-
{
|
441
|
-
"path": "../common/dist/api/models/RollupTopEvents.js",
|
442
|
-
"kind": "require-call",
|
443
|
-
"original": "./RollupTopEvents"
|
444
|
-
},
|
445
|
-
{
|
446
|
-
"path": "../common/dist/api/models/RollupTopLanguages.js",
|
447
|
-
"kind": "require-call",
|
448
|
-
"original": "./RollupTopLanguages"
|
449
|
-
},
|
450
|
-
{
|
451
|
-
"path": "../common/dist/api/models/RollupTopLocations.js",
|
452
|
-
"kind": "require-call",
|
453
|
-
"original": "./RollupTopLocations"
|
454
|
-
},
|
455
|
-
{
|
456
|
-
"path": "../common/dist/api/models/RollupTopQueries.js",
|
457
|
-
"kind": "require-call",
|
458
|
-
"original": "./RollupTopQueries"
|
459
|
-
},
|
460
|
-
{
|
461
|
-
"path": "../common/dist/api/models/RollupTopReferrers.js",
|
462
|
-
"kind": "require-call",
|
463
|
-
"original": "./RollupTopReferrers"
|
464
|
-
},
|
465
|
-
{
|
466
|
-
"path": "../common/dist/api/models/RollupTopResolutions.js",
|
467
|
-
"kind": "require-call",
|
468
|
-
"original": "./RollupTopResolutions"
|
469
|
-
},
|
470
|
-
{
|
471
|
-
"path": "../common/dist/api/models/SiteData.js",
|
472
|
-
"kind": "require-call",
|
473
|
-
"original": "./SiteData"
|
474
|
-
},
|
475
|
-
{
|
476
|
-
"path": "../common/dist/api/models/SiteDetails.js",
|
477
|
-
"kind": "require-call",
|
478
|
-
"original": "./SiteDetails"
|
479
|
-
}
|
480
|
-
],
|
481
|
-
"format": "cjs"
|
482
|
-
},
|
483
|
-
"../common/dist/api/apis/DefaultApi.js": {
|
484
|
-
"bytes": 18347,
|
485
|
-
"imports": [
|
486
|
-
{
|
487
|
-
"path": "../common/dist/api/runtime.js",
|
488
|
-
"kind": "require-call",
|
489
|
-
"original": "../runtime"
|
490
|
-
},
|
491
|
-
{
|
492
|
-
"path": "../common/dist/api/models/index.js",
|
493
|
-
"kind": "require-call",
|
494
|
-
"original": "../models"
|
495
|
-
}
|
496
|
-
],
|
497
|
-
"format": "cjs"
|
498
|
-
},
|
499
|
-
"../common/dist/api/apis/index.js": {
|
500
|
-
"bytes": 847,
|
501
|
-
"imports": [
|
502
|
-
{
|
503
|
-
"path": "../common/dist/api/apis/DefaultApi.js",
|
504
|
-
"kind": "require-call",
|
505
|
-
"original": "./DefaultApi"
|
506
|
-
}
|
507
|
-
],
|
508
|
-
"format": "cjs"
|
509
|
-
},
|
510
|
-
"../common/dist/api/index.js": {
|
511
|
-
"bytes": 930,
|
512
|
-
"imports": [
|
513
|
-
{
|
514
|
-
"path": "../common/dist/api/runtime.js",
|
515
|
-
"kind": "require-call",
|
516
|
-
"original": "./runtime"
|
517
|
-
},
|
518
|
-
{
|
519
|
-
"path": "../common/dist/api/apis/index.js",
|
520
|
-
"kind": "require-call",
|
521
|
-
"original": "./apis"
|
522
|
-
},
|
523
|
-
{
|
524
|
-
"path": "../common/dist/api/models/index.js",
|
525
|
-
"kind": "require-call",
|
526
|
-
"original": "./models"
|
527
|
-
}
|
528
|
-
],
|
529
|
-
"format": "cjs"
|
530
|
-
},
|
531
|
-
"../common/dist/helpers/logsend.js": {
|
532
|
-
"bytes": 1595,
|
533
|
-
"imports": [
|
534
|
-
{
|
535
|
-
"path": "ag-common/dist/common/helpers/hashCode",
|
536
|
-
"kind": "require-call",
|
537
|
-
"external": true
|
538
|
-
},
|
539
|
-
{
|
540
|
-
"path": "ag-common/dist/common/helpers/log",
|
541
|
-
"kind": "require-call",
|
542
|
-
"external": true
|
543
|
-
}
|
544
|
-
],
|
545
|
-
"format": "cjs"
|
546
|
-
},
|
547
|
-
"src/helpers/object.ts": {
|
548
|
-
"bytes": 378,
|
549
|
-
"imports": [],
|
550
|
-
"format": "esm"
|
551
|
-
},
|
552
|
-
"src/helpers/errorTrack.tsx": {
|
553
|
-
"bytes": 3427,
|
554
|
-
"imports": [
|
555
|
-
{
|
556
|
-
"path": "ag-common/dist/common/helpers/log",
|
557
|
-
"kind": "import-statement",
|
558
|
-
"external": true
|
559
|
-
},
|
560
|
-
{
|
561
|
-
"path": "ag-common/dist/ui/helpers/callOpenApi",
|
562
|
-
"kind": "import-statement",
|
563
|
-
"external": true
|
564
|
-
},
|
565
|
-
{
|
566
|
-
"path": "../common/dist/api/index.js",
|
567
|
-
"kind": "import-statement",
|
568
|
-
"original": "common/dist/api"
|
569
|
-
},
|
570
|
-
{
|
571
|
-
"path": "../common/dist/helpers/logsend.js",
|
572
|
-
"kind": "import-statement",
|
573
|
-
"original": "common/dist/helpers/logsend"
|
574
|
-
},
|
575
|
-
{
|
576
|
-
"path": "src/helpers/object.ts",
|
577
|
-
"kind": "import-statement",
|
578
|
-
"original": "./object"
|
579
|
-
}
|
580
|
-
],
|
581
|
-
"format": "esm"
|
582
|
-
},
|
583
|
-
"src/components/AnalyticaConfig/index.tsx": {
|
584
|
-
"bytes": 1611,
|
585
|
-
"imports": [
|
586
|
-
{
|
587
|
-
"path": "react",
|
588
|
-
"kind": "import-statement",
|
589
|
-
"external": true
|
590
|
-
},
|
591
|
-
{
|
592
|
-
"path": "src/helpers/errorTrack.tsx",
|
593
|
-
"kind": "import-statement",
|
594
|
-
"original": "../../helpers/errorTrack"
|
595
|
-
},
|
596
|
-
{
|
597
|
-
"path": "react/jsx-runtime",
|
598
|
-
"kind": "import-statement",
|
599
|
-
"external": true
|
600
|
-
}
|
601
|
-
],
|
602
|
-
"format": "esm"
|
603
|
-
},
|
604
|
-
"../common-ui/dist/components/ErrorBoundary/index.js": {
|
605
|
-
"bytes": 3294,
|
606
|
-
"imports": [
|
607
|
-
{
|
608
|
-
"path": "@emotion/styled",
|
609
|
-
"kind": "require-call",
|
610
|
-
"external": true
|
611
|
-
},
|
612
|
-
{
|
613
|
-
"path": "ag-common/dist/ui/components/Modal",
|
614
|
-
"kind": "require-call",
|
615
|
-
"external": true
|
616
|
-
},
|
617
|
-
{
|
618
|
-
"path": "react",
|
619
|
-
"kind": "require-call",
|
620
|
-
"external": true
|
621
|
-
}
|
622
|
-
],
|
623
|
-
"format": "cjs"
|
624
|
-
},
|
625
|
-
"src/helpers/log.ts": {
|
626
|
-
"bytes": 148,
|
627
|
-
"imports": [],
|
628
|
-
"format": "esm"
|
629
|
-
},
|
630
|
-
"src/components/ErrorBoundary/index.tsx": {
|
631
|
-
"bytes": 2119,
|
632
|
-
"imports": [
|
633
|
-
{
|
634
|
-
"path": "ag-common/dist/common/helpers/log",
|
635
|
-
"kind": "import-statement",
|
636
|
-
"external": true
|
637
|
-
},
|
638
|
-
{
|
639
|
-
"path": "../common-ui/dist/components/ErrorBoundary/index.js",
|
640
|
-
"kind": "import-statement",
|
641
|
-
"original": "common-ui/dist/components/ErrorBoundary"
|
642
|
-
},
|
643
|
-
{
|
644
|
-
"path": "react",
|
645
|
-
"kind": "import-statement",
|
646
|
-
"external": true
|
647
|
-
},
|
648
|
-
{
|
649
|
-
"path": "src/helpers/errorTrack.tsx",
|
650
|
-
"kind": "import-statement",
|
651
|
-
"original": "../../helpers/errorTrack"
|
652
|
-
},
|
653
|
-
{
|
654
|
-
"path": "src/helpers/log.ts",
|
655
|
-
"kind": "import-statement",
|
656
|
-
"original": "../../helpers/log"
|
657
|
-
},
|
658
|
-
{
|
659
|
-
"path": "src/components/AnalyticaConfig/index.tsx",
|
660
|
-
"kind": "import-statement",
|
661
|
-
"original": "../AnalyticaConfig"
|
662
|
-
},
|
663
|
-
{
|
664
|
-
"path": "react/jsx-runtime",
|
665
|
-
"kind": "import-statement",
|
666
|
-
"external": true
|
667
|
-
}
|
668
|
-
],
|
669
|
-
"format": "esm"
|
670
|
-
},
|
671
|
-
"src/components/index.tsx": {
|
672
|
-
"bytes": 68,
|
673
|
-
"imports": [
|
674
|
-
{
|
675
|
-
"path": "src/components/AnalyticaConfig/index.tsx",
|
676
|
-
"kind": "import-statement",
|
677
|
-
"original": "./AnalyticaConfig"
|
678
|
-
},
|
679
|
-
{
|
680
|
-
"path": "src/components/ErrorBoundary/index.tsx",
|
681
|
-
"kind": "import-statement",
|
682
|
-
"original": "./ErrorBoundary"
|
683
|
-
}
|
684
|
-
],
|
685
|
-
"format": "esm"
|
686
|
-
},
|
687
|
-
"src/helpers/trackServer.ts": {
|
688
|
-
"bytes": 2513,
|
689
|
-
"imports": [
|
690
|
-
{
|
691
|
-
"path": "ag-common/dist/common/helpers/log",
|
692
|
-
"kind": "import-statement",
|
693
|
-
"external": true
|
694
|
-
},
|
695
|
-
{
|
696
|
-
"path": "ag-common/dist/ui/helpers/callOpenApi",
|
697
|
-
"kind": "import-statement",
|
698
|
-
"external": true
|
699
|
-
},
|
700
|
-
{
|
701
|
-
"path": "../common/dist/api/index.js",
|
702
|
-
"kind": "import-statement",
|
703
|
-
"original": "common/dist/api"
|
704
|
-
}
|
705
|
-
],
|
706
|
-
"format": "esm"
|
707
|
-
},
|
708
|
-
"src/helpers/track.ts": {
|
709
|
-
"bytes": 935,
|
710
|
-
"imports": [
|
711
|
-
{
|
712
|
-
"path": "ag-common/dist/common/helpers/log",
|
713
|
-
"kind": "import-statement",
|
714
|
-
"external": true
|
715
|
-
},
|
716
|
-
{
|
717
|
-
"path": "react",
|
718
|
-
"kind": "import-statement",
|
719
|
-
"external": true
|
720
|
-
},
|
721
|
-
{
|
722
|
-
"path": "src/components/AnalyticaConfig/index.tsx",
|
723
|
-
"kind": "import-statement",
|
724
|
-
"original": "../components/AnalyticaConfig"
|
725
|
-
},
|
726
|
-
{
|
727
|
-
"path": "src/helpers/log.ts",
|
728
|
-
"kind": "import-statement",
|
729
|
-
"original": "./log"
|
730
|
-
},
|
731
|
-
{
|
732
|
-
"path": "src/helpers/trackServer.ts",
|
733
|
-
"kind": "import-statement",
|
734
|
-
"original": "./trackServer"
|
735
|
-
}
|
736
|
-
],
|
737
|
-
"format": "esm"
|
738
|
-
},
|
739
|
-
"src/helpers/index.tsx": {
|
740
|
-
"bytes": 109,
|
741
|
-
"imports": [
|
742
|
-
{
|
743
|
-
"path": "src/helpers/errorTrack.tsx",
|
744
|
-
"kind": "import-statement",
|
745
|
-
"original": "./errorTrack"
|
746
|
-
},
|
747
|
-
{
|
748
|
-
"path": "src/helpers/log.ts",
|
749
|
-
"kind": "import-statement",
|
750
|
-
"original": "./log"
|
751
|
-
},
|
752
|
-
{
|
753
|
-
"path": "src/helpers/track.ts",
|
754
|
-
"kind": "import-statement",
|
755
|
-
"original": "./track"
|
756
|
-
},
|
757
|
-
{
|
758
|
-
"path": "src/helpers/trackServer.ts",
|
759
|
-
"kind": "import-statement",
|
760
|
-
"original": "./trackServer"
|
761
|
-
}
|
762
|
-
],
|
763
|
-
"format": "esm"
|
764
|
-
},
|
765
|
-
"src/index.tsx": {
|
766
|
-
"bytes": 57,
|
767
|
-
"imports": [
|
768
|
-
{
|
769
|
-
"path": "src/components/index.tsx",
|
770
|
-
"kind": "import-statement",
|
771
|
-
"original": "./components"
|
772
|
-
},
|
773
|
-
{
|
774
|
-
"path": "src/helpers/index.tsx",
|
775
|
-
"kind": "import-statement",
|
776
|
-
"original": "./helpers"
|
777
|
-
}
|
778
|
-
],
|
779
|
-
"format": "esm"
|
780
|
-
}
|
781
|
-
},
|
782
|
-
"outputs": {
|
783
|
-
"dist/index.js": {
|
784
|
-
"imports": [
|
785
|
-
{
|
786
|
-
"path": "url",
|
787
|
-
"kind": "require-call",
|
788
|
-
"external": true
|
789
|
-
},
|
790
|
-
{
|
791
|
-
"path": "ag-common/dist/common/helpers/hashCode",
|
792
|
-
"kind": "require-call",
|
793
|
-
"external": true
|
794
|
-
},
|
795
|
-
{
|
796
|
-
"path": "ag-common/dist/common/helpers/log",
|
797
|
-
"kind": "require-call",
|
798
|
-
"external": true
|
799
|
-
},
|
800
|
-
{
|
801
|
-
"path": "@emotion/styled",
|
802
|
-
"kind": "require-call",
|
803
|
-
"external": true
|
804
|
-
},
|
805
|
-
{
|
806
|
-
"path": "ag-common/dist/ui/components/Modal",
|
807
|
-
"kind": "require-call",
|
808
|
-
"external": true
|
809
|
-
},
|
810
|
-
{
|
811
|
-
"path": "react",
|
812
|
-
"kind": "require-call",
|
813
|
-
"external": true
|
814
|
-
},
|
815
|
-
{
|
816
|
-
"path": "react",
|
817
|
-
"kind": "require-call",
|
818
|
-
"external": true
|
819
|
-
},
|
820
|
-
{
|
821
|
-
"path": "ag-common/dist/common/helpers/log",
|
822
|
-
"kind": "require-call",
|
823
|
-
"external": true
|
824
|
-
},
|
825
|
-
{
|
826
|
-
"path": "ag-common/dist/ui/helpers/callOpenApi",
|
827
|
-
"kind": "require-call",
|
828
|
-
"external": true
|
829
|
-
},
|
830
|
-
{
|
831
|
-
"path": "react/jsx-runtime",
|
832
|
-
"kind": "require-call",
|
833
|
-
"external": true
|
834
|
-
},
|
835
|
-
{
|
836
|
-
"path": "ag-common/dist/common/helpers/log",
|
837
|
-
"kind": "require-call",
|
838
|
-
"external": true
|
839
|
-
},
|
840
|
-
{
|
841
|
-
"path": "react",
|
842
|
-
"kind": "require-call",
|
843
|
-
"external": true
|
844
|
-
},
|
845
|
-
{
|
846
|
-
"path": "react/jsx-runtime",
|
847
|
-
"kind": "require-call",
|
848
|
-
"external": true
|
849
|
-
},
|
850
|
-
{
|
851
|
-
"path": "ag-common/dist/common/helpers/log",
|
852
|
-
"kind": "require-call",
|
853
|
-
"external": true
|
854
|
-
},
|
855
|
-
{
|
856
|
-
"path": "react",
|
857
|
-
"kind": "require-call",
|
858
|
-
"external": true
|
859
|
-
},
|
860
|
-
{
|
861
|
-
"path": "ag-common/dist/common/helpers/log",
|
862
|
-
"kind": "require-call",
|
863
|
-
"external": true
|
864
|
-
},
|
865
|
-
{
|
866
|
-
"path": "ag-common/dist/ui/helpers/callOpenApi",
|
867
|
-
"kind": "require-call",
|
868
|
-
"external": true
|
869
|
-
}
|
870
|
-
],
|
871
|
-
"exports": [],
|
872
|
-
"entryPoint": "src/index.tsx",
|
873
|
-
"inputs": {
|
874
|
-
"../common/dist/api/runtime.js": {
|
875
|
-
"bytesInOutput": 4521
|
876
|
-
},
|
877
|
-
"../common/dist/api/models/ApiKey.js": {
|
878
|
-
"bytesInOutput": 400
|
879
|
-
},
|
880
|
-
"../common/dist/api/models/ArchiveErrors.js": {
|
881
|
-
"bytesInOutput": 394
|
882
|
-
},
|
883
|
-
"../common/dist/api/models/BingIntegration.js": {
|
884
|
-
"bytesInOutput": 430
|
885
|
-
},
|
886
|
-
"../common/dist/api/models/BingResult.js": {
|
887
|
-
"bytesInOutput": 528
|
888
|
-
},
|
889
|
-
"../common/dist/api/models/Browser.js": {
|
890
|
-
"bytesInOutput": 535
|
891
|
-
},
|
892
|
-
"../common/dist/api/models/DeleteAccount.js": {
|
893
|
-
"bytesInOutput": 386
|
894
|
-
},
|
895
|
-
"../common/dist/api/models/Event.js": {
|
896
|
-
"bytesInOutput": 531
|
897
|
-
},
|
898
|
-
"../common/dist/api/models/GetAccount.js": {
|
899
|
-
"bytesInOutput": 517
|
900
|
-
},
|
901
|
-
"../common/dist/api/models/GetAccounts.js": {
|
902
|
-
"bytesInOutput": 790
|
903
|
-
},
|
904
|
-
"../common/dist/api/models/GoogleIntegration.js": {
|
905
|
-
"bytesInOutput": 470
|
906
|
-
},
|
907
|
-
"../common/dist/api/models/GoogleQuery.js": {
|
908
|
-
"bytesInOutput": 518
|
909
|
-
},
|
910
|
-
"../common/dist/api/models/GoogleResult.js": {
|
911
|
-
"bytesInOutput": 709
|
912
|
-
},
|
913
|
-
"../common/dist/api/models/Language.js": {
|
914
|
-
"bytesInOutput": 545
|
915
|
-
},
|
916
|
-
"../common/dist/api/models/Location.js": {
|
917
|
-
"bytesInOutput": 565
|
918
|
-
},
|
919
|
-
"../common/dist/api/models/ModelError.js": {
|
920
|
-
"bytesInOutput": 948
|
921
|
-
},
|
922
|
-
"../common/dist/api/models/PostAccount.js": {
|
923
|
-
"bytesInOutput": 374
|
924
|
-
},
|
925
|
-
"../common/dist/api/models/PostError.js": {
|
926
|
-
"bytesInOutput": 451
|
927
|
-
},
|
928
|
-
"../common/dist/api/models/PostErrorData.js": {
|
929
|
-
"bytesInOutput": 623
|
930
|
-
},
|
931
|
-
"../common/dist/api/models/PostSiteTrack.js": {
|
932
|
-
"bytesInOutput": 483
|
933
|
-
},
|
934
|
-
"../common/dist/api/models/PostSiteTrackData.js": {
|
935
|
-
"bytesInOutput": 941
|
936
|
-
},
|
937
|
-
"../common/dist/api/models/Query.js": {
|
938
|
-
"bytesInOutput": 647
|
939
|
-
},
|
940
|
-
"../common/dist/api/models/Referrer.js": {
|
941
|
-
"bytesInOutput": 545
|
942
|
-
},
|
943
|
-
"../common/dist/api/models/Resolution.js": {
|
944
|
-
"bytesInOutput": 565
|
945
|
-
},
|
946
|
-
"../common/dist/api/models/Rollup.js": {
|
947
|
-
"bytesInOutput": 1908
|
948
|
-
},
|
949
|
-
"../common/dist/api/models/RollupTopBrowsers.js": {
|
950
|
-
"bytesInOutput": 450
|
951
|
-
},
|
952
|
-
"../common/dist/api/models/RollupTopErrors.js": {
|
953
|
-
"bytesInOutput": 426
|
954
|
-
},
|
955
|
-
"../common/dist/api/models/RollupTopEvents.js": {
|
956
|
-
"bytesInOutput": 446
|
957
|
-
},
|
958
|
-
"../common/dist/api/models/RollupTopLanguages.js": {
|
959
|
-
"bytesInOutput": 460
|
960
|
-
},
|
961
|
-
"../common/dist/api/models/RollupTopLocations.js": {
|
962
|
-
"bytesInOutput": 480
|
963
|
-
},
|
964
|
-
"../common/dist/api/models/RollupTopQueries.js": {
|
965
|
-
"bytesInOutput": 448
|
966
|
-
},
|
967
|
-
"../common/dist/api/models/RollupTopReferrers.js": {
|
968
|
-
"bytesInOutput": 468
|
969
|
-
},
|
970
|
-
"../common/dist/api/models/RollupTopResolutions.js": {
|
971
|
-
"bytesInOutput": 488
|
972
|
-
},
|
973
|
-
"../common/dist/api/models/SiteData.js": {
|
974
|
-
"bytesInOutput": 2058
|
975
|
-
},
|
976
|
-
"../common/dist/api/models/SiteDetails.js": {
|
977
|
-
"bytesInOutput": 499
|
978
|
-
},
|
979
|
-
"../common/dist/api/models/index.js": {
|
980
|
-
"bytesInOutput": 845
|
981
|
-
},
|
982
|
-
"../common/dist/api/apis/DefaultApi.js": {
|
983
|
-
"bytesInOutput": 8722
|
984
|
-
},
|
985
|
-
"../common/dist/api/apis/index.js": {
|
986
|
-
"bytesInOutput": 525
|
987
|
-
},
|
988
|
-
"../common/dist/api/index.js": {
|
989
|
-
"bytesInOutput": 538
|
990
|
-
},
|
991
|
-
"../common/dist/helpers/logsend.js": {
|
992
|
-
"bytesInOutput": 913
|
993
|
-
},
|
994
|
-
"../common-ui/dist/components/ErrorBoundary/index.js": {
|
995
|
-
"bytesInOutput": 1694
|
996
|
-
},
|
997
|
-
"src/index.tsx": {
|
998
|
-
"bytesInOutput": 202
|
999
|
-
},
|
1000
|
-
"src/components/AnalyticaConfig/index.tsx": {
|
1001
|
-
"bytesInOutput": 693
|
1002
|
-
},
|
1003
|
-
"src/helpers/errorTrack.tsx": {
|
1004
|
-
"bytesInOutput": 1353
|
1005
|
-
},
|
1006
|
-
"src/helpers/object.ts": {
|
1007
|
-
"bytesInOutput": 121
|
1008
|
-
},
|
1009
|
-
"src/components/index.tsx": {
|
1010
|
-
"bytesInOutput": 0
|
1011
|
-
},
|
1012
|
-
"src/components/ErrorBoundary/index.tsx": {
|
1013
|
-
"bytesInOutput": 843
|
1014
|
-
},
|
1015
|
-
"src/helpers/log.ts": {
|
1016
|
-
"bytesInOutput": 106
|
1017
|
-
},
|
1018
|
-
"src/helpers/index.tsx": {
|
1019
|
-
"bytesInOutput": 0
|
1020
|
-
},
|
1021
|
-
"src/helpers/track.ts": {
|
1022
|
-
"bytesInOutput": 358
|
1023
|
-
},
|
1024
|
-
"src/helpers/trackServer.ts": {
|
1025
|
-
"bytesInOutput": 1235
|
1026
|
-
}
|
1027
|
-
},
|
1028
|
-
"bytes": 44459
|
1029
|
-
},
|
1030
|
-
"dist/helpers/trackServer.js": {
|
1031
|
-
"imports": [
|
1032
|
-
{
|
1033
|
-
"path": "url",
|
1034
|
-
"kind": "require-call",
|
1035
|
-
"external": true
|
1036
|
-
},
|
1037
|
-
{
|
1038
|
-
"path": "ag-common/dist/common/helpers/log",
|
1039
|
-
"kind": "require-call",
|
1040
|
-
"external": true
|
1041
|
-
},
|
1042
|
-
{
|
1043
|
-
"path": "ag-common/dist/ui/helpers/callOpenApi",
|
1044
|
-
"kind": "require-call",
|
1045
|
-
"external": true
|
1046
|
-
}
|
1047
|
-
],
|
1048
|
-
"exports": [],
|
1049
|
-
"entryPoint": "src/helpers/trackServer.ts",
|
1050
|
-
"inputs": {
|
1051
|
-
"../common/dist/api/runtime.js": {
|
1052
|
-
"bytesInOutput": 4521
|
1053
|
-
},
|
1054
|
-
"../common/dist/api/models/ApiKey.js": {
|
1055
|
-
"bytesInOutput": 400
|
1056
|
-
},
|
1057
|
-
"../common/dist/api/models/ArchiveErrors.js": {
|
1058
|
-
"bytesInOutput": 394
|
1059
|
-
},
|
1060
|
-
"../common/dist/api/models/BingIntegration.js": {
|
1061
|
-
"bytesInOutput": 430
|
1062
|
-
},
|
1063
|
-
"../common/dist/api/models/BingResult.js": {
|
1064
|
-
"bytesInOutput": 528
|
1065
|
-
},
|
1066
|
-
"../common/dist/api/models/Browser.js": {
|
1067
|
-
"bytesInOutput": 535
|
1068
|
-
},
|
1069
|
-
"../common/dist/api/models/DeleteAccount.js": {
|
1070
|
-
"bytesInOutput": 386
|
1071
|
-
},
|
1072
|
-
"../common/dist/api/models/Event.js": {
|
1073
|
-
"bytesInOutput": 531
|
1074
|
-
},
|
1075
|
-
"../common/dist/api/models/GetAccount.js": {
|
1076
|
-
"bytesInOutput": 517
|
1077
|
-
},
|
1078
|
-
"../common/dist/api/models/GetAccounts.js": {
|
1079
|
-
"bytesInOutput": 790
|
1080
|
-
},
|
1081
|
-
"../common/dist/api/models/GoogleIntegration.js": {
|
1082
|
-
"bytesInOutput": 470
|
1083
|
-
},
|
1084
|
-
"../common/dist/api/models/GoogleQuery.js": {
|
1085
|
-
"bytesInOutput": 518
|
1086
|
-
},
|
1087
|
-
"../common/dist/api/models/GoogleResult.js": {
|
1088
|
-
"bytesInOutput": 709
|
1089
|
-
},
|
1090
|
-
"../common/dist/api/models/Language.js": {
|
1091
|
-
"bytesInOutput": 545
|
1092
|
-
},
|
1093
|
-
"../common/dist/api/models/Location.js": {
|
1094
|
-
"bytesInOutput": 565
|
1095
|
-
},
|
1096
|
-
"../common/dist/api/models/ModelError.js": {
|
1097
|
-
"bytesInOutput": 948
|
1098
|
-
},
|
1099
|
-
"../common/dist/api/models/PostAccount.js": {
|
1100
|
-
"bytesInOutput": 374
|
1101
|
-
},
|
1102
|
-
"../common/dist/api/models/PostError.js": {
|
1103
|
-
"bytesInOutput": 451
|
1104
|
-
},
|
1105
|
-
"../common/dist/api/models/PostErrorData.js": {
|
1106
|
-
"bytesInOutput": 623
|
1107
|
-
},
|
1108
|
-
"../common/dist/api/models/PostSiteTrack.js": {
|
1109
|
-
"bytesInOutput": 483
|
1110
|
-
},
|
1111
|
-
"../common/dist/api/models/PostSiteTrackData.js": {
|
1112
|
-
"bytesInOutput": 941
|
1113
|
-
},
|
1114
|
-
"../common/dist/api/models/Query.js": {
|
1115
|
-
"bytesInOutput": 647
|
1116
|
-
},
|
1117
|
-
"../common/dist/api/models/Referrer.js": {
|
1118
|
-
"bytesInOutput": 545
|
1119
|
-
},
|
1120
|
-
"../common/dist/api/models/Resolution.js": {
|
1121
|
-
"bytesInOutput": 565
|
1122
|
-
},
|
1123
|
-
"../common/dist/api/models/Rollup.js": {
|
1124
|
-
"bytesInOutput": 1908
|
1125
|
-
},
|
1126
|
-
"../common/dist/api/models/RollupTopBrowsers.js": {
|
1127
|
-
"bytesInOutput": 450
|
1128
|
-
},
|
1129
|
-
"../common/dist/api/models/RollupTopErrors.js": {
|
1130
|
-
"bytesInOutput": 426
|
1131
|
-
},
|
1132
|
-
"../common/dist/api/models/RollupTopEvents.js": {
|
1133
|
-
"bytesInOutput": 446
|
1134
|
-
},
|
1135
|
-
"../common/dist/api/models/RollupTopLanguages.js": {
|
1136
|
-
"bytesInOutput": 460
|
1137
|
-
},
|
1138
|
-
"../common/dist/api/models/RollupTopLocations.js": {
|
1139
|
-
"bytesInOutput": 480
|
1140
|
-
},
|
1141
|
-
"../common/dist/api/models/RollupTopQueries.js": {
|
1142
|
-
"bytesInOutput": 448
|
1143
|
-
},
|
1144
|
-
"../common/dist/api/models/RollupTopReferrers.js": {
|
1145
|
-
"bytesInOutput": 460
|
1146
|
-
},
|
1147
|
-
"../common/dist/api/models/RollupTopResolutions.js": {
|
1148
|
-
"bytesInOutput": 488
|
1149
|
-
},
|
1150
|
-
"../common/dist/api/models/SiteData.js": {
|
1151
|
-
"bytesInOutput": 2058
|
1152
|
-
},
|
1153
|
-
"../common/dist/api/models/SiteDetails.js": {
|
1154
|
-
"bytesInOutput": 499
|
1155
|
-
},
|
1156
|
-
"../common/dist/api/models/index.js": {
|
1157
|
-
"bytesInOutput": 845
|
1158
|
-
},
|
1159
|
-
"../common/dist/api/apis/DefaultApi.js": {
|
1160
|
-
"bytesInOutput": 8722
|
1161
|
-
},
|
1162
|
-
"../common/dist/api/apis/index.js": {
|
1163
|
-
"bytesInOutput": 525
|
1164
|
-
},
|
1165
|
-
"../common/dist/api/index.js": {
|
1166
|
-
"bytesInOutput": 538
|
1167
|
-
},
|
1168
|
-
"src/helpers/trackServer.ts": {
|
1169
|
-
"bytesInOutput": 1301
|
1170
|
-
}
|
1171
|
-
},
|
1172
|
-
"bytes": 38140
|
1173
|
-
}
|
1174
|
-
}
|
1175
|
-
}
|