mirror of
https://github.com/supabase/supabase.git
synced 2026-09-06 09:59:03 +08:00
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
5 lines
215 B
TypeScript
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,
|
|
}
|