agent-swarm-kit 1.0.95 → 1.0.97

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/build/index.cjs CHANGED
@@ -7625,22 +7625,22 @@ var DocService = /** @class */ (function () {
7625
7625
  Object.entries(fn.parameters.properties).forEach(function (_a, idx) {
7626
7626
  var _b = __read(_a, 2), key = _b[0], _c = _b[1], type = _c.type, description = _c.description, e = _c.enum;
7627
7627
  result.push("");
7628
- result.push("##### ".concat(idx + 1, " ").concat(key));
7628
+ result.push("> `".concat(idx + 1, ". ").concat(key, "`"));
7629
7629
  {
7630
7630
  result.push("");
7631
- result.push(" **Type:** ".concat(type));
7631
+ result.push("*Type:* `".concat(type, "`"));
7632
7632
  }
7633
7633
  {
7634
7634
  result.push("");
7635
- result.push(" **Description:** ".concat(description));
7635
+ result.push("*Description:* `".concat(description, "`"));
7636
7636
  }
7637
7637
  if (e) {
7638
7638
  result.push("");
7639
- result.push(" **Enum:** ".concat(e.join(", ")));
7639
+ result.push("*Enum:* `".concat(e.join(", "), "`"));
7640
7640
  }
7641
7641
  {
7642
7642
  result.push("");
7643
- result.push(" **Required:** [".concat(fn.parameters.required.includes(key) ? "x" : " ", "]"));
7643
+ result.push("*Required:* [".concat(fn.parameters.required.includes(key) ? "x" : " ", "]"));
7644
7644
  }
7645
7645
  });
7646
7646
  }
package/build/index.mjs CHANGED
@@ -7623,22 +7623,22 @@ var DocService = /** @class */ (function () {
7623
7623
  Object.entries(fn.parameters.properties).forEach(function (_a, idx) {
7624
7624
  var _b = __read(_a, 2), key = _b[0], _c = _b[1], type = _c.type, description = _c.description, e = _c.enum;
7625
7625
  result.push("");
7626
- result.push("##### ".concat(idx + 1, " ").concat(key));
7626
+ result.push("> `".concat(idx + 1, ". ").concat(key, "`"));
7627
7627
  {
7628
7628
  result.push("");
7629
- result.push(" **Type:** ".concat(type));
7629
+ result.push("*Type:* `".concat(type, "`"));
7630
7630
  }
7631
7631
  {
7632
7632
  result.push("");
7633
- result.push(" **Description:** ".concat(description));
7633
+ result.push("*Description:* `".concat(description, "`"));
7634
7634
  }
7635
7635
  if (e) {
7636
7636
  result.push("");
7637
- result.push(" **Enum:** ".concat(e.join(", ")));
7637
+ result.push("*Enum:* `".concat(e.join(", "), "`"));
7638
7638
  }
7639
7639
  {
7640
7640
  result.push("");
7641
- result.push(" **Required:** [".concat(fn.parameters.required.includes(key) ? "x" : " ", "]"));
7641
+ result.push("*Required:* [".concat(fn.parameters.required.includes(key) ? "x" : " ", "]"));
7642
7642
  }
7643
7643
  });
7644
7644
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.0.95",
3
+ "version": "1.0.97",
4
4
  "description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",