document-schema 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/{content-BlTHCDvF.d.cts → content-CBkzO-uB.d.cts} +1732 -31
- package/dist/content-json-schema-defs.cjs +126 -15
- package/dist/content-json-schema-defs.js +126 -15
- package/dist/{content-BqSMRlSK.d.ts → content-xlX3HwY8.d.ts} +1732 -31
- 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 +4 -4
- package/dist/definitions.d.ts +4 -4
- 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-Btm9VsaX.d.cts → package-node-BWHA7o_U.d.cts} +302 -5
- package/dist/{package-node-DPm8hWYt.d.ts → package-node-F0sdAYc9.d.ts} +302 -5
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.d.cts +33 -6
- package/dist/package.d.ts +33 -6
- 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/dist/{style-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
- package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
- package/dist/style.d.cts +1 -1
- package/dist/style.d.ts +1 -1
- package/dist/text-layout.d.cts +1 -1
- package/dist/text-layout.d.ts +1 -1
- package/package.json +1 -1
- package/schemas/content-document.schema.json +1138 -13
- package/schemas/document-tree.schema.json +208 -3
|
@@ -3,12 +3,83 @@ import { p as MathExpression } from "./math-BScHxedi.cjs";
|
|
|
3
3
|
import { n as Color } from "./color-AELCDH_b.cjs";
|
|
4
4
|
import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.cjs";
|
|
5
5
|
import { r as SourceResidue } from "./source-Bas5ol6f.cjs";
|
|
6
|
-
import { o as TextDirection } from "./style-
|
|
6
|
+
import { o as TextDirection } from "./style-BGMcYrD2.cjs";
|
|
7
7
|
import { z } from "zod";
|
|
8
8
|
//#region src/content.d.ts
|
|
9
9
|
type FusedNode<T> = T & {
|
|
10
10
|
frames?: LayoutFrame[];
|
|
11
11
|
};
|
|
12
|
+
declare const ContentOriginSchema: z.ZodEnum<{
|
|
13
|
+
chart: "chart";
|
|
14
|
+
diagram: "diagram";
|
|
15
|
+
table: "table";
|
|
16
|
+
image: "image";
|
|
17
|
+
notes: "notes";
|
|
18
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
57
|
+
diagram: "diagram";
|
|
58
|
+
table: "table";
|
|
59
|
+
image: "image";
|
|
60
|
+
notes: "notes";
|
|
61
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
113
|
+
diagram: "diagram";
|
|
114
|
+
table: "table";
|
|
115
|
+
image: "image";
|
|
116
|
+
notes: "notes";
|
|
117
|
+
body: "body";
|
|
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";
|
|
@@ -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
|
+
chart: "chart";
|
|
483
|
+
diagram: "diagram";
|
|
484
|
+
table: "table";
|
|
485
|
+
image: "image";
|
|
486
|
+
notes: "notes";
|
|
487
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
512
|
+
diagram: "diagram";
|
|
513
|
+
table: "table";
|
|
514
|
+
image: "image";
|
|
515
|
+
notes: "notes";
|
|
516
|
+
body: "body";
|
|
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";
|
|
@@ -632,8 +784,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
632
784
|
headingLevel: z.ZodOptional<z.ZodNumber>;
|
|
633
785
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
634
786
|
left: "left";
|
|
635
|
-
center: "center";
|
|
636
787
|
right: "right";
|
|
788
|
+
center: "center";
|
|
637
789
|
justify: "justify";
|
|
638
790
|
}>>;
|
|
639
791
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -769,10 +921,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
|
|
|
769
921
|
type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
|
|
770
922
|
declare const ContentFloatAlignSchema: z.ZodEnum<{
|
|
771
923
|
left: "left";
|
|
772
|
-
center: "center";
|
|
773
924
|
right: "right";
|
|
774
925
|
top: "top";
|
|
775
926
|
bottom: "bottom";
|
|
927
|
+
center: "center";
|
|
776
928
|
inside: "inside";
|
|
777
929
|
outside: "outside";
|
|
778
930
|
}>;
|
|
@@ -812,10 +964,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
812
964
|
}>;
|
|
813
965
|
align: z.ZodEnum<{
|
|
814
966
|
left: "left";
|
|
815
|
-
center: "center";
|
|
816
967
|
right: "right";
|
|
817
968
|
top: "top";
|
|
818
969
|
bottom: "bottom";
|
|
970
|
+
center: "center";
|
|
819
971
|
inside: "inside";
|
|
820
972
|
outside: "outside";
|
|
821
973
|
}>;
|
|
@@ -857,10 +1009,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
|
|
|
857
1009
|
}>;
|
|
858
1010
|
align: z.ZodEnum<{
|
|
859
1011
|
left: "left";
|
|
860
|
-
center: "center";
|
|
861
1012
|
right: "right";
|
|
862
1013
|
top: "top";
|
|
863
1014
|
bottom: "bottom";
|
|
1015
|
+
center: "center";
|
|
864
1016
|
inside: "inside";
|
|
865
1017
|
outside: "outside";
|
|
866
1018
|
}>;
|
|
@@ -900,10 +1052,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
|
|
|
900
1052
|
}>;
|
|
901
1053
|
align: z.ZodEnum<{
|
|
902
1054
|
left: "left";
|
|
903
|
-
center: "center";
|
|
904
1055
|
right: "right";
|
|
905
1056
|
top: "top";
|
|
906
1057
|
bottom: "bottom";
|
|
1058
|
+
center: "center";
|
|
907
1059
|
inside: "inside";
|
|
908
1060
|
outside: "outside";
|
|
909
1061
|
}>;
|
|
@@ -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
|
+
chart: "chart";
|
|
1079
|
+
diagram: "diagram";
|
|
1080
|
+
table: "table";
|
|
1081
|
+
image: "image";
|
|
1082
|
+
notes: "notes";
|
|
1083
|
+
body: "body";
|
|
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<{
|
|
@@ -977,10 +1158,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
977
1158
|
}>;
|
|
978
1159
|
align: z.ZodEnum<{
|
|
979
1160
|
left: "left";
|
|
980
|
-
center: "center";
|
|
981
1161
|
right: "right";
|
|
982
1162
|
top: "top";
|
|
983
1163
|
bottom: "bottom";
|
|
1164
|
+
center: "center";
|
|
984
1165
|
inside: "inside";
|
|
985
1166
|
outside: "outside";
|
|
986
1167
|
}>;
|
|
@@ -1020,10 +1201,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1020
1201
|
}>;
|
|
1021
1202
|
align: z.ZodEnum<{
|
|
1022
1203
|
left: "left";
|
|
1023
|
-
center: "center";
|
|
1024
1204
|
right: "right";
|
|
1025
1205
|
top: "top";
|
|
1026
1206
|
bottom: "bottom";
|
|
1207
|
+
center: "center";
|
|
1027
1208
|
inside: "inside";
|
|
1028
1209
|
outside: "outside";
|
|
1029
1210
|
}>;
|
|
@@ -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
|
+
chart: "chart";
|
|
1246
|
+
diagram: "diagram";
|
|
1247
|
+
table: "table";
|
|
1248
|
+
image: "image";
|
|
1249
|
+
notes: "notes";
|
|
1250
|
+
body: "body";
|
|
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<{
|
|
@@ -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
|
+
chart: "chart";
|
|
1558
|
+
diagram: "diagram";
|
|
1559
|
+
table: "table";
|
|
1560
|
+
image: "image";
|
|
1561
|
+
notes: "notes";
|
|
1562
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
1595
|
+
diagram: "diagram";
|
|
1596
|
+
table: "table";
|
|
1597
|
+
image: "image";
|
|
1598
|
+
notes: "notes";
|
|
1599
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
1739
|
+
diagram: "diagram";
|
|
1740
|
+
table: "table";
|
|
1741
|
+
image: "image";
|
|
1742
|
+
notes: "notes";
|
|
1743
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
1772
|
+
diagram: "diagram";
|
|
1773
|
+
table: "table";
|
|
1774
|
+
image: "image";
|
|
1775
|
+
notes: "notes";
|
|
1776
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
1934
|
+
diagram: "diagram";
|
|
1935
|
+
table: "table";
|
|
1936
|
+
image: "image";
|
|
1937
|
+
notes: "notes";
|
|
1938
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
1963
|
+
diagram: "diagram";
|
|
1964
|
+
table: "table";
|
|
1965
|
+
image: "image";
|
|
1966
|
+
notes: "notes";
|
|
1967
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
2043
|
+
diagram: "diagram";
|
|
2044
|
+
table: "table";
|
|
2045
|
+
image: "image";
|
|
2046
|
+
notes: "notes";
|
|
2047
|
+
body: "body";
|
|
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";
|
|
@@ -1882,8 +2279,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1882
2279
|
}, z.core.$strip>>;
|
|
1883
2280
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
1884
2281
|
left: "left";
|
|
1885
|
-
center: "center";
|
|
1886
2282
|
right: "right";
|
|
2283
|
+
center: "center";
|
|
1887
2284
|
justify: "justify";
|
|
1888
2285
|
}>>;
|
|
1889
2286
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -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
|
+
chart: "chart";
|
|
2342
|
+
diagram: "diagram";
|
|
2343
|
+
table: "table";
|
|
2344
|
+
image: "image";
|
|
2345
|
+
notes: "notes";
|
|
2346
|
+
body: "body";
|
|
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<{
|
|
@@ -1995,10 +2421,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1995
2421
|
}>;
|
|
1996
2422
|
align: z.ZodEnum<{
|
|
1997
2423
|
left: "left";
|
|
1998
|
-
center: "center";
|
|
1999
2424
|
right: "right";
|
|
2000
2425
|
top: "top";
|
|
2001
2426
|
bottom: "bottom";
|
|
2427
|
+
center: "center";
|
|
2002
2428
|
inside: "inside";
|
|
2003
2429
|
outside: "outside";
|
|
2004
2430
|
}>;
|
|
@@ -2038,10 +2464,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2038
2464
|
}>;
|
|
2039
2465
|
align: z.ZodEnum<{
|
|
2040
2466
|
left: "left";
|
|
2041
|
-
center: "center";
|
|
2042
2467
|
right: "right";
|
|
2043
2468
|
top: "top";
|
|
2044
2469
|
bottom: "bottom";
|
|
2470
|
+
center: "center";
|
|
2045
2471
|
inside: "inside";
|
|
2046
2472
|
outside: "outside";
|
|
2047
2473
|
}>;
|
|
@@ -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
|
+
chart: "chart";
|
|
3278
|
+
diagram: "diagram";
|
|
3279
|
+
table: "table";
|
|
3280
|
+
image: "image";
|
|
3281
|
+
notes: "notes";
|
|
3282
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
3311
|
+
diagram: "diagram";
|
|
3312
|
+
table: "table";
|
|
3313
|
+
image: "image";
|
|
3314
|
+
notes: "notes";
|
|
3315
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
3383
|
+
diagram: "diagram";
|
|
3384
|
+
table: "table";
|
|
3385
|
+
image: "image";
|
|
3386
|
+
notes: "notes";
|
|
3387
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
3521
|
+
diagram: "diagram";
|
|
3522
|
+
table: "table";
|
|
3523
|
+
image: "image";
|
|
3524
|
+
notes: "notes";
|
|
3525
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
3659
|
+
diagram: "diagram";
|
|
3660
|
+
table: "table";
|
|
3661
|
+
image: "image";
|
|
3662
|
+
notes: "notes";
|
|
3663
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
3747
|
+
diagram: "diagram";
|
|
3748
|
+
table: "table";
|
|
3749
|
+
image: "image";
|
|
3750
|
+
notes: "notes";
|
|
3751
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
4007
|
+
diagram: "diagram";
|
|
4008
|
+
table: "table";
|
|
4009
|
+
image: "image";
|
|
4010
|
+
notes: "notes";
|
|
4011
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
4404
|
+
diagram: "diagram";
|
|
4405
|
+
table: "table";
|
|
4406
|
+
image: "image";
|
|
4407
|
+
notes: "notes";
|
|
4408
|
+
body: "body";
|
|
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>;
|
|
@@ -3948,9 +4590,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
3948
4590
|
}, z.core.$strip>>;
|
|
3949
4591
|
}, z.core.$strip>>;
|
|
3950
4592
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
3951
|
-
center: "center";
|
|
3952
4593
|
top: "top";
|
|
3953
4594
|
bottom: "bottom";
|
|
4595
|
+
center: "center";
|
|
3954
4596
|
}>>;
|
|
3955
4597
|
formula: z.ZodOptional<z.ZodString>;
|
|
3956
4598
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -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
|
+
chart: "chart";
|
|
4631
|
+
diagram: "diagram";
|
|
4632
|
+
table: "table";
|
|
4633
|
+
image: "image";
|
|
4634
|
+
notes: "notes";
|
|
4635
|
+
body: "body";
|
|
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>;
|
|
@@ -4148,9 +4817,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4148
4817
|
}, z.core.$strip>>;
|
|
4149
4818
|
}, z.core.$strip>>;
|
|
4150
4819
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4151
|
-
center: "center";
|
|
4152
4820
|
top: "top";
|
|
4153
4821
|
bottom: "bottom";
|
|
4822
|
+
center: "center";
|
|
4154
4823
|
}>>;
|
|
4155
4824
|
formula: z.ZodOptional<z.ZodString>;
|
|
4156
4825
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -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
|
+
chart: "chart";
|
|
4863
|
+
diagram: "diagram";
|
|
4864
|
+
table: "table";
|
|
4865
|
+
image: "image";
|
|
4866
|
+
notes: "notes";
|
|
4867
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
4893
|
+
diagram: "diagram";
|
|
4894
|
+
table: "table";
|
|
4895
|
+
image: "image";
|
|
4896
|
+
notes: "notes";
|
|
4897
|
+
body: "body";
|
|
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>;
|
|
@@ -4356,9 +5079,9 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
4356
5079
|
}, z.core.$strip>>;
|
|
4357
5080
|
}, z.core.$strip>>;
|
|
4358
5081
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4359
|
-
center: "center";
|
|
4360
5082
|
top: "top";
|
|
4361
5083
|
bottom: "bottom";
|
|
5084
|
+
center: "center";
|
|
4362
5085
|
}>>;
|
|
4363
5086
|
formula: z.ZodOptional<z.ZodString>;
|
|
4364
5087
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -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
|
+
chart: "chart";
|
|
5162
|
+
diagram: "diagram";
|
|
5163
|
+
table: "table";
|
|
5164
|
+
image: "image";
|
|
5165
|
+
notes: "notes";
|
|
5166
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
5240
|
+
diagram: "diagram";
|
|
5241
|
+
table: "table";
|
|
5242
|
+
image: "image";
|
|
5243
|
+
notes: "notes";
|
|
5244
|
+
body: "body";
|
|
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,15 +5305,69 @@ 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
|
+
chart: "chart";
|
|
5313
|
+
diagram: "diagram";
|
|
5314
|
+
table: "table";
|
|
5315
|
+
image: "image";
|
|
5316
|
+
notes: "notes";
|
|
5317
|
+
body: "body";
|
|
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<{
|
|
5343
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5344
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5345
|
+
chart: "chart";
|
|
5346
|
+
diagram: "diagram";
|
|
5347
|
+
table: "table";
|
|
5348
|
+
image: "image";
|
|
5349
|
+
notes: "notes";
|
|
5350
|
+
body: "body";
|
|
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>>;
|
|
4539
5371
|
name: z.ZodOptional<z.ZodString>;
|
|
4540
5372
|
frame: z.ZodObject<{
|
|
4541
5373
|
xPt: z.ZodNumber;
|
|
@@ -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
|
+
chart: "chart";
|
|
5488
|
+
diagram: "diagram";
|
|
5489
|
+
table: "table";
|
|
5490
|
+
image: "image";
|
|
5491
|
+
notes: "notes";
|
|
5492
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
5568
|
+
diagram: "diagram";
|
|
5569
|
+
table: "table";
|
|
5570
|
+
image: "image";
|
|
5571
|
+
notes: "notes";
|
|
5572
|
+
body: "body";
|
|
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";
|
|
@@ -4919,8 +5804,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
4919
5804
|
}, z.core.$strip>>;
|
|
4920
5805
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
4921
5806
|
left: "left";
|
|
4922
|
-
center: "center";
|
|
4923
5807
|
right: "right";
|
|
5808
|
+
center: "center";
|
|
4924
5809
|
justify: "justify";
|
|
4925
5810
|
}>>;
|
|
4926
5811
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -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
|
+
chart: "chart";
|
|
6629
|
+
diagram: "diagram";
|
|
6630
|
+
table: "table";
|
|
6631
|
+
image: "image";
|
|
6632
|
+
notes: "notes";
|
|
6633
|
+
body: "body";
|
|
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<{
|
|
@@ -5794,10 +6708,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5794
6708
|
}>;
|
|
5795
6709
|
align: z.ZodEnum<{
|
|
5796
6710
|
left: "left";
|
|
5797
|
-
center: "center";
|
|
5798
6711
|
right: "right";
|
|
5799
6712
|
top: "top";
|
|
5800
6713
|
bottom: "bottom";
|
|
6714
|
+
center: "center";
|
|
5801
6715
|
inside: "inside";
|
|
5802
6716
|
outside: "outside";
|
|
5803
6717
|
}>;
|
|
@@ -5837,10 +6751,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5837
6751
|
}>;
|
|
5838
6752
|
align: z.ZodEnum<{
|
|
5839
6753
|
left: "left";
|
|
5840
|
-
center: "center";
|
|
5841
6754
|
right: "right";
|
|
5842
6755
|
top: "top";
|
|
5843
6756
|
bottom: "bottom";
|
|
6757
|
+
center: "center";
|
|
5844
6758
|
inside: "inside";
|
|
5845
6759
|
outside: "outside";
|
|
5846
6760
|
}>;
|
|
@@ -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
|
+
chart: "chart";
|
|
6800
|
+
diagram: "diagram";
|
|
6801
|
+
table: "table";
|
|
6802
|
+
image: "image";
|
|
6803
|
+
notes: "notes";
|
|
6804
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
6829
|
+
diagram: "diagram";
|
|
6830
|
+
table: "table";
|
|
6831
|
+
image: "image";
|
|
6832
|
+
notes: "notes";
|
|
6833
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
6909
|
+
diagram: "diagram";
|
|
6910
|
+
table: "table";
|
|
6911
|
+
image: "image";
|
|
6912
|
+
notes: "notes";
|
|
6913
|
+
body: "body";
|
|
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";
|
|
@@ -6150,8 +7145,8 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6150
7145
|
}, z.core.$strip>>;
|
|
6151
7146
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
6152
7147
|
left: "left";
|
|
6153
|
-
center: "center";
|
|
6154
7148
|
right: "right";
|
|
7149
|
+
center: "center";
|
|
6155
7150
|
justify: "justify";
|
|
6156
7151
|
}>>;
|
|
6157
7152
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -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
|
+
chart: "chart";
|
|
7208
|
+
diagram: "diagram";
|
|
7209
|
+
table: "table";
|
|
7210
|
+
image: "image";
|
|
7211
|
+
notes: "notes";
|
|
7212
|
+
body: "body";
|
|
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<{
|
|
@@ -6263,10 +7287,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6263
7287
|
}>;
|
|
6264
7288
|
align: z.ZodEnum<{
|
|
6265
7289
|
left: "left";
|
|
6266
|
-
center: "center";
|
|
6267
7290
|
right: "right";
|
|
6268
7291
|
top: "top";
|
|
6269
7292
|
bottom: "bottom";
|
|
7293
|
+
center: "center";
|
|
6270
7294
|
inside: "inside";
|
|
6271
7295
|
outside: "outside";
|
|
6272
7296
|
}>;
|
|
@@ -6306,10 +7330,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6306
7330
|
}>;
|
|
6307
7331
|
align: z.ZodEnum<{
|
|
6308
7332
|
left: "left";
|
|
6309
|
-
center: "center";
|
|
6310
7333
|
right: "right";
|
|
6311
7334
|
top: "top";
|
|
6312
7335
|
bottom: "bottom";
|
|
7336
|
+
center: "center";
|
|
6313
7337
|
inside: "inside";
|
|
6314
7338
|
outside: "outside";
|
|
6315
7339
|
}>;
|
|
@@ -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
|
+
chart: "chart";
|
|
8270
|
+
diagram: "diagram";
|
|
8271
|
+
table: "table";
|
|
8272
|
+
image: "image";
|
|
8273
|
+
notes: "notes";
|
|
8274
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
8408
|
+
diagram: "diagram";
|
|
8409
|
+
table: "table";
|
|
8410
|
+
image: "image";
|
|
8411
|
+
notes: "notes";
|
|
8412
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
8546
|
+
diagram: "diagram";
|
|
8547
|
+
table: "table";
|
|
8548
|
+
image: "image";
|
|
8549
|
+
notes: "notes";
|
|
8550
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
8634
|
+
diagram: "diagram";
|
|
8635
|
+
table: "table";
|
|
8636
|
+
image: "image";
|
|
8637
|
+
notes: "notes";
|
|
8638
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
8806
|
+
diagram: "diagram";
|
|
8807
|
+
table: "table";
|
|
8808
|
+
image: "image";
|
|
8809
|
+
notes: "notes";
|
|
8810
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
8839
|
+
diagram: "diagram";
|
|
8840
|
+
table: "table";
|
|
8841
|
+
image: "image";
|
|
8842
|
+
notes: "notes";
|
|
8843
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
8911
|
+
diagram: "diagram";
|
|
8912
|
+
table: "table";
|
|
8913
|
+
image: "image";
|
|
8914
|
+
notes: "notes";
|
|
8915
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9049
|
+
diagram: "diagram";
|
|
9050
|
+
table: "table";
|
|
9051
|
+
image: "image";
|
|
9052
|
+
notes: "notes";
|
|
9053
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9187
|
+
diagram: "diagram";
|
|
9188
|
+
table: "table";
|
|
9189
|
+
image: "image";
|
|
9190
|
+
notes: "notes";
|
|
9191
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9275
|
+
diagram: "diagram";
|
|
9276
|
+
table: "table";
|
|
9277
|
+
image: "image";
|
|
9278
|
+
notes: "notes";
|
|
9279
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9468
|
+
diagram: "diagram";
|
|
9469
|
+
table: "table";
|
|
9470
|
+
image: "image";
|
|
9471
|
+
notes: "notes";
|
|
9472
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9581
|
+
diagram: "diagram";
|
|
9582
|
+
table: "table";
|
|
9583
|
+
image: "image";
|
|
9584
|
+
notes: "notes";
|
|
9585
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9725
|
+
diagram: "diagram";
|
|
9726
|
+
table: "table";
|
|
9727
|
+
image: "image";
|
|
9728
|
+
notes: "notes";
|
|
9729
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9758
|
+
diagram: "diagram";
|
|
9759
|
+
table: "table";
|
|
9760
|
+
image: "image";
|
|
9761
|
+
notes: "notes";
|
|
9762
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9920
|
+
diagram: "diagram";
|
|
9921
|
+
table: "table";
|
|
9922
|
+
image: "image";
|
|
9923
|
+
notes: "notes";
|
|
9924
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
9949
|
+
diagram: "diagram";
|
|
9950
|
+
table: "table";
|
|
9951
|
+
image: "image";
|
|
9952
|
+
notes: "notes";
|
|
9953
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
10029
|
+
diagram: "diagram";
|
|
10030
|
+
table: "table";
|
|
10031
|
+
image: "image";
|
|
10032
|
+
notes: "notes";
|
|
10033
|
+
body: "body";
|
|
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";
|
|
@@ -8782,8 +10265,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8782
10265
|
}, z.core.$strip>>;
|
|
8783
10266
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
8784
10267
|
left: "left";
|
|
8785
|
-
center: "center";
|
|
8786
10268
|
right: "right";
|
|
10269
|
+
center: "center";
|
|
8787
10270
|
justify: "justify";
|
|
8788
10271
|
}>>;
|
|
8789
10272
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -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
|
+
chart: "chart";
|
|
10328
|
+
diagram: "diagram";
|
|
10329
|
+
table: "table";
|
|
10330
|
+
image: "image";
|
|
10331
|
+
notes: "notes";
|
|
10332
|
+
body: "body";
|
|
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<{
|
|
@@ -8895,10 +10407,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8895
10407
|
}>;
|
|
8896
10408
|
align: z.ZodEnum<{
|
|
8897
10409
|
left: "left";
|
|
8898
|
-
center: "center";
|
|
8899
10410
|
right: "right";
|
|
8900
10411
|
top: "top";
|
|
8901
10412
|
bottom: "bottom";
|
|
10413
|
+
center: "center";
|
|
8902
10414
|
inside: "inside";
|
|
8903
10415
|
outside: "outside";
|
|
8904
10416
|
}>;
|
|
@@ -8938,10 +10450,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8938
10450
|
}>;
|
|
8939
10451
|
align: z.ZodEnum<{
|
|
8940
10452
|
left: "left";
|
|
8941
|
-
center: "center";
|
|
8942
10453
|
right: "right";
|
|
8943
10454
|
top: "top";
|
|
8944
10455
|
bottom: "bottom";
|
|
10456
|
+
center: "center";
|
|
8945
10457
|
inside: "inside";
|
|
8946
10458
|
outside: "outside";
|
|
8947
10459
|
}>;
|
|
@@ -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
|
+
chart: "chart";
|
|
11264
|
+
diagram: "diagram";
|
|
11265
|
+
table: "table";
|
|
11266
|
+
image: "image";
|
|
11267
|
+
notes: "notes";
|
|
11268
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
11297
|
+
diagram: "diagram";
|
|
11298
|
+
table: "table";
|
|
11299
|
+
image: "image";
|
|
11300
|
+
notes: "notes";
|
|
11301
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
11369
|
+
diagram: "diagram";
|
|
11370
|
+
table: "table";
|
|
11371
|
+
image: "image";
|
|
11372
|
+
notes: "notes";
|
|
11373
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
11507
|
+
diagram: "diagram";
|
|
11508
|
+
table: "table";
|
|
11509
|
+
image: "image";
|
|
11510
|
+
notes: "notes";
|
|
11511
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
11645
|
+
diagram: "diagram";
|
|
11646
|
+
table: "table";
|
|
11647
|
+
image: "image";
|
|
11648
|
+
notes: "notes";
|
|
11649
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
11733
|
+
diagram: "diagram";
|
|
11734
|
+
table: "table";
|
|
11735
|
+
image: "image";
|
|
11736
|
+
notes: "notes";
|
|
11737
|
+
body: "body";
|
|
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
|
+
chart: "chart";
|
|
11993
|
+
diagram: "diagram";
|
|
11994
|
+
table: "table";
|
|
11995
|
+
image: "image";
|
|
11996
|
+
notes: "notes";
|
|
11997
|
+
body: "body";
|
|
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 };
|