analytica.click 0.0.540 → 0.0.541

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.
@@ -0,0 +1,89 @@
1
+ import { z } from 'zod';
2
+ export declare const IdentifyInputSchema: z.ZodObject<{
3
+ url: z.ZodString;
4
+ }, z.core.$strip>;
5
+ export type IIdentifyInputSchema = z.infer<typeof IdentifyInputSchema>;
6
+ export declare const IdentifyResponseSchema: z.ZodObject<{
7
+ url: z.ZodString;
8
+ }, z.core.$strip>;
9
+ export type IIdentifyResponseSchema = z.infer<typeof IdentifyResponseSchema>;
10
+ export declare const PostEventDataSchema: z.ZodObject<{
11
+ eventName: z.ZodString;
12
+ pageReferrer: z.ZodOptional<z.ZodString>;
13
+ pageTitle: z.ZodOptional<z.ZodString>;
14
+ browserResolution: z.ZodOptional<z.ZodString>;
15
+ browserLanguage: z.ZodOptional<z.ZodString>;
16
+ browserFingerprint: z.ZodOptional<z.ZodString>;
17
+ pageLocation: z.ZodString;
18
+ browser: z.ZodOptional<z.ZodString>;
19
+ }, z.core.$strip>;
20
+ export declare const PostEventSchema: z.ZodObject<{
21
+ key: z.ZodString;
22
+ data: z.ZodObject<{
23
+ eventName: z.ZodString;
24
+ pageReferrer: z.ZodOptional<z.ZodString>;
25
+ pageTitle: z.ZodOptional<z.ZodString>;
26
+ browserResolution: z.ZodOptional<z.ZodString>;
27
+ browserLanguage: z.ZodOptional<z.ZodString>;
28
+ browserFingerprint: z.ZodOptional<z.ZodString>;
29
+ pageLocation: z.ZodString;
30
+ browser: z.ZodOptional<z.ZodString>;
31
+ }, z.core.$strip>;
32
+ }, z.core.$strip>;
33
+ export declare const PostSiteTrackDataSchema: z.ZodObject<{
34
+ pageReferrer: z.ZodOptional<z.ZodString>;
35
+ pageTitle: z.ZodOptional<z.ZodString>;
36
+ browserResolution: z.ZodOptional<z.ZodString>;
37
+ browserLanguage: z.ZodOptional<z.ZodString>;
38
+ browserFingerprint: z.ZodOptional<z.ZodString>;
39
+ pageLocation: z.ZodString;
40
+ browser: z.ZodOptional<z.ZodString>;
41
+ }, z.core.$strip>;
42
+ export declare const PostSiteTrackSchema: z.ZodObject<{
43
+ key: z.ZodString;
44
+ data: z.ZodObject<{
45
+ pageReferrer: z.ZodOptional<z.ZodString>;
46
+ pageTitle: z.ZodOptional<z.ZodString>;
47
+ browserResolution: z.ZodOptional<z.ZodString>;
48
+ browserLanguage: z.ZodOptional<z.ZodString>;
49
+ browserFingerprint: z.ZodOptional<z.ZodString>;
50
+ pageLocation: z.ZodString;
51
+ browser: z.ZodOptional<z.ZodString>;
52
+ }, z.core.$strip>;
53
+ }, z.core.$strip>;
54
+ export declare const PostErrorDataSchema: z.ZodObject<{
55
+ message: z.ZodString;
56
+ name: z.ZodOptional<z.ZodString>;
57
+ stack: z.ZodOptional<z.ZodString>;
58
+ href: z.ZodString;
59
+ filename: z.ZodOptional<z.ZodString>;
60
+ }, z.core.$strip>;
61
+ export declare const PostErrorSchema: z.ZodObject<{
62
+ data: z.ZodObject<{
63
+ message: z.ZodString;
64
+ name: z.ZodOptional<z.ZodString>;
65
+ stack: z.ZodOptional<z.ZodString>;
66
+ href: z.ZodString;
67
+ filename: z.ZodOptional<z.ZodString>;
68
+ }, z.core.$strip>;
69
+ key: z.ZodString;
70
+ }, z.core.$strip>;
71
+ export declare const PostMetricDataSchema: z.ZodObject<{
72
+ type: z.ZodString;
73
+ value: z.ZodNumber;
74
+ }, z.core.$strip>;
75
+ export declare const PostMetricSchema: z.ZodObject<{
76
+ key: z.ZodString;
77
+ data: z.ZodObject<{
78
+ type: z.ZodString;
79
+ value: z.ZodNumber;
80
+ }, z.core.$strip>;
81
+ }, z.core.$strip>;
82
+ export type PostEventData = z.infer<typeof PostEventDataSchema>;
83
+ export type PostEvent = z.infer<typeof PostEventSchema>;
84
+ export type PostSiteTrackData = z.infer<typeof PostSiteTrackDataSchema>;
85
+ export type PostSiteTrack = z.infer<typeof PostSiteTrackSchema>;
86
+ export type PostErrorData = z.infer<typeof PostErrorDataSchema>;
87
+ export type PostError = z.infer<typeof PostErrorSchema>;
88
+ export type PostMetricData = z.infer<typeof PostMetricDataSchema>;
89
+ export type PostMetric = z.infer<typeof PostMetricSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica.click",
3
- "version": "0.0.540",
3
+ "version": "0.0.541",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",