Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 415 B view raw
1import { type Generated, type GeneratedAlways } from 'kysely'; 2 3export type ApiKeyServicePg = { 4 'public.api_keys': { 5 id: Generated<string>; 6 org_id: string; 7 key_hash: string; 8 name: string; 9 description: string | null; 10 is_active: Generated<boolean>; 11 created_at: GeneratedAlways<Date>; 12 updated_at: Generated<Date>; 13 last_used_at: Date | null; 14 created_by: string | null; 15 }; 16};