@enconvo/dxt 0.2.6 → 0.2.7

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/schemas.d.ts CHANGED
@@ -86,7 +86,7 @@ export declare const DxtManifestMcpConfigSchema: z.ZodObject<{
86
86
  }> | undefined;
87
87
  }>;
88
88
  export declare const DxtManifestServerSchema: z.ZodObject<{
89
- type: z.ZodEnum<["python", "node", "binary"]>;
89
+ type: z.ZodEnum<["python", "node", "binary", "http"]>;
90
90
  entry_point: z.ZodString;
91
91
  mcp_config: z.ZodObject<{
92
92
  command: z.ZodString;
@@ -126,7 +126,7 @@ export declare const DxtManifestServerSchema: z.ZodObject<{
126
126
  }> | undefined;
127
127
  }>;
128
128
  }, "strict", z.ZodTypeAny, {
129
- type: "python" | "node" | "binary";
129
+ type: "python" | "node" | "binary" | "http";
130
130
  entry_point: string;
131
131
  mcp_config: {
132
132
  command: string;
@@ -139,7 +139,7 @@ export declare const DxtManifestServerSchema: z.ZodObject<{
139
139
  }> | undefined;
140
140
  };
141
141
  }, {
142
- type: "python" | "node" | "binary";
142
+ type: "python" | "node" | "binary" | "http";
143
143
  entry_point: string;
144
144
  mcp_config: {
145
145
  command: string;
@@ -290,7 +290,7 @@ export declare const DxtManifestSchema: z.ZodObject<{
290
290
  icon: z.ZodOptional<z.ZodString>;
291
291
  screenshots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
292
292
  server: z.ZodObject<{
293
- type: z.ZodEnum<["python", "node", "binary"]>;
293
+ type: z.ZodEnum<["python", "node", "binary", "http"]>;
294
294
  entry_point: z.ZodString;
295
295
  mcp_config: z.ZodObject<{
296
296
  command: z.ZodString;
@@ -330,7 +330,7 @@ export declare const DxtManifestSchema: z.ZodObject<{
330
330
  }> | undefined;
331
331
  }>;
332
332
  }, "strict", z.ZodTypeAny, {
333
- type: "python" | "node" | "binary";
333
+ type: "python" | "node" | "binary" | "http";
334
334
  entry_point: string;
335
335
  mcp_config: {
336
336
  command: string;
@@ -343,7 +343,7 @@ export declare const DxtManifestSchema: z.ZodObject<{
343
343
  }> | undefined;
344
344
  };
345
345
  }, {
346
- type: "python" | "node" | "binary";
346
+ type: "python" | "node" | "binary" | "http";
347
347
  entry_point: string;
348
348
  mcp_config: {
349
349
  command: string;
@@ -471,7 +471,7 @@ export declare const DxtManifestSchema: z.ZodObject<{
471
471
  url?: string | undefined;
472
472
  };
473
473
  server: {
474
- type: "python" | "node" | "binary";
474
+ type: "python" | "node" | "binary" | "http";
475
475
  entry_point: string;
476
476
  mcp_config: {
477
477
  command: string;
@@ -547,7 +547,7 @@ export declare const DxtManifestSchema: z.ZodObject<{
547
547
  url?: string | undefined;
548
548
  };
549
549
  server: {
550
- type: "python" | "node" | "binary";
550
+ type: "python" | "node" | "binary" | "http";
551
551
  entry_point: string;
552
552
  mcp_config: {
553
553
  command: string;
package/dist/schemas.js CHANGED
@@ -20,7 +20,7 @@ export const DxtManifestMcpConfigSchema = McpServerConfigSchema.extend({
20
20
  .optional(),
21
21
  });
22
22
  export const DxtManifestServerSchema = z.strictObject({
23
- type: z.enum(["python", "node", "binary"]),
23
+ type: z.enum(["python", "node", "binary", "http"]),
24
24
  entry_point: z.string(),
25
25
  mcp_config: DxtManifestMcpConfigSchema,
26
26
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@enconvo/dxt",
3
3
  "description": "Tools for building Desktop Extensions",
4
- "version": "0.2.6",
4
+ "version": "0.2.7",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",