Files
supabase/packages/shared-data/index.ts
Joshen Lim a0cec24f49 Remove references to fly (#48648)
## Context

As per PR title - should not have any visual nor functional change 

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **Changes**
- Standardized infrastructure, region, and database configuration around
AWS-based environments.
- Removed Fly.io-specific region and provider options from project
creation, instance sizing, and infrastructure settings.
- Enabled disk validation, spend-cap eligibility, backup restoration,
and extension setup consistently across supported projects.
- Updated billing and region displays to use the applicable AWS
configuration.
- **Bug Fixes**
- Corrected project-specific restrictions that could incorrectly hide
configuration and billing controls.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-08-03 21:14:50 +07:00

52 lines
1.3 KiB
TypeScript

import {
COMPUTE_BASELINE_IOPS,
COMPUTE_BASELINE_THROUGHPUT,
COMPUTE_DISK,
COMPUTE_MAX_IOPS,
COMPUTE_MAX_THROUGHPUT,
computeInstanceAddonVariantIdSchema,
} from './compute-disk-limits'
import config from './config'
import { ERROR_CODE_DOCS_URLS, ERROR_CODES, HTTP_ERROR_CODES } from './error-codes'
import type { ErrorCodeDefinition, ErrorCodeService } from './error-codes'
import extensions from './extensions.json'
import logConstants from './log-constants'
import { plans, PricingInformation } from './plans'
import { pricing } from './pricing'
import { PRODUCT_MODULES, products } from './products'
import questions from './questions'
import type { AWS_REGIONS_KEYS, CloudProvider, Region } from './regions'
import { AWS_REGIONS } from './regions'
import tweets, { topTweets } from './tweets'
export {
AWS_REGIONS,
COMPUTE_BASELINE_IOPS,
COMPUTE_BASELINE_THROUGHPUT,
COMPUTE_DISK,
COMPUTE_MAX_IOPS,
COMPUTE_MAX_THROUGHPUT,
computeInstanceAddonVariantIdSchema,
config,
ERROR_CODE_DOCS_URLS,
ERROR_CODES,
HTTP_ERROR_CODES,
extensions,
logConstants,
plans,
pricing,
PRODUCT_MODULES,
products,
questions,
topTweets,
tweets,
}
export type {
AWS_REGIONS_KEYS,
CloudProvider,
ErrorCodeDefinition,
ErrorCodeService,
PricingInformation,
Region,
}