Files
supabase/apps/studio/data/actions/keys.ts
Joshen Lim bddd04bbc6 Use new action runs endpoints (#41808)
* Use new action runs endpoints

* Clean up

* Nit

* Unify DiffEditors

* Fix TS

* Fix TS

* Fix merging
2026-01-23 15:29:02 +08:00

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,
}