@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.
- package/dist/index.js +6 -1
- 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
|
}
|