Skip to content

Commit eb20f7b

Browse files
committed
chore: add version property
1 parent f55e792 commit eb20f7b

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

frontend/src/ts/test/test-logic.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,6 +1222,7 @@ function compareCompletedEvents(
12221222
difficulty: ce.difficulty,
12231223
duration: ce.testDuration,
12241224
funboxes: getActiveFunboxNames().join(","),
1225+
version: 1,
12251226
// ce: ce as Record<string, unknown>,
12261227
// ce2: ce2 as Record<string, unknown>,
12271228
},

packages/contracts/src/results.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export const ReportCompletedEventMismatchRequestSchema = z.object({
7575
difficulty: DifficultySchema.optional(),
7676
duration: z.number().max(200).optional(),
7777
funboxes: z.string().max(100).optional(),
78+
version: z.number(),
7879
// ce: z.record(z.unknown()),
7980
// ce2: z.record(z.unknown()),
8081
});

0 commit comments

Comments
 (0)