@avallon-labs/mcp 39.0.0 → 39.1.0
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
CHANGED
|
@@ -7027,6 +7027,7 @@ var ListWorkerRunsQueryParams = zod.object({
|
|
|
7027
7027
|
status: zod.enum([
|
|
7028
7028
|
"pending",
|
|
7029
7029
|
"queued",
|
|
7030
|
+
"starting",
|
|
7030
7031
|
"in_progress",
|
|
7031
7032
|
"completed",
|
|
7032
7033
|
"failed",
|
|
@@ -7056,7 +7057,15 @@ var ListWorkerRunsResponse = zod.object({
|
|
|
7056
7057
|
worker_id: zod.string().describe("ID of the worker"),
|
|
7057
7058
|
worker_version: zod.number().min(listWorkerRunsResponseDataItemWorkerVersionMin).max(listWorkerRunsResponseDataItemWorkerVersionMax).describe("Version of the worker at run creation time"),
|
|
7058
7059
|
worker_name: zod.string().describe("Name of the worker"),
|
|
7059
|
-
status: zod.
|
|
7060
|
+
status: zod.enum([
|
|
7061
|
+
"pending",
|
|
7062
|
+
"queued",
|
|
7063
|
+
"starting",
|
|
7064
|
+
"in_progress",
|
|
7065
|
+
"completed",
|
|
7066
|
+
"failed",
|
|
7067
|
+
"canceled"
|
|
7068
|
+
]).describe("Current run status"),
|
|
7060
7069
|
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]).describe(
|
|
7061
7070
|
"Run scope metadata (e.g. claim_id, email_id). Null when the run has no artifacts."
|
|
7062
7071
|
),
|
|
@@ -7097,7 +7106,15 @@ var CreateWorkerRunResponse = zod.object({
|
|
|
7097
7106
|
worker_id: zod.string(),
|
|
7098
7107
|
worker_version: zod.number(),
|
|
7099
7108
|
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]),
|
|
7100
|
-
status: zod.
|
|
7109
|
+
status: zod.enum([
|
|
7110
|
+
"pending",
|
|
7111
|
+
"queued",
|
|
7112
|
+
"starting",
|
|
7113
|
+
"in_progress",
|
|
7114
|
+
"completed",
|
|
7115
|
+
"failed",
|
|
7116
|
+
"canceled"
|
|
7117
|
+
]),
|
|
7101
7118
|
created_at: zod.string().datetime({})
|
|
7102
7119
|
}),
|
|
7103
7120
|
message: zod.string()
|
|
@@ -7144,7 +7161,15 @@ var UpdateWorkerRunScopeResponse = zod.object({
|
|
|
7144
7161
|
worker_id: zod.string().describe("ID of the worker"),
|
|
7145
7162
|
worker_version: zod.number().min(updateWorkerRunScopeResponseDataWorkerVersionMin).max(updateWorkerRunScopeResponseDataWorkerVersionMax).describe("Version of the worker at run creation time"),
|
|
7146
7163
|
worker_name: zod.string().describe("Name of the worker"),
|
|
7147
|
-
status: zod.
|
|
7164
|
+
status: zod.enum([
|
|
7165
|
+
"pending",
|
|
7166
|
+
"queued",
|
|
7167
|
+
"starting",
|
|
7168
|
+
"in_progress",
|
|
7169
|
+
"completed",
|
|
7170
|
+
"failed",
|
|
7171
|
+
"canceled"
|
|
7172
|
+
]).describe("Current run status"),
|
|
7148
7173
|
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]).describe(
|
|
7149
7174
|
"Run scope metadata (e.g. claim_id, email_id). Null when the run has no artifacts."
|
|
7150
7175
|
),
|
|
@@ -7176,7 +7201,15 @@ var CancelWorkerRunResponse = zod.object({
|
|
|
7176
7201
|
worker_id: zod.string().describe("ID of the worker"),
|
|
7177
7202
|
worker_version: zod.number().min(cancelWorkerRunResponseDataWorkerVersionMin).max(cancelWorkerRunResponseDataWorkerVersionMax).describe("Version of the worker at run creation time"),
|
|
7178
7203
|
worker_name: zod.string().describe("Name of the worker"),
|
|
7179
|
-
status: zod.
|
|
7204
|
+
status: zod.enum([
|
|
7205
|
+
"pending",
|
|
7206
|
+
"queued",
|
|
7207
|
+
"starting",
|
|
7208
|
+
"in_progress",
|
|
7209
|
+
"completed",
|
|
7210
|
+
"failed",
|
|
7211
|
+
"canceled"
|
|
7212
|
+
]).describe("Current run status"),
|
|
7180
7213
|
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]).describe(
|
|
7181
7214
|
"Run scope metadata (e.g. claim_id, email_id). Null when the run has no artifacts."
|
|
7182
7215
|
),
|
|
@@ -10446,4 +10479,4 @@ var transport = new StdioServerTransport();
|
|
|
10446
10479
|
server.connect(transport).then(() => {
|
|
10447
10480
|
console.error("MCP server running on stdio");
|
|
10448
10481
|
}).catch(console.error);
|
|
10449
|
-
//# sourceMappingURL=server-
|
|
10482
|
+
//# sourceMappingURL=server-TCB2BGZT.js.map
|