@orangecheck/me-client / DropCadence
Type Alias: DropCadence
type DropCadence =
| {
day: number;
hour: number;
kind: "weekly";
}
| {
day: number;
hour: number;
kind: "monthly";
}
| {
kind: "manual";
max_open_days: number;
};
Defined in: me-client/src/types.ts:289
A drop schedule's cadence. Weekly/monthly close at a fixed UTC boundary; manual closes when the integrator says (Drop now), with a hard auto-close at max_open_days (≤ MAX_DROP_WINDOW_DAYS).