@walkeros/web-source-browser 0.3.0 → 0.3.1
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.browser.js +1 -1
- package/dist/index.d.mts +6 -37
- package/dist/index.d.ts +6 -37
- package/dist/index.es5.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as _walkeros_core from '@walkeros/core';
|
|
2
2
|
import { z, Elb, WalkerOS, Collector, Source } from '@walkeros/core';
|
|
3
3
|
import { DestinationWeb, SessionConfig, SessionCallback, Walker } from '@walkeros/web-core';
|
|
4
|
-
import * as zod_to_json_schema from 'zod-to-json-schema';
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Data attribute prefix
|
|
@@ -26,27 +25,11 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
26
25
|
prefix: z.ZodDefault<z.ZodString>;
|
|
27
26
|
scope: z.ZodOptional<z.ZodString>;
|
|
28
27
|
pageview: z.ZodDefault<z.ZodBoolean>;
|
|
29
|
-
session: z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodAny]>>;
|
|
28
|
+
session: z.ZodDefault<z.ZodUnion<readonly [z.ZodBoolean, z.ZodAny]>>;
|
|
30
29
|
elb: z.ZodDefault<z.ZodString>;
|
|
31
30
|
name: z.ZodOptional<z.ZodString>;
|
|
32
|
-
elbLayer: z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodAny]>>;
|
|
33
|
-
},
|
|
34
|
-
elb: string;
|
|
35
|
-
prefix: string;
|
|
36
|
-
pageview: boolean;
|
|
37
|
-
session?: any;
|
|
38
|
-
scope?: string | undefined;
|
|
39
|
-
name?: string | undefined;
|
|
40
|
-
elbLayer?: any;
|
|
41
|
-
}, {
|
|
42
|
-
session?: any;
|
|
43
|
-
elb?: string | undefined;
|
|
44
|
-
prefix?: string | undefined;
|
|
45
|
-
scope?: string | undefined;
|
|
46
|
-
pageview?: boolean | undefined;
|
|
47
|
-
name?: string | undefined;
|
|
48
|
-
elbLayer?: any;
|
|
49
|
-
}>;
|
|
31
|
+
elbLayer: z.ZodDefault<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodAny]>>;
|
|
32
|
+
}, z.core.$strip>;
|
|
50
33
|
type Settings$1 = z.infer<typeof SettingsSchema>;
|
|
51
34
|
|
|
52
35
|
/**
|
|
@@ -55,25 +38,11 @@ type Settings$1 = z.infer<typeof SettingsSchema>;
|
|
|
55
38
|
*/
|
|
56
39
|
declare const TaggerSchema: z.ZodObject<{
|
|
57
40
|
prefix: z.ZodDefault<z.ZodString>;
|
|
58
|
-
},
|
|
59
|
-
prefix: string;
|
|
60
|
-
}, {
|
|
61
|
-
prefix?: string | undefined;
|
|
62
|
-
}>;
|
|
41
|
+
}, z.core.$strip>;
|
|
63
42
|
type TaggerConfig$1 = z.infer<typeof TaggerSchema>;
|
|
64
43
|
|
|
65
|
-
declare const settings:
|
|
66
|
-
|
|
67
|
-
definitions?: {
|
|
68
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
69
|
-
} | undefined;
|
|
70
|
-
};
|
|
71
|
-
declare const tagger: zod_to_json_schema.JsonSchema7Type & {
|
|
72
|
-
$schema?: string | undefined;
|
|
73
|
-
definitions?: {
|
|
74
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
75
|
-
} | undefined;
|
|
76
|
-
};
|
|
44
|
+
declare const settings: _walkeros_core.JSONSchema;
|
|
45
|
+
declare const tagger: _walkeros_core.JSONSchema;
|
|
77
46
|
|
|
78
47
|
declare const index$2_DataAttributePrefix: typeof DataAttributePrefix;
|
|
79
48
|
declare const index$2_JavaScriptVarName: typeof JavaScriptVarName;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as _walkeros_core from '@walkeros/core';
|
|
2
2
|
import { z, Elb, WalkerOS, Collector, Source } from '@walkeros/core';
|
|
3
3
|
import { DestinationWeb, SessionConfig, SessionCallback, Walker } from '@walkeros/web-core';
|
|
4
|
-
import * as zod_to_json_schema from 'zod-to-json-schema';
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Data attribute prefix
|
|
@@ -26,27 +25,11 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
26
25
|
prefix: z.ZodDefault<z.ZodString>;
|
|
27
26
|
scope: z.ZodOptional<z.ZodString>;
|
|
28
27
|
pageview: z.ZodDefault<z.ZodBoolean>;
|
|
29
|
-
session: z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodAny]>>;
|
|
28
|
+
session: z.ZodDefault<z.ZodUnion<readonly [z.ZodBoolean, z.ZodAny]>>;
|
|
30
29
|
elb: z.ZodDefault<z.ZodString>;
|
|
31
30
|
name: z.ZodOptional<z.ZodString>;
|
|
32
|
-
elbLayer: z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodAny]>>;
|
|
33
|
-
},
|
|
34
|
-
elb: string;
|
|
35
|
-
prefix: string;
|
|
36
|
-
pageview: boolean;
|
|
37
|
-
session?: any;
|
|
38
|
-
scope?: string | undefined;
|
|
39
|
-
name?: string | undefined;
|
|
40
|
-
elbLayer?: any;
|
|
41
|
-
}, {
|
|
42
|
-
session?: any;
|
|
43
|
-
elb?: string | undefined;
|
|
44
|
-
prefix?: string | undefined;
|
|
45
|
-
scope?: string | undefined;
|
|
46
|
-
pageview?: boolean | undefined;
|
|
47
|
-
name?: string | undefined;
|
|
48
|
-
elbLayer?: any;
|
|
49
|
-
}>;
|
|
31
|
+
elbLayer: z.ZodDefault<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodAny]>>;
|
|
32
|
+
}, z.core.$strip>;
|
|
50
33
|
type Settings$1 = z.infer<typeof SettingsSchema>;
|
|
51
34
|
|
|
52
35
|
/**
|
|
@@ -55,25 +38,11 @@ type Settings$1 = z.infer<typeof SettingsSchema>;
|
|
|
55
38
|
*/
|
|
56
39
|
declare const TaggerSchema: z.ZodObject<{
|
|
57
40
|
prefix: z.ZodDefault<z.ZodString>;
|
|
58
|
-
},
|
|
59
|
-
prefix: string;
|
|
60
|
-
}, {
|
|
61
|
-
prefix?: string | undefined;
|
|
62
|
-
}>;
|
|
41
|
+
}, z.core.$strip>;
|
|
63
42
|
type TaggerConfig$1 = z.infer<typeof TaggerSchema>;
|
|
64
43
|
|
|
65
|
-
declare const settings:
|
|
66
|
-
|
|
67
|
-
definitions?: {
|
|
68
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
69
|
-
} | undefined;
|
|
70
|
-
};
|
|
71
|
-
declare const tagger: zod_to_json_schema.JsonSchema7Type & {
|
|
72
|
-
$schema?: string | undefined;
|
|
73
|
-
definitions?: {
|
|
74
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
75
|
-
} | undefined;
|
|
76
|
-
};
|
|
44
|
+
declare const settings: _walkeros_core.JSONSchema;
|
|
45
|
+
declare const tagger: _walkeros_core.JSONSchema;
|
|
77
46
|
|
|
78
47
|
declare const index$2_DataAttributePrefix: typeof DataAttributePrefix;
|
|
79
48
|
declare const index$2_JavaScriptVarName: typeof JavaScriptVarName;
|