infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/Ratelimiter.ts
2025-08-29 16:18:32 +02:00

19 lines
605 B
TypeScript

// @generated
// This file is automatically generated by Kanel. Do not modify manually.
import type { ColumnType, Insertable, Selectable, Updateable } from "kysely";
/** Represents the table public.ratelimiter */
export default interface RatelimiterTable {
key: ColumnType<string, string, string>;
request_timestamp: ColumnType<Date, Date | string, Date | string>;
request_count: ColumnType<number, number, number>;
}
export type Ratelimiter = Selectable<RatelimiterTable>;
export type NewRatelimiter = Insertable<RatelimiterTable>;
export type RatelimiterUpdate = Updateable<RatelimiterTable>;