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