File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ export type AppProperties = z.infer<typeof appPropertiesSchema>
112112
113113export const taskPropertiesSchema = z . object ( {
114114 taskId : z . string ( ) . optional ( ) ,
115+ parentTaskId : z . string ( ) . optional ( ) ,
115116 apiProvider : z . enum ( providerNames ) . optional ( ) ,
116117 modelId : z . string ( ) . optional ( ) ,
117118 diffStrategy : z . string ( ) . optional ( ) ,
Original file line number Diff line number Diff line change @@ -2756,6 +2756,7 @@ export class ClineProvider
27562756 language,
27572757 mode,
27582758 taskId : task ?. taskId ,
2759+ parentTaskId : task ?. parentTask ?. taskId ,
27592760 apiProvider : apiConfiguration ?. apiProvider ,
27602761 modelId : task ?. api ?. getModel ( ) . id ,
27612762 diffStrategy : task ?. diffStrategy ?. getName ( ) ,
You can’t perform that action at this time.
0 commit comments