@walkeros/web-destination-api 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/examples/index.d.mts +7 -1
- package/dist/examples/index.d.ts +7 -1
- package/dist/examples/index.js +12554 -5138
- package/dist/examples/index.mjs +12554 -5138
- package/dist/index.browser.js +1 -1
- package/dist/index.d.mts +17 -29
- package/dist/index.d.ts +17 -29
- 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 +2 -2
|
@@ -10,11 +10,17 @@ type Rule = Mapping$1.Rule<Mapping>;
|
|
|
10
10
|
|
|
11
11
|
declare const init: Env | undefined;
|
|
12
12
|
declare const push: Env;
|
|
13
|
+
/**
|
|
14
|
+
* Simulation tracking paths
|
|
15
|
+
* Specifies which function calls to track during simulation
|
|
16
|
+
*/
|
|
17
|
+
declare const simulation: string[];
|
|
13
18
|
|
|
14
19
|
declare const env_init: typeof init;
|
|
15
20
|
declare const env_push: typeof push;
|
|
21
|
+
declare const env_simulation: typeof simulation;
|
|
16
22
|
declare namespace env {
|
|
17
|
-
export { env_init as init, env_push as push };
|
|
23
|
+
export { env_init as init, env_push as push, env_simulation as simulation };
|
|
18
24
|
}
|
|
19
25
|
|
|
20
26
|
declare function entity_action$1(): string;
|
package/dist/examples/index.d.ts
CHANGED
|
@@ -10,11 +10,17 @@ type Rule = Mapping$1.Rule<Mapping>;
|
|
|
10
10
|
|
|
11
11
|
declare const init: Env | undefined;
|
|
12
12
|
declare const push: Env;
|
|
13
|
+
/**
|
|
14
|
+
* Simulation tracking paths
|
|
15
|
+
* Specifies which function calls to track during simulation
|
|
16
|
+
*/
|
|
17
|
+
declare const simulation: string[];
|
|
13
18
|
|
|
14
19
|
declare const env_init: typeof init;
|
|
15
20
|
declare const env_push: typeof push;
|
|
21
|
+
declare const env_simulation: typeof simulation;
|
|
16
22
|
declare namespace env {
|
|
17
|
-
export { env_init as init, env_push as push };
|
|
23
|
+
export { env_init as init, env_push as push, env_simulation as simulation };
|
|
18
24
|
}
|
|
19
25
|
|
|
20
26
|
declare function entity_action$1(): string;
|