@roo-code/types 1.49.0 → 1.50.0
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.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +26 -1
- package/dist/index.d.ts +26 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1512,6 +1512,7 @@ var TaskCommandName = /* @__PURE__ */ ((TaskCommandName2) => {
|
|
|
1512
1512
|
TaskCommandName2["StartNewTask"] = "StartNewTask";
|
|
1513
1513
|
TaskCommandName2["CancelTask"] = "CancelTask";
|
|
1514
1514
|
TaskCommandName2["CloseTask"] = "CloseTask";
|
|
1515
|
+
TaskCommandName2["ResumeTask"] = "ResumeTask";
|
|
1515
1516
|
return TaskCommandName2;
|
|
1516
1517
|
})(TaskCommandName || {});
|
|
1517
1518
|
var taskCommandSchema = import_zod14.z.discriminatedUnion("commandName", [
|
|
@@ -1531,6 +1532,10 @@ var taskCommandSchema = import_zod14.z.discriminatedUnion("commandName", [
|
|
|
1531
1532
|
import_zod14.z.object({
|
|
1532
1533
|
commandName: import_zod14.z.literal("CloseTask" /* CloseTask */),
|
|
1533
1534
|
data: import_zod14.z.string()
|
|
1535
|
+
}),
|
|
1536
|
+
import_zod14.z.object({
|
|
1537
|
+
commandName: import_zod14.z.literal("ResumeTask" /* ResumeTask */),
|
|
1538
|
+
data: import_zod14.z.string()
|
|
1534
1539
|
})
|
|
1535
1540
|
]);
|
|
1536
1541
|
var ipcMessageSchema = import_zod14.z.discriminatedUnion("type", [
|