export type CreateTagFileReference = { fileId: string; versionId: string; branchId: string; }; export type CreateTagOptions = { tagId: string; files: CreateTagFileReference[]; message?: string; }; export type CreateTagResult = { tag: { id: string; tagId: string; message: string | null; createdAt: string; updatedAt: string; }; };