mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 17:30:25 -04:00
bddd04bbc6
* Use new action runs endpoints * Clean up * Nit * Unify DiffEditors * Fix TS * Fix TS * Fix merging
8 lines
386 B
TypeScript
8 lines
386 B
TypeScript
export const actionKeys = {
|
|
list: (projectRef: string | undefined) => ['projects', projectRef, 'actions'] as const,
|
|
detail: (projectRef: string | undefined, runId: string | undefined) =>
|
|
['projects', projectRef, 'actions', runId] as const,
|
|
logs: (projectRef: string | undefined, runId: string | undefined) =>
|
|
['projects', projectRef, 'actions', runId, 'logs'] as const,
|
|
}
|