From 6bc0509eef265c9501e438b3911876e0a11abceb Mon Sep 17 00:00:00 2001 From: Arpit Gupta Date: Thu, 7 May 2026 11:35:45 +0530 Subject: [PATCH] chore(tasks): drop youtube_tokens from generated types MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Companion to recoupable/database#22 — once the table is dropped the next `pnpm update-types` yields this same diff. tasks doesn't read from the table; this is purely a generated-types refresh. Co-Authored-By: Claude Opus 4.7 (1M context) --- types/database.types.ts | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/types/database.types.ts b/types/database.types.ts index 339fdb2..fd9f64b 100644 --- a/types/database.types.ts +++ b/types/database.types.ts @@ -3467,44 +3467,6 @@ export type Database = { }; Relationships: []; }; - youtube_tokens: { - Row: { - access_token: string; - artist_account_id: string; - created_at: string; - expires_at: string; - id: string; - refresh_token: string | null; - updated_at: string; - }; - Insert: { - access_token: string; - artist_account_id: string; - created_at?: string; - expires_at: string; - id?: string; - refresh_token?: string | null; - updated_at?: string; - }; - Update: { - access_token?: string; - artist_account_id?: string; - created_at?: string; - expires_at?: string; - id?: string; - refresh_token?: string | null; - updated_at?: string; - }; - Relationships: [ - { - foreignKeyName: "youtube_tokens_artist_account_id_fkey"; - columns: ["artist_account_id"]; - isOneToOne: true; - referencedRelation: "accounts"; - referencedColumns: ["id"]; - }, - ]; - }; }; Views: { [_ in never]: never;