@indigoai-us/hq-cli 5.103.2 → 5.103.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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [5.103.3] — 2026-08-19
6
+
5
7
  ## [5.103.2] — 2026-08-19
6
8
 
7
9
  ## [5.103.1] — 2026-08-18
@@ -172,10 +172,11 @@ export function registerIntegrationsCommand(program) {
172
172
  // A tool that ran but FAILED (`isError: true`) still has its payload
173
173
  // printed — the error text is the useful part — but the command exits
174
174
  // non-zero so a script or agent can tell failure from success without
175
- // parsing output. The flag is on the raw gateway result, not the
176
- // unwrapped payload.
175
+ // parsing output. The gateway double-wraps the provider result as a
176
+ // text-content string, so `isError` lands on the UNWRAPPED payload, not
177
+ // on the raw envelope; check both levels so either shape is caught.
177
178
  printJson(payload);
178
- if (gatewayResultIsError(message.result)) {
179
+ if (gatewayResultIsError(payload) || gatewayResultIsError(message.result)) {
179
180
  process.exitCode = 1;
180
181
  }
181
182
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigoai-us/hq-cli",
3
- "version": "5.103.2",
3
+ "version": "5.103.3",
4
4
  "description": "HQ by Indigo management CLI — modules and cloud sync",
5
5
  "main": "dist/index.js",
6
6
  "bin": {