/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { SectionOut } from './SectionOut'; import type { SectionRenamePair } from './SectionRenamePair'; /** * GET /v1/codes/{code_id}/diff response — cross-edition delta. * * The diff is computed from ``code_sections`` rows alone (titles and * section_numbers) — body text is out of scope per the hybrid legal * model (ADR-0014). */ export type CodeDiffOut = { code_id: string; from_edition: string; to_edition: string; /** * Sections present in to_edition but not in from_edition */ added?: Array; /** * Sections present in from_edition but not in to_edition */ removed?: Array; /** * Pairs of sections sharing section_number but carrying different section_title strings between editions. */ renamed?: Array; };