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 +5 -5
- package/build/index.mjs +5 -5
- package/package.json +1 -1
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("
|
|
7628
|
+
result.push("> `".concat(idx + 1, ". ").concat(key, "`"));
|
|
7629
7629
|
{
|
|
7630
7630
|
result.push("");
|
|
7631
|
-
result.push("
|
|
7631
|
+
result.push("*Type:* `".concat(type, "`"));
|
|
7632
7632
|
}
|
|
7633
7633
|
{
|
|
7634
7634
|
result.push("");
|
|
7635
|
-
result.push("
|
|
7635
|
+
result.push("*Description:* `".concat(description, "`"));
|
|
7636
7636
|
}
|
|
7637
7637
|
if (e) {
|
|
7638
7638
|
result.push("");
|
|
7639
|
-
result.push("
|
|
7639
|
+
result.push("*Enum:* `".concat(e.join(", "), "`"));
|
|
7640
7640
|
}
|
|
7641
7641
|
{
|
|
7642
7642
|
result.push("");
|
|
7643
|
-
result.push("
|
|
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("
|
|
7626
|
+
result.push("> `".concat(idx + 1, ". ").concat(key, "`"));
|
|
7627
7627
|
{
|
|
7628
7628
|
result.push("");
|
|
7629
|
-
result.push("
|
|
7629
|
+
result.push("*Type:* `".concat(type, "`"));
|
|
7630
7630
|
}
|
|
7631
7631
|
{
|
|
7632
7632
|
result.push("");
|
|
7633
|
-
result.push("
|
|
7633
|
+
result.push("*Description:* `".concat(description, "`"));
|
|
7634
7634
|
}
|
|
7635
7635
|
if (e) {
|
|
7636
7636
|
result.push("");
|
|
7637
|
-
result.push("
|
|
7637
|
+
result.push("*Enum:* `".concat(e.join(", "), "`"));
|
|
7638
7638
|
}
|
|
7639
7639
|
{
|
|
7640
7640
|
result.push("");
|
|
7641
|
-
result.push("
|
|
7641
|
+
result.push("*Required:* [".concat(fn.parameters.required.includes(key) ? "x" : " ", "]"));
|
|
7642
7642
|
}
|
|
7643
7643
|
});
|
|
7644
7644
|
}
|