@roo-code/types 1.33.0 → 1.34.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 +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -1
- package/dist/index.d.ts +23 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3145,6 +3145,7 @@ var globalSettingsSchema = import_zod11.z.object({
|
|
|
3145
3145
|
alwaysAllowUpdateTodoList: import_zod11.z.boolean().optional(),
|
|
3146
3146
|
allowedCommands: import_zod11.z.array(import_zod11.z.string()).optional(),
|
|
3147
3147
|
deniedCommands: import_zod11.z.array(import_zod11.z.string()).optional(),
|
|
3148
|
+
commandExecutionTimeout: import_zod11.z.number().optional(),
|
|
3148
3149
|
allowedMaxRequests: import_zod11.z.number().nullish(),
|
|
3149
3150
|
autoCondenseContext: import_zod11.z.boolean().optional(),
|
|
3150
3151
|
autoCondenseContextPercent: import_zod11.z.number().optional(),
|
|
@@ -3249,6 +3250,7 @@ var EVALS_SETTINGS = {
|
|
|
3249
3250
|
alwaysAllowUpdateTodoList: true,
|
|
3250
3251
|
followupAutoApproveTimeoutMs: 0,
|
|
3251
3252
|
allowedCommands: ["*"],
|
|
3253
|
+
commandExecutionTimeout: 3e4,
|
|
3252
3254
|
browserToolEnabled: false,
|
|
3253
3255
|
browserViewportSize: "900x600",
|
|
3254
3256
|
screenshotQuality: 75,
|