@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.js
CHANGED
|
@@ -4642,6 +4642,7 @@ var appPropertiesSchema = z10.object({
|
|
|
4642
4642
|
});
|
|
4643
4643
|
var taskPropertiesSchema = z10.object({
|
|
4644
4644
|
taskId: z10.string().optional(),
|
|
4645
|
+
parentTaskId: z10.string().optional(),
|
|
4645
4646
|
apiProvider: z10.enum(providerNames).optional(),
|
|
4646
4647
|
modelId: z10.string().optional(),
|
|
4647
4648
|
diffStrategy: z10.string().optional(),
|
|
@@ -5294,7 +5295,8 @@ var extensionInstanceSchema = z15.object({
|
|
|
5294
5295
|
mode: z15.string().optional(),
|
|
5295
5296
|
modes: z15.array(z15.object({ slug: z15.string(), name: z15.string() })).optional(),
|
|
5296
5297
|
providerProfile: z15.string().optional(),
|
|
5297
|
-
providerProfiles: z15.array(z15.object({ name: z15.string(), provider: z15.string().optional() })).optional()
|
|
5298
|
+
providerProfiles: z15.array(z15.object({ name: z15.string(), provider: z15.string().optional() })).optional(),
|
|
5299
|
+
isCloudAgent: z15.boolean().optional()
|
|
5298
5300
|
});
|
|
5299
5301
|
var ExtensionBridgeEventName = ((ExtensionBridgeEventName2) => {
|
|
5300
5302
|
ExtensionBridgeEventName2[ExtensionBridgeEventName2["TaskCreated"] = "taskCreated" /* TaskCreated */] = "TaskCreated";
|