@roo-code/types 1.71.0 → 1.73.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 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +60 -27
- package/dist/index.d.ts +60 -27
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -417,6 +417,7 @@ var toolNames = [
|
|
|
417
417
|
"fetch_instructions",
|
|
418
418
|
"codebase_search",
|
|
419
419
|
"update_todo_list",
|
|
420
|
+
"run_slash_command",
|
|
420
421
|
"generate_image"
|
|
421
422
|
];
|
|
422
423
|
var toolNamesSchema = import_zod2.z.enum(toolNames);
|
|
@@ -4344,14 +4345,16 @@ var experimentIds = [
|
|
|
4344
4345
|
"powerSteering",
|
|
4345
4346
|
"multiFileApplyDiff",
|
|
4346
4347
|
"preventFocusDisruption",
|
|
4347
|
-
"imageGeneration"
|
|
4348
|
+
"imageGeneration",
|
|
4349
|
+
"runSlashCommand"
|
|
4348
4350
|
];
|
|
4349
4351
|
var experimentIdsSchema = import_zod9.z.enum(experimentIds);
|
|
4350
4352
|
var experimentsSchema = import_zod9.z.object({
|
|
4351
4353
|
powerSteering: import_zod9.z.boolean().optional(),
|
|
4352
4354
|
multiFileApplyDiff: import_zod9.z.boolean().optional(),
|
|
4353
4355
|
preventFocusDisruption: import_zod9.z.boolean().optional(),
|
|
4354
|
-
imageGeneration: import_zod9.z.boolean().optional()
|
|
4356
|
+
imageGeneration: import_zod9.z.boolean().optional(),
|
|
4357
|
+
runSlashCommand: import_zod9.z.boolean().optional()
|
|
4355
4358
|
});
|
|
4356
4359
|
|
|
4357
4360
|
// src/telemetry.ts
|