opentool 0.8.16 → 0.8.18
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/cli/index.d.ts +2 -2
- package/dist/cli/index.js +25 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -1
- package/dist/{validate-BsD3SEL4.d.ts → validate-DsvADI66.d.ts} +5 -0
- package/package.json +1 -1
- package/templates/base/package.json +1 -1
|
@@ -357,6 +357,11 @@ type ToolProfile = {
|
|
|
357
357
|
assets?: ToolAsset[];
|
|
358
358
|
connectedApps?: ConnectedApp[];
|
|
359
359
|
policies?: Array<Record<string, unknown>>;
|
|
360
|
+
templateConfig?: {
|
|
361
|
+
version: number | string;
|
|
362
|
+
schema?: Record<string, unknown>;
|
|
363
|
+
defaults?: Record<string, unknown>;
|
|
364
|
+
};
|
|
360
365
|
};
|
|
361
366
|
type GetHandler = (req: Request) => Promise<Response> | Response;
|
|
362
367
|
type PostHandler = (req: Request) => Promise<Response> | Response;
|
package/package.json
CHANGED