@vnejs/contracts.core.scenario 0.1.6 → 0.1.7

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/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.7",
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;