Merge branch 'dev' into sqlite2

This commit is contained in:
Dax Raad 2026-02-03 15:51:09 -05:00
commit fcc903489b
5 changed files with 123 additions and 3 deletions

View file

@ -21,6 +21,8 @@ export namespace ZenData {
const RateLimitSchema = z.object({
period: z.enum(["day", "rolling"]),
value: z.number().int(),
checkHeader: z.string().optional(),
fallbackValue: z.number().int().optional(),
})
export type Format = z.infer<typeof FormatSchema>
export type Trial = z.infer<typeof TrialSchema>