@lambdacurry/arbor 0.21.34 → 0.21.35
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 +9 -0
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -14328,6 +14328,7 @@ var ERROR_REASONS = new Set([
|
|
|
14328
14328
|
"resource.not_found",
|
|
14329
14329
|
"conflict.state",
|
|
14330
14330
|
"conflict.computer_recipe",
|
|
14331
|
+
"conflict.catalog",
|
|
14331
14332
|
"limit.exceeded",
|
|
14332
14333
|
"provider.timeout",
|
|
14333
14334
|
"provider.failure",
|
|
@@ -17903,6 +17904,7 @@ var paged = (key, item) => exports_external.looseObject({
|
|
|
17903
17904
|
var MCP_OUTPUT_SCHEMAS = {
|
|
17904
17905
|
server_info: exports_external.looseObject({
|
|
17905
17906
|
serverVersion: exports_external.string(),
|
|
17907
|
+
catalogRevision: exports_external.string(),
|
|
17906
17908
|
deployment: exports_external.looseObject({ id: exports_external.string(), sourceRevision: exports_external.string().nullable(), deployedAt: timestamp }).nullable()
|
|
17907
17909
|
}),
|
|
17908
17910
|
recall: exports_external.object({ result: exports_external.array(recallHit) }),
|
|
@@ -21980,6 +21982,13 @@ function parseErrorDetails(value) {
|
|
|
21980
21982
|
}
|
|
21981
21983
|
if (typeof raw.suggestedAction === "string")
|
|
21982
21984
|
details.suggestedAction = raw.suggestedAction;
|
|
21985
|
+
if (typeof raw.catalogRevision === "string")
|
|
21986
|
+
details.catalogRevision = raw.catalogRevision;
|
|
21987
|
+
if (typeof raw.clientCatalogRevision === "string") {
|
|
21988
|
+
details.clientCatalogRevision = raw.clientCatalogRevision;
|
|
21989
|
+
}
|
|
21990
|
+
if (typeof raw.catalogNextStep === "string")
|
|
21991
|
+
details.catalogNextStep = raw.catalogNextStep;
|
|
21983
21992
|
return details;
|
|
21984
21993
|
}
|
|
21985
21994
|
function detailsForError(err) {
|
package/package.json
CHANGED