document-content-model 7.7.0 → 7.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{construct-C9cYkjnd.d.cts → construct-GVdTKrE7.d.cts} +3 -3
- package/dist/{construct-C9cYkjnd.d.ts → construct-GVdTKrE7.d.ts} +3 -3
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-BIM8bWWt.d.ts → content-DAc4O272.d.ts} +1772 -71
- package/dist/{content-DpsxyPMw.d.cts → content-SgKmas45.d.cts} +1772 -71
- package/dist/content-json-schema-defs.cjs +126 -15
- package/dist/content-json-schema-defs.js +126 -15
- package/dist/content.cjs +70 -17
- package/dist/content.d.cts +2 -2
- package/dist/content.d.ts +2 -2
- package/dist/content.js +67 -18
- package/dist/decompose.d.cts +2 -2
- package/dist/decompose.d.ts +2 -2
- package/dist/definitions.d.cts +1 -1
- package/dist/definitions.d.ts +1 -1
- package/dist/factor-styles.d.cts +1 -1
- package/dist/factor-styles.d.ts +1 -1
- package/dist/flatten.d.cts +1 -1
- package/dist/flatten.d.ts +1 -1
- package/dist/index.cjs +4 -0
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2 -2
- package/dist/{package-node-B8LBrCCD.d.ts → package-node-BnFUnaa0.d.ts} +322 -25
- package/dist/{package-node-CENJl5PH.d.cts → package-node-DnUyGT61.d.cts} +322 -25
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.d.cts +28 -1
- package/dist/package.d.ts +28 -1
- package/dist/schema-io.cjs +2 -2
- package/dist/schema-io.d.cts +1 -1
- package/dist/schema-io.d.ts +1 -1
- package/dist/schema-io.js +2 -2
- package/package.json +1 -1
- package/schemas/content-document.schema.json +1138 -13
- package/schemas/document-tree.schema.json +208 -3
|
@@ -9,6 +9,77 @@ import { z } from "zod";
|
|
|
9
9
|
type FusedNode<T> = T & {
|
|
10
10
|
frames?: LayoutFrame[];
|
|
11
11
|
};
|
|
12
|
+
declare const ContentOriginSchema: z.ZodEnum<{
|
|
13
|
+
body: "body";
|
|
14
|
+
chart: "chart";
|
|
15
|
+
diagram: "diagram";
|
|
16
|
+
table: "table";
|
|
17
|
+
image: "image";
|
|
18
|
+
notes: "notes";
|
|
19
|
+
}>;
|
|
20
|
+
type ContentOrigin = z.infer<typeof ContentOriginSchema>;
|
|
21
|
+
declare const ContentTranscriptSchema: z.ZodObject<{
|
|
22
|
+
text: z.ZodString;
|
|
23
|
+
confidence: z.ZodEnum<{
|
|
24
|
+
high: "high";
|
|
25
|
+
medium: "medium";
|
|
26
|
+
low: "low";
|
|
27
|
+
}>;
|
|
28
|
+
mechanism: z.ZodEnum<{
|
|
29
|
+
deterministic: "deterministic";
|
|
30
|
+
model: "model";
|
|
31
|
+
}>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
type ContentTranscript = z.infer<typeof ContentTranscriptSchema>;
|
|
34
|
+
declare const ContentInterpretationSchema: z.ZodObject<{
|
|
35
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
36
|
+
text: z.ZodString;
|
|
37
|
+
confidence: z.ZodEnum<{
|
|
38
|
+
high: "high";
|
|
39
|
+
medium: "medium";
|
|
40
|
+
low: "low";
|
|
41
|
+
}>;
|
|
42
|
+
mechanism: z.ZodEnum<{
|
|
43
|
+
deterministic: "deterministic";
|
|
44
|
+
model: "model";
|
|
45
|
+
}>;
|
|
46
|
+
}, z.core.$strip>>;
|
|
47
|
+
description: z.ZodOptional<z.ZodString>;
|
|
48
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
49
|
+
model: z.ZodString;
|
|
50
|
+
at: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>;
|
|
52
|
+
}, z.core.$strip>;
|
|
53
|
+
type ContentInterpretation = z.infer<typeof ContentInterpretationSchema>;
|
|
54
|
+
declare const CONTENT_ANNOTATION_FIELDS: {
|
|
55
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
56
|
+
body: "body";
|
|
57
|
+
chart: "chart";
|
|
58
|
+
diagram: "diagram";
|
|
59
|
+
table: "table";
|
|
60
|
+
image: "image";
|
|
61
|
+
notes: "notes";
|
|
62
|
+
}>>;
|
|
63
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
64
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
65
|
+
text: z.ZodString;
|
|
66
|
+
confidence: z.ZodEnum<{
|
|
67
|
+
high: "high";
|
|
68
|
+
medium: "medium";
|
|
69
|
+
low: "low";
|
|
70
|
+
}>;
|
|
71
|
+
mechanism: z.ZodEnum<{
|
|
72
|
+
deterministic: "deterministic";
|
|
73
|
+
model: "model";
|
|
74
|
+
}>;
|
|
75
|
+
}, z.core.$strip>>;
|
|
76
|
+
description: z.ZodOptional<z.ZodString>;
|
|
77
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
78
|
+
model: z.ZodString;
|
|
79
|
+
at: z.ZodString;
|
|
80
|
+
}, z.core.$strip>>;
|
|
81
|
+
}, z.core.$strip>>;
|
|
82
|
+
};
|
|
12
83
|
declare const RUN_FONT_PROPERTY_SHAPE: {
|
|
13
84
|
readonly bold: z.ZodOptional<z.ZodBoolean>;
|
|
14
85
|
readonly italic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37,6 +108,33 @@ declare const ContentFontSchema: z.ZodObject<{
|
|
|
37
108
|
}, z.core.$strip>;
|
|
38
109
|
type ContentFont = z.infer<typeof ContentFontSchema>;
|
|
39
110
|
declare const ContentRunSchema: z.ZodObject<{
|
|
111
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
112
|
+
body: "body";
|
|
113
|
+
chart: "chart";
|
|
114
|
+
diagram: "diagram";
|
|
115
|
+
table: "table";
|
|
116
|
+
image: "image";
|
|
117
|
+
notes: "notes";
|
|
118
|
+
}>>;
|
|
119
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
120
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
121
|
+
text: z.ZodString;
|
|
122
|
+
confidence: z.ZodEnum<{
|
|
123
|
+
high: "high";
|
|
124
|
+
medium: "medium";
|
|
125
|
+
low: "low";
|
|
126
|
+
}>;
|
|
127
|
+
mechanism: z.ZodEnum<{
|
|
128
|
+
deterministic: "deterministic";
|
|
129
|
+
model: "model";
|
|
130
|
+
}>;
|
|
131
|
+
}, z.core.$strip>>;
|
|
132
|
+
description: z.ZodOptional<z.ZodString>;
|
|
133
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
134
|
+
model: z.ZodString;
|
|
135
|
+
at: z.ZodString;
|
|
136
|
+
}, z.core.$strip>>;
|
|
137
|
+
}, z.core.$strip>>;
|
|
40
138
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
41
139
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
42
140
|
superscript: "superscript";
|
|
@@ -107,12 +205,12 @@ declare const RunConstructExtentSchema: z.ZodObject<{
|
|
|
107
205
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
108
206
|
kind: z.ZodLiteral<"contentControl">;
|
|
109
207
|
controlType: z.ZodEnum<{
|
|
208
|
+
date: "date";
|
|
110
209
|
richText: "richText";
|
|
111
210
|
plainText: "plainText";
|
|
112
211
|
checkbox: "checkbox";
|
|
113
212
|
dropDown: "dropDown";
|
|
114
213
|
comboBox: "comboBox";
|
|
115
|
-
date: "date";
|
|
116
214
|
picture: "picture";
|
|
117
215
|
repeatingSection: "repeatingSection";
|
|
118
216
|
button: "button";
|
|
@@ -380,8 +478,62 @@ declare const ContentParagraphBordersSchema: z.ZodObject<{
|
|
|
380
478
|
}, z.core.$strip>;
|
|
381
479
|
type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
|
|
382
480
|
declare const ContentParagraphSchema: z.ZodObject<{
|
|
481
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
482
|
+
body: "body";
|
|
483
|
+
chart: "chart";
|
|
484
|
+
diagram: "diagram";
|
|
485
|
+
table: "table";
|
|
486
|
+
image: "image";
|
|
487
|
+
notes: "notes";
|
|
488
|
+
}>>;
|
|
489
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
490
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
491
|
+
text: z.ZodString;
|
|
492
|
+
confidence: z.ZodEnum<{
|
|
493
|
+
high: "high";
|
|
494
|
+
medium: "medium";
|
|
495
|
+
low: "low";
|
|
496
|
+
}>;
|
|
497
|
+
mechanism: z.ZodEnum<{
|
|
498
|
+
deterministic: "deterministic";
|
|
499
|
+
model: "model";
|
|
500
|
+
}>;
|
|
501
|
+
}, z.core.$strip>>;
|
|
502
|
+
description: z.ZodOptional<z.ZodString>;
|
|
503
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
504
|
+
model: z.ZodString;
|
|
505
|
+
at: z.ZodString;
|
|
506
|
+
}, z.core.$strip>>;
|
|
507
|
+
}, z.core.$strip>>;
|
|
383
508
|
kind: z.ZodLiteral<"paragraph">;
|
|
384
509
|
runs: z.ZodArray<z.ZodObject<{
|
|
510
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
511
|
+
body: "body";
|
|
512
|
+
chart: "chart";
|
|
513
|
+
diagram: "diagram";
|
|
514
|
+
table: "table";
|
|
515
|
+
image: "image";
|
|
516
|
+
notes: "notes";
|
|
517
|
+
}>>;
|
|
518
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
519
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
520
|
+
text: z.ZodString;
|
|
521
|
+
confidence: z.ZodEnum<{
|
|
522
|
+
high: "high";
|
|
523
|
+
medium: "medium";
|
|
524
|
+
low: "low";
|
|
525
|
+
}>;
|
|
526
|
+
mechanism: z.ZodEnum<{
|
|
527
|
+
deterministic: "deterministic";
|
|
528
|
+
model: "model";
|
|
529
|
+
}>;
|
|
530
|
+
}, z.core.$strip>>;
|
|
531
|
+
description: z.ZodOptional<z.ZodString>;
|
|
532
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
533
|
+
model: z.ZodString;
|
|
534
|
+
at: z.ZodString;
|
|
535
|
+
}, z.core.$strip>>;
|
|
536
|
+
}, z.core.$strip>>;
|
|
385
537
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
386
538
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
387
539
|
superscript: "superscript";
|
|
@@ -436,12 +588,12 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
436
588
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
437
589
|
kind: z.ZodLiteral<"contentControl">;
|
|
438
590
|
controlType: z.ZodEnum<{
|
|
591
|
+
date: "date";
|
|
439
592
|
richText: "richText";
|
|
440
593
|
plainText: "plainText";
|
|
441
594
|
checkbox: "checkbox";
|
|
442
595
|
dropDown: "dropDown";
|
|
443
596
|
comboBox: "comboBox";
|
|
444
|
-
date: "date";
|
|
445
597
|
picture: "picture";
|
|
446
598
|
repeatingSection: "repeatingSection";
|
|
447
599
|
button: "button";
|
|
@@ -922,6 +1074,33 @@ declare const ContentImageOriginalSchema: z.ZodObject<{
|
|
|
922
1074
|
}, z.core.$strip>;
|
|
923
1075
|
type ContentImageOriginal = z.infer<typeof ContentImageOriginalSchema>;
|
|
924
1076
|
declare const ContentImageBlockSchema: z.ZodObject<{
|
|
1077
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1078
|
+
body: "body";
|
|
1079
|
+
chart: "chart";
|
|
1080
|
+
diagram: "diagram";
|
|
1081
|
+
table: "table";
|
|
1082
|
+
image: "image";
|
|
1083
|
+
notes: "notes";
|
|
1084
|
+
}>>;
|
|
1085
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1086
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1087
|
+
text: z.ZodString;
|
|
1088
|
+
confidence: z.ZodEnum<{
|
|
1089
|
+
high: "high";
|
|
1090
|
+
medium: "medium";
|
|
1091
|
+
low: "low";
|
|
1092
|
+
}>;
|
|
1093
|
+
mechanism: z.ZodEnum<{
|
|
1094
|
+
deterministic: "deterministic";
|
|
1095
|
+
model: "model";
|
|
1096
|
+
}>;
|
|
1097
|
+
}, z.core.$strip>>;
|
|
1098
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1099
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1100
|
+
model: z.ZodString;
|
|
1101
|
+
at: z.ZodString;
|
|
1102
|
+
}, z.core.$strip>>;
|
|
1103
|
+
}, z.core.$strip>>;
|
|
925
1104
|
kind: z.ZodLiteral<"image">;
|
|
926
1105
|
format: z.ZodEnum<{
|
|
927
1106
|
png: "png";
|
|
@@ -941,6 +1120,8 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
941
1120
|
base64: z.ZodString;
|
|
942
1121
|
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
943
1122
|
}, z.core.$strip>>;
|
|
1123
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
1124
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
944
1125
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
945
1126
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
946
1127
|
relativeTo: z.ZodEnum<{
|
|
@@ -1060,6 +1241,33 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1060
1241
|
}, z.core.$strip>;
|
|
1061
1242
|
type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
|
|
1062
1243
|
declare const ContentPageBreakSchema: z.ZodObject<{
|
|
1244
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1245
|
+
body: "body";
|
|
1246
|
+
chart: "chart";
|
|
1247
|
+
diagram: "diagram";
|
|
1248
|
+
table: "table";
|
|
1249
|
+
image: "image";
|
|
1250
|
+
notes: "notes";
|
|
1251
|
+
}>>;
|
|
1252
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1253
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1254
|
+
text: z.ZodString;
|
|
1255
|
+
confidence: z.ZodEnum<{
|
|
1256
|
+
high: "high";
|
|
1257
|
+
medium: "medium";
|
|
1258
|
+
low: "low";
|
|
1259
|
+
}>;
|
|
1260
|
+
mechanism: z.ZodEnum<{
|
|
1261
|
+
deterministic: "deterministic";
|
|
1262
|
+
model: "model";
|
|
1263
|
+
}>;
|
|
1264
|
+
}, z.core.$strip>>;
|
|
1265
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1266
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1267
|
+
model: z.ZodString;
|
|
1268
|
+
at: z.ZodString;
|
|
1269
|
+
}, z.core.$strip>>;
|
|
1270
|
+
}, z.core.$strip>>;
|
|
1063
1271
|
kind: z.ZodLiteral<"pageBreak">;
|
|
1064
1272
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
1065
1273
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -1096,12 +1304,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
|
|
|
1096
1304
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1097
1305
|
kind: z.ZodLiteral<"contentControl">;
|
|
1098
1306
|
controlType: z.ZodEnum<{
|
|
1307
|
+
date: "date";
|
|
1099
1308
|
richText: "richText";
|
|
1100
1309
|
plainText: "plainText";
|
|
1101
1310
|
checkbox: "checkbox";
|
|
1102
1311
|
dropDown: "dropDown";
|
|
1103
1312
|
comboBox: "comboBox";
|
|
1104
|
-
date: "date";
|
|
1105
1313
|
picture: "picture";
|
|
1106
1314
|
repeatingSection: "repeatingSection";
|
|
1107
1315
|
button: "button";
|
|
@@ -1345,6 +1553,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1345
1553
|
widthPt: z.ZodNumber;
|
|
1346
1554
|
heightPt: z.ZodNumber;
|
|
1347
1555
|
}, z.core.$strip>>>;
|
|
1556
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1557
|
+
body: "body";
|
|
1558
|
+
chart: "chart";
|
|
1559
|
+
diagram: "diagram";
|
|
1560
|
+
table: "table";
|
|
1561
|
+
image: "image";
|
|
1562
|
+
notes: "notes";
|
|
1563
|
+
}>>;
|
|
1564
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1565
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1566
|
+
text: z.ZodString;
|
|
1567
|
+
confidence: z.ZodEnum<{
|
|
1568
|
+
high: "high";
|
|
1569
|
+
medium: "medium";
|
|
1570
|
+
low: "low";
|
|
1571
|
+
}>;
|
|
1572
|
+
mechanism: z.ZodEnum<{
|
|
1573
|
+
deterministic: "deterministic";
|
|
1574
|
+
model: "model";
|
|
1575
|
+
}>;
|
|
1576
|
+
}, z.core.$strip>>;
|
|
1577
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1578
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1579
|
+
model: z.ZodString;
|
|
1580
|
+
at: z.ZodString;
|
|
1581
|
+
}, z.core.$strip>>;
|
|
1582
|
+
}, z.core.$strip>>;
|
|
1348
1583
|
objectKind: z.ZodEnum<{
|
|
1349
1584
|
formula: "formula";
|
|
1350
1585
|
wordprocessing: "wordprocessing";
|
|
@@ -1355,6 +1590,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1355
1590
|
}>;
|
|
1356
1591
|
document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1357
1592
|
sections: z.ZodArray<z.ZodObject<{
|
|
1593
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1594
|
+
body: "body";
|
|
1595
|
+
chart: "chart";
|
|
1596
|
+
diagram: "diagram";
|
|
1597
|
+
table: "table";
|
|
1598
|
+
image: "image";
|
|
1599
|
+
notes: "notes";
|
|
1600
|
+
}>>;
|
|
1601
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1602
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1603
|
+
text: z.ZodString;
|
|
1604
|
+
confidence: z.ZodEnum<{
|
|
1605
|
+
high: "high";
|
|
1606
|
+
medium: "medium";
|
|
1607
|
+
low: "low";
|
|
1608
|
+
}>;
|
|
1609
|
+
mechanism: z.ZodEnum<{
|
|
1610
|
+
deterministic: "deterministic";
|
|
1611
|
+
model: "model";
|
|
1612
|
+
}>;
|
|
1613
|
+
}, z.core.$strip>>;
|
|
1614
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1615
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1616
|
+
model: z.ZodString;
|
|
1617
|
+
at: z.ZodString;
|
|
1618
|
+
}, z.core.$strip>>;
|
|
1619
|
+
}, z.core.$strip>>;
|
|
1358
1620
|
pageSize: z.ZodObject<{
|
|
1359
1621
|
widthPt: z.ZodNumber;
|
|
1360
1622
|
heightPt: z.ZodNumber;
|
|
@@ -1472,11 +1734,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1472
1734
|
}, z.core.$strip>;
|
|
1473
1735
|
}, z.core.$strip>, z.ZodObject<{
|
|
1474
1736
|
slides: z.ZodArray<z.ZodObject<{
|
|
1737
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1738
|
+
body: "body";
|
|
1739
|
+
chart: "chart";
|
|
1740
|
+
diagram: "diagram";
|
|
1741
|
+
table: "table";
|
|
1742
|
+
image: "image";
|
|
1743
|
+
notes: "notes";
|
|
1744
|
+
}>>;
|
|
1745
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1746
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1747
|
+
text: z.ZodString;
|
|
1748
|
+
confidence: z.ZodEnum<{
|
|
1749
|
+
high: "high";
|
|
1750
|
+
medium: "medium";
|
|
1751
|
+
low: "low";
|
|
1752
|
+
}>;
|
|
1753
|
+
mechanism: z.ZodEnum<{
|
|
1754
|
+
deterministic: "deterministic";
|
|
1755
|
+
model: "model";
|
|
1756
|
+
}>;
|
|
1757
|
+
}, z.core.$strip>>;
|
|
1758
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1759
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1760
|
+
model: z.ZodString;
|
|
1761
|
+
at: z.ZodString;
|
|
1762
|
+
}, z.core.$strip>>;
|
|
1763
|
+
}, z.core.$strip>>;
|
|
1475
1764
|
size: z.ZodObject<{
|
|
1476
1765
|
widthPt: z.ZodNumber;
|
|
1477
1766
|
heightPt: z.ZodNumber;
|
|
1478
1767
|
}, z.core.$strip>;
|
|
1479
1768
|
shapes: z.ZodArray<z.ZodObject<{
|
|
1769
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
1770
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1771
|
+
body: "body";
|
|
1772
|
+
chart: "chart";
|
|
1773
|
+
diagram: "diagram";
|
|
1774
|
+
table: "table";
|
|
1775
|
+
image: "image";
|
|
1776
|
+
notes: "notes";
|
|
1777
|
+
}>>;
|
|
1778
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1779
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1780
|
+
text: z.ZodString;
|
|
1781
|
+
confidence: z.ZodEnum<{
|
|
1782
|
+
high: "high";
|
|
1783
|
+
medium: "medium";
|
|
1784
|
+
low: "low";
|
|
1785
|
+
}>;
|
|
1786
|
+
mechanism: z.ZodEnum<{
|
|
1787
|
+
deterministic: "deterministic";
|
|
1788
|
+
model: "model";
|
|
1789
|
+
}>;
|
|
1790
|
+
}, z.core.$strip>>;
|
|
1791
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1793
|
+
model: z.ZodString;
|
|
1794
|
+
at: z.ZodString;
|
|
1795
|
+
}, z.core.$strip>>;
|
|
1796
|
+
}, z.core.$strip>>;
|
|
1480
1797
|
name: z.ZodOptional<z.ZodString>;
|
|
1481
1798
|
frame: z.ZodObject<{
|
|
1482
1799
|
xPt: z.ZodNumber;
|
|
@@ -1520,7 +1837,6 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1520
1837
|
widthPt: z.ZodNumber;
|
|
1521
1838
|
heightPt: z.ZodNumber;
|
|
1522
1839
|
}, z.core.$strip>>>;
|
|
1523
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
1524
1840
|
}, z.core.$strip>>;
|
|
1525
1841
|
notes: z.ZodString;
|
|
1526
1842
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -1613,8 +1929,62 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1613
1929
|
}, z.core.$strip>;
|
|
1614
1930
|
}, z.core.$strip>, z.ZodObject<{
|
|
1615
1931
|
sheets: z.ZodArray<z.ZodObject<{
|
|
1932
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1933
|
+
body: "body";
|
|
1934
|
+
chart: "chart";
|
|
1935
|
+
diagram: "diagram";
|
|
1936
|
+
table: "table";
|
|
1937
|
+
image: "image";
|
|
1938
|
+
notes: "notes";
|
|
1939
|
+
}>>;
|
|
1940
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1941
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1942
|
+
text: z.ZodString;
|
|
1943
|
+
confidence: z.ZodEnum<{
|
|
1944
|
+
high: "high";
|
|
1945
|
+
medium: "medium";
|
|
1946
|
+
low: "low";
|
|
1947
|
+
}>;
|
|
1948
|
+
mechanism: z.ZodEnum<{
|
|
1949
|
+
deterministic: "deterministic";
|
|
1950
|
+
model: "model";
|
|
1951
|
+
}>;
|
|
1952
|
+
}, z.core.$strip>>;
|
|
1953
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1955
|
+
model: z.ZodString;
|
|
1956
|
+
at: z.ZodString;
|
|
1957
|
+
}, z.core.$strip>>;
|
|
1958
|
+
}, z.core.$strip>>;
|
|
1616
1959
|
name: z.ZodString;
|
|
1617
1960
|
cells: z.ZodArray<z.ZodObject<{
|
|
1961
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1962
|
+
body: "body";
|
|
1963
|
+
chart: "chart";
|
|
1964
|
+
diagram: "diagram";
|
|
1965
|
+
table: "table";
|
|
1966
|
+
image: "image";
|
|
1967
|
+
notes: "notes";
|
|
1968
|
+
}>>;
|
|
1969
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1970
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1971
|
+
text: z.ZodString;
|
|
1972
|
+
confidence: z.ZodEnum<{
|
|
1973
|
+
high: "high";
|
|
1974
|
+
medium: "medium";
|
|
1975
|
+
low: "low";
|
|
1976
|
+
}>;
|
|
1977
|
+
mechanism: z.ZodEnum<{
|
|
1978
|
+
deterministic: "deterministic";
|
|
1979
|
+
model: "model";
|
|
1980
|
+
}>;
|
|
1981
|
+
}, z.core.$strip>>;
|
|
1982
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1983
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1984
|
+
model: z.ZodString;
|
|
1985
|
+
at: z.ZodString;
|
|
1986
|
+
}, z.core.$strip>>;
|
|
1987
|
+
}, z.core.$strip>>;
|
|
1618
1988
|
row: z.ZodNumber;
|
|
1619
1989
|
column: z.ZodNumber;
|
|
1620
1990
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -1668,6 +2038,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1668
2038
|
}, z.core.$strip>>;
|
|
1669
2039
|
}, z.core.$strip>>;
|
|
1670
2040
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2041
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
2042
|
+
body: "body";
|
|
2043
|
+
chart: "chart";
|
|
2044
|
+
diagram: "diagram";
|
|
2045
|
+
table: "table";
|
|
2046
|
+
image: "image";
|
|
2047
|
+
notes: "notes";
|
|
2048
|
+
}>>;
|
|
2049
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2050
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
text: z.ZodString;
|
|
2052
|
+
confidence: z.ZodEnum<{
|
|
2053
|
+
high: "high";
|
|
2054
|
+
medium: "medium";
|
|
2055
|
+
low: "low";
|
|
2056
|
+
}>;
|
|
2057
|
+
mechanism: z.ZodEnum<{
|
|
2058
|
+
deterministic: "deterministic";
|
|
2059
|
+
model: "model";
|
|
2060
|
+
}>;
|
|
2061
|
+
}, z.core.$strip>>;
|
|
2062
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2063
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2064
|
+
model: z.ZodString;
|
|
2065
|
+
at: z.ZodString;
|
|
2066
|
+
}, z.core.$strip>>;
|
|
2067
|
+
}, z.core.$strip>>;
|
|
1671
2068
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
1672
2069
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
1673
2070
|
superscript: "superscript";
|
|
@@ -1940,6 +2337,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1940
2337
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1941
2338
|
}, z.core.$strip>>;
|
|
1942
2339
|
images: z.ZodArray<z.ZodObject<{
|
|
2340
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
2341
|
+
body: "body";
|
|
2342
|
+
chart: "chart";
|
|
2343
|
+
diagram: "diagram";
|
|
2344
|
+
table: "table";
|
|
2345
|
+
image: "image";
|
|
2346
|
+
notes: "notes";
|
|
2347
|
+
}>>;
|
|
2348
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2349
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
2350
|
+
text: z.ZodString;
|
|
2351
|
+
confidence: z.ZodEnum<{
|
|
2352
|
+
high: "high";
|
|
2353
|
+
medium: "medium";
|
|
2354
|
+
low: "low";
|
|
2355
|
+
}>;
|
|
2356
|
+
mechanism: z.ZodEnum<{
|
|
2357
|
+
deterministic: "deterministic";
|
|
2358
|
+
model: "model";
|
|
2359
|
+
}>;
|
|
2360
|
+
}, z.core.$strip>>;
|
|
2361
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2362
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2363
|
+
model: z.ZodString;
|
|
2364
|
+
at: z.ZodString;
|
|
2365
|
+
}, z.core.$strip>>;
|
|
2366
|
+
}, z.core.$strip>>;
|
|
1943
2367
|
kind: z.ZodLiteral<"image">;
|
|
1944
2368
|
format: z.ZodEnum<{
|
|
1945
2369
|
png: "png";
|
|
@@ -1959,6 +2383,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1959
2383
|
base64: z.ZodString;
|
|
1960
2384
|
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
1961
2385
|
}, z.core.$strip>>;
|
|
2386
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
2387
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
1962
2388
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
1963
2389
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
1964
2390
|
relativeTo: z.ZodEnum<{
|
|
@@ -2132,9 +2558,9 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2132
2558
|
type: z.ZodEnum<{
|
|
2133
2559
|
date: "date";
|
|
2134
2560
|
custom: "custom";
|
|
2561
|
+
time: "time";
|
|
2135
2562
|
decimal: "decimal";
|
|
2136
2563
|
list: "list";
|
|
2137
|
-
time: "time";
|
|
2138
2564
|
whole: "whole";
|
|
2139
2565
|
textLength: "textLength";
|
|
2140
2566
|
}>;
|
|
@@ -2605,11 +3031,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2605
3031
|
stops: z.ZodArray<z.ZodObject<{
|
|
2606
3032
|
value: z.ZodObject<{
|
|
2607
3033
|
type: z.ZodEnum<{
|
|
2608
|
-
formula: "formula";
|
|
2609
|
-
percent: "percent";
|
|
2610
3034
|
num: "num";
|
|
2611
|
-
max: "max";
|
|
2612
3035
|
min: "min";
|
|
3036
|
+
max: "max";
|
|
3037
|
+
formula: "formula";
|
|
3038
|
+
percent: "percent";
|
|
2613
3039
|
percentile: "percentile";
|
|
2614
3040
|
}>;
|
|
2615
3041
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -2652,22 +3078,22 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2652
3078
|
}, z.core.$strip>, z.ZodObject<{
|
|
2653
3079
|
min: z.ZodObject<{
|
|
2654
3080
|
type: z.ZodEnum<{
|
|
2655
|
-
formula: "formula";
|
|
2656
|
-
percent: "percent";
|
|
2657
3081
|
num: "num";
|
|
2658
|
-
max: "max";
|
|
2659
3082
|
min: "min";
|
|
3083
|
+
max: "max";
|
|
3084
|
+
formula: "formula";
|
|
3085
|
+
percent: "percent";
|
|
2660
3086
|
percentile: "percentile";
|
|
2661
3087
|
}>;
|
|
2662
3088
|
value: z.ZodOptional<z.ZodString>;
|
|
2663
3089
|
}, z.core.$strip>;
|
|
2664
3090
|
max: z.ZodObject<{
|
|
2665
3091
|
type: z.ZodEnum<{
|
|
2666
|
-
formula: "formula";
|
|
2667
|
-
percent: "percent";
|
|
2668
3092
|
num: "num";
|
|
2669
|
-
max: "max";
|
|
2670
3093
|
min: "min";
|
|
3094
|
+
max: "max";
|
|
3095
|
+
formula: "formula";
|
|
3096
|
+
percent: "percent";
|
|
2671
3097
|
percentile: "percentile";
|
|
2672
3098
|
}>;
|
|
2673
3099
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -2711,11 +3137,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2711
3137
|
iconSetType: z.ZodString;
|
|
2712
3138
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
2713
3139
|
type: z.ZodEnum<{
|
|
2714
|
-
formula: "formula";
|
|
2715
|
-
percent: "percent";
|
|
2716
3140
|
num: "num";
|
|
2717
|
-
max: "max";
|
|
2718
3141
|
min: "min";
|
|
3142
|
+
max: "max";
|
|
3143
|
+
formula: "formula";
|
|
3144
|
+
percent: "percent";
|
|
2719
3145
|
percentile: "percentile";
|
|
2720
3146
|
}>;
|
|
2721
3147
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -2847,11 +3273,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2847
3273
|
}, z.core.$strip>;
|
|
2848
3274
|
}, z.core.$strip>, z.ZodObject<{
|
|
2849
3275
|
pages: z.ZodArray<z.ZodObject<{
|
|
3276
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3277
|
+
body: "body";
|
|
3278
|
+
chart: "chart";
|
|
3279
|
+
diagram: "diagram";
|
|
3280
|
+
table: "table";
|
|
3281
|
+
image: "image";
|
|
3282
|
+
notes: "notes";
|
|
3283
|
+
}>>;
|
|
3284
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3285
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3286
|
+
text: z.ZodString;
|
|
3287
|
+
confidence: z.ZodEnum<{
|
|
3288
|
+
high: "high";
|
|
3289
|
+
medium: "medium";
|
|
3290
|
+
low: "low";
|
|
3291
|
+
}>;
|
|
3292
|
+
mechanism: z.ZodEnum<{
|
|
3293
|
+
deterministic: "deterministic";
|
|
3294
|
+
model: "model";
|
|
3295
|
+
}>;
|
|
3296
|
+
}, z.core.$strip>>;
|
|
3297
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3298
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3299
|
+
model: z.ZodString;
|
|
3300
|
+
at: z.ZodString;
|
|
3301
|
+
}, z.core.$strip>>;
|
|
3302
|
+
}, z.core.$strip>>;
|
|
2850
3303
|
size: z.ZodObject<{
|
|
2851
3304
|
widthPt: z.ZodNumber;
|
|
2852
3305
|
heightPt: z.ZodNumber;
|
|
2853
3306
|
}, z.core.$strip>;
|
|
2854
3307
|
shapes: z.ZodArray<z.ZodObject<{
|
|
3308
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3309
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3310
|
+
body: "body";
|
|
3311
|
+
chart: "chart";
|
|
3312
|
+
diagram: "diagram";
|
|
3313
|
+
table: "table";
|
|
3314
|
+
image: "image";
|
|
3315
|
+
notes: "notes";
|
|
3316
|
+
}>>;
|
|
3317
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3318
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3319
|
+
text: z.ZodString;
|
|
3320
|
+
confidence: z.ZodEnum<{
|
|
3321
|
+
high: "high";
|
|
3322
|
+
medium: "medium";
|
|
3323
|
+
low: "low";
|
|
3324
|
+
}>;
|
|
3325
|
+
mechanism: z.ZodEnum<{
|
|
3326
|
+
deterministic: "deterministic";
|
|
3327
|
+
model: "model";
|
|
3328
|
+
}>;
|
|
3329
|
+
}, z.core.$strip>>;
|
|
3330
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3331
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3332
|
+
model: z.ZodString;
|
|
3333
|
+
at: z.ZodString;
|
|
3334
|
+
}, z.core.$strip>>;
|
|
3335
|
+
}, z.core.$strip>>;
|
|
2855
3336
|
name: z.ZodOptional<z.ZodString>;
|
|
2856
3337
|
frame: z.ZodObject<{
|
|
2857
3338
|
xPt: z.ZodNumber;
|
|
@@ -2895,9 +3376,35 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2895
3376
|
widthPt: z.ZodNumber;
|
|
2896
3377
|
heightPt: z.ZodNumber;
|
|
2897
3378
|
}, z.core.$strip>>>;
|
|
2898
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
2899
3379
|
}, z.core.$strip>>;
|
|
2900
3380
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3381
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3382
|
+
body: "body";
|
|
3383
|
+
chart: "chart";
|
|
3384
|
+
diagram: "diagram";
|
|
3385
|
+
table: "table";
|
|
3386
|
+
image: "image";
|
|
3387
|
+
notes: "notes";
|
|
3388
|
+
}>>;
|
|
3389
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3390
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3391
|
+
text: z.ZodString;
|
|
3392
|
+
confidence: z.ZodEnum<{
|
|
3393
|
+
high: "high";
|
|
3394
|
+
medium: "medium";
|
|
3395
|
+
low: "low";
|
|
3396
|
+
}>;
|
|
3397
|
+
mechanism: z.ZodEnum<{
|
|
3398
|
+
deterministic: "deterministic";
|
|
3399
|
+
model: "model";
|
|
3400
|
+
}>;
|
|
3401
|
+
}, z.core.$strip>>;
|
|
3402
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3403
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3404
|
+
model: z.ZodString;
|
|
3405
|
+
at: z.ZodString;
|
|
3406
|
+
}, z.core.$strip>>;
|
|
3407
|
+
}, z.core.$strip>>;
|
|
2901
3408
|
kind: z.ZodLiteral<"rect">;
|
|
2902
3409
|
frame: z.ZodObject<{
|
|
2903
3410
|
xPt: z.ZodNumber;
|
|
@@ -3009,6 +3516,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3009
3516
|
heightPt: z.ZodNumber;
|
|
3010
3517
|
}, z.core.$strip>>>;
|
|
3011
3518
|
}, z.core.$strip>, z.ZodObject<{
|
|
3519
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3520
|
+
body: "body";
|
|
3521
|
+
chart: "chart";
|
|
3522
|
+
diagram: "diagram";
|
|
3523
|
+
table: "table";
|
|
3524
|
+
image: "image";
|
|
3525
|
+
notes: "notes";
|
|
3526
|
+
}>>;
|
|
3527
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3528
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3529
|
+
text: z.ZodString;
|
|
3530
|
+
confidence: z.ZodEnum<{
|
|
3531
|
+
high: "high";
|
|
3532
|
+
medium: "medium";
|
|
3533
|
+
low: "low";
|
|
3534
|
+
}>;
|
|
3535
|
+
mechanism: z.ZodEnum<{
|
|
3536
|
+
deterministic: "deterministic";
|
|
3537
|
+
model: "model";
|
|
3538
|
+
}>;
|
|
3539
|
+
}, z.core.$strip>>;
|
|
3540
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3541
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3542
|
+
model: z.ZodString;
|
|
3543
|
+
at: z.ZodString;
|
|
3544
|
+
}, z.core.$strip>>;
|
|
3545
|
+
}, z.core.$strip>>;
|
|
3012
3546
|
kind: z.ZodLiteral<"ellipse">;
|
|
3013
3547
|
frame: z.ZodObject<{
|
|
3014
3548
|
xPt: z.ZodNumber;
|
|
@@ -3120,6 +3654,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3120
3654
|
heightPt: z.ZodNumber;
|
|
3121
3655
|
}, z.core.$strip>>>;
|
|
3122
3656
|
}, z.core.$strip>, z.ZodObject<{
|
|
3657
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3658
|
+
body: "body";
|
|
3659
|
+
chart: "chart";
|
|
3660
|
+
diagram: "diagram";
|
|
3661
|
+
table: "table";
|
|
3662
|
+
image: "image";
|
|
3663
|
+
notes: "notes";
|
|
3664
|
+
}>>;
|
|
3665
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3666
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3667
|
+
text: z.ZodString;
|
|
3668
|
+
confidence: z.ZodEnum<{
|
|
3669
|
+
high: "high";
|
|
3670
|
+
medium: "medium";
|
|
3671
|
+
low: "low";
|
|
3672
|
+
}>;
|
|
3673
|
+
mechanism: z.ZodEnum<{
|
|
3674
|
+
deterministic: "deterministic";
|
|
3675
|
+
model: "model";
|
|
3676
|
+
}>;
|
|
3677
|
+
}, z.core.$strip>>;
|
|
3678
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3679
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3680
|
+
model: z.ZodString;
|
|
3681
|
+
at: z.ZodString;
|
|
3682
|
+
}, z.core.$strip>>;
|
|
3683
|
+
}, z.core.$strip>>;
|
|
3123
3684
|
kind: z.ZodLiteral<"line">;
|
|
3124
3685
|
from: z.ZodObject<{
|
|
3125
3686
|
xPt: z.ZodNumber;
|
|
@@ -3181,6 +3742,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3181
3742
|
heightPt: z.ZodNumber;
|
|
3182
3743
|
}, z.core.$strip>>>;
|
|
3183
3744
|
}, z.core.$strip>, z.ZodObject<{
|
|
3745
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3746
|
+
body: "body";
|
|
3747
|
+
chart: "chart";
|
|
3748
|
+
diagram: "diagram";
|
|
3749
|
+
table: "table";
|
|
3750
|
+
image: "image";
|
|
3751
|
+
notes: "notes";
|
|
3752
|
+
}>>;
|
|
3753
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3754
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3755
|
+
text: z.ZodString;
|
|
3756
|
+
confidence: z.ZodEnum<{
|
|
3757
|
+
high: "high";
|
|
3758
|
+
medium: "medium";
|
|
3759
|
+
low: "low";
|
|
3760
|
+
}>;
|
|
3761
|
+
mechanism: z.ZodEnum<{
|
|
3762
|
+
deterministic: "deterministic";
|
|
3763
|
+
model: "model";
|
|
3764
|
+
}>;
|
|
3765
|
+
}, z.core.$strip>>;
|
|
3766
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3767
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3768
|
+
model: z.ZodString;
|
|
3769
|
+
at: z.ZodString;
|
|
3770
|
+
}, z.core.$strip>>;
|
|
3771
|
+
}, z.core.$strip>>;
|
|
3184
3772
|
kind: z.ZodLiteral<"path">;
|
|
3185
3773
|
frame: z.ZodObject<{
|
|
3186
3774
|
xPt: z.ZodNumber;
|
|
@@ -3414,6 +4002,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3414
4002
|
}, z.core.$strip>;
|
|
3415
4003
|
}, z.core.$strip>, z.ZodObject<{
|
|
3416
4004
|
formula: z.ZodObject<{
|
|
4005
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4006
|
+
body: "body";
|
|
4007
|
+
chart: "chart";
|
|
4008
|
+
diagram: "diagram";
|
|
4009
|
+
table: "table";
|
|
4010
|
+
image: "image";
|
|
4011
|
+
notes: "notes";
|
|
4012
|
+
}>>;
|
|
4013
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4014
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4015
|
+
text: z.ZodString;
|
|
4016
|
+
confidence: z.ZodEnum<{
|
|
4017
|
+
high: "high";
|
|
4018
|
+
medium: "medium";
|
|
4019
|
+
low: "low";
|
|
4020
|
+
}>;
|
|
4021
|
+
mechanism: z.ZodEnum<{
|
|
4022
|
+
deterministic: "deterministic";
|
|
4023
|
+
model: "model";
|
|
4024
|
+
}>;
|
|
4025
|
+
}, z.core.$strip>>;
|
|
4026
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4027
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4028
|
+
model: z.ZodString;
|
|
4029
|
+
at: z.ZodString;
|
|
4030
|
+
}, z.core.$strip>>;
|
|
4031
|
+
}, z.core.$strip>>;
|
|
3417
4032
|
mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
|
|
3418
4033
|
starMath: z.ZodOptional<z.ZodString>;
|
|
3419
4034
|
presentation: z.ZodOptional<z.ZodObject<{
|
|
@@ -3784,6 +4399,33 @@ declare function unrecognizedFillKind(fill: {
|
|
|
3784
4399
|
kind?: unknown;
|
|
3785
4400
|
}): string;
|
|
3786
4401
|
declare const ContentTableCellSchema: z.ZodObject<{
|
|
4402
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4403
|
+
body: "body";
|
|
4404
|
+
chart: "chart";
|
|
4405
|
+
diagram: "diagram";
|
|
4406
|
+
table: "table";
|
|
4407
|
+
image: "image";
|
|
4408
|
+
notes: "notes";
|
|
4409
|
+
}>>;
|
|
4410
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4411
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4412
|
+
text: z.ZodString;
|
|
4413
|
+
confidence: z.ZodEnum<{
|
|
4414
|
+
high: "high";
|
|
4415
|
+
medium: "medium";
|
|
4416
|
+
low: "low";
|
|
4417
|
+
}>;
|
|
4418
|
+
mechanism: z.ZodEnum<{
|
|
4419
|
+
deterministic: "deterministic";
|
|
4420
|
+
model: "model";
|
|
4421
|
+
}>;
|
|
4422
|
+
}, z.core.$strip>>;
|
|
4423
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4424
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4425
|
+
model: z.ZodString;
|
|
4426
|
+
at: z.ZodString;
|
|
4427
|
+
}, z.core.$strip>>;
|
|
4428
|
+
}, z.core.$strip>>;
|
|
3787
4429
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3788
4430
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
3789
4431
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3984,6 +4626,33 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
3984
4626
|
}, z.core.$strip>;
|
|
3985
4627
|
declare const ContentTableRowSchema: z.ZodObject<{
|
|
3986
4628
|
cells: z.ZodArray<z.ZodObject<{
|
|
4629
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4630
|
+
body: "body";
|
|
4631
|
+
chart: "chart";
|
|
4632
|
+
diagram: "diagram";
|
|
4633
|
+
table: "table";
|
|
4634
|
+
image: "image";
|
|
4635
|
+
notes: "notes";
|
|
4636
|
+
}>>;
|
|
4637
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4638
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4639
|
+
text: z.ZodString;
|
|
4640
|
+
confidence: z.ZodEnum<{
|
|
4641
|
+
high: "high";
|
|
4642
|
+
medium: "medium";
|
|
4643
|
+
low: "low";
|
|
4644
|
+
}>;
|
|
4645
|
+
mechanism: z.ZodEnum<{
|
|
4646
|
+
deterministic: "deterministic";
|
|
4647
|
+
model: "model";
|
|
4648
|
+
}>;
|
|
4649
|
+
}, z.core.$strip>>;
|
|
4650
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4651
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4652
|
+
model: z.ZodString;
|
|
4653
|
+
at: z.ZodString;
|
|
4654
|
+
}, z.core.$strip>>;
|
|
4655
|
+
}, z.core.$strip>>;
|
|
3987
4656
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3988
4657
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
3989
4658
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4189,9 +4858,63 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4189
4858
|
}>>;
|
|
4190
4859
|
}, z.core.$strip>;
|
|
4191
4860
|
declare const ContentTableSchema: z.ZodObject<{
|
|
4861
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4862
|
+
body: "body";
|
|
4863
|
+
chart: "chart";
|
|
4864
|
+
diagram: "diagram";
|
|
4865
|
+
table: "table";
|
|
4866
|
+
image: "image";
|
|
4867
|
+
notes: "notes";
|
|
4868
|
+
}>>;
|
|
4869
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4870
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4871
|
+
text: z.ZodString;
|
|
4872
|
+
confidence: z.ZodEnum<{
|
|
4873
|
+
high: "high";
|
|
4874
|
+
medium: "medium";
|
|
4875
|
+
low: "low";
|
|
4876
|
+
}>;
|
|
4877
|
+
mechanism: z.ZodEnum<{
|
|
4878
|
+
deterministic: "deterministic";
|
|
4879
|
+
model: "model";
|
|
4880
|
+
}>;
|
|
4881
|
+
}, z.core.$strip>>;
|
|
4882
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4883
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4884
|
+
model: z.ZodString;
|
|
4885
|
+
at: z.ZodString;
|
|
4886
|
+
}, z.core.$strip>>;
|
|
4887
|
+
}, z.core.$strip>>;
|
|
4192
4888
|
kind: z.ZodLiteral<"table">;
|
|
4193
4889
|
rows: z.ZodArray<z.ZodObject<{
|
|
4194
4890
|
cells: z.ZodArray<z.ZodObject<{
|
|
4891
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4892
|
+
body: "body";
|
|
4893
|
+
chart: "chart";
|
|
4894
|
+
diagram: "diagram";
|
|
4895
|
+
table: "table";
|
|
4896
|
+
image: "image";
|
|
4897
|
+
notes: "notes";
|
|
4898
|
+
}>>;
|
|
4899
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4900
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4901
|
+
text: z.ZodString;
|
|
4902
|
+
confidence: z.ZodEnum<{
|
|
4903
|
+
high: "high";
|
|
4904
|
+
medium: "medium";
|
|
4905
|
+
low: "low";
|
|
4906
|
+
}>;
|
|
4907
|
+
mechanism: z.ZodEnum<{
|
|
4908
|
+
deterministic: "deterministic";
|
|
4909
|
+
model: "model";
|
|
4910
|
+
}>;
|
|
4911
|
+
}, z.core.$strip>>;
|
|
4912
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4913
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4914
|
+
model: z.ZodString;
|
|
4915
|
+
at: z.ZodString;
|
|
4916
|
+
}, z.core.$strip>>;
|
|
4917
|
+
}, z.core.$strip>>;
|
|
4195
4918
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
4196
4919
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
4197
4920
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4434,6 +5157,33 @@ declare const ContentPageFurnitureSchema: z.ZodObject<{
|
|
|
4434
5157
|
}, z.core.$strip>;
|
|
4435
5158
|
type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
|
|
4436
5159
|
declare const ContentSectionSchema: z.ZodObject<{
|
|
5160
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5161
|
+
body: "body";
|
|
5162
|
+
chart: "chart";
|
|
5163
|
+
diagram: "diagram";
|
|
5164
|
+
table: "table";
|
|
5165
|
+
image: "image";
|
|
5166
|
+
notes: "notes";
|
|
5167
|
+
}>>;
|
|
5168
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5169
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5170
|
+
text: z.ZodString;
|
|
5171
|
+
confidence: z.ZodEnum<{
|
|
5172
|
+
high: "high";
|
|
5173
|
+
medium: "medium";
|
|
5174
|
+
low: "low";
|
|
5175
|
+
}>;
|
|
5176
|
+
mechanism: z.ZodEnum<{
|
|
5177
|
+
deterministic: "deterministic";
|
|
5178
|
+
model: "model";
|
|
5179
|
+
}>;
|
|
5180
|
+
}, z.core.$strip>>;
|
|
5181
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5183
|
+
model: z.ZodString;
|
|
5184
|
+
at: z.ZodString;
|
|
5185
|
+
}, z.core.$strip>>;
|
|
5186
|
+
}, z.core.$strip>>;
|
|
4437
5187
|
pageSize: z.ZodObject<{
|
|
4438
5188
|
widthPt: z.ZodNumber;
|
|
4439
5189
|
heightPt: z.ZodNumber;
|
|
@@ -4484,6 +5234,34 @@ declare const ContentSectionSchema: z.ZodObject<{
|
|
|
4484
5234
|
}, z.core.$strip>;
|
|
4485
5235
|
type ContentSection = z.infer<typeof ContentSectionSchema>;
|
|
4486
5236
|
declare const ContentShapeSchema: z.ZodObject<{
|
|
5237
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5238
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5239
|
+
body: "body";
|
|
5240
|
+
chart: "chart";
|
|
5241
|
+
diagram: "diagram";
|
|
5242
|
+
table: "table";
|
|
5243
|
+
image: "image";
|
|
5244
|
+
notes: "notes";
|
|
5245
|
+
}>>;
|
|
5246
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5247
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5248
|
+
text: z.ZodString;
|
|
5249
|
+
confidence: z.ZodEnum<{
|
|
5250
|
+
high: "high";
|
|
5251
|
+
medium: "medium";
|
|
5252
|
+
low: "low";
|
|
5253
|
+
}>;
|
|
5254
|
+
mechanism: z.ZodEnum<{
|
|
5255
|
+
deterministic: "deterministic";
|
|
5256
|
+
model: "model";
|
|
5257
|
+
}>;
|
|
5258
|
+
}, z.core.$strip>>;
|
|
5259
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5260
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5261
|
+
model: z.ZodString;
|
|
5262
|
+
at: z.ZodString;
|
|
5263
|
+
}, z.core.$strip>>;
|
|
5264
|
+
}, z.core.$strip>>;
|
|
4487
5265
|
name: z.ZodOptional<z.ZodString>;
|
|
4488
5266
|
frame: z.ZodObject<{
|
|
4489
5267
|
xPt: z.ZodNumber;
|
|
@@ -4527,19 +5305,73 @@ declare const ContentShapeSchema: z.ZodObject<{
|
|
|
4527
5305
|
widthPt: z.ZodNumber;
|
|
4528
5306
|
heightPt: z.ZodNumber;
|
|
4529
5307
|
}, z.core.$strip>>>;
|
|
4530
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
4531
5308
|
}, z.core.$strip>;
|
|
4532
5309
|
type ContentShape = z.infer<typeof ContentShapeSchema>;
|
|
4533
5310
|
declare const ContentSlideSchema: z.ZodObject<{
|
|
5311
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5312
|
+
body: "body";
|
|
5313
|
+
chart: "chart";
|
|
5314
|
+
diagram: "diagram";
|
|
5315
|
+
table: "table";
|
|
5316
|
+
image: "image";
|
|
5317
|
+
notes: "notes";
|
|
5318
|
+
}>>;
|
|
5319
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5320
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5321
|
+
text: z.ZodString;
|
|
5322
|
+
confidence: z.ZodEnum<{
|
|
5323
|
+
high: "high";
|
|
5324
|
+
medium: "medium";
|
|
5325
|
+
low: "low";
|
|
5326
|
+
}>;
|
|
5327
|
+
mechanism: z.ZodEnum<{
|
|
5328
|
+
deterministic: "deterministic";
|
|
5329
|
+
model: "model";
|
|
5330
|
+
}>;
|
|
5331
|
+
}, z.core.$strip>>;
|
|
5332
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5333
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5334
|
+
model: z.ZodString;
|
|
5335
|
+
at: z.ZodString;
|
|
5336
|
+
}, z.core.$strip>>;
|
|
5337
|
+
}, z.core.$strip>>;
|
|
4534
5338
|
size: z.ZodObject<{
|
|
4535
5339
|
widthPt: z.ZodNumber;
|
|
4536
5340
|
heightPt: z.ZodNumber;
|
|
4537
5341
|
}, z.core.$strip>;
|
|
4538
5342
|
shapes: z.ZodArray<z.ZodObject<{
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
5343
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5344
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5345
|
+
body: "body";
|
|
5346
|
+
chart: "chart";
|
|
5347
|
+
diagram: "diagram";
|
|
5348
|
+
table: "table";
|
|
5349
|
+
image: "image";
|
|
5350
|
+
notes: "notes";
|
|
5351
|
+
}>>;
|
|
5352
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5353
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5354
|
+
text: z.ZodString;
|
|
5355
|
+
confidence: z.ZodEnum<{
|
|
5356
|
+
high: "high";
|
|
5357
|
+
medium: "medium";
|
|
5358
|
+
low: "low";
|
|
5359
|
+
}>;
|
|
5360
|
+
mechanism: z.ZodEnum<{
|
|
5361
|
+
deterministic: "deterministic";
|
|
5362
|
+
model: "model";
|
|
5363
|
+
}>;
|
|
5364
|
+
}, z.core.$strip>>;
|
|
5365
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5366
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5367
|
+
model: z.ZodString;
|
|
5368
|
+
at: z.ZodString;
|
|
5369
|
+
}, z.core.$strip>>;
|
|
5370
|
+
}, z.core.$strip>>;
|
|
5371
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5372
|
+
frame: z.ZodObject<{
|
|
5373
|
+
xPt: z.ZodNumber;
|
|
5374
|
+
yPt: z.ZodNumber;
|
|
4543
5375
|
widthPt: z.ZodNumber;
|
|
4544
5376
|
heightPt: z.ZodNumber;
|
|
4545
5377
|
}, z.core.$strip>;
|
|
@@ -4579,7 +5411,6 @@ declare const ContentSlideSchema: z.ZodObject<{
|
|
|
4579
5411
|
widthPt: z.ZodNumber;
|
|
4580
5412
|
heightPt: z.ZodNumber;
|
|
4581
5413
|
}, z.core.$strip>>>;
|
|
4582
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
4583
5414
|
}, z.core.$strip>>;
|
|
4584
5415
|
notes: z.ZodString;
|
|
4585
5416
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -4652,6 +5483,33 @@ declare const ContentSheetCellCommentSchema: z.ZodObject<{
|
|
|
4652
5483
|
}, z.core.$strip>;
|
|
4653
5484
|
type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
|
|
4654
5485
|
declare const ContentSheetCellSchema: z.ZodObject<{
|
|
5486
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5487
|
+
body: "body";
|
|
5488
|
+
chart: "chart";
|
|
5489
|
+
diagram: "diagram";
|
|
5490
|
+
table: "table";
|
|
5491
|
+
image: "image";
|
|
5492
|
+
notes: "notes";
|
|
5493
|
+
}>>;
|
|
5494
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5495
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5496
|
+
text: z.ZodString;
|
|
5497
|
+
confidence: z.ZodEnum<{
|
|
5498
|
+
high: "high";
|
|
5499
|
+
medium: "medium";
|
|
5500
|
+
low: "low";
|
|
5501
|
+
}>;
|
|
5502
|
+
mechanism: z.ZodEnum<{
|
|
5503
|
+
deterministic: "deterministic";
|
|
5504
|
+
model: "model";
|
|
5505
|
+
}>;
|
|
5506
|
+
}, z.core.$strip>>;
|
|
5507
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5508
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5509
|
+
model: z.ZodString;
|
|
5510
|
+
at: z.ZodString;
|
|
5511
|
+
}, z.core.$strip>>;
|
|
5512
|
+
}, z.core.$strip>>;
|
|
4655
5513
|
row: z.ZodNumber;
|
|
4656
5514
|
column: z.ZodNumber;
|
|
4657
5515
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -4705,6 +5563,33 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
4705
5563
|
}, z.core.$strip>>;
|
|
4706
5564
|
}, z.core.$strip>>;
|
|
4707
5565
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5566
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5567
|
+
body: "body";
|
|
5568
|
+
chart: "chart";
|
|
5569
|
+
diagram: "diagram";
|
|
5570
|
+
table: "table";
|
|
5571
|
+
image: "image";
|
|
5572
|
+
notes: "notes";
|
|
5573
|
+
}>>;
|
|
5574
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5575
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5576
|
+
text: z.ZodString;
|
|
5577
|
+
confidence: z.ZodEnum<{
|
|
5578
|
+
high: "high";
|
|
5579
|
+
medium: "medium";
|
|
5580
|
+
low: "low";
|
|
5581
|
+
}>;
|
|
5582
|
+
mechanism: z.ZodEnum<{
|
|
5583
|
+
deterministic: "deterministic";
|
|
5584
|
+
model: "model";
|
|
5585
|
+
}>;
|
|
5586
|
+
}, z.core.$strip>>;
|
|
5587
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5588
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5589
|
+
model: z.ZodString;
|
|
5590
|
+
at: z.ZodString;
|
|
5591
|
+
}, z.core.$strip>>;
|
|
5592
|
+
}, z.core.$strip>>;
|
|
4708
5593
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
4709
5594
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4710
5595
|
superscript: "superscript";
|
|
@@ -5054,9 +5939,9 @@ type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
|
|
|
5054
5939
|
declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
|
|
5055
5940
|
date: "date";
|
|
5056
5941
|
custom: "custom";
|
|
5942
|
+
time: "time";
|
|
5057
5943
|
decimal: "decimal";
|
|
5058
5944
|
list: "list";
|
|
5059
|
-
time: "time";
|
|
5060
5945
|
whole: "whole";
|
|
5061
5946
|
textLength: "textLength";
|
|
5062
5947
|
}>;
|
|
@@ -5071,9 +5956,9 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
|
|
|
5071
5956
|
type: z.ZodEnum<{
|
|
5072
5957
|
date: "date";
|
|
5073
5958
|
custom: "custom";
|
|
5959
|
+
time: "time";
|
|
5074
5960
|
decimal: "decimal";
|
|
5075
5961
|
list: "list";
|
|
5076
|
-
time: "time";
|
|
5077
5962
|
whole: "whole";
|
|
5078
5963
|
textLength: "textLength";
|
|
5079
5964
|
}>;
|
|
@@ -5158,11 +6043,11 @@ declare const ContentSheetConditionalFormatStyleSchema: z.ZodObject<{
|
|
|
5158
6043
|
type ContentSheetConditionalFormatStyle = z.infer<typeof ContentSheetConditionalFormatStyleSchema>;
|
|
5159
6044
|
declare const ContentSheetConditionalFormatValueSchema: z.ZodObject<{
|
|
5160
6045
|
type: z.ZodEnum<{
|
|
5161
|
-
formula: "formula";
|
|
5162
|
-
percent: "percent";
|
|
5163
6046
|
num: "num";
|
|
5164
|
-
max: "max";
|
|
5165
6047
|
min: "min";
|
|
6048
|
+
max: "max";
|
|
6049
|
+
formula: "formula";
|
|
6050
|
+
percent: "percent";
|
|
5166
6051
|
percentile: "percentile";
|
|
5167
6052
|
}>;
|
|
5168
6053
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5590,11 +6475,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5590
6475
|
stops: z.ZodArray<z.ZodObject<{
|
|
5591
6476
|
value: z.ZodObject<{
|
|
5592
6477
|
type: z.ZodEnum<{
|
|
5593
|
-
formula: "formula";
|
|
5594
|
-
percent: "percent";
|
|
5595
6478
|
num: "num";
|
|
5596
|
-
max: "max";
|
|
5597
6479
|
min: "min";
|
|
6480
|
+
max: "max";
|
|
6481
|
+
formula: "formula";
|
|
6482
|
+
percent: "percent";
|
|
5598
6483
|
percentile: "percentile";
|
|
5599
6484
|
}>;
|
|
5600
6485
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5637,22 +6522,22 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5637
6522
|
}, z.core.$strip>, z.ZodObject<{
|
|
5638
6523
|
min: z.ZodObject<{
|
|
5639
6524
|
type: z.ZodEnum<{
|
|
5640
|
-
formula: "formula";
|
|
5641
|
-
percent: "percent";
|
|
5642
6525
|
num: "num";
|
|
5643
|
-
max: "max";
|
|
5644
6526
|
min: "min";
|
|
6527
|
+
max: "max";
|
|
6528
|
+
formula: "formula";
|
|
6529
|
+
percent: "percent";
|
|
5645
6530
|
percentile: "percentile";
|
|
5646
6531
|
}>;
|
|
5647
6532
|
value: z.ZodOptional<z.ZodString>;
|
|
5648
6533
|
}, z.core.$strip>;
|
|
5649
6534
|
max: z.ZodObject<{
|
|
5650
6535
|
type: z.ZodEnum<{
|
|
5651
|
-
formula: "formula";
|
|
5652
|
-
percent: "percent";
|
|
5653
6536
|
num: "num";
|
|
5654
|
-
max: "max";
|
|
5655
6537
|
min: "min";
|
|
6538
|
+
max: "max";
|
|
6539
|
+
formula: "formula";
|
|
6540
|
+
percent: "percent";
|
|
5656
6541
|
percentile: "percentile";
|
|
5657
6542
|
}>;
|
|
5658
6543
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5696,11 +6581,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5696
6581
|
iconSetType: z.ZodString;
|
|
5697
6582
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
5698
6583
|
type: z.ZodEnum<{
|
|
5699
|
-
formula: "formula";
|
|
5700
|
-
percent: "percent";
|
|
5701
6584
|
num: "num";
|
|
5702
|
-
max: "max";
|
|
5703
6585
|
min: "min";
|
|
6586
|
+
max: "max";
|
|
6587
|
+
formula: "formula";
|
|
6588
|
+
percent: "percent";
|
|
5704
6589
|
percentile: "percentile";
|
|
5705
6590
|
}>;
|
|
5706
6591
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5739,6 +6624,33 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5739
6624
|
}, z.core.$strip>], "type">;
|
|
5740
6625
|
type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalFormatSchema>;
|
|
5741
6626
|
declare const ContentSheetImageSchema: z.ZodObject<{
|
|
6627
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6628
|
+
body: "body";
|
|
6629
|
+
chart: "chart";
|
|
6630
|
+
diagram: "diagram";
|
|
6631
|
+
table: "table";
|
|
6632
|
+
image: "image";
|
|
6633
|
+
notes: "notes";
|
|
6634
|
+
}>>;
|
|
6635
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6636
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6637
|
+
text: z.ZodString;
|
|
6638
|
+
confidence: z.ZodEnum<{
|
|
6639
|
+
high: "high";
|
|
6640
|
+
medium: "medium";
|
|
6641
|
+
low: "low";
|
|
6642
|
+
}>;
|
|
6643
|
+
mechanism: z.ZodEnum<{
|
|
6644
|
+
deterministic: "deterministic";
|
|
6645
|
+
model: "model";
|
|
6646
|
+
}>;
|
|
6647
|
+
}, z.core.$strip>>;
|
|
6648
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6649
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6650
|
+
model: z.ZodString;
|
|
6651
|
+
at: z.ZodString;
|
|
6652
|
+
}, z.core.$strip>>;
|
|
6653
|
+
}, z.core.$strip>>;
|
|
5742
6654
|
kind: z.ZodLiteral<"image">;
|
|
5743
6655
|
format: z.ZodEnum<{
|
|
5744
6656
|
png: "png";
|
|
@@ -5758,6 +6670,8 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5758
6670
|
base64: z.ZodString;
|
|
5759
6671
|
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
5760
6672
|
}, z.core.$strip>>;
|
|
6673
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
6674
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
5761
6675
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
5762
6676
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
5763
6677
|
relativeTo: z.ZodEnum<{
|
|
@@ -5881,8 +6795,62 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5881
6795
|
}, z.core.$strip>;
|
|
5882
6796
|
type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
|
|
5883
6797
|
declare const ContentSheetSchema: z.ZodObject<{
|
|
6798
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6799
|
+
body: "body";
|
|
6800
|
+
chart: "chart";
|
|
6801
|
+
diagram: "diagram";
|
|
6802
|
+
table: "table";
|
|
6803
|
+
image: "image";
|
|
6804
|
+
notes: "notes";
|
|
6805
|
+
}>>;
|
|
6806
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6807
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6808
|
+
text: z.ZodString;
|
|
6809
|
+
confidence: z.ZodEnum<{
|
|
6810
|
+
high: "high";
|
|
6811
|
+
medium: "medium";
|
|
6812
|
+
low: "low";
|
|
6813
|
+
}>;
|
|
6814
|
+
mechanism: z.ZodEnum<{
|
|
6815
|
+
deterministic: "deterministic";
|
|
6816
|
+
model: "model";
|
|
6817
|
+
}>;
|
|
6818
|
+
}, z.core.$strip>>;
|
|
6819
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6820
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6821
|
+
model: z.ZodString;
|
|
6822
|
+
at: z.ZodString;
|
|
6823
|
+
}, z.core.$strip>>;
|
|
6824
|
+
}, z.core.$strip>>;
|
|
5884
6825
|
name: z.ZodString;
|
|
5885
6826
|
cells: z.ZodArray<z.ZodObject<{
|
|
6827
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6828
|
+
body: "body";
|
|
6829
|
+
chart: "chart";
|
|
6830
|
+
diagram: "diagram";
|
|
6831
|
+
table: "table";
|
|
6832
|
+
image: "image";
|
|
6833
|
+
notes: "notes";
|
|
6834
|
+
}>>;
|
|
6835
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6836
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6837
|
+
text: z.ZodString;
|
|
6838
|
+
confidence: z.ZodEnum<{
|
|
6839
|
+
high: "high";
|
|
6840
|
+
medium: "medium";
|
|
6841
|
+
low: "low";
|
|
6842
|
+
}>;
|
|
6843
|
+
mechanism: z.ZodEnum<{
|
|
6844
|
+
deterministic: "deterministic";
|
|
6845
|
+
model: "model";
|
|
6846
|
+
}>;
|
|
6847
|
+
}, z.core.$strip>>;
|
|
6848
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6849
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6850
|
+
model: z.ZodString;
|
|
6851
|
+
at: z.ZodString;
|
|
6852
|
+
}, z.core.$strip>>;
|
|
6853
|
+
}, z.core.$strip>>;
|
|
5886
6854
|
row: z.ZodNumber;
|
|
5887
6855
|
column: z.ZodNumber;
|
|
5888
6856
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -5936,6 +6904,33 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
5936
6904
|
}, z.core.$strip>>;
|
|
5937
6905
|
}, z.core.$strip>>;
|
|
5938
6906
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6907
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6908
|
+
body: "body";
|
|
6909
|
+
chart: "chart";
|
|
6910
|
+
diagram: "diagram";
|
|
6911
|
+
table: "table";
|
|
6912
|
+
image: "image";
|
|
6913
|
+
notes: "notes";
|
|
6914
|
+
}>>;
|
|
6915
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6916
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6917
|
+
text: z.ZodString;
|
|
6918
|
+
confidence: z.ZodEnum<{
|
|
6919
|
+
high: "high";
|
|
6920
|
+
medium: "medium";
|
|
6921
|
+
low: "low";
|
|
6922
|
+
}>;
|
|
6923
|
+
mechanism: z.ZodEnum<{
|
|
6924
|
+
deterministic: "deterministic";
|
|
6925
|
+
model: "model";
|
|
6926
|
+
}>;
|
|
6927
|
+
}, z.core.$strip>>;
|
|
6928
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6929
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6930
|
+
model: z.ZodString;
|
|
6931
|
+
at: z.ZodString;
|
|
6932
|
+
}, z.core.$strip>>;
|
|
6933
|
+
}, z.core.$strip>>;
|
|
5939
6934
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
5940
6935
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
5941
6936
|
superscript: "superscript";
|
|
@@ -6208,6 +7203,33 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6208
7203
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6209
7204
|
}, z.core.$strip>>;
|
|
6210
7205
|
images: z.ZodArray<z.ZodObject<{
|
|
7206
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
7207
|
+
body: "body";
|
|
7208
|
+
chart: "chart";
|
|
7209
|
+
diagram: "diagram";
|
|
7210
|
+
table: "table";
|
|
7211
|
+
image: "image";
|
|
7212
|
+
notes: "notes";
|
|
7213
|
+
}>>;
|
|
7214
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
7215
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
7216
|
+
text: z.ZodString;
|
|
7217
|
+
confidence: z.ZodEnum<{
|
|
7218
|
+
high: "high";
|
|
7219
|
+
medium: "medium";
|
|
7220
|
+
low: "low";
|
|
7221
|
+
}>;
|
|
7222
|
+
mechanism: z.ZodEnum<{
|
|
7223
|
+
deterministic: "deterministic";
|
|
7224
|
+
model: "model";
|
|
7225
|
+
}>;
|
|
7226
|
+
}, z.core.$strip>>;
|
|
7227
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7228
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
7229
|
+
model: z.ZodString;
|
|
7230
|
+
at: z.ZodString;
|
|
7231
|
+
}, z.core.$strip>>;
|
|
7232
|
+
}, z.core.$strip>>;
|
|
6211
7233
|
kind: z.ZodLiteral<"image">;
|
|
6212
7234
|
format: z.ZodEnum<{
|
|
6213
7235
|
png: "png";
|
|
@@ -6227,6 +7249,8 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6227
7249
|
base64: z.ZodString;
|
|
6228
7250
|
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
6229
7251
|
}, z.core.$strip>>;
|
|
7252
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
7253
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
6230
7254
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
6231
7255
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
6232
7256
|
relativeTo: z.ZodEnum<{
|
|
@@ -6400,9 +7424,9 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6400
7424
|
type: z.ZodEnum<{
|
|
6401
7425
|
date: "date";
|
|
6402
7426
|
custom: "custom";
|
|
7427
|
+
time: "time";
|
|
6403
7428
|
decimal: "decimal";
|
|
6404
7429
|
list: "list";
|
|
6405
|
-
time: "time";
|
|
6406
7430
|
whole: "whole";
|
|
6407
7431
|
textLength: "textLength";
|
|
6408
7432
|
}>;
|
|
@@ -6873,11 +7897,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6873
7897
|
stops: z.ZodArray<z.ZodObject<{
|
|
6874
7898
|
value: z.ZodObject<{
|
|
6875
7899
|
type: z.ZodEnum<{
|
|
6876
|
-
formula: "formula";
|
|
6877
|
-
percent: "percent";
|
|
6878
7900
|
num: "num";
|
|
6879
|
-
max: "max";
|
|
6880
7901
|
min: "min";
|
|
7902
|
+
max: "max";
|
|
7903
|
+
formula: "formula";
|
|
7904
|
+
percent: "percent";
|
|
6881
7905
|
percentile: "percentile";
|
|
6882
7906
|
}>;
|
|
6883
7907
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6920,22 +7944,22 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6920
7944
|
}, z.core.$strip>, z.ZodObject<{
|
|
6921
7945
|
min: z.ZodObject<{
|
|
6922
7946
|
type: z.ZodEnum<{
|
|
6923
|
-
formula: "formula";
|
|
6924
|
-
percent: "percent";
|
|
6925
7947
|
num: "num";
|
|
6926
|
-
max: "max";
|
|
6927
7948
|
min: "min";
|
|
7949
|
+
max: "max";
|
|
7950
|
+
formula: "formula";
|
|
7951
|
+
percent: "percent";
|
|
6928
7952
|
percentile: "percentile";
|
|
6929
7953
|
}>;
|
|
6930
7954
|
value: z.ZodOptional<z.ZodString>;
|
|
6931
7955
|
}, z.core.$strip>;
|
|
6932
7956
|
max: z.ZodObject<{
|
|
6933
7957
|
type: z.ZodEnum<{
|
|
6934
|
-
formula: "formula";
|
|
6935
|
-
percent: "percent";
|
|
6936
7958
|
num: "num";
|
|
6937
|
-
max: "max";
|
|
6938
7959
|
min: "min";
|
|
7960
|
+
max: "max";
|
|
7961
|
+
formula: "formula";
|
|
7962
|
+
percent: "percent";
|
|
6939
7963
|
percentile: "percentile";
|
|
6940
7964
|
}>;
|
|
6941
7965
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6979,11 +8003,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6979
8003
|
iconSetType: z.ZodString;
|
|
6980
8004
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
6981
8005
|
type: z.ZodEnum<{
|
|
6982
|
-
formula: "formula";
|
|
6983
|
-
percent: "percent";
|
|
6984
8006
|
num: "num";
|
|
6985
|
-
max: "max";
|
|
6986
8007
|
min: "min";
|
|
8008
|
+
max: "max";
|
|
8009
|
+
formula: "formula";
|
|
8010
|
+
percent: "percent";
|
|
6987
8011
|
percentile: "percentile";
|
|
6988
8012
|
}>;
|
|
6989
8013
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -7241,6 +8265,33 @@ declare const ContentSubpathSchema: z.ZodObject<{
|
|
|
7241
8265
|
}, z.core.$strip>;
|
|
7242
8266
|
type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
|
|
7243
8267
|
declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8268
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8269
|
+
body: "body";
|
|
8270
|
+
chart: "chart";
|
|
8271
|
+
diagram: "diagram";
|
|
8272
|
+
table: "table";
|
|
8273
|
+
image: "image";
|
|
8274
|
+
notes: "notes";
|
|
8275
|
+
}>>;
|
|
8276
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8277
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8278
|
+
text: z.ZodString;
|
|
8279
|
+
confidence: z.ZodEnum<{
|
|
8280
|
+
high: "high";
|
|
8281
|
+
medium: "medium";
|
|
8282
|
+
low: "low";
|
|
8283
|
+
}>;
|
|
8284
|
+
mechanism: z.ZodEnum<{
|
|
8285
|
+
deterministic: "deterministic";
|
|
8286
|
+
model: "model";
|
|
8287
|
+
}>;
|
|
8288
|
+
}, z.core.$strip>>;
|
|
8289
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8290
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8291
|
+
model: z.ZodString;
|
|
8292
|
+
at: z.ZodString;
|
|
8293
|
+
}, z.core.$strip>>;
|
|
8294
|
+
}, z.core.$strip>>;
|
|
7244
8295
|
kind: z.ZodLiteral<"rect">;
|
|
7245
8296
|
frame: z.ZodObject<{
|
|
7246
8297
|
xPt: z.ZodNumber;
|
|
@@ -7352,6 +8403,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7352
8403
|
heightPt: z.ZodNumber;
|
|
7353
8404
|
}, z.core.$strip>>>;
|
|
7354
8405
|
}, z.core.$strip>, z.ZodObject<{
|
|
8406
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8407
|
+
body: "body";
|
|
8408
|
+
chart: "chart";
|
|
8409
|
+
diagram: "diagram";
|
|
8410
|
+
table: "table";
|
|
8411
|
+
image: "image";
|
|
8412
|
+
notes: "notes";
|
|
8413
|
+
}>>;
|
|
8414
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8415
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8416
|
+
text: z.ZodString;
|
|
8417
|
+
confidence: z.ZodEnum<{
|
|
8418
|
+
high: "high";
|
|
8419
|
+
medium: "medium";
|
|
8420
|
+
low: "low";
|
|
8421
|
+
}>;
|
|
8422
|
+
mechanism: z.ZodEnum<{
|
|
8423
|
+
deterministic: "deterministic";
|
|
8424
|
+
model: "model";
|
|
8425
|
+
}>;
|
|
8426
|
+
}, z.core.$strip>>;
|
|
8427
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8428
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8429
|
+
model: z.ZodString;
|
|
8430
|
+
at: z.ZodString;
|
|
8431
|
+
}, z.core.$strip>>;
|
|
8432
|
+
}, z.core.$strip>>;
|
|
7355
8433
|
kind: z.ZodLiteral<"ellipse">;
|
|
7356
8434
|
frame: z.ZodObject<{
|
|
7357
8435
|
xPt: z.ZodNumber;
|
|
@@ -7463,6 +8541,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7463
8541
|
heightPt: z.ZodNumber;
|
|
7464
8542
|
}, z.core.$strip>>>;
|
|
7465
8543
|
}, z.core.$strip>, z.ZodObject<{
|
|
8544
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8545
|
+
body: "body";
|
|
8546
|
+
chart: "chart";
|
|
8547
|
+
diagram: "diagram";
|
|
8548
|
+
table: "table";
|
|
8549
|
+
image: "image";
|
|
8550
|
+
notes: "notes";
|
|
8551
|
+
}>>;
|
|
8552
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8553
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8554
|
+
text: z.ZodString;
|
|
8555
|
+
confidence: z.ZodEnum<{
|
|
8556
|
+
high: "high";
|
|
8557
|
+
medium: "medium";
|
|
8558
|
+
low: "low";
|
|
8559
|
+
}>;
|
|
8560
|
+
mechanism: z.ZodEnum<{
|
|
8561
|
+
deterministic: "deterministic";
|
|
8562
|
+
model: "model";
|
|
8563
|
+
}>;
|
|
8564
|
+
}, z.core.$strip>>;
|
|
8565
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8566
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8567
|
+
model: z.ZodString;
|
|
8568
|
+
at: z.ZodString;
|
|
8569
|
+
}, z.core.$strip>>;
|
|
8570
|
+
}, z.core.$strip>>;
|
|
7466
8571
|
kind: z.ZodLiteral<"line">;
|
|
7467
8572
|
from: z.ZodObject<{
|
|
7468
8573
|
xPt: z.ZodNumber;
|
|
@@ -7524,6 +8629,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7524
8629
|
heightPt: z.ZodNumber;
|
|
7525
8630
|
}, z.core.$strip>>>;
|
|
7526
8631
|
}, z.core.$strip>, z.ZodObject<{
|
|
8632
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8633
|
+
body: "body";
|
|
8634
|
+
chart: "chart";
|
|
8635
|
+
diagram: "diagram";
|
|
8636
|
+
table: "table";
|
|
8637
|
+
image: "image";
|
|
8638
|
+
notes: "notes";
|
|
8639
|
+
}>>;
|
|
8640
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8641
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8642
|
+
text: z.ZodString;
|
|
8643
|
+
confidence: z.ZodEnum<{
|
|
8644
|
+
high: "high";
|
|
8645
|
+
medium: "medium";
|
|
8646
|
+
low: "low";
|
|
8647
|
+
}>;
|
|
8648
|
+
mechanism: z.ZodEnum<{
|
|
8649
|
+
deterministic: "deterministic";
|
|
8650
|
+
model: "model";
|
|
8651
|
+
}>;
|
|
8652
|
+
}, z.core.$strip>>;
|
|
8653
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8654
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8655
|
+
model: z.ZodString;
|
|
8656
|
+
at: z.ZodString;
|
|
8657
|
+
}, z.core.$strip>>;
|
|
8658
|
+
}, z.core.$strip>>;
|
|
7527
8659
|
kind: z.ZodLiteral<"path">;
|
|
7528
8660
|
frame: z.ZodObject<{
|
|
7529
8661
|
xPt: z.ZodNumber;
|
|
@@ -7669,11 +8801,66 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7669
8801
|
}, z.core.$strip>], "kind">;
|
|
7670
8802
|
type ContentVector = z.infer<typeof ContentVectorSchema>;
|
|
7671
8803
|
declare const ContentDrawPageSchema: z.ZodObject<{
|
|
8804
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8805
|
+
body: "body";
|
|
8806
|
+
chart: "chart";
|
|
8807
|
+
diagram: "diagram";
|
|
8808
|
+
table: "table";
|
|
8809
|
+
image: "image";
|
|
8810
|
+
notes: "notes";
|
|
8811
|
+
}>>;
|
|
8812
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8813
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8814
|
+
text: z.ZodString;
|
|
8815
|
+
confidence: z.ZodEnum<{
|
|
8816
|
+
high: "high";
|
|
8817
|
+
medium: "medium";
|
|
8818
|
+
low: "low";
|
|
8819
|
+
}>;
|
|
8820
|
+
mechanism: z.ZodEnum<{
|
|
8821
|
+
deterministic: "deterministic";
|
|
8822
|
+
model: "model";
|
|
8823
|
+
}>;
|
|
8824
|
+
}, z.core.$strip>>;
|
|
8825
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8826
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8827
|
+
model: z.ZodString;
|
|
8828
|
+
at: z.ZodString;
|
|
8829
|
+
}, z.core.$strip>>;
|
|
8830
|
+
}, z.core.$strip>>;
|
|
7672
8831
|
size: z.ZodObject<{
|
|
7673
8832
|
widthPt: z.ZodNumber;
|
|
7674
8833
|
heightPt: z.ZodNumber;
|
|
7675
8834
|
}, z.core.$strip>;
|
|
7676
8835
|
shapes: z.ZodArray<z.ZodObject<{
|
|
8836
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
8837
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8838
|
+
body: "body";
|
|
8839
|
+
chart: "chart";
|
|
8840
|
+
diagram: "diagram";
|
|
8841
|
+
table: "table";
|
|
8842
|
+
image: "image";
|
|
8843
|
+
notes: "notes";
|
|
8844
|
+
}>>;
|
|
8845
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8846
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8847
|
+
text: z.ZodString;
|
|
8848
|
+
confidence: z.ZodEnum<{
|
|
8849
|
+
high: "high";
|
|
8850
|
+
medium: "medium";
|
|
8851
|
+
low: "low";
|
|
8852
|
+
}>;
|
|
8853
|
+
mechanism: z.ZodEnum<{
|
|
8854
|
+
deterministic: "deterministic";
|
|
8855
|
+
model: "model";
|
|
8856
|
+
}>;
|
|
8857
|
+
}, z.core.$strip>>;
|
|
8858
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8859
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8860
|
+
model: z.ZodString;
|
|
8861
|
+
at: z.ZodString;
|
|
8862
|
+
}, z.core.$strip>>;
|
|
8863
|
+
}, z.core.$strip>>;
|
|
7677
8864
|
name: z.ZodOptional<z.ZodString>;
|
|
7678
8865
|
frame: z.ZodObject<{
|
|
7679
8866
|
xPt: z.ZodNumber;
|
|
@@ -7717,9 +8904,35 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
7717
8904
|
widthPt: z.ZodNumber;
|
|
7718
8905
|
heightPt: z.ZodNumber;
|
|
7719
8906
|
}, z.core.$strip>>>;
|
|
7720
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
7721
8907
|
}, z.core.$strip>>;
|
|
7722
8908
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8909
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8910
|
+
body: "body";
|
|
8911
|
+
chart: "chart";
|
|
8912
|
+
diagram: "diagram";
|
|
8913
|
+
table: "table";
|
|
8914
|
+
image: "image";
|
|
8915
|
+
notes: "notes";
|
|
8916
|
+
}>>;
|
|
8917
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8918
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8919
|
+
text: z.ZodString;
|
|
8920
|
+
confidence: z.ZodEnum<{
|
|
8921
|
+
high: "high";
|
|
8922
|
+
medium: "medium";
|
|
8923
|
+
low: "low";
|
|
8924
|
+
}>;
|
|
8925
|
+
mechanism: z.ZodEnum<{
|
|
8926
|
+
deterministic: "deterministic";
|
|
8927
|
+
model: "model";
|
|
8928
|
+
}>;
|
|
8929
|
+
}, z.core.$strip>>;
|
|
8930
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8931
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8932
|
+
model: z.ZodString;
|
|
8933
|
+
at: z.ZodString;
|
|
8934
|
+
}, z.core.$strip>>;
|
|
8935
|
+
}, z.core.$strip>>;
|
|
7723
8936
|
kind: z.ZodLiteral<"rect">;
|
|
7724
8937
|
frame: z.ZodObject<{
|
|
7725
8938
|
xPt: z.ZodNumber;
|
|
@@ -7831,6 +9044,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
7831
9044
|
heightPt: z.ZodNumber;
|
|
7832
9045
|
}, z.core.$strip>>>;
|
|
7833
9046
|
}, z.core.$strip>, z.ZodObject<{
|
|
9047
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9048
|
+
body: "body";
|
|
9049
|
+
chart: "chart";
|
|
9050
|
+
diagram: "diagram";
|
|
9051
|
+
table: "table";
|
|
9052
|
+
image: "image";
|
|
9053
|
+
notes: "notes";
|
|
9054
|
+
}>>;
|
|
9055
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9056
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9057
|
+
text: z.ZodString;
|
|
9058
|
+
confidence: z.ZodEnum<{
|
|
9059
|
+
high: "high";
|
|
9060
|
+
medium: "medium";
|
|
9061
|
+
low: "low";
|
|
9062
|
+
}>;
|
|
9063
|
+
mechanism: z.ZodEnum<{
|
|
9064
|
+
deterministic: "deterministic";
|
|
9065
|
+
model: "model";
|
|
9066
|
+
}>;
|
|
9067
|
+
}, z.core.$strip>>;
|
|
9068
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9069
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9070
|
+
model: z.ZodString;
|
|
9071
|
+
at: z.ZodString;
|
|
9072
|
+
}, z.core.$strip>>;
|
|
9073
|
+
}, z.core.$strip>>;
|
|
7834
9074
|
kind: z.ZodLiteral<"ellipse">;
|
|
7835
9075
|
frame: z.ZodObject<{
|
|
7836
9076
|
xPt: z.ZodNumber;
|
|
@@ -7942,6 +9182,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
7942
9182
|
heightPt: z.ZodNumber;
|
|
7943
9183
|
}, z.core.$strip>>>;
|
|
7944
9184
|
}, z.core.$strip>, z.ZodObject<{
|
|
9185
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9186
|
+
body: "body";
|
|
9187
|
+
chart: "chart";
|
|
9188
|
+
diagram: "diagram";
|
|
9189
|
+
table: "table";
|
|
9190
|
+
image: "image";
|
|
9191
|
+
notes: "notes";
|
|
9192
|
+
}>>;
|
|
9193
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9194
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9195
|
+
text: z.ZodString;
|
|
9196
|
+
confidence: z.ZodEnum<{
|
|
9197
|
+
high: "high";
|
|
9198
|
+
medium: "medium";
|
|
9199
|
+
low: "low";
|
|
9200
|
+
}>;
|
|
9201
|
+
mechanism: z.ZodEnum<{
|
|
9202
|
+
deterministic: "deterministic";
|
|
9203
|
+
model: "model";
|
|
9204
|
+
}>;
|
|
9205
|
+
}, z.core.$strip>>;
|
|
9206
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9207
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9208
|
+
model: z.ZodString;
|
|
9209
|
+
at: z.ZodString;
|
|
9210
|
+
}, z.core.$strip>>;
|
|
9211
|
+
}, z.core.$strip>>;
|
|
7945
9212
|
kind: z.ZodLiteral<"line">;
|
|
7946
9213
|
from: z.ZodObject<{
|
|
7947
9214
|
xPt: z.ZodNumber;
|
|
@@ -8003,6 +9270,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8003
9270
|
heightPt: z.ZodNumber;
|
|
8004
9271
|
}, z.core.$strip>>>;
|
|
8005
9272
|
}, z.core.$strip>, z.ZodObject<{
|
|
9273
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9274
|
+
body: "body";
|
|
9275
|
+
chart: "chart";
|
|
9276
|
+
diagram: "diagram";
|
|
9277
|
+
table: "table";
|
|
9278
|
+
image: "image";
|
|
9279
|
+
notes: "notes";
|
|
9280
|
+
}>>;
|
|
9281
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9282
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9283
|
+
text: z.ZodString;
|
|
9284
|
+
confidence: z.ZodEnum<{
|
|
9285
|
+
high: "high";
|
|
9286
|
+
medium: "medium";
|
|
9287
|
+
low: "low";
|
|
9288
|
+
}>;
|
|
9289
|
+
mechanism: z.ZodEnum<{
|
|
9290
|
+
deterministic: "deterministic";
|
|
9291
|
+
model: "model";
|
|
9292
|
+
}>;
|
|
9293
|
+
}, z.core.$strip>>;
|
|
9294
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9295
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9296
|
+
model: z.ZodString;
|
|
9297
|
+
at: z.ZodString;
|
|
9298
|
+
}, z.core.$strip>>;
|
|
9299
|
+
}, z.core.$strip>>;
|
|
8006
9300
|
kind: z.ZodLiteral<"path">;
|
|
8007
9301
|
frame: z.ZodObject<{
|
|
8008
9302
|
xPt: z.ZodNumber;
|
|
@@ -8169,6 +9463,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8169
9463
|
}, z.core.$strip>;
|
|
8170
9464
|
type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
|
|
8171
9465
|
declare const ContentFormulaSchema: z.ZodObject<{
|
|
9466
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9467
|
+
body: "body";
|
|
9468
|
+
chart: "chart";
|
|
9469
|
+
diagram: "diagram";
|
|
9470
|
+
table: "table";
|
|
9471
|
+
image: "image";
|
|
9472
|
+
notes: "notes";
|
|
9473
|
+
}>>;
|
|
9474
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9475
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9476
|
+
text: z.ZodString;
|
|
9477
|
+
confidence: z.ZodEnum<{
|
|
9478
|
+
high: "high";
|
|
9479
|
+
medium: "medium";
|
|
9480
|
+
low: "low";
|
|
9481
|
+
}>;
|
|
9482
|
+
mechanism: z.ZodEnum<{
|
|
9483
|
+
deterministic: "deterministic";
|
|
9484
|
+
model: "model";
|
|
9485
|
+
}>;
|
|
9486
|
+
}, z.core.$strip>>;
|
|
9487
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9488
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9489
|
+
model: z.ZodString;
|
|
9490
|
+
at: z.ZodString;
|
|
9491
|
+
}, z.core.$strip>>;
|
|
9492
|
+
}, z.core.$strip>>;
|
|
8172
9493
|
mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
|
|
8173
9494
|
starMath: z.ZodOptional<z.ZodString>;
|
|
8174
9495
|
presentation: z.ZodOptional<z.ZodObject<{
|
|
@@ -8255,6 +9576,33 @@ declare const ContentDefinedNameSchema: z.ZodObject<{
|
|
|
8255
9576
|
type ContentDefinedName = z.infer<typeof ContentDefinedNameSchema>;
|
|
8256
9577
|
declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8257
9578
|
sections: z.ZodArray<z.ZodObject<{
|
|
9579
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9580
|
+
body: "body";
|
|
9581
|
+
chart: "chart";
|
|
9582
|
+
diagram: "diagram";
|
|
9583
|
+
table: "table";
|
|
9584
|
+
image: "image";
|
|
9585
|
+
notes: "notes";
|
|
9586
|
+
}>>;
|
|
9587
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9588
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9589
|
+
text: z.ZodString;
|
|
9590
|
+
confidence: z.ZodEnum<{
|
|
9591
|
+
high: "high";
|
|
9592
|
+
medium: "medium";
|
|
9593
|
+
low: "low";
|
|
9594
|
+
}>;
|
|
9595
|
+
mechanism: z.ZodEnum<{
|
|
9596
|
+
deterministic: "deterministic";
|
|
9597
|
+
model: "model";
|
|
9598
|
+
}>;
|
|
9599
|
+
}, z.core.$strip>>;
|
|
9600
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9601
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9602
|
+
model: z.ZodString;
|
|
9603
|
+
at: z.ZodString;
|
|
9604
|
+
}, z.core.$strip>>;
|
|
9605
|
+
}, z.core.$strip>>;
|
|
8258
9606
|
pageSize: z.ZodObject<{
|
|
8259
9607
|
widthPt: z.ZodNumber;
|
|
8260
9608
|
heightPt: z.ZodNumber;
|
|
@@ -8372,11 +9720,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8372
9720
|
}, z.core.$strip>;
|
|
8373
9721
|
}, z.core.$strip>, z.ZodObject<{
|
|
8374
9722
|
slides: z.ZodArray<z.ZodObject<{
|
|
9723
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9724
|
+
body: "body";
|
|
9725
|
+
chart: "chart";
|
|
9726
|
+
diagram: "diagram";
|
|
9727
|
+
table: "table";
|
|
9728
|
+
image: "image";
|
|
9729
|
+
notes: "notes";
|
|
9730
|
+
}>>;
|
|
9731
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9732
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9733
|
+
text: z.ZodString;
|
|
9734
|
+
confidence: z.ZodEnum<{
|
|
9735
|
+
high: "high";
|
|
9736
|
+
medium: "medium";
|
|
9737
|
+
low: "low";
|
|
9738
|
+
}>;
|
|
9739
|
+
mechanism: z.ZodEnum<{
|
|
9740
|
+
deterministic: "deterministic";
|
|
9741
|
+
model: "model";
|
|
9742
|
+
}>;
|
|
9743
|
+
}, z.core.$strip>>;
|
|
9744
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9745
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9746
|
+
model: z.ZodString;
|
|
9747
|
+
at: z.ZodString;
|
|
9748
|
+
}, z.core.$strip>>;
|
|
9749
|
+
}, z.core.$strip>>;
|
|
8375
9750
|
size: z.ZodObject<{
|
|
8376
9751
|
widthPt: z.ZodNumber;
|
|
8377
9752
|
heightPt: z.ZodNumber;
|
|
8378
9753
|
}, z.core.$strip>;
|
|
8379
9754
|
shapes: z.ZodArray<z.ZodObject<{
|
|
9755
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
9756
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9757
|
+
body: "body";
|
|
9758
|
+
chart: "chart";
|
|
9759
|
+
diagram: "diagram";
|
|
9760
|
+
table: "table";
|
|
9761
|
+
image: "image";
|
|
9762
|
+
notes: "notes";
|
|
9763
|
+
}>>;
|
|
9764
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9765
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9766
|
+
text: z.ZodString;
|
|
9767
|
+
confidence: z.ZodEnum<{
|
|
9768
|
+
high: "high";
|
|
9769
|
+
medium: "medium";
|
|
9770
|
+
low: "low";
|
|
9771
|
+
}>;
|
|
9772
|
+
mechanism: z.ZodEnum<{
|
|
9773
|
+
deterministic: "deterministic";
|
|
9774
|
+
model: "model";
|
|
9775
|
+
}>;
|
|
9776
|
+
}, z.core.$strip>>;
|
|
9777
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9778
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9779
|
+
model: z.ZodString;
|
|
9780
|
+
at: z.ZodString;
|
|
9781
|
+
}, z.core.$strip>>;
|
|
9782
|
+
}, z.core.$strip>>;
|
|
8380
9783
|
name: z.ZodOptional<z.ZodString>;
|
|
8381
9784
|
frame: z.ZodObject<{
|
|
8382
9785
|
xPt: z.ZodNumber;
|
|
@@ -8420,7 +9823,6 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8420
9823
|
widthPt: z.ZodNumber;
|
|
8421
9824
|
heightPt: z.ZodNumber;
|
|
8422
9825
|
}, z.core.$strip>>>;
|
|
8423
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
8424
9826
|
}, z.core.$strip>>;
|
|
8425
9827
|
notes: z.ZodString;
|
|
8426
9828
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -8513,8 +9915,62 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8513
9915
|
}, z.core.$strip>;
|
|
8514
9916
|
}, z.core.$strip>, z.ZodObject<{
|
|
8515
9917
|
sheets: z.ZodArray<z.ZodObject<{
|
|
9918
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9919
|
+
body: "body";
|
|
9920
|
+
chart: "chart";
|
|
9921
|
+
diagram: "diagram";
|
|
9922
|
+
table: "table";
|
|
9923
|
+
image: "image";
|
|
9924
|
+
notes: "notes";
|
|
9925
|
+
}>>;
|
|
9926
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9927
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9928
|
+
text: z.ZodString;
|
|
9929
|
+
confidence: z.ZodEnum<{
|
|
9930
|
+
high: "high";
|
|
9931
|
+
medium: "medium";
|
|
9932
|
+
low: "low";
|
|
9933
|
+
}>;
|
|
9934
|
+
mechanism: z.ZodEnum<{
|
|
9935
|
+
deterministic: "deterministic";
|
|
9936
|
+
model: "model";
|
|
9937
|
+
}>;
|
|
9938
|
+
}, z.core.$strip>>;
|
|
9939
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9940
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9941
|
+
model: z.ZodString;
|
|
9942
|
+
at: z.ZodString;
|
|
9943
|
+
}, z.core.$strip>>;
|
|
9944
|
+
}, z.core.$strip>>;
|
|
8516
9945
|
name: z.ZodString;
|
|
8517
9946
|
cells: z.ZodArray<z.ZodObject<{
|
|
9947
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9948
|
+
body: "body";
|
|
9949
|
+
chart: "chart";
|
|
9950
|
+
diagram: "diagram";
|
|
9951
|
+
table: "table";
|
|
9952
|
+
image: "image";
|
|
9953
|
+
notes: "notes";
|
|
9954
|
+
}>>;
|
|
9955
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9956
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9957
|
+
text: z.ZodString;
|
|
9958
|
+
confidence: z.ZodEnum<{
|
|
9959
|
+
high: "high";
|
|
9960
|
+
medium: "medium";
|
|
9961
|
+
low: "low";
|
|
9962
|
+
}>;
|
|
9963
|
+
mechanism: z.ZodEnum<{
|
|
9964
|
+
deterministic: "deterministic";
|
|
9965
|
+
model: "model";
|
|
9966
|
+
}>;
|
|
9967
|
+
}, z.core.$strip>>;
|
|
9968
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9969
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9970
|
+
model: z.ZodString;
|
|
9971
|
+
at: z.ZodString;
|
|
9972
|
+
}, z.core.$strip>>;
|
|
9973
|
+
}, z.core.$strip>>;
|
|
8518
9974
|
row: z.ZodNumber;
|
|
8519
9975
|
column: z.ZodNumber;
|
|
8520
9976
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -8568,6 +10024,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8568
10024
|
}, z.core.$strip>>;
|
|
8569
10025
|
}, z.core.$strip>>;
|
|
8570
10026
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10027
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
10028
|
+
body: "body";
|
|
10029
|
+
chart: "chart";
|
|
10030
|
+
diagram: "diagram";
|
|
10031
|
+
table: "table";
|
|
10032
|
+
image: "image";
|
|
10033
|
+
notes: "notes";
|
|
10034
|
+
}>>;
|
|
10035
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10036
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
10037
|
+
text: z.ZodString;
|
|
10038
|
+
confidence: z.ZodEnum<{
|
|
10039
|
+
high: "high";
|
|
10040
|
+
medium: "medium";
|
|
10041
|
+
low: "low";
|
|
10042
|
+
}>;
|
|
10043
|
+
mechanism: z.ZodEnum<{
|
|
10044
|
+
deterministic: "deterministic";
|
|
10045
|
+
model: "model";
|
|
10046
|
+
}>;
|
|
10047
|
+
}, z.core.$strip>>;
|
|
10048
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10049
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
10050
|
+
model: z.ZodString;
|
|
10051
|
+
at: z.ZodString;
|
|
10052
|
+
}, z.core.$strip>>;
|
|
10053
|
+
}, z.core.$strip>>;
|
|
8571
10054
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
8572
10055
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
8573
10056
|
superscript: "superscript";
|
|
@@ -8840,6 +10323,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8840
10323
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8841
10324
|
}, z.core.$strip>>;
|
|
8842
10325
|
images: z.ZodArray<z.ZodObject<{
|
|
10326
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
10327
|
+
body: "body";
|
|
10328
|
+
chart: "chart";
|
|
10329
|
+
diagram: "diagram";
|
|
10330
|
+
table: "table";
|
|
10331
|
+
image: "image";
|
|
10332
|
+
notes: "notes";
|
|
10333
|
+
}>>;
|
|
10334
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10335
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
10336
|
+
text: z.ZodString;
|
|
10337
|
+
confidence: z.ZodEnum<{
|
|
10338
|
+
high: "high";
|
|
10339
|
+
medium: "medium";
|
|
10340
|
+
low: "low";
|
|
10341
|
+
}>;
|
|
10342
|
+
mechanism: z.ZodEnum<{
|
|
10343
|
+
deterministic: "deterministic";
|
|
10344
|
+
model: "model";
|
|
10345
|
+
}>;
|
|
10346
|
+
}, z.core.$strip>>;
|
|
10347
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10348
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
10349
|
+
model: z.ZodString;
|
|
10350
|
+
at: z.ZodString;
|
|
10351
|
+
}, z.core.$strip>>;
|
|
10352
|
+
}, z.core.$strip>>;
|
|
8843
10353
|
kind: z.ZodLiteral<"image">;
|
|
8844
10354
|
format: z.ZodEnum<{
|
|
8845
10355
|
png: "png";
|
|
@@ -8859,6 +10369,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8859
10369
|
base64: z.ZodString;
|
|
8860
10370
|
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
8861
10371
|
}, z.core.$strip>>;
|
|
10372
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
10373
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
8862
10374
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
8863
10375
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
8864
10376
|
relativeTo: z.ZodEnum<{
|
|
@@ -9032,9 +10544,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9032
10544
|
type: z.ZodEnum<{
|
|
9033
10545
|
date: "date";
|
|
9034
10546
|
custom: "custom";
|
|
10547
|
+
time: "time";
|
|
9035
10548
|
decimal: "decimal";
|
|
9036
10549
|
list: "list";
|
|
9037
|
-
time: "time";
|
|
9038
10550
|
whole: "whole";
|
|
9039
10551
|
textLength: "textLength";
|
|
9040
10552
|
}>;
|
|
@@ -9505,11 +11017,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9505
11017
|
stops: z.ZodArray<z.ZodObject<{
|
|
9506
11018
|
value: z.ZodObject<{
|
|
9507
11019
|
type: z.ZodEnum<{
|
|
9508
|
-
formula: "formula";
|
|
9509
|
-
percent: "percent";
|
|
9510
11020
|
num: "num";
|
|
9511
|
-
max: "max";
|
|
9512
11021
|
min: "min";
|
|
11022
|
+
max: "max";
|
|
11023
|
+
formula: "formula";
|
|
11024
|
+
percent: "percent";
|
|
9513
11025
|
percentile: "percentile";
|
|
9514
11026
|
}>;
|
|
9515
11027
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -9552,22 +11064,22 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9552
11064
|
}, z.core.$strip>, z.ZodObject<{
|
|
9553
11065
|
min: z.ZodObject<{
|
|
9554
11066
|
type: z.ZodEnum<{
|
|
9555
|
-
formula: "formula";
|
|
9556
|
-
percent: "percent";
|
|
9557
11067
|
num: "num";
|
|
9558
|
-
max: "max";
|
|
9559
11068
|
min: "min";
|
|
11069
|
+
max: "max";
|
|
11070
|
+
formula: "formula";
|
|
11071
|
+
percent: "percent";
|
|
9560
11072
|
percentile: "percentile";
|
|
9561
11073
|
}>;
|
|
9562
11074
|
value: z.ZodOptional<z.ZodString>;
|
|
9563
11075
|
}, z.core.$strip>;
|
|
9564
11076
|
max: z.ZodObject<{
|
|
9565
11077
|
type: z.ZodEnum<{
|
|
9566
|
-
formula: "formula";
|
|
9567
|
-
percent: "percent";
|
|
9568
11078
|
num: "num";
|
|
9569
|
-
max: "max";
|
|
9570
11079
|
min: "min";
|
|
11080
|
+
max: "max";
|
|
11081
|
+
formula: "formula";
|
|
11082
|
+
percent: "percent";
|
|
9571
11083
|
percentile: "percentile";
|
|
9572
11084
|
}>;
|
|
9573
11085
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -9611,11 +11123,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9611
11123
|
iconSetType: z.ZodString;
|
|
9612
11124
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
9613
11125
|
type: z.ZodEnum<{
|
|
9614
|
-
formula: "formula";
|
|
9615
|
-
percent: "percent";
|
|
9616
11126
|
num: "num";
|
|
9617
|
-
max: "max";
|
|
9618
11127
|
min: "min";
|
|
11128
|
+
max: "max";
|
|
11129
|
+
formula: "formula";
|
|
11130
|
+
percent: "percent";
|
|
9619
11131
|
percentile: "percentile";
|
|
9620
11132
|
}>;
|
|
9621
11133
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -9747,11 +11259,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9747
11259
|
}, z.core.$strip>;
|
|
9748
11260
|
}, z.core.$strip>, z.ZodObject<{
|
|
9749
11261
|
pages: z.ZodArray<z.ZodObject<{
|
|
11262
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11263
|
+
body: "body";
|
|
11264
|
+
chart: "chart";
|
|
11265
|
+
diagram: "diagram";
|
|
11266
|
+
table: "table";
|
|
11267
|
+
image: "image";
|
|
11268
|
+
notes: "notes";
|
|
11269
|
+
}>>;
|
|
11270
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11271
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11272
|
+
text: z.ZodString;
|
|
11273
|
+
confidence: z.ZodEnum<{
|
|
11274
|
+
high: "high";
|
|
11275
|
+
medium: "medium";
|
|
11276
|
+
low: "low";
|
|
11277
|
+
}>;
|
|
11278
|
+
mechanism: z.ZodEnum<{
|
|
11279
|
+
deterministic: "deterministic";
|
|
11280
|
+
model: "model";
|
|
11281
|
+
}>;
|
|
11282
|
+
}, z.core.$strip>>;
|
|
11283
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11284
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11285
|
+
model: z.ZodString;
|
|
11286
|
+
at: z.ZodString;
|
|
11287
|
+
}, z.core.$strip>>;
|
|
11288
|
+
}, z.core.$strip>>;
|
|
9750
11289
|
size: z.ZodObject<{
|
|
9751
11290
|
widthPt: z.ZodNumber;
|
|
9752
11291
|
heightPt: z.ZodNumber;
|
|
9753
11292
|
}, z.core.$strip>;
|
|
9754
11293
|
shapes: z.ZodArray<z.ZodObject<{
|
|
11294
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
11295
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11296
|
+
body: "body";
|
|
11297
|
+
chart: "chart";
|
|
11298
|
+
diagram: "diagram";
|
|
11299
|
+
table: "table";
|
|
11300
|
+
image: "image";
|
|
11301
|
+
notes: "notes";
|
|
11302
|
+
}>>;
|
|
11303
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11304
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11305
|
+
text: z.ZodString;
|
|
11306
|
+
confidence: z.ZodEnum<{
|
|
11307
|
+
high: "high";
|
|
11308
|
+
medium: "medium";
|
|
11309
|
+
low: "low";
|
|
11310
|
+
}>;
|
|
11311
|
+
mechanism: z.ZodEnum<{
|
|
11312
|
+
deterministic: "deterministic";
|
|
11313
|
+
model: "model";
|
|
11314
|
+
}>;
|
|
11315
|
+
}, z.core.$strip>>;
|
|
11316
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11317
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11318
|
+
model: z.ZodString;
|
|
11319
|
+
at: z.ZodString;
|
|
11320
|
+
}, z.core.$strip>>;
|
|
11321
|
+
}, z.core.$strip>>;
|
|
9755
11322
|
name: z.ZodOptional<z.ZodString>;
|
|
9756
11323
|
frame: z.ZodObject<{
|
|
9757
11324
|
xPt: z.ZodNumber;
|
|
@@ -9795,9 +11362,35 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9795
11362
|
widthPt: z.ZodNumber;
|
|
9796
11363
|
heightPt: z.ZodNumber;
|
|
9797
11364
|
}, z.core.$strip>>>;
|
|
9798
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
9799
11365
|
}, z.core.$strip>>;
|
|
9800
11366
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11367
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11368
|
+
body: "body";
|
|
11369
|
+
chart: "chart";
|
|
11370
|
+
diagram: "diagram";
|
|
11371
|
+
table: "table";
|
|
11372
|
+
image: "image";
|
|
11373
|
+
notes: "notes";
|
|
11374
|
+
}>>;
|
|
11375
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11376
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11377
|
+
text: z.ZodString;
|
|
11378
|
+
confidence: z.ZodEnum<{
|
|
11379
|
+
high: "high";
|
|
11380
|
+
medium: "medium";
|
|
11381
|
+
low: "low";
|
|
11382
|
+
}>;
|
|
11383
|
+
mechanism: z.ZodEnum<{
|
|
11384
|
+
deterministic: "deterministic";
|
|
11385
|
+
model: "model";
|
|
11386
|
+
}>;
|
|
11387
|
+
}, z.core.$strip>>;
|
|
11388
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11389
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11390
|
+
model: z.ZodString;
|
|
11391
|
+
at: z.ZodString;
|
|
11392
|
+
}, z.core.$strip>>;
|
|
11393
|
+
}, z.core.$strip>>;
|
|
9801
11394
|
kind: z.ZodLiteral<"rect">;
|
|
9802
11395
|
frame: z.ZodObject<{
|
|
9803
11396
|
xPt: z.ZodNumber;
|
|
@@ -9909,6 +11502,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9909
11502
|
heightPt: z.ZodNumber;
|
|
9910
11503
|
}, z.core.$strip>>>;
|
|
9911
11504
|
}, z.core.$strip>, z.ZodObject<{
|
|
11505
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11506
|
+
body: "body";
|
|
11507
|
+
chart: "chart";
|
|
11508
|
+
diagram: "diagram";
|
|
11509
|
+
table: "table";
|
|
11510
|
+
image: "image";
|
|
11511
|
+
notes: "notes";
|
|
11512
|
+
}>>;
|
|
11513
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11514
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11515
|
+
text: z.ZodString;
|
|
11516
|
+
confidence: z.ZodEnum<{
|
|
11517
|
+
high: "high";
|
|
11518
|
+
medium: "medium";
|
|
11519
|
+
low: "low";
|
|
11520
|
+
}>;
|
|
11521
|
+
mechanism: z.ZodEnum<{
|
|
11522
|
+
deterministic: "deterministic";
|
|
11523
|
+
model: "model";
|
|
11524
|
+
}>;
|
|
11525
|
+
}, z.core.$strip>>;
|
|
11526
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11527
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11528
|
+
model: z.ZodString;
|
|
11529
|
+
at: z.ZodString;
|
|
11530
|
+
}, z.core.$strip>>;
|
|
11531
|
+
}, z.core.$strip>>;
|
|
9912
11532
|
kind: z.ZodLiteral<"ellipse">;
|
|
9913
11533
|
frame: z.ZodObject<{
|
|
9914
11534
|
xPt: z.ZodNumber;
|
|
@@ -10020,6 +11640,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10020
11640
|
heightPt: z.ZodNumber;
|
|
10021
11641
|
}, z.core.$strip>>>;
|
|
10022
11642
|
}, z.core.$strip>, z.ZodObject<{
|
|
11643
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11644
|
+
body: "body";
|
|
11645
|
+
chart: "chart";
|
|
11646
|
+
diagram: "diagram";
|
|
11647
|
+
table: "table";
|
|
11648
|
+
image: "image";
|
|
11649
|
+
notes: "notes";
|
|
11650
|
+
}>>;
|
|
11651
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11652
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11653
|
+
text: z.ZodString;
|
|
11654
|
+
confidence: z.ZodEnum<{
|
|
11655
|
+
high: "high";
|
|
11656
|
+
medium: "medium";
|
|
11657
|
+
low: "low";
|
|
11658
|
+
}>;
|
|
11659
|
+
mechanism: z.ZodEnum<{
|
|
11660
|
+
deterministic: "deterministic";
|
|
11661
|
+
model: "model";
|
|
11662
|
+
}>;
|
|
11663
|
+
}, z.core.$strip>>;
|
|
11664
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11665
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11666
|
+
model: z.ZodString;
|
|
11667
|
+
at: z.ZodString;
|
|
11668
|
+
}, z.core.$strip>>;
|
|
11669
|
+
}, z.core.$strip>>;
|
|
10023
11670
|
kind: z.ZodLiteral<"line">;
|
|
10024
11671
|
from: z.ZodObject<{
|
|
10025
11672
|
xPt: z.ZodNumber;
|
|
@@ -10081,6 +11728,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10081
11728
|
heightPt: z.ZodNumber;
|
|
10082
11729
|
}, z.core.$strip>>>;
|
|
10083
11730
|
}, z.core.$strip>, z.ZodObject<{
|
|
11731
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11732
|
+
body: "body";
|
|
11733
|
+
chart: "chart";
|
|
11734
|
+
diagram: "diagram";
|
|
11735
|
+
table: "table";
|
|
11736
|
+
image: "image";
|
|
11737
|
+
notes: "notes";
|
|
11738
|
+
}>>;
|
|
11739
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11740
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11741
|
+
text: z.ZodString;
|
|
11742
|
+
confidence: z.ZodEnum<{
|
|
11743
|
+
high: "high";
|
|
11744
|
+
medium: "medium";
|
|
11745
|
+
low: "low";
|
|
11746
|
+
}>;
|
|
11747
|
+
mechanism: z.ZodEnum<{
|
|
11748
|
+
deterministic: "deterministic";
|
|
11749
|
+
model: "model";
|
|
11750
|
+
}>;
|
|
11751
|
+
}, z.core.$strip>>;
|
|
11752
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11753
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11754
|
+
model: z.ZodString;
|
|
11755
|
+
at: z.ZodString;
|
|
11756
|
+
}, z.core.$strip>>;
|
|
11757
|
+
}, z.core.$strip>>;
|
|
10084
11758
|
kind: z.ZodLiteral<"path">;
|
|
10085
11759
|
frame: z.ZodObject<{
|
|
10086
11760
|
xPt: z.ZodNumber;
|
|
@@ -10314,6 +11988,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10314
11988
|
}, z.core.$strip>;
|
|
10315
11989
|
}, z.core.$strip>, z.ZodObject<{
|
|
10316
11990
|
formula: z.ZodObject<{
|
|
11991
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11992
|
+
body: "body";
|
|
11993
|
+
chart: "chart";
|
|
11994
|
+
diagram: "diagram";
|
|
11995
|
+
table: "table";
|
|
11996
|
+
image: "image";
|
|
11997
|
+
notes: "notes";
|
|
11998
|
+
}>>;
|
|
11999
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
12000
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
12001
|
+
text: z.ZodString;
|
|
12002
|
+
confidence: z.ZodEnum<{
|
|
12003
|
+
high: "high";
|
|
12004
|
+
medium: "medium";
|
|
12005
|
+
low: "low";
|
|
12006
|
+
}>;
|
|
12007
|
+
mechanism: z.ZodEnum<{
|
|
12008
|
+
deterministic: "deterministic";
|
|
12009
|
+
model: "model";
|
|
12010
|
+
}>;
|
|
12011
|
+
}, z.core.$strip>>;
|
|
12012
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12013
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
12014
|
+
model: z.ZodString;
|
|
12015
|
+
at: z.ZodString;
|
|
12016
|
+
}, z.core.$strip>>;
|
|
12017
|
+
}, z.core.$strip>>;
|
|
10317
12018
|
mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
|
|
10318
12019
|
starMath: z.ZodOptional<z.ZodString>;
|
|
10319
12020
|
presentation: z.ZodOptional<z.ZodObject<{
|
|
@@ -10416,4 +12117,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10416
12117
|
}, z.core.$strip>], "kind">;
|
|
10417
12118
|
type ContentDocument = z.infer<typeof ContentDocumentSchema>;
|
|
10418
12119
|
//#endregion
|
|
10419
|
-
export {
|
|
12120
|
+
export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, RunConstructExtent as An, ContentSheetCellComment as At, ContentFloatPosition as B, isContentConstructEnd as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentVectorSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, IMAGE_FORMATS as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, FusedNode as En, ContentShape as Et, ContentFloatAlignSchema as F, clampHeadingLevel as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, ContentSheetImage as Gt, ContentFont as H, isRunConstructExtent as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, contentDocumentSharedFields as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, findConstructMarkerImbalance as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructFault as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, SheetRuleOperator as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, ImageFormat as On, ContentSheet as Ot, ContentFloatAlign as P, SheetRuleOperatorSchema as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, findRunConstructFault as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentVector as Sn, ContentRun as St, ContentDrawPage as T, DecimalStringSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, resolveCellFillColor as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentConstructStart as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, unrecognizedFillKind as Wn, ContentSheetDataValidationTypeSchema as Wt, ContentHatchFill as X, ContentSheetPrintSettingsSchema as Xt, ContentGradientStyleSchema as Y, ContentSheetPrintSettings as Yt, ContentHatchFillSchema as Z, ContentSheetRange as Zt, ContentConstructEnd as _, ContentTableRow as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTranscript as bn, ContentPathSegment as bt, ContentBorderSchema as c, ContentStrokeDashSchema as cn, ContentOrigin as ct, ContentCellFill as d, ContentStrokeStyleSchema as dn, ContentPageBreakSchema as dt, ContentSheetRepeatRangeSchema as en, ContentImageBlock as et, ContentCellFillSchema as f, ContentSubpath as fn, ContentPageFurniture as ft, ContentCellValueSchema as g, ContentTableCellSchema as gn, ContentParagraphBordersSchema as gt, ContentCellValue as h, ContentTableCell as hn, ContentParagraphBorders as ht, ContentBitmapFillSchema as i, ContentSlide as in, ContentInterpretation as it, ContentEmbeddedObjectSchema as j, RunConstructExtentSchema as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, RUN_FONT_PROPERTY_SHAPE as kn, ContentSheetCell as kt, ContentCellBorders as l, ContentStrokeSchema as ln, ContentOriginSchema as lt, ContentCellPatternTypeSchema as m, ContentTable as mn, ContentParagraph as mt, ConstructMarkerImbalance as n, ContentSheetRowSchema as nn, ContentImageOriginal as nt, ContentBlockSchema as o, ContentStroke as on, ContentListMembership as ot, ContentCellPatternType as p, ContentSubpathSchema as pn, ContentPageFurnitureSchema as pt, ContentGradientFillSchema as q, ContentSheetPrintRange as qt, ContentBitmapFill as r, ContentSheetSchema as rn, ContentImageOriginalSchema as rt, ContentBorder as s, ContentStrokeDash as sn, ContentListMembershipSchema as st, CONTENT_ANNOTATION_FIELDS as t, ContentSheetRow as tn, ContentImageBlockSchema as tt, ContentCellBordersSchema as u, ContentStrokeStyle as un, ContentPageBreak as ut, ContentConstructEndSchema as v, ContentTableRowSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, DecimalString as wn, ContentSection as wt, ContentDefinedName as x, ContentTranscriptSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableSchema as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, isContentBlock as zn, ContentSheetConditionalFormatValue as zt };
|