@infersec/conduit 1.48.3 → 1.50.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.
Files changed (2) hide show
  1. package/dist/cli.js +31 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -19719,6 +19719,37 @@ object({
19719
19719
  password: RawPasswordSchema
19720
19720
  });
19721
19721
 
19722
+ object({
19723
+ description: string$1().optional(),
19724
+ inputSchema: record(string$1(), unknown()).optional(),
19725
+ name: string$1()
19726
+ });
19727
+ const MCPToolCallResultContentSchema = discriminatedUnion("type", [
19728
+ object({
19729
+ data: string$1().optional(),
19730
+ mimeType: string$1().optional(),
19731
+ type: literal("image")
19732
+ }),
19733
+ object({
19734
+ resource: object({
19735
+ mimeType: string$1().optional(),
19736
+ text: string$1().optional(),
19737
+ uri: string$1()
19738
+ })
19739
+ .optional(),
19740
+ text: string$1().optional(),
19741
+ type: literal("resource")
19742
+ }),
19743
+ object({
19744
+ text: string$1(),
19745
+ type: literal("text")
19746
+ })
19747
+ ]);
19748
+ object({
19749
+ content: array(MCPToolCallResultContentSchema),
19750
+ isError: boolean$1().optional()
19751
+ });
19752
+
19722
19753
  const PERMISSIONS = {
19723
19754
  "AI.MCPServers.List": {
19724
19755
  description: "Ability to list all MCP servers in an account."
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@infersec/conduit",
3
3
  "description": "End user conduit agent for connecting local LLMs to the cloud.",
4
- "version": "1.48.3",
4
+ "version": "1.50.0",
5
5
  "bin": {
6
6
  "infersec-conduit": "./dist/cli.js"
7
7
  },