opena2a-cli 0.5.8 → 0.5.9

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.
@@ -1,16 +1,12 @@
1
1
  /**
2
- * Shared CLI footer for all command output.
3
- * Displays a short attribution line with links.
4
- * Suppressed when --json or --ci flags are active.
2
+ * Shared CLI footer stub.
3
+ * The promotional footer was removed to keep CLI output clean and
4
+ * script-friendly. The export is retained so call sites don't break.
5
5
  */
6
6
  /**
7
- * Print the OpenA2A footer to stdout.
8
- * Call this after command output completes.
9
- *
10
- * @param options.ci - true when running in CI mode (suppresses footer)
11
- * @param options.json - true when JSON output is requested (suppresses footer)
7
+ * No-op -- footer output has been suppressed.
12
8
  */
13
- export declare function printFooter(options?: {
9
+ export declare function printFooter(_options?: {
14
10
  ci?: boolean;
15
11
  json?: boolean;
16
12
  }): void;
@@ -1 +1 @@
1
- {"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../src/util/footer.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,OAAO,CAAC,EAAE;IAAE,EAAE,CAAC,EAAE,OAAO,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,IAAI,CAO5E"}
1
+ {"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../src/util/footer.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,wBAAgB,WAAW,CAAC,QAAQ,CAAC,EAAE;IAAE,EAAE,CAAC,EAAE,OAAO,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,IAAI,CAE7E"}
@@ -1,25 +1,15 @@
1
1
  "use strict";
2
2
  /**
3
- * Shared CLI footer for all command output.
4
- * Displays a short attribution line with links.
5
- * Suppressed when --json or --ci flags are active.
3
+ * Shared CLI footer stub.
4
+ * The promotional footer was removed to keep CLI output clean and
5
+ * script-friendly. The export is retained so call sites don't break.
6
6
  */
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
8
  exports.printFooter = printFooter;
9
- const colors_js_1 = require("./colors.js");
10
9
  /**
11
- * Print the OpenA2A footer to stdout.
12
- * Call this after command output completes.
13
- *
14
- * @param options.ci - true when running in CI mode (suppresses footer)
15
- * @param options.json - true when JSON output is requested (suppresses footer)
10
+ * No-op -- footer output has been suppressed.
16
11
  */
17
- function printFooter(options) {
18
- if (options?.ci || options?.json)
19
- return;
20
- process.stdout.write('\n');
21
- process.stdout.write((0, colors_js_1.cyan)(' OpenA2A -- open-source security for AI agents') + '\n');
22
- process.stdout.write((0, colors_js_1.cyan)(' opena2a.org | github.com/opena2a-org') + '\n');
23
- process.stdout.write('\n');
12
+ function printFooter(_options) {
13
+ // intentionally empty
24
14
  }
25
15
  //# sourceMappingURL=footer.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"footer.js","sourceRoot":"","sources":["../../src/util/footer.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;AAWH,kCAOC;AAhBD,2CAAmC;AAEnC;;;;;;GAMG;AACH,SAAgB,WAAW,CAAC,OAA0C;IACpE,IAAI,OAAO,EAAE,EAAE,IAAI,OAAO,EAAE,IAAI;QAAE,OAAO;IAEzC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC3B,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAA,gBAAI,EAAC,iDAAiD,CAAC,GAAG,IAAI,CAAC,CAAC;IACrF,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAA,gBAAI,EAAC,0CAA0C,CAAC,GAAG,IAAI,CAAC,CAAC;IAC9E,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;AAC7B,CAAC"}
1
+ {"version":3,"file":"footer.js","sourceRoot":"","sources":["../../src/util/footer.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;AAKH,kCAEC;AALD;;GAEG;AACH,SAAgB,WAAW,CAAC,QAA2C;IACrE,sBAAsB;AACxB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opena2a-cli",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "description": "Unified CLI for the OpenA2A security platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",