/** * This file was generated by kysely-codegen. * Please do not edit it manually. */ import type { ColumnType } from "kysely"; export type Generated = T extends ColumnType ? ColumnType : ColumnType; export type Timestamp = ColumnType; export interface Artists { artist_name: string; play_id: number; } export interface AuthSession { key: string; session: string; } export interface AuthState { key: string; state: string; } export interface Plays { cid: string | null; id: Generated; indexed_at: Generated; live: boolean | null; played_time: Timestamp | null; release_name: string | null; rkey: string | null; track_name: string; uri: string | null; user_id: number; } export interface Users { created_at: Generated; did: string; id: Generated; } export interface DB { artists: Artists; auth_session: AuthSession; auth_state: AuthState; plays: Plays; users: Users; }