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
Build and Push Multi-Platform Images / build-and-push (push) Successful in 33s
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user