Files
supabase/apps/studio/components/interfaces/Database/Replication/Replication.constants.ts
Riccardo Busetti 1a3ba9f15a ref(etl): Rename ETL Replication to Replication and update docs (#40769)
* ref(etl): Rename ETL Replication to Replication and update docs

* Fix

* Fix

* Fix

* Fix

* Fix
2025-11-25 20:45:50 +08:00

11 lines
232 B
TypeScript

export const STATUS_REFRESH_FREQUENCY_MS: number = 5000
export enum PipelineStatusName {
FAILED = 'failed',
STARTING = 'starting',
STARTED = 'started',
STOPPED = 'stopped',
STOPPING = 'stopping',
UNKNOWN = 'unknown',
}