# ChangelogSource

**Kind:** Type

**Source:** [`atloria-monorepo/apps/api/src/changelog/changelog.types.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/api/src/changelog/changelog.types.ts#L10)

B5 — First-class changelog / release notes.

Shared types for the auto-drafting pipeline: the four delta/release hooks
emit raw ChangelogEvents; events batch per project per UTC day into ONE
draft ChangelogEntry; an AI pass turns the accumulated events into a human
release note; the owner publishes (or the auto-publish sweep does).

## Definition

```ts
| 'delta-technical' // S4 code→docs delta (materializeDelta)
  | 'delta-manual' // S3 atlorix screenshot delta-merge
  | 'version' // DocVersion activation (a release-level event)
  | 'freshness-pr' // a docs-freshness PR merged on the customer repo
  | 'manual'
```
