Files
supabase/apps/studio/data/content-api/keys.ts
Charis d122f289df feat(api gateway logs): add error code explanation (#36315)
Add the ability to look up error code explanation in API Gateway logs.
Also a bunch of GraphQL-related utilities and generated types for
calling the Content API.
2025-06-24 13:18:12 -04:00

5 lines
171 B
TypeScript

export const contentApiKeys = {
errorCodes: ({ code, service }: { code: string; service?: string }) =>
['content-api', 'error-codes', { code, service }] as const,
}