@bankr/cli 0.2.5 → 0.2.6

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.
@@ -701,22 +701,6 @@ function printServiceFormatted(svc) {
701
701
  }
702
702
  }
703
703
  }
704
- // ── Example ──
705
- if (inputSchema && isJsonSchema(inputSchema) && inputSchema.properties) {
706
- console.log("");
707
- const props = Object.entries(inputSchema.properties);
708
- if (isGet) {
709
- const qs = props.map(([k, p]) => `${k}=<${p.type}>`).join("&");
710
- console.log(` ${chalk.dim("Example")} ${chalk.dim("GET")} ${url}?${qs}`);
711
- }
712
- else {
713
- const bodyObj = {};
714
- for (const [k, p] of props)
715
- bodyObj[k] = `<${p.type}>`;
716
- console.log(` ${chalk.dim("Example")} ${chalk.dim("POST")} ${url}`);
717
- console.log(` ${chalk.dim(JSON.stringify(bodyObj))}`);
718
- }
719
- }
720
704
  // ── Tags ──
721
705
  if (svc.tags?.length) {
722
706
  console.log("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bankr/cli",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Official CLI for the Bankr AI agent platform",
5
5
  "type": "module",
6
6
  "bin": {