@walkeros/walker.js 0.2.0 → 0.3.0
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/CHANGELOG.md +27 -0
- package/dist/index.d.mts +15 -1
- package/dist/index.d.ts +15 -1
- 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/dist/walker.js +1 -1
- package/package.json +9 -7
- package/src/schemas.ts +109 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @walkeros/walker.js
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [schema #555](https://github.com/elbwalker/walkerOS/issues/555)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @walkeros/web-source-datalayer@0.3.0
|
|
13
|
+
- @walkeros/web-source-browser@0.3.0
|
|
14
|
+
- @walkeros/collector@0.3.0
|
|
15
|
+
- @walkeros/web-core@0.3.0
|
|
16
|
+
- @walkeros/core@0.3.0
|
|
17
|
+
|
|
18
|
+
## 0.2.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Schema builder, event-level mapping policies, config package, fixed jest mocks
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @walkeros/web-source-datalayer@0.2.1
|
|
25
|
+
- @walkeros/web-source-browser@0.2.1
|
|
26
|
+
- @walkeros/collector@0.2.1
|
|
27
|
+
- @walkeros/web-core@0.2.1
|
|
28
|
+
- @walkeros/core@0.2.1
|
|
29
|
+
|
|
3
30
|
## 0.2.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -2,6 +2,7 @@ import { Collector } from '@walkeros/core';
|
|
|
2
2
|
import { SourceBrowser } from '@walkeros/web-source-browser';
|
|
3
3
|
export { getAllEvents, getEvents, getGlobals } from '@walkeros/web-source-browser';
|
|
4
4
|
import { SourceDataLayer } from '@walkeros/web-source-datalayer';
|
|
5
|
+
import { RJSFSchema } from '@rjsf/utils';
|
|
5
6
|
|
|
6
7
|
declare global {
|
|
7
8
|
interface Window {
|
|
@@ -29,6 +30,19 @@ declare namespace index {
|
|
|
29
30
|
export type { index_Config as Config, index_DataLayer as DataLayer, index_Instance as Instance };
|
|
30
31
|
}
|
|
31
32
|
|
|
33
|
+
declare const settings: RJSFSchema;
|
|
34
|
+
declare const browserConfig: RJSFSchema;
|
|
35
|
+
declare const dataLayerConfig: RJSFSchema;
|
|
36
|
+
declare const collectorConfig: RJSFSchema;
|
|
37
|
+
|
|
38
|
+
declare const schemas_browserConfig: typeof browserConfig;
|
|
39
|
+
declare const schemas_collectorConfig: typeof collectorConfig;
|
|
40
|
+
declare const schemas_dataLayerConfig: typeof dataLayerConfig;
|
|
41
|
+
declare const schemas_settings: typeof settings;
|
|
42
|
+
declare namespace schemas {
|
|
43
|
+
export { schemas_browserConfig as browserConfig, schemas_collectorConfig as collectorConfig, schemas_dataLayerConfig as dataLayerConfig, schemas_settings as settings };
|
|
44
|
+
}
|
|
45
|
+
|
|
32
46
|
declare function createWalkerjs(config?: Config): Promise<Instance>;
|
|
33
47
|
|
|
34
|
-
export { index as Walkerjs, createWalkerjs, createWalkerjs as default };
|
|
48
|
+
export { index as Walkerjs, createWalkerjs, createWalkerjs as default, schemas };
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { Collector } from '@walkeros/core';
|
|
|
2
2
|
import { SourceBrowser } from '@walkeros/web-source-browser';
|
|
3
3
|
export { getAllEvents, getEvents, getGlobals } from '@walkeros/web-source-browser';
|
|
4
4
|
import { SourceDataLayer } from '@walkeros/web-source-datalayer';
|
|
5
|
+
import { RJSFSchema } from '@rjsf/utils';
|
|
5
6
|
|
|
6
7
|
declare global {
|
|
7
8
|
interface Window {
|
|
@@ -29,6 +30,19 @@ declare namespace index {
|
|
|
29
30
|
export type { index_Config as Config, index_DataLayer as DataLayer, index_Instance as Instance };
|
|
30
31
|
}
|
|
31
32
|
|
|
33
|
+
declare const settings: RJSFSchema;
|
|
34
|
+
declare const browserConfig: RJSFSchema;
|
|
35
|
+
declare const dataLayerConfig: RJSFSchema;
|
|
36
|
+
declare const collectorConfig: RJSFSchema;
|
|
37
|
+
|
|
38
|
+
declare const schemas_browserConfig: typeof browserConfig;
|
|
39
|
+
declare const schemas_collectorConfig: typeof collectorConfig;
|
|
40
|
+
declare const schemas_dataLayerConfig: typeof dataLayerConfig;
|
|
41
|
+
declare const schemas_settings: typeof settings;
|
|
42
|
+
declare namespace schemas {
|
|
43
|
+
export { schemas_browserConfig as browserConfig, schemas_collectorConfig as collectorConfig, schemas_dataLayerConfig as dataLayerConfig, schemas_settings as settings };
|
|
44
|
+
}
|
|
45
|
+
|
|
32
46
|
declare function createWalkerjs(config?: Config): Promise<Instance>;
|
|
33
47
|
|
|
34
|
-
export { index as Walkerjs, createWalkerjs, createWalkerjs as default };
|
|
48
|
+
export { index as Walkerjs, createWalkerjs, createWalkerjs as default, schemas };
|