# VersionDiff

**Kind:** Interface

**Source:** [`atloria-monorepo/apps/api/src/doc-version/version-diff.service.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/api/src/doc-version/version-diff.service.ts#L30)

## Properties

| Property | Type |
|---|---|
| `versionA` | `string` |
| `versionB` | `string` |
| `summary` | `{
    added: number;
    removed: number;
    modified: number;
    unchanged: number;
    totalA: number;
    totalB: number;
  }` |
| `documents` | `{
    added: DocDiffEntry[];
    removed: DocDiffEntry[];
    modified: DocDiffEntry[];
    unchanged: DocDiffEntry[];
  }` |
| `categories` | `{
    added: CategoryDiffEntry[];
    removed: CategoryDiffEntry[];
    unchanged: CategoryDiffEntry[];
  }` |
