We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f55e792 commit eb20f7bCopy full SHA for eb20f7b
2 files changed
frontend/src/ts/test/test-logic.ts
@@ -1222,6 +1222,7 @@ function compareCompletedEvents(
1222
difficulty: ce.difficulty,
1223
duration: ce.testDuration,
1224
funboxes: getActiveFunboxNames().join(","),
1225
+ version: 1,
1226
// ce: ce as Record<string, unknown>,
1227
// ce2: ce2 as Record<string, unknown>,
1228
},
packages/contracts/src/results.ts
@@ -75,6 +75,7 @@ export const ReportCompletedEventMismatchRequestSchema = z.object({
75
difficulty: DifficultySchema.optional(),
76
duration: z.number().max(200).optional(),
77
funboxes: z.string().max(100).optional(),
78
+ version: z.number(),
79
// ce: z.record(z.unknown()),
80
// ce2: z.record(z.unknown()),
81
});
0 commit comments