@avallon-labs/mcp 35.0.0 → 35.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
|
@@ -6583,7 +6583,6 @@ var CreateWorkerBody = zod.object({
|
|
|
6583
6583
|
name: zod.string().min(1),
|
|
6584
6584
|
prompt: zod.string().min(1).optional(),
|
|
6585
6585
|
instruction_template: zod.string().min(1).optional().describe("Deprecated. Use `prompt` instead."),
|
|
6586
|
-
env_vars: zod.record(zod.string(), zod.string()),
|
|
6587
6586
|
mcp_type: zod.union([
|
|
6588
6587
|
zod.enum([
|
|
6589
6588
|
"ventiv",
|
|
@@ -6621,6 +6620,9 @@ var CreateWorkerResponse = zod.object({
|
|
|
6621
6620
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
6622
6621
|
case_determination_context: zod.union([zod.string(), zod.null()]),
|
|
6623
6622
|
tool_ids: zod.array(zod.string()),
|
|
6623
|
+
secret_ids: zod.array(zod.string()).describe(
|
|
6624
|
+
"Secrets attached to the worker. A worker with attached secrets sources its environment exclusively from the secret store."
|
|
6625
|
+
),
|
|
6624
6626
|
model: zod.string(),
|
|
6625
6627
|
fast_mode: zod.boolean()
|
|
6626
6628
|
});
|
|
@@ -6689,6 +6691,9 @@ var GetWorkerResponse = zod.object({
|
|
|
6689
6691
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
6690
6692
|
case_determination_context: zod.union([zod.string(), zod.null()]),
|
|
6691
6693
|
tool_ids: zod.array(zod.string()),
|
|
6694
|
+
secret_ids: zod.array(zod.string()).describe(
|
|
6695
|
+
"Secrets attached to the worker. A worker with attached secrets sources its environment exclusively from the secret store."
|
|
6696
|
+
),
|
|
6692
6697
|
model: zod.string(),
|
|
6693
6698
|
fast_mode: zod.boolean()
|
|
6694
6699
|
});
|
|
@@ -6709,6 +6714,9 @@ var UpdateWorkerBody = zod.object({
|
|
|
6709
6714
|
tools: zod.array(zod.string().uuid()).optional().describe(
|
|
6710
6715
|
"Replace the worker's attached tool set. Omit to leave unchanged; pass [] to clear."
|
|
6711
6716
|
),
|
|
6717
|
+
secrets: zod.array(zod.string().uuid()).optional().describe(
|
|
6718
|
+
"Replace the worker's attached secret set. Omit to leave unchanged; pass [] to detach all."
|
|
6719
|
+
),
|
|
6712
6720
|
case_determination_context: zod.union([zod.string().min(1), zod.null()]).optional().describe(
|
|
6713
6721
|
"Customer-specific context appended to the case-ID determination prompt. Omit to leave unchanged; pass null to clear."
|
|
6714
6722
|
)
|
|
@@ -6738,6 +6746,9 @@ var UpdateWorkerResponse = zod.object({
|
|
|
6738
6746
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
6739
6747
|
case_determination_context: zod.union([zod.string(), zod.null()]),
|
|
6740
6748
|
tool_ids: zod.array(zod.string()),
|
|
6749
|
+
secret_ids: zod.array(zod.string()).describe(
|
|
6750
|
+
"Secrets attached to the worker. A worker with attached secrets sources its environment exclusively from the secret store."
|
|
6751
|
+
),
|
|
6741
6752
|
model: zod.string(),
|
|
6742
6753
|
fast_mode: zod.boolean()
|
|
6743
6754
|
});
|
|
@@ -6806,6 +6817,9 @@ var UpdateWorkerMcpsResponse = zod.object({
|
|
|
6806
6817
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
6807
6818
|
case_determination_context: zod.union([zod.string(), zod.null()]),
|
|
6808
6819
|
tool_ids: zod.array(zod.string()),
|
|
6820
|
+
secret_ids: zod.array(zod.string()).describe(
|
|
6821
|
+
"Secrets attached to the worker. A worker with attached secrets sources its environment exclusively from the secret store."
|
|
6822
|
+
),
|
|
6809
6823
|
model: zod.string(),
|
|
6810
6824
|
fast_mode: zod.boolean()
|
|
6811
6825
|
});
|
|
@@ -8935,4 +8949,4 @@ var transport = new StdioServerTransport();
|
|
|
8935
8949
|
server.connect(transport).then(() => {
|
|
8936
8950
|
console.error("MCP server running on stdio");
|
|
8937
8951
|
}).catch(console.error);
|
|
8938
|
-
//# sourceMappingURL=server-
|
|
8952
|
+
//# sourceMappingURL=server-DR6EWKJY.js.map
|