viza 1.9.30 → 1.9.31

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,7 +118,11 @@ 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
- const fullCommand = process.argv.join(" ");
121
+ const argv = process.argv.slice(1);
122
+ const first = argv[0]?.includes("/")
123
+ ? argv[0].split("/").pop()
124
+ : argv[0];
125
+ const fullCommand = [first, ...argv.slice(1)].join(" ");
122
126
  const handle = await dispatcherDispatch(dispatchInput, {
123
127
  auth: {
124
128
  targetEnv: input.targetEnv,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viza",
3
- "version": "1.9.30",
3
+ "version": "1.9.31",
4
4
  "type": "module",
5
5
  "description": "Viza unified command line interface",
6
6
  "bin": {