@lambdacurry/arbor 0.21.16 → 0.21.17
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/arbor.js +12 -1
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -17486,10 +17486,11 @@ var computerRunReceipt = exports_external.looseObject({
|
|
|
17486
17486
|
"completed",
|
|
17487
17487
|
"failed",
|
|
17488
17488
|
"cancelled",
|
|
17489
|
+
"not-routed",
|
|
17489
17490
|
"provider-lost",
|
|
17490
17491
|
"unknown"
|
|
17491
17492
|
]),
|
|
17492
|
-
mutationRetrySafety: exports_external.enum(["not-needed", "unsafe", "unknown"]),
|
|
17493
|
+
mutationRetrySafety: exports_external.enum(["not-needed", "safe", "unsafe", "unknown"]),
|
|
17493
17494
|
reasonCode: exports_external.string(),
|
|
17494
17495
|
startedAt: exports_external.string(),
|
|
17495
17496
|
endedAt: exports_external.string().nullable()
|
|
@@ -21598,6 +21599,16 @@ function parseErrorDetails(value) {
|
|
|
21598
21599
|
}
|
|
21599
21600
|
if (typeof raw.runId === "string")
|
|
21600
21601
|
details.runId = raw.runId;
|
|
21602
|
+
if (typeof raw.operationId === "string")
|
|
21603
|
+
details.operationId = raw.operationId;
|
|
21604
|
+
if (typeof raw.processId === "string")
|
|
21605
|
+
details.processId = raw.processId;
|
|
21606
|
+
if (raw.commandExecution === "not-routed" || raw.commandExecution === "unknown") {
|
|
21607
|
+
details.commandExecution = raw.commandExecution;
|
|
21608
|
+
}
|
|
21609
|
+
if (raw.mutationRetrySafety === "safe" || raw.mutationRetrySafety === "unsafe" || raw.mutationRetrySafety === "unknown") {
|
|
21610
|
+
details.mutationRetrySafety = raw.mutationRetrySafety;
|
|
21611
|
+
}
|
|
21601
21612
|
if (typeof raw.compatibilityState === "string") {
|
|
21602
21613
|
details.compatibilityState = raw.compatibilityState;
|
|
21603
21614
|
}
|
package/package.json
CHANGED