@vnejs/contracts.core.scenario 0.1.1 → 0.1.3
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/const.d.ts +2 -0
- package/dist/const.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/payloads.d.ts +7 -0
- package/dist/payloads.js +1 -0
- package/package.json +1 -1
- package/src/const.ts +1 -0
- package/src/index.ts +1 -0
- package/src/payloads.ts +7 -0
package/dist/const.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare const LINE_KEYWORDS: {
|
|
|
4
4
|
readonly SKIP_IF_POSSIBLE: "skip-if-possible";
|
|
5
5
|
readonly ASYNC: "async";
|
|
6
6
|
readonly EXTEND: "extend";
|
|
7
|
+
readonly AUTONEXT: "autonext";
|
|
7
8
|
};
|
|
8
9
|
export declare const LINE_PREFIXES: {
|
|
9
10
|
readonly MODULE: "$";
|
|
@@ -16,6 +17,7 @@ export declare const CONSTANTS: {
|
|
|
16
17
|
readonly SKIP_IF_POSSIBLE: "skip-if-possible";
|
|
17
18
|
readonly ASYNC: "async";
|
|
18
19
|
readonly EXTEND: "extend";
|
|
20
|
+
readonly AUTONEXT: "autonext";
|
|
19
21
|
};
|
|
20
22
|
readonly LINE_PREFIXES: {
|
|
21
23
|
readonly MODULE: "$";
|
package/dist/const.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { SUBSCRIBE_EVENTS };
|
|
|
15
15
|
export type { SubscribeEvents } from "./events.js";
|
|
16
16
|
export { PARAMS };
|
|
17
17
|
export type { Params } from "./params.js";
|
|
18
|
+
export type { ScenarioExecPayload } from "./payloads.js";
|
|
18
19
|
export type { LineLoadHandlerArg, LineExecHandlerArg } from "./handlers.js";
|
|
19
20
|
declare module "@vnejs/module" {
|
|
20
21
|
interface ModuleGlobalState {
|
package/dist/payloads.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
package/src/const.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { SUBSCRIBE_EVENTS };
|
|
|
19
19
|
export type { SubscribeEvents } from "./events.js";
|
|
20
20
|
export { PARAMS };
|
|
21
21
|
export type { Params } from "./params.js";
|
|
22
|
+
export type { ScenarioExecPayload } from "./payloads.js";
|
|
22
23
|
export type { LineLoadHandlerArg, LineExecHandlerArg } from "./handlers.js";
|
|
23
24
|
|
|
24
25
|
declare module "@vnejs/module" {
|