-
-
Notifications
You must be signed in to change notification settings - Fork 330
Expand file tree
/
Copy pathstartPipelineRequest.ts
More file actions
36 lines (35 loc) · 1.08 KB
/
Copy pathstartPipelineRequest.ts
File metadata and controls
36 lines (35 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* Generated by orval v8.19.0 🍺
* Do not edit manually.
*/
import type { NodeId } from './nodeId';
import type { PageId } from './pageId';
import type { ReadingOrder } from './readingOrder';
import type { Region } from './region';
export interface StartPipelineRequest {
/** @nullable */
defaultFont?: string | null;
/**
* If enabled, merge any ops generated by this with the entry above it, ensuring that they undo as a batch.
* Used for implementing auto-render so that the render doesn't get a separate undo entry.
*/
mergeWithPreviousOp?: boolean;
/**
* `None` → whole project, `Some(pages)` → just those pages.
* @nullable
*/
pages?: PageId[] | null;
readingOrder?: null | ReadingOrder;
region?: null | Region;
/** Engine ids (`inventory::submit!` ids) to run in order. */
steps: string[];
/** @nullable */
systemPrompt?: string | null;
/** @nullable */
targetLanguage?: string | null;
/**
* Optional text-node ids for engines that can operate on individual blocks.
* @nullable
*/
textNodeIds?: NodeId[] | null;
}