@tryarcanist/cli 0.1.191 → 0.1.192

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3786,7 +3786,12 @@ async function qaCommand(prUrl, options, command) {
3786
3786
  {
3787
3787
  exitCode: err instanceof CliError ? err.exitCode : void 0,
3788
3788
  hint: `Retry with: arcanist sessions qa ${targetPrUrl} --idempotency-key ${idempotencyKey}`,
3789
- requestId: err instanceof CliError ? err.requestId : void 0
3789
+ requestId: err instanceof CliError ? err.requestId : void 0,
3790
+ data: {
3791
+ ...err instanceof CliError && err.data ? err.data : {},
3792
+ sessionId,
3793
+ ...sessionData.sessionUrl ? { sessionUrl: sessionData.sessionUrl } : {}
3794
+ }
3790
3795
  }
3791
3796
  );
3792
3797
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryarcanist/cli",
3
- "version": "0.1.191",
3
+ "version": "0.1.192",
4
4
  "description": "CLI for Arcanist — create and manage coding agent sessions",
5
5
  "type": "module",
6
6
  "bin": {