mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 05:24:19 +08:00
* chore: use data/fetchers and API spec * Remove unused imports --------- Co-authored-by: Thomas Eckl <31189692+ecktoteckto@users.noreply.github.com> Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
8 lines
328 B
TypeScript
8 lines
328 B
TypeScript
export const subscriptionKeys = {
|
|
orgSubscription: (orgSlug: string | undefined) =>
|
|
['organizations', orgSlug, 'subscription'] as const,
|
|
orgPlans: (orgSlug: string | undefined) => ['organizations', orgSlug, 'plans'] as const,
|
|
|
|
addons: (projectRef: string | undefined) => ['projects', projectRef, 'addons'] as const,
|
|
}
|