Files
supabase/apps/studio/data/partners/keys.ts
Alex Hall 99f4b4230a feat: detect integration install state based on partner callbacks (#46488)
Adds support for the new `integration_status` installation
identification method for OAuth marketplace integrations, which will use
the new integration state stored in Marketplace DB and updated via
partner callbacks. Fixes INT-123
2026-06-02 09:46:04 -04:00

5 lines
215 B
TypeScript

export const partnersKeys = {
getIntegrations: (projectId?: string) => ['partners', 'integrations', projectId] as const,
getStripeProjects: (arId: string | undefined) => ['stripe', 'projects', arId] as const,
}