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.
- package/README.md +1 -1
- package/dist/cli/index.d.ts +2 -2
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/{validate-3e5UvzfQ.d.ts → validate-M_QdV0J3.d.ts} +3 -1
- package/package.json +1 -1
- package/templates/base/package.json +1 -1
|
@@ -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