viza 1.9.28 → 1.9.30

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.
@@ -118,13 +118,13 @@ async function dispatchIntent(input, mode = "dispatch") {
118
118
  ...(input.keepLog !== undefined ? { keepLog: input.keepLog } : {}),
119
119
  ...(input.flowGates !== undefined ? { flowGates: input.flowGates } : {}),
120
120
  };
121
- // CLI fail-fast: never dispatch dirty envelope
122
- assertDispatchInputStrict(dispatchInput);
121
+ const fullCommand = process.argv.join(" ");
123
122
  const handle = await dispatcherDispatch(dispatchInput, {
124
123
  auth: {
125
124
  targetEnv: input.targetEnv,
126
125
  allowedTeams: input.allowedTeams,
127
126
  },
127
+ fullCommand,
128
128
  }, mode);
129
129
  return handle;
130
130
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viza",
3
- "version": "1.9.28",
3
+ "version": "1.9.30",
4
4
  "type": "module",
5
5
  "description": "Viza unified command line interface",
6
6
  "bin": {
@@ -34,7 +34,7 @@
34
34
  "release:full": "rm -rf dist && npx npm-check-updates -u && npm install && git add package.json package-lock.json && git commit -m 'chore(deps): auto update dependencies before release' || echo 'No changes' && node versioning.js && npm login && npm publish --tag latest --access public && git push"
35
35
  },
36
36
  "dependencies": {
37
- "@vizamodo/viza-dispatcher": "^1.5.54",
37
+ "@vizamodo/viza-dispatcher": "^1.5.56",
38
38
  "adm-zip": "^0.5.16",
39
39
  "chalk": "^5.6.2",
40
40
  "clipboardy": "^5.3.1",