@lambdacurry/arbor 0.21.15 → 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 +19 -2
- 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()
|
|
@@ -18219,7 +18220,11 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18219
18220
|
url: exports_external.string(),
|
|
18220
18221
|
replayed: exports_external.boolean()
|
|
18221
18222
|
}),
|
|
18222
|
-
app_list: exports_external.
|
|
18223
|
+
app_list: exports_external.looseObject({
|
|
18224
|
+
apps: exports_external.array(app2),
|
|
18225
|
+
total: exports_external.number().int().min(0),
|
|
18226
|
+
nextCursor: exports_external.string().optional()
|
|
18227
|
+
}),
|
|
18223
18228
|
app_get: exports_external.looseObject({
|
|
18224
18229
|
app: app2,
|
|
18225
18230
|
deployments: exports_external.array(jsonObject),
|
|
@@ -21110,6 +21115,7 @@ var ACTION_DEFINITIONS = [
|
|
|
21110
21115
|
title: "List visible Apps",
|
|
21111
21116
|
description: "List Apps available to you: every App in your Spaces plus active listed public Apps across the organization. Lifecycle and last activation health are separate fields; unlisted public and archived Apps appear only to actors authorized for their owning Space.",
|
|
21112
21117
|
inputSchema: {
|
|
21118
|
+
...PAGINATION_INPUT,
|
|
21113
21119
|
includeArchived: exports_external.boolean().optional().describe("include archived Apps you are authorized to inspect")
|
|
21114
21120
|
},
|
|
21115
21121
|
surfaces: ["cli"],
|
|
@@ -21121,6 +21127,7 @@ var ACTION_DEFINITIONS = [
|
|
|
21121
21127
|
title: "List visible Apps",
|
|
21122
21128
|
description: "List Apps visible to you, including authorized archived Apps when requested. It cannot modify App state, deployment state, access, or durable SQLite.",
|
|
21123
21129
|
inputSchema: {
|
|
21130
|
+
...PAGINATION_INPUT,
|
|
21124
21131
|
includeArchived: exports_external.boolean().optional().describe("include archived Apps you are authorized to inspect")
|
|
21125
21132
|
},
|
|
21126
21133
|
surfaces: ["computer-mcp"],
|
|
@@ -21592,6 +21599,16 @@ function parseErrorDetails(value) {
|
|
|
21592
21599
|
}
|
|
21593
21600
|
if (typeof raw.runId === "string")
|
|
21594
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
|
+
}
|
|
21595
21612
|
if (typeof raw.compatibilityState === "string") {
|
|
21596
21613
|
details.compatibilityState = raw.compatibilityState;
|
|
21597
21614
|
}
|
package/package.json
CHANGED