@vnejs/contracts.core.scenario 0.1.6 → 0.1.8

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.
@@ -26,9 +26,5 @@ export declare const SCENARIO_COMMANDS: {
26
26
  };
27
27
  };
28
28
  };
29
- readonly blocks: {
30
- /** `% option …` — no discrete actions; remainder is freeform payload */
31
- readonly option: {};
32
- };
33
29
  };
34
30
  export type ScenarioCommands = typeof SCENARIO_COMMANDS;
package/dist/commands.js CHANGED
@@ -6,8 +6,4 @@ export const SCENARIO_COMMANDS = {
6
6
  actions: EXEC_ACTIONS,
7
7
  },
8
8
  },
9
- blocks: {
10
- /** `% option …` — no discrete actions; remainder is freeform payload */
11
- option: {},
12
- },
13
9
  };
package/dist/const.d.ts CHANGED
@@ -1,11 +1,8 @@
1
1
  export declare const OTHER_MODULE: "other";
2
2
  export declare const LINE_KEYWORDS: {
3
- readonly GLOBAL: "global";
4
3
  readonly SKIP_IF_POSSIBLE: "skip-if-possible";
5
4
  readonly ASYNC: "async";
6
- readonly EXTEND: "extend";
7
5
  readonly AUTONEXT: "autonext";
8
- readonly DANGEROUS: "dangerous";
9
6
  };
10
7
  export declare const LINE_PREFIXES: {
11
8
  readonly MODULE: "$";
@@ -22,12 +19,9 @@ export declare const LOGS_ACTIONS: {
22
19
  export declare const CONSTANTS: {
23
20
  readonly OTHER_MODULE: "other";
24
21
  readonly LINE_KEYWORDS: {
25
- readonly GLOBAL: "global";
26
22
  readonly SKIP_IF_POSSIBLE: "skip-if-possible";
27
23
  readonly ASYNC: "async";
28
- readonly EXTEND: "extend";
29
24
  readonly AUTONEXT: "autonext";
30
- readonly DANGEROUS: "dangerous";
31
25
  };
32
26
  readonly LINE_PREFIXES: {
33
27
  readonly MODULE: "$";
package/dist/const.js CHANGED
@@ -1,11 +1,8 @@
1
1
  export const OTHER_MODULE = "other";
2
2
  export const LINE_KEYWORDS = {
3
- GLOBAL: "global",
4
3
  SKIP_IF_POSSIBLE: "skip-if-possible",
5
4
  ASYNC: "async",
6
- EXTEND: "extend",
7
5
  AUTONEXT: "autonext",
8
- DANGEROUS: "dangerous",
9
6
  };
10
7
  export const LINE_PREFIXES = {
11
8
  MODULE: "$",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/contracts.core.scenario",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "Contracts for @vnejs/plugins.core.scenario",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/commands.ts CHANGED
@@ -27,10 +27,6 @@ export const SCENARIO_COMMANDS = {
27
27
  actions: EXEC_ACTIONS,
28
28
  },
29
29
  },
30
- blocks: {
31
- /** `% option …` — no discrete actions; remainder is freeform payload */
32
- option: {},
33
- },
34
30
  } as const satisfies ScenarioCommandsManifest;
35
31
 
36
32
  export type ScenarioCommands = typeof SCENARIO_COMMANDS;
package/src/const.ts CHANGED
@@ -1,12 +1,9 @@
1
1
  export const OTHER_MODULE = "other" as const;
2
2
 
3
3
  export const LINE_KEYWORDS = {
4
- GLOBAL: "global",
5
4
  SKIP_IF_POSSIBLE: "skip-if-possible",
6
5
  ASYNC: "async",
7
- EXTEND: "extend",
8
6
  AUTONEXT: "autonext",
9
- DANGEROUS: "dangerous",
10
7
  } as const;
11
8
 
12
9
  export const LINE_PREFIXES = {