|
1 | 1 | /** |
2 | | - * Generated by orval v8.8.1 🍺 |
| 2 | + * Generated by orval v8.19.0 🍺 |
3 | 3 | * Do not edit manually. |
4 | | - * OpenAPI spec version: 0.0.1 |
5 | 4 | */ |
6 | | -import type { NodeId } from './nodeId' |
7 | | -import type { PageId } from './pageId' |
8 | | -import type { ReadingOrder } from './readingOrder' |
9 | | -import type { Region } from './region' |
| 5 | +import type { NodeId } from './nodeId'; |
| 6 | +import type { PageId } from './pageId'; |
| 7 | +import type { ReadingOrder } from './readingOrder'; |
| 8 | +import type { Region } from './region'; |
10 | 9 |
|
11 | 10 | export interface StartPipelineRequest { |
12 | 11 | /** @nullable */ |
13 | | - defaultFont?: string | null |
| 12 | + defaultFont?: string | null; |
14 | 13 | /** |
15 | | - * `None` → whole project, `Some(pages)` → just those pages. |
16 | | - * @nullable |
17 | | - */ |
18 | | - pages?: PageId[] | null |
19 | | - readingOrder?: null | ReadingOrder |
20 | | - region?: null | Region |
| 14 | + * If enabled, merge any ops generated by this with the entry above it, ensuring that they undo as a batch. |
| 15 | + * Used for implementing auto-render so that the render doesn't get a separate undo entry. |
| 16 | + */ |
| 17 | + mergeWithPreviousOp?: boolean; |
| 18 | + /** |
| 19 | + * `None` → whole project, `Some(pages)` → just those pages. |
| 20 | + * @nullable |
| 21 | + */ |
| 22 | + pages?: PageId[] | null; |
| 23 | + readingOrder?: null | ReadingOrder; |
| 24 | + region?: null | Region; |
21 | 25 | /** Engine ids (`inventory::submit!` ids) to run in order. */ |
22 | | - steps: string[] |
| 26 | + steps: string[]; |
23 | 27 | /** @nullable */ |
24 | | - systemPrompt?: string | null |
| 28 | + systemPrompt?: string | null; |
25 | 29 | /** @nullable */ |
26 | | - targetLanguage?: string | null |
| 30 | + targetLanguage?: string | null; |
27 | 31 | /** |
28 | | - * Optional text-node ids for engines that can operate on individual blocks. |
29 | | - * @nullable |
30 | | - */ |
31 | | - textNodeIds?: NodeId[] | null |
| 32 | + * Optional text-node ids for engines that can operate on individual blocks. |
| 33 | + * @nullable |
| 34 | + */ |
| 35 | + textNodeIds?: NodeId[] | null; |
32 | 36 | } |
0 commit comments