@gnufoo/canaad 0.5.0 → 0.5.1
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/meta.d.ts +2 -1
- package/meta.js +4 -0
- package/package.json +1 -1
package/meta.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export type CanaadInput = z.infer<typeof inputSchema>;
|
|
|
12
12
|
/** Discriminated union of all action output shapes. */
|
|
13
13
|
export type CanaadOutput = z.infer<typeof outputSchema>;
|
|
14
14
|
|
|
15
|
-
/** Tool metadata: id, name, slug, description, category, execution type, positional args, and
|
|
15
|
+
/** Tool metadata: id, name, slug, description, category, execution type, positional args, schemas, and optional registry links. */
|
|
16
16
|
export declare const meta: {
|
|
17
17
|
id: string;
|
|
18
18
|
name: string;
|
|
@@ -21,6 +21,7 @@ export declare const meta: {
|
|
|
21
21
|
category: string;
|
|
22
22
|
executionType: string;
|
|
23
23
|
positionalArgs: { order: string[]; required: number };
|
|
24
|
+
packages?: { npm?: string; crates?: string };
|
|
24
25
|
inputSchema: typeof inputSchema;
|
|
25
26
|
outputSchema: typeof outputSchema;
|
|
26
27
|
};
|
package/meta.js
CHANGED