@walkeros/web-destination-api 2.2.0-next-1773136823705 → 3.0.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/README.md +1 -1
- package/dist/dev.d.mts +3 -1
- package/dist/dev.d.ts +3 -1
- package/dist/dev.js +1 -1
- package/dist/dev.js.map +1 -1
- package/dist/dev.mjs +1 -1
- package/dist/dev.mjs.map +1 -1
- package/dist/examples/index.d.mts +3 -1
- package/dist/examples/index.d.ts +3 -1
- package/dist/examples/index.js +38 -12
- package/dist/examples/index.mjs +38 -12
- package/dist/walkerOS.json +114 -1
- package/package.json +5 -5
package/README.md
CHANGED
package/dist/dev.d.mts
CHANGED
|
@@ -53,11 +53,13 @@ declare namespace env {
|
|
|
53
53
|
|
|
54
54
|
declare const entityAction: Flow.StepExample;
|
|
55
55
|
declare const pageView: Flow.StepExample;
|
|
56
|
+
declare const customTransform: Flow.StepExample;
|
|
56
57
|
|
|
58
|
+
declare const step_customTransform: typeof customTransform;
|
|
57
59
|
declare const step_entityAction: typeof entityAction;
|
|
58
60
|
declare const step_pageView: typeof pageView;
|
|
59
61
|
declare namespace step {
|
|
60
|
-
export { step_entityAction as entityAction, step_pageView as pageView };
|
|
62
|
+
export { step_customTransform as customTransform, step_entityAction as entityAction, step_pageView as pageView };
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
declare const index_env: typeof env;
|
package/dist/dev.d.ts
CHANGED
|
@@ -53,11 +53,13 @@ declare namespace env {
|
|
|
53
53
|
|
|
54
54
|
declare const entityAction: Flow.StepExample;
|
|
55
55
|
declare const pageView: Flow.StepExample;
|
|
56
|
+
declare const customTransform: Flow.StepExample;
|
|
56
57
|
|
|
58
|
+
declare const step_customTransform: typeof customTransform;
|
|
57
59
|
declare const step_entityAction: typeof entityAction;
|
|
58
60
|
declare const step_pageView: typeof pageView;
|
|
59
61
|
declare namespace step {
|
|
60
|
-
export { step_entityAction as entityAction, step_pageView as pageView };
|
|
62
|
+
export { step_customTransform as customTransform, step_entityAction as entityAction, step_pageView as pageView };
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
declare const index_env: typeof env;
|