feat: add functionality to manually split documents at specific pages via the UI and API
Build and Push Multi-Platform Images / build-and-push (push) Successful in 33s

This commit is contained in:
2026-05-05 17:51:53 +02:00
parent 810afa52cd
commit 13b07dfa71
5 changed files with 85 additions and 10 deletions
@@ -59,6 +59,16 @@ export class InboxDocument {
})
Rotations!: Record<string, number>;
@Column({
type: 'json',
nullable: true,
transformer: {
to: (v: number[] | null | undefined) => (v && v.length ? v : null),
from: (v: number[] | null) => v ?? [],
},
})
ManualSplitPages!: number[];
@CreateDateColumn()
CreatedAt!: Date;