@voltagent/core 0.1.82 → 0.1.84
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/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3242,9 +3242,9 @@ function getStepsFunc(steps) {
|
|
|
3242
3242
|
if (isStepsFunction(steps)) {
|
|
3243
3243
|
return steps;
|
|
3244
3244
|
}
|
|
3245
|
-
return async () => {
|
|
3245
|
+
return (async () => {
|
|
3246
3246
|
return steps;
|
|
3247
|
-
};
|
|
3247
|
+
});
|
|
3248
3248
|
}
|
|
3249
3249
|
__name(getStepsFunc, "getStepsFunc");
|
|
3250
3250
|
function isStepsFunction(steps) {
|