File tree Expand file tree Collapse file tree
internal-packages/run-store/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ export class PostgresRunStore implements RunStore {
191191
192192 async recordRetryOutcome < I extends Prisma . TaskRunInclude > (
193193 runId : string ,
194- data : { machinePreset : string ; usageDurationMs : number ; costInCents : number } ,
194+ data : { machinePreset ? : string ; usageDurationMs : number ; costInCents : number } ,
195195 args : { include : I } ,
196196 tx ?: PrismaClientOrTransaction
197197 ) : Promise < Prisma . TaskRunGetPayload < { include : I } > > {
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ export interface RunStore {
243243 ) : Promise < Prisma . TaskRunGetPayload < { select : S } > > ;
244244 recordRetryOutcome < I extends Prisma . TaskRunInclude > (
245245 runId : string ,
246- data : { machinePreset : string ; usageDurationMs : number ; costInCents : number } ,
246+ data : { machinePreset ? : string ; usageDurationMs : number ; costInCents : number } ,
247247 args : { include : I } ,
248248 tx ?: PrismaClientOrTransaction
249249 ) : Promise < Prisma . TaskRunGetPayload < { include : I } > > ;
You can’t perform that action at this time.
0 commit comments