agent-swarm-kit 1.0.77 → 1.0.78
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 +156 -125
- package/build/index.mjs +156 -125
- package/package.json +1 -1
- package/types.d.ts +10 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -69,6 +69,11 @@ interface ILogger {
|
|
|
69
69
|
* @param {...any[]} args - The debug message or messages to log.
|
|
70
70
|
*/
|
|
71
71
|
debug(...args: any[]): void;
|
|
72
|
+
/**
|
|
73
|
+
* Logs a info message.
|
|
74
|
+
* @param {...any[]} args - The debug message or messages to log.
|
|
75
|
+
*/
|
|
76
|
+
info(...args: any[]): void;
|
|
72
77
|
}
|
|
73
78
|
|
|
74
79
|
/**
|
|
@@ -1476,6 +1481,11 @@ declare class LoggerService implements ILogger {
|
|
|
1476
1481
|
* @param {...any} args - The debug messages to log.
|
|
1477
1482
|
*/
|
|
1478
1483
|
debug: (...args: any[]) => void;
|
|
1484
|
+
/**
|
|
1485
|
+
* Logs info messages using the current logger.
|
|
1486
|
+
* @param {...any} args - The info messages to log.
|
|
1487
|
+
*/
|
|
1488
|
+
info: (...args: any[]) => void;
|
|
1479
1489
|
/**
|
|
1480
1490
|
* Sets a new logger.
|
|
1481
1491
|
* @param {ILogger} logger - The new logger to set.
|