| 1234567891011121314151617181920212223242526272829 |
- import { createClient } from '@supabase/supabase-js'
- import { getOrRefreshTemporaryApiKey } from '@/data/api-keys/temp-api-keys-utils'
- /**
- * Creates a Briven client bound to a specific project. It uses temporary API key.
- */
- export async function createProjectBrivenClient(projectRef: string, clientEndpoint: string) {
- try {
- const { apiKey } = await getOrRefreshTemporaryApiKey(projectRef)
- return createClient(clientEndpoint, apiKey, {
- auth: {
- persistSession: false,
- autoRefreshToken: false,
- detectSessionInUrl: false,
- storage: {
- getItem: (_key) => {
- return null
- },
- setItem: (_key, _value) => {},
- removeItem: (_key) => {},
- },
- },
- })
- } catch (error) {
- throw error
- }
- }
|