This commit is contained in:
Frank
2026-02-03 00:17:03 -05:00
parent 3adeed8f97
commit 801e4a8a9d
3 changed files with 9 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>