From ea39994fb30179b556df5b0ced2275fa4ee42804 Mon Sep 17 00:00:00 2001 From: Arpit Gupta Date: Thu, 7 May 2026 11:35:26 +0530 Subject: [PATCH] chore(api): 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. The api revenue MCP tool reads tokens from Composio now, so nothing depends on this type. 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 a3c4b7876..18c518fb0 100644 --- a/types/database.types.ts +++ b/types/database.types.ts @@ -3843,44 +3843,6 @@ export type Database = { }, ]; }; - 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;