/**
 * Copyright IBM Corp. 2024, 2025
 */
interface FileAddition {
	path: string;
	contents: string;
}

interface FileDeletion {
	path: string;
}

export interface FileChanges {
	additions: FileAddition[];
	deletions: FileDeletion[];
}