@roo-code/types 1.81.0 → 1.83.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 +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +129 -0
- package/dist/index.d.ts +129 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4935,6 +4935,7 @@ var appPropertiesSchema = import_zod10.z.object({
|
|
|
4935
4935
|
});
|
|
4936
4936
|
var taskPropertiesSchema = import_zod10.z.object({
|
|
4937
4937
|
taskId: import_zod10.z.string().optional(),
|
|
4938
|
+
parentTaskId: import_zod10.z.string().optional(),
|
|
4938
4939
|
apiProvider: import_zod10.z.enum(providerNames).optional(),
|
|
4939
4940
|
modelId: import_zod10.z.string().optional(),
|
|
4940
4941
|
diffStrategy: import_zod10.z.string().optional(),
|
|
@@ -5587,7 +5588,8 @@ var extensionInstanceSchema = import_zod15.z.object({
|
|
|
5587
5588
|
mode: import_zod15.z.string().optional(),
|
|
5588
5589
|
modes: import_zod15.z.array(import_zod15.z.object({ slug: import_zod15.z.string(), name: import_zod15.z.string() })).optional(),
|
|
5589
5590
|
providerProfile: import_zod15.z.string().optional(),
|
|
5590
|
-
providerProfiles: import_zod15.z.array(import_zod15.z.object({ name: import_zod15.z.string(), provider: import_zod15.z.string().optional() })).optional()
|
|
5591
|
+
providerProfiles: import_zod15.z.array(import_zod15.z.object({ name: import_zod15.z.string(), provider: import_zod15.z.string().optional() })).optional(),
|
|
5592
|
+
isCloudAgent: import_zod15.z.boolean().optional()
|
|
5591
5593
|
});
|
|
5592
5594
|
var ExtensionBridgeEventName = ((ExtensionBridgeEventName2) => {
|
|
5593
5595
|
ExtensionBridgeEventName2[ExtensionBridgeEventName2["TaskCreated"] = "taskCreated" /* TaskCreated */] = "TaskCreated";
|