import type { ReplicationRegistry } from '../schemas/ReplicationRegistry'; export interface ReplicationRuleRequest { allowedPatterns: string[]; blockedPatterns: string[]; destination: ReplicationRegistry; destinationType: 'GCP' | 'Jfrog' | 'Local'; source: ReplicationRegistry; sourceType: 'GCP' | 'Jfrog' | 'Local'; }