mirror of
https://github.com/supabase/supabase.git
synced 2026-06-20 21:16:00 +08:00
* Update extensions search behaviour * Minor type simplification. * Fix leftover type issue. --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
24 lines
396 B
TypeScript
24 lines
396 B
TypeScript
export const HIDDEN_EXTENSIONS = [
|
|
'adminpack',
|
|
'amcheck',
|
|
'file_fdw',
|
|
'lo',
|
|
'old_snapshot',
|
|
'pageinspect',
|
|
'pg_buffercache',
|
|
'pg_freespacemap',
|
|
'pg_prewarm',
|
|
'pg_surgery',
|
|
'pg_visibility',
|
|
'pgstattuple',
|
|
'supabase_vault',
|
|
'supautils',
|
|
'intagg',
|
|
'xml2',
|
|
'pg_tle',
|
|
]
|
|
|
|
export const SEARCH_TERMS: Record<string, string[]> = {
|
|
vector: ['pgvector', 'pg_vector'],
|
|
}
|