@roo-code/types 1.35.0 → 1.36.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
|
@@ -3152,6 +3152,7 @@ var globalSettingsSchema = import_zod11.z.object({
|
|
|
3152
3152
|
allowedCommands: import_zod11.z.array(import_zod11.z.string()).optional(),
|
|
3153
3153
|
deniedCommands: import_zod11.z.array(import_zod11.z.string()).optional(),
|
|
3154
3154
|
commandExecutionTimeout: import_zod11.z.number().optional(),
|
|
3155
|
+
commandTimeoutAllowlist: import_zod11.z.array(import_zod11.z.string()).optional(),
|
|
3155
3156
|
preventCompletionWithOpenTodos: import_zod11.z.boolean().optional(),
|
|
3156
3157
|
allowedMaxRequests: import_zod11.z.number().nullish(),
|
|
3157
3158
|
autoCondenseContext: import_zod11.z.boolean().optional(),
|
|
@@ -3258,6 +3259,7 @@ var EVALS_SETTINGS = {
|
|
|
3258
3259
|
followupAutoApproveTimeoutMs: 0,
|
|
3259
3260
|
allowedCommands: ["*"],
|
|
3260
3261
|
commandExecutionTimeout: 3e4,
|
|
3262
|
+
commandTimeoutAllowlist: [],
|
|
3261
3263
|
preventCompletionWithOpenTodos: false,
|
|
3262
3264
|
browserToolEnabled: false,
|
|
3263
3265
|
browserViewportSize: "900x600",
|