react-agentic 0.0.4 → 0.0.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.
|
@@ -3980,10 +3980,10 @@ ${node.content}
|
|
|
3980
3980
|
* Output:
|
|
3981
3981
|
* **Runtime Call**: `functionName`
|
|
3982
3982
|
*
|
|
3983
|
-
* | Argument |
|
|
3984
|
-
*
|
|
3985
|
-
* |
|
|
3986
|
-
* |
|
|
3983
|
+
* | Argument | Source |
|
|
3984
|
+
* |----------|--------|
|
|
3985
|
+
* | projectId | CTX.projectId |
|
|
3986
|
+
* | shouldForce | CTX.flags.dryRun OR CTX.flags.force |
|
|
3987
3987
|
*
|
|
3988
3988
|
* **Output Variable**: RESULT
|
|
3989
3989
|
*/
|
|
@@ -3993,8 +3993,8 @@ ${node.content}
|
|
|
3993
3993
|
lines.push("");
|
|
3994
3994
|
const argEntries = Object.entries(node.args);
|
|
3995
3995
|
if (argEntries.length > 0) {
|
|
3996
|
-
lines.push("| Argument |
|
|
3997
|
-
lines.push("
|
|
3996
|
+
lines.push("| Argument | Source |");
|
|
3997
|
+
lines.push("|----------|--------|");
|
|
3998
3998
|
for (const [name, value] of argEntries) {
|
|
3999
3999
|
const formattedValue = this.formatArgValue(value);
|
|
4000
4000
|
const escapedValue = formattedValue.replace(/\|/g, "\\|");
|
|
@@ -8115,4 +8115,4 @@ export {
|
|
|
8115
8115
|
getSourceCode,
|
|
8116
8116
|
formatTranspileError
|
|
8117
8117
|
};
|
|
8118
|
-
//# sourceMappingURL=chunk-
|
|
8118
|
+
//# sourceMappingURL=chunk-D2A3DFND.js.map
|