Midday / apps /worker /src /schemas /rates.ts
Jules
Final deployment with all fixes and verified content
c09f67c
import { z } from "zod";
/**
* Rates job schemas (independent from @midday/jobs)
*/
export const ratesSchedulerSchema = z.object({
// Empty payload - scheduler runs globally
});
export type RatesSchedulerPayload = z.infer<typeof ratesSchedulerSchema>;