mirror of
https://github.com/supabase/supabase.git
synced 2026-09-22 13:37:53 +08:00
737b8595f2
## Problem platform, v1 and v2 have been already completely migrated and introduced some changes. Some types have been renamed, some outputs and inputs updated. ## Solution - Update the API types - Fix the TS errors ## Update Taking this over to unblock #50134, which needs the new scoped token permission ids from the regenerated types. - Merged `master`. - Regenerated `api-v2.d.ts` from the production spec. The previous files came from a local API that exposed a webhook events endpoint production doesn't have yet. Production has since added standardized 400 error responses on the v2 organization endpoints. `api-v1.d.ts` and `platform.d.ts` already matched production. - Fixed `verify-production-types`. It formatted the regenerated files in a temp directory outside the repository, so Prettier fell back to its defaults and the comparison could never match the committed files. It now passes the repository config explicitly. `pnpm api:verify-types` passes on this branch. - Verified locally: `pnpm typecheck`, `pnpm api:verify-types`, Studio unit tests. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Preserved descriptions when saving, sharing, moving, or unsharing notebooks, reports, SQL snippets, and saved queries. * Improved handling of empty or null values across notebook descriptions, billing usage, pooler settings, and infrastructure fields. * Improved read-replica connection handling, including read-only connection strings. * Updated storage configuration and capability handling to match current settings. * **API and Compatibility** * Updated organization, project, storage, OAuth, billing, and infrastructure data handling to match current API responses. * OAuth app creation and updates now require scopes. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Alaister Young <10985857+alaister@users.noreply.github.com>
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import { components } from 'api-types'
|
|
|
|
import { AUTH_JWT_SECRET, POSTGRES_PORT } from './constants'
|
|
import { assertSelfHosted } from './util'
|
|
import { PROJECT_DB_HOST, PROJECT_ENDPOINT, PROJECT_ENDPOINT_PROTOCOL } from '@/lib/constants/api'
|
|
|
|
type ProjectAppConfig = components['schemas']['ProjectSettingsResponse_Output']['app_config'] & {
|
|
protocol?: string
|
|
}
|
|
|
|
export type ProjectSettings = components['schemas']['ProjectSettingsResponse_Output'] & {
|
|
app_config?: ProjectAppConfig
|
|
}
|
|
|
|
/**
|
|
* Gets self-hosted project settings
|
|
*
|
|
* _Only call this from server-side self-hosted code._
|
|
*/
|
|
export function getProjectSettings() {
|
|
assertSelfHosted()
|
|
|
|
const response = {
|
|
app_config: {
|
|
db_schema: 'public',
|
|
endpoint: PROJECT_ENDPOINT,
|
|
storage_endpoint: PROJECT_ENDPOINT,
|
|
// manually added to force the frontend to use the correct URL
|
|
protocol: PROJECT_ENDPOINT_PROTOCOL,
|
|
},
|
|
cloud_provider: 'AWS',
|
|
db_dns_name: '-',
|
|
db_host: PROJECT_DB_HOST,
|
|
db_ip_addr_config: 'legacy' as const,
|
|
db_name: 'postgres',
|
|
db_port: POSTGRES_PORT,
|
|
db_user: 'postgres',
|
|
inserted_at: '2021-08-02T06:40:40.646Z',
|
|
jwt_secret: AUTH_JWT_SECRET,
|
|
name: process.env.DEFAULT_PROJECT_NAME || 'Default Project',
|
|
ref: 'default',
|
|
region: 'local',
|
|
service_api_keys: [
|
|
{
|
|
api_key: process.env.SUPABASE_ANON_KEY ?? '',
|
|
name: 'anon key',
|
|
tags: 'anon',
|
|
},
|
|
{
|
|
api_key: process.env.SUPABASE_SERVICE_KEY ?? '',
|
|
name: 'service_role key',
|
|
tags: 'service_role',
|
|
},
|
|
],
|
|
ssl_enforced: false,
|
|
status: 'ACTIVE_HEALTHY',
|
|
} satisfies ProjectSettings
|
|
|
|
return response
|
|
}
|