mirror of
https://github.com/supabase/supabase.git
synced 2026-06-25 12:37:15 +08:00
136 lines
2.8 KiB
TypeScript
136 lines
2.8 KiB
TypeScript
export const CATEGORY_OPTIONS = [
|
|
{
|
|
value: 'Problem',
|
|
label: 'Issues with APIs / client libraries',
|
|
description: "Issues with your project's API and client libraries",
|
|
query: undefined,
|
|
},
|
|
{
|
|
value: 'Database_unresponsive',
|
|
label: 'Database unresponsive',
|
|
description: 'Issues with connecting to your database',
|
|
query: 'Unable to connect',
|
|
},
|
|
{
|
|
value: 'Performance',
|
|
label: 'Performance issues',
|
|
description: 'Reporting of performance issues is only available on the Pro tier',
|
|
query: 'Performance',
|
|
},
|
|
{
|
|
value: 'Sales',
|
|
label: 'Sales enquiry',
|
|
description: 'Questions about pricing, paid plans and Enterprise plans',
|
|
query: undefined,
|
|
},
|
|
{
|
|
value: 'Billing',
|
|
label: 'Billing',
|
|
description: 'Issues with credit card charges | invoices | overcharging',
|
|
query: undefined,
|
|
},
|
|
{
|
|
value: 'Abuse',
|
|
label: 'Abuse report',
|
|
description: 'Report abuse of a Supabase project or Supabase brand',
|
|
query: undefined,
|
|
},
|
|
{
|
|
value: 'Refund',
|
|
label: 'Refund enquiry',
|
|
description: 'Formal enquiry form for requesting refunds',
|
|
query: undefined,
|
|
},
|
|
]
|
|
|
|
export const SEVERITY_OPTIONS = [
|
|
{
|
|
value: 'Low',
|
|
label: 'Low',
|
|
description: 'General guidance',
|
|
},
|
|
{
|
|
value: 'Normal',
|
|
label: 'Normal',
|
|
description: 'System impaired',
|
|
},
|
|
{
|
|
value: 'High',
|
|
label: 'High',
|
|
description: 'Production system impaired',
|
|
},
|
|
{
|
|
value: 'Urgent',
|
|
label: 'Urgent',
|
|
description: 'Production system down',
|
|
},
|
|
{
|
|
value: 'Critical',
|
|
label: 'Critical',
|
|
description: 'Business-critical system down (Unavailable for free projects)',
|
|
},
|
|
]
|
|
|
|
export const SERVICE_OPTIONS = [
|
|
{
|
|
id: 1,
|
|
name: 'Authentication',
|
|
value: 'Authentication',
|
|
disabled: false,
|
|
},
|
|
{
|
|
id: 2,
|
|
name: 'Dashboard',
|
|
value: 'Dashboard',
|
|
disabled: false,
|
|
},
|
|
{
|
|
id: 3,
|
|
name: 'Database',
|
|
value: 'Database',
|
|
disabled: false,
|
|
},
|
|
{
|
|
id: 4,
|
|
name: 'Edge Functions',
|
|
value: 'Edge Functions',
|
|
disabled: false,
|
|
},
|
|
{
|
|
id: 5,
|
|
name: 'Realtime',
|
|
value: 'Realtime',
|
|
disabled: false,
|
|
},
|
|
{
|
|
id: 6,
|
|
name: 'Storage',
|
|
value: 'Storage',
|
|
disabled: false,
|
|
},
|
|
{
|
|
id: 7,
|
|
name: 'Others',
|
|
value: 'Others',
|
|
disabled: false,
|
|
},
|
|
]
|
|
|
|
export const GITHUB_LINKS = [
|
|
{
|
|
name: 'supabase-js',
|
|
description: 'For issues with our Javascript client',
|
|
url: 'https://github.com/supabase/supabase-js/issues',
|
|
},
|
|
{
|
|
name: 'supabase-flutter',
|
|
description: 'For issues with our Flutter integration',
|
|
url: 'https://github.com/supabase-community/supabase-flutter/issues',
|
|
},
|
|
{
|
|
name: 'supabase',
|
|
description: 'For other issues about our API',
|
|
url: 'https://github.com/supabase/supabase/issues',
|
|
},
|
|
]
|