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.
- 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-M_QdV0J3.d.ts → validate-CrJVvsV7.d.ts} +3 -3
- package/package.json +1 -1
- package/templates/base/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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" | "
|
|
334
|
+
type ToolCategory = "strategy" | "tracker" | "orchestrator";
|
|
335
335
|
type ToolProfileGET = {
|
|
336
336
|
description: string;
|
|
337
337
|
schedule: CronSpec;
|
package/package.json
CHANGED