@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.
Files changed (3) hide show
  1. package/meta.d.ts +2 -1
  2. package/meta.js +4 -0
  3. 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 schemas. */
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
@@ -52,6 +52,10 @@ export const meta = {
52
52
  category: 'crypto',
53
53
  executionType: 'hybrid',
54
54
  positionalArgs: { order: ['action', 'input'], required: 1 },
55
+ packages: {
56
+ npm: '@gnufoo/canaad',
57
+ crates: 'canaad-core',
58
+ },
55
59
  inputSchema,
56
60
  outputSchema,
57
61
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gnufoo/canaad",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "type": "module",
5
5
  "types": "canaad_wasm.d.ts",
6
6
  "exports": {