opentool 0.8.9 → 0.8.10

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,7 +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
+ orchestrator: "orchestrator";
142
142
  }>>;
143
143
  }, z.core.$strict>;
144
144
  type Tool = z.infer<typeof ToolSchema>;
@@ -302,7 +302,7 @@ declare const BuildMetadataSchema: z.ZodObject<{
302
302
  category: z.ZodOptional<z.ZodEnum<{
303
303
  strategy: "strategy";
304
304
  tracker: "tracker";
305
- orchestator: "orchestator";
305
+ orchestrator: "orchestrator";
306
306
  }>>;
307
307
  }, z.core.$strict>>;
308
308
  discovery: z.ZodOptional<z.ZodObject<{
@@ -331,7 +331,7 @@ type CronSpec = {
331
331
  enabled?: boolean;
332
332
  notifyEmail?: boolean;
333
333
  };
334
- type ToolCategory = "strategy" | "tracker" | "orchestator";
334
+ type ToolCategory = "strategy" | "tracker" | "orchestrator";
335
335
  type ToolProfileGET = {
336
336
  description: string;
337
337
  schedule: CronSpec;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opentool",
3
- "version": "0.8.9",
3
+ "version": "0.8.10",
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.9",
13
+ "opentool": "^0.8.10",
14
14
  "zod": "^4.1.11"
15
15
  },
16
16
  "devDependencies": {