opentool 0.8.8 → 0.8.9

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.
@@ -138,6 +138,7 @@ declare const ToolSchema: z.ZodObject<{
138
138
  category: z.ZodOptional<z.ZodEnum<{
139
139
  strategy: "strategy";
140
140
  tracker: "tracker";
141
+ orchestator: "orchestator";
141
142
  }>>;
142
143
  }, z.core.$strict>;
143
144
  type Tool = z.infer<typeof ToolSchema>;
@@ -301,6 +302,7 @@ declare const BuildMetadataSchema: z.ZodObject<{
301
302
  category: z.ZodOptional<z.ZodEnum<{
302
303
  strategy: "strategy";
303
304
  tracker: "tracker";
305
+ orchestator: "orchestator";
304
306
  }>>;
305
307
  }, z.core.$strict>>;
306
308
  discovery: z.ZodOptional<z.ZodObject<{
@@ -329,7 +331,7 @@ type CronSpec = {
329
331
  enabled?: boolean;
330
332
  notifyEmail?: boolean;
331
333
  };
332
- type ToolCategory = "strategy" | "tracker";
334
+ type ToolCategory = "strategy" | "tracker" | "orchestator";
333
335
  type ToolProfileGET = {
334
336
  description: string;
335
337
  schedule: CronSpec;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opentool",
3
- "version": "0.8.8",
3
+ "version": "0.8.9",
4
4
  "description": "OpenTool framework for building serverless MCP tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -10,7 +10,7 @@
10
10
  "validate": "opentool validate"
11
11
  },
12
12
  "dependencies": {
13
- "opentool": "^0.8.8",
13
+ "opentool": "^0.8.9",
14
14
  "zod": "^4.1.11"
15
15
  },
16
16
  "devDependencies": {