@shipers-dev/multi 0.8.0 → 0.8.1
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.js +338 -338
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -852,7 +852,7 @@ function extractPlanActions(text: string): PlanAction[] {
|
|
|
852
852
|
|
|
853
853
|
const PLAN_ACTION_LIMIT = 10;
|
|
854
854
|
|
|
855
|
-
async function executePlanActions(apiUrl: string, parentTask: any, actions: PlanAction[],
|
|
855
|
+
async function executePlanActions(apiUrl: string, parentTask: any, actions: PlanAction[], ctx: RuntimeCtx): Promise<string> {
|
|
856
856
|
const lines: string[] = [];
|
|
857
857
|
let truncated = false;
|
|
858
858
|
if (actions.length > PLAN_ACTION_LIMIT) {
|