document-schema 7.6.1 → 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.
Files changed (49) hide show
  1. package/dist/codec.d.cts +1 -1
  2. package/dist/codec.d.ts +1 -1
  3. package/dist/{content-CIIFuBbn.d.cts → content-CBkzO-uB.d.cts} +1898 -51
  4. package/dist/content-json-schema-defs.cjs +158 -15
  5. package/dist/content-json-schema-defs.js +158 -15
  6. package/dist/{content-wL5-wetq.d.ts → content-xlX3HwY8.d.ts} +1898 -51
  7. package/dist/content.cjs +106 -27
  8. package/dist/content.d.cts +2 -2
  9. package/dist/content.d.ts +2 -2
  10. package/dist/content.js +98 -28
  11. package/dist/decompose.d.cts +2 -2
  12. package/dist/decompose.d.ts +2 -2
  13. package/dist/definitions.cjs +1 -10
  14. package/dist/definitions.d.cts +4 -4
  15. package/dist/definitions.d.ts +4 -4
  16. package/dist/definitions.js +2 -11
  17. package/dist/factor-styles.cjs +1 -0
  18. package/dist/factor-styles.d.cts +1 -1
  19. package/dist/factor-styles.d.ts +1 -1
  20. package/dist/factor-styles.js +1 -0
  21. package/dist/flatten.cjs +1 -0
  22. package/dist/flatten.d.cts +1 -1
  23. package/dist/flatten.d.ts +1 -1
  24. package/dist/flatten.js +1 -0
  25. package/dist/index.cjs +9 -0
  26. package/dist/index.d.cts +4 -4
  27. package/dist/index.d.ts +4 -4
  28. package/dist/index.js +2 -2
  29. package/dist/{package-node-C9iYNIXi.d.cts → package-node-BWHA7o_U.d.cts} +339 -29
  30. package/dist/{package-node-C_rpWAh2.d.ts → package-node-F0sdAYc9.d.ts} +339 -29
  31. package/dist/package-node.d.cts +1 -1
  32. package/dist/package-node.d.ts +1 -1
  33. package/dist/package.cjs +1 -0
  34. package/dist/package.d.cts +38 -6
  35. package/dist/package.d.ts +38 -6
  36. package/dist/package.js +2 -1
  37. package/dist/schema-io.cjs +2 -2
  38. package/dist/schema-io.d.cts +1 -1
  39. package/dist/schema-io.d.ts +1 -1
  40. package/dist/schema-io.js +2 -2
  41. package/dist/{style-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
  42. package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
  43. package/dist/style.d.cts +1 -1
  44. package/dist/style.d.ts +1 -1
  45. package/dist/text-layout.d.cts +1 -1
  46. package/dist/text-layout.d.ts +1 -1
  47. package/package.json +1 -1
  48. package/schemas/content-document.schema.json +1296 -13
  49. package/schemas/document-tree.schema.json +292 -3
@@ -3,14 +3,97 @@ import { p as MathExpression } from "./math-BScHxedi.js";
3
3
  import { n as Color } from "./color-AELCDH_b.js";
4
4
  import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.js";
5
5
  import { r as SourceResidue } from "./source-Bas5ol6f.js";
6
- import { o as TextDirection } from "./style-D06NwxAJ.js";
6
+ import { o as TextDirection } from "./style-BGMcYrD2.js";
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 ContentRunSchema: z.ZodObject<{
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<{
13
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
+ };
83
+ declare const RUN_FONT_PROPERTY_SHAPE: {
84
+ readonly bold: z.ZodOptional<z.ZodBoolean>;
85
+ readonly italic: z.ZodOptional<z.ZodBoolean>;
86
+ readonly underline: z.ZodOptional<z.ZodBoolean>;
87
+ readonly strike: z.ZodOptional<z.ZodBoolean>;
88
+ readonly fontFamily: z.ZodOptional<z.ZodString>;
89
+ readonly sizePt: z.ZodOptional<z.ZodNumber>;
90
+ readonly color: z.ZodOptional<z.ZodObject<{
91
+ r: z.ZodNumber;
92
+ g: z.ZodNumber;
93
+ b: z.ZodNumber;
94
+ }, z.core.$strip>>;
95
+ };
96
+ declare const ContentFontSchema: z.ZodObject<{
14
97
  bold: z.ZodOptional<z.ZodBoolean>;
15
98
  italic: z.ZodOptional<z.ZodBoolean>;
16
99
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -22,6 +105,36 @@ declare const ContentRunSchema: z.ZodObject<{
22
105
  g: z.ZodNumber;
23
106
  b: z.ZodNumber;
24
107
  }, z.core.$strip>>;
108
+ }, z.core.$strip>;
109
+ type ContentFont = z.infer<typeof ContentFontSchema>;
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>>;
25
138
  hyperlink: z.ZodOptional<z.ZodString>;
26
139
  verticalAlign: z.ZodOptional<z.ZodEnum<{
27
140
  superscript: "superscript";
@@ -59,6 +172,18 @@ declare const ContentRunSchema: z.ZodObject<{
59
172
  widthPt: z.ZodNumber;
60
173
  heightPt: z.ZodNumber;
61
174
  }, z.core.$strip>>>;
175
+ bold: z.ZodOptional<z.ZodBoolean>;
176
+ italic: z.ZodOptional<z.ZodBoolean>;
177
+ underline: z.ZodOptional<z.ZodBoolean>;
178
+ strike: z.ZodOptional<z.ZodBoolean>;
179
+ fontFamily: z.ZodOptional<z.ZodString>;
180
+ sizePt: z.ZodOptional<z.ZodNumber>;
181
+ color: z.ZodOptional<z.ZodObject<{
182
+ r: z.ZodNumber;
183
+ g: z.ZodNumber;
184
+ b: z.ZodNumber;
185
+ }, z.core.$strip>>;
186
+ text: z.ZodString;
62
187
  }, z.core.$strip>;
63
188
  type ContentRun = z.infer<typeof ContentRunSchema>;
64
189
  declare const ContentListMembershipSchema: z.ZodObject<{
@@ -353,19 +478,61 @@ declare const ContentParagraphBordersSchema: z.ZodObject<{
353
478
  }, z.core.$strip>;
354
479
  type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
355
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>>;
356
508
  kind: z.ZodLiteral<"paragraph">;
357
509
  runs: z.ZodArray<z.ZodObject<{
358
- text: z.ZodString;
359
- bold: z.ZodOptional<z.ZodBoolean>;
360
- italic: z.ZodOptional<z.ZodBoolean>;
361
- underline: z.ZodOptional<z.ZodBoolean>;
362
- strike: z.ZodOptional<z.ZodBoolean>;
363
- fontFamily: z.ZodOptional<z.ZodString>;
364
- sizePt: z.ZodOptional<z.ZodNumber>;
365
- color: z.ZodOptional<z.ZodObject<{
366
- r: z.ZodNumber;
367
- g: z.ZodNumber;
368
- b: z.ZodNumber;
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>>;
369
536
  }, z.core.$strip>>;
370
537
  hyperlink: z.ZodOptional<z.ZodString>;
371
538
  verticalAlign: z.ZodOptional<z.ZodEnum<{
@@ -404,6 +571,18 @@ declare const ContentParagraphSchema: z.ZodObject<{
404
571
  widthPt: z.ZodNumber;
405
572
  heightPt: z.ZodNumber;
406
573
  }, z.core.$strip>>>;
574
+ bold: z.ZodOptional<z.ZodBoolean>;
575
+ italic: z.ZodOptional<z.ZodBoolean>;
576
+ underline: z.ZodOptional<z.ZodBoolean>;
577
+ strike: z.ZodOptional<z.ZodBoolean>;
578
+ fontFamily: z.ZodOptional<z.ZodString>;
579
+ sizePt: z.ZodOptional<z.ZodNumber>;
580
+ color: z.ZodOptional<z.ZodObject<{
581
+ r: z.ZodNumber;
582
+ g: z.ZodNumber;
583
+ b: z.ZodNumber;
584
+ }, z.core.$strip>>;
585
+ text: z.ZodString;
407
586
  }, z.core.$strip>>;
408
587
  constructs: z.ZodOptional<z.ZodArray<z.ZodObject<{
409
588
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -605,8 +784,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
605
784
  headingLevel: z.ZodOptional<z.ZodNumber>;
606
785
  alignment: z.ZodOptional<z.ZodEnum<{
607
786
  left: "left";
608
- center: "center";
609
787
  right: "right";
788
+ center: "center";
610
789
  justify: "justify";
611
790
  }>>;
612
791
  list: z.ZodOptional<z.ZodObject<{
@@ -742,10 +921,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
742
921
  type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
743
922
  declare const ContentFloatAlignSchema: z.ZodEnum<{
744
923
  left: "left";
745
- center: "center";
746
924
  right: "right";
747
925
  top: "top";
748
926
  bottom: "bottom";
927
+ center: "center";
749
928
  inside: "inside";
750
929
  outside: "outside";
751
930
  }>;
@@ -785,10 +964,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
785
964
  }>;
786
965
  align: z.ZodEnum<{
787
966
  left: "left";
788
- center: "center";
789
967
  right: "right";
790
968
  top: "top";
791
969
  bottom: "bottom";
970
+ center: "center";
792
971
  inside: "inside";
793
972
  outside: "outside";
794
973
  }>;
@@ -830,10 +1009,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
830
1009
  }>;
831
1010
  align: z.ZodEnum<{
832
1011
  left: "left";
833
- center: "center";
834
1012
  right: "right";
835
1013
  top: "top";
836
1014
  bottom: "bottom";
1015
+ center: "center";
837
1016
  inside: "inside";
838
1017
  outside: "outside";
839
1018
  }>;
@@ -873,17 +1052,55 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
873
1052
  }>;
874
1053
  align: z.ZodEnum<{
875
1054
  left: "left";
876
- center: "center";
877
1055
  right: "right";
878
1056
  top: "top";
879
1057
  bottom: "bottom";
1058
+ center: "center";
880
1059
  inside: "inside";
881
1060
  outside: "outside";
882
1061
  }>;
883
1062
  }, z.core.$strict>]>;
884
1063
  }, z.core.$strip>;
885
1064
  type ContentFloatPosition = z.infer<typeof ContentFloatPositionSchema>;
1065
+ declare const IMAGE_FORMATS: readonly ["png", "jpeg", "svg", "gif"];
1066
+ type ImageFormat = (typeof IMAGE_FORMATS)[number];
1067
+ declare const ContentImageOriginalSchema: z.ZodObject<{
1068
+ filter: z.ZodEnum<{
1069
+ jbig2: "jbig2";
1070
+ jpeg2000: "jpeg2000";
1071
+ }>;
1072
+ base64: z.ZodString;
1073
+ jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
1074
+ }, z.core.$strip>;
1075
+ type ContentImageOriginal = z.infer<typeof ContentImageOriginalSchema>;
886
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>>;
887
1104
  kind: z.ZodLiteral<"image">;
888
1105
  format: z.ZodEnum<{
889
1106
  png: "png";
@@ -895,6 +1112,16 @@ declare const ContentImageBlockSchema: z.ZodObject<{
895
1112
  widthPt: z.ZodNumber;
896
1113
  heightPt: z.ZodNumber;
897
1114
  altText: z.ZodOptional<z.ZodString>;
1115
+ original: z.ZodOptional<z.ZodObject<{
1116
+ filter: z.ZodEnum<{
1117
+ jbig2: "jbig2";
1118
+ jpeg2000: "jpeg2000";
1119
+ }>;
1120
+ base64: z.ZodString;
1121
+ jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
1122
+ }, z.core.$strip>>;
1123
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
1124
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
898
1125
  floatPosition: z.ZodOptional<z.ZodObject<{
899
1126
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
900
1127
  relativeTo: z.ZodEnum<{
@@ -931,10 +1158,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
931
1158
  }>;
932
1159
  align: z.ZodEnum<{
933
1160
  left: "left";
934
- center: "center";
935
1161
  right: "right";
936
1162
  top: "top";
937
1163
  bottom: "bottom";
1164
+ center: "center";
938
1165
  inside: "inside";
939
1166
  outside: "outside";
940
1167
  }>;
@@ -974,10 +1201,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
974
1201
  }>;
975
1202
  align: z.ZodEnum<{
976
1203
  left: "left";
977
- center: "center";
978
1204
  right: "right";
979
1205
  top: "top";
980
1206
  bottom: "bottom";
1207
+ center: "center";
981
1208
  inside: "inside";
982
1209
  outside: "outside";
983
1210
  }>;
@@ -1014,6 +1241,33 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1014
1241
  }, z.core.$strip>;
1015
1242
  type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
1016
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>>;
1017
1271
  kind: z.ZodLiteral<"pageBreak">;
1018
1272
  sourcePath: z.ZodOptional<z.ZodString>;
1019
1273
  source: z.ZodOptional<z.ZodObject<{
@@ -1299,6 +1553,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1299
1553
  widthPt: z.ZodNumber;
1300
1554
  heightPt: z.ZodNumber;
1301
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>>;
1302
1583
  objectKind: z.ZodEnum<{
1303
1584
  formula: "formula";
1304
1585
  wordprocessing: "wordprocessing";
@@ -1309,6 +1590,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1309
1590
  }>;
1310
1591
  document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
1311
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>>;
1312
1620
  pageSize: z.ZodObject<{
1313
1621
  widthPt: z.ZodNumber;
1314
1622
  heightPt: z.ZodNumber;
@@ -1426,11 +1734,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1426
1734
  }, z.core.$strip>;
1427
1735
  }, z.core.$strip>, z.ZodObject<{
1428
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>>;
1429
1764
  size: z.ZodObject<{
1430
1765
  widthPt: z.ZodNumber;
1431
1766
  heightPt: z.ZodNumber;
1432
1767
  }, z.core.$strip>;
1433
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>>;
1434
1797
  name: z.ZodOptional<z.ZodString>;
1435
1798
  frame: z.ZodObject<{
1436
1799
  xPt: z.ZodNumber;
@@ -1474,7 +1837,6 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1474
1837
  widthPt: z.ZodNumber;
1475
1838
  heightPt: z.ZodNumber;
1476
1839
  }, z.core.$strip>>>;
1477
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
1478
1840
  }, z.core.$strip>>;
1479
1841
  notes: z.ZodString;
1480
1842
  source: z.ZodOptional<z.ZodObject<{
@@ -1567,8 +1929,62 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1567
1929
  }, z.core.$strip>;
1568
1930
  }, z.core.$strip>, z.ZodObject<{
1569
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>>;
1570
1959
  name: z.ZodString;
1571
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>>;
1572
1988
  row: z.ZodNumber;
1573
1989
  column: z.ZodNumber;
1574
1990
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -1608,8 +2024,7 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1608
2024
  formula: z.ZodOptional<z.ZodString>;
1609
2025
  displayText: z.ZodString;
1610
2026
  numberFormatCode: z.ZodOptional<z.ZodString>;
1611
- runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1612
- text: z.ZodString;
2027
+ font: z.ZodOptional<z.ZodObject<{
1613
2028
  bold: z.ZodOptional<z.ZodBoolean>;
1614
2029
  italic: z.ZodOptional<z.ZodBoolean>;
1615
2030
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -1621,6 +2036,35 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1621
2036
  g: z.ZodNumber;
1622
2037
  b: z.ZodNumber;
1623
2038
  }, z.core.$strip>>;
2039
+ }, z.core.$strip>>;
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>>;
1624
2068
  hyperlink: z.ZodOptional<z.ZodString>;
1625
2069
  verticalAlign: z.ZodOptional<z.ZodEnum<{
1626
2070
  superscript: "superscript";
@@ -1658,6 +2102,18 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1658
2102
  widthPt: z.ZodNumber;
1659
2103
  heightPt: z.ZodNumber;
1660
2104
  }, z.core.$strip>>>;
2105
+ bold: z.ZodOptional<z.ZodBoolean>;
2106
+ italic: z.ZodOptional<z.ZodBoolean>;
2107
+ underline: z.ZodOptional<z.ZodBoolean>;
2108
+ strike: z.ZodOptional<z.ZodBoolean>;
2109
+ fontFamily: z.ZodOptional<z.ZodString>;
2110
+ sizePt: z.ZodOptional<z.ZodNumber>;
2111
+ color: z.ZodOptional<z.ZodObject<{
2112
+ r: z.ZodNumber;
2113
+ g: z.ZodNumber;
2114
+ b: z.ZodNumber;
2115
+ }, z.core.$strip>>;
2116
+ text: z.ZodString;
1661
2117
  }, z.core.$strip>>>;
1662
2118
  colSpan: z.ZodOptional<z.ZodNumber>;
1663
2119
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -1823,8 +2279,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1823
2279
  }, z.core.$strip>>;
1824
2280
  alignment: z.ZodOptional<z.ZodEnum<{
1825
2281
  left: "left";
1826
- center: "center";
1827
2282
  right: "right";
2283
+ center: "center";
1828
2284
  justify: "justify";
1829
2285
  }>>;
1830
2286
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -1881,6 +2337,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1881
2337
  hidden: z.ZodOptional<z.ZodBoolean>;
1882
2338
  }, z.core.$strip>>;
1883
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>>;
1884
2367
  kind: z.ZodLiteral<"image">;
1885
2368
  format: z.ZodEnum<{
1886
2369
  png: "png";
@@ -1892,6 +2375,16 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1892
2375
  widthPt: z.ZodNumber;
1893
2376
  heightPt: z.ZodNumber;
1894
2377
  altText: z.ZodOptional<z.ZodString>;
2378
+ original: z.ZodOptional<z.ZodObject<{
2379
+ filter: z.ZodEnum<{
2380
+ jbig2: "jbig2";
2381
+ jpeg2000: "jpeg2000";
2382
+ }>;
2383
+ base64: z.ZodString;
2384
+ jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
2385
+ }, z.core.$strip>>;
2386
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
2387
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
1895
2388
  floatPosition: z.ZodOptional<z.ZodObject<{
1896
2389
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
1897
2390
  relativeTo: z.ZodEnum<{
@@ -1928,10 +2421,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1928
2421
  }>;
1929
2422
  align: z.ZodEnum<{
1930
2423
  left: "left";
1931
- center: "center";
1932
2424
  right: "right";
1933
2425
  top: "top";
1934
2426
  bottom: "bottom";
2427
+ center: "center";
1935
2428
  inside: "inside";
1936
2429
  outside: "outside";
1937
2430
  }>;
@@ -1971,10 +2464,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1971
2464
  }>;
1972
2465
  align: z.ZodEnum<{
1973
2466
  left: "left";
1974
- center: "center";
1975
2467
  right: "right";
1976
2468
  top: "top";
1977
2469
  bottom: "bottom";
2470
+ center: "center";
1978
2471
  inside: "inside";
1979
2472
  outside: "outside";
1980
2473
  }>;
@@ -2706,6 +3199,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2706
3199
  xml: z.ZodString;
2707
3200
  }, z.core.$strict>>;
2708
3201
  }, z.core.$strip>>;
3202
+ names: z.ZodOptional<z.ZodArray<z.ZodObject<{
3203
+ name: z.ZodString;
3204
+ refersTo: z.ZodString;
3205
+ scopeSheetIndex: z.ZodOptional<z.ZodNumber>;
3206
+ }, z.core.$strip>>>;
2709
3207
  symbolTable: z.ZodOptional<z.ZodObject<{
2710
3208
  symbols: z.ZodArray<z.ZodObject<{
2711
3209
  glyph: z.ZodString;
@@ -2775,11 +3273,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2775
3273
  }, z.core.$strip>;
2776
3274
  }, z.core.$strip>, z.ZodObject<{
2777
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>>;
2778
3303
  size: z.ZodObject<{
2779
3304
  widthPt: z.ZodNumber;
2780
3305
  heightPt: z.ZodNumber;
2781
3306
  }, z.core.$strip>;
2782
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>>;
2783
3336
  name: z.ZodOptional<z.ZodString>;
2784
3337
  frame: z.ZodObject<{
2785
3338
  xPt: z.ZodNumber;
@@ -2823,9 +3376,35 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2823
3376
  widthPt: z.ZodNumber;
2824
3377
  heightPt: z.ZodNumber;
2825
3378
  }, z.core.$strip>>>;
2826
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
2827
3379
  }, z.core.$strip>>;
2828
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>>;
2829
3408
  kind: z.ZodLiteral<"rect">;
2830
3409
  frame: z.ZodObject<{
2831
3410
  xPt: z.ZodNumber;
@@ -2937,6 +3516,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2937
3516
  heightPt: z.ZodNumber;
2938
3517
  }, z.core.$strip>>>;
2939
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>>;
2940
3546
  kind: z.ZodLiteral<"ellipse">;
2941
3547
  frame: z.ZodObject<{
2942
3548
  xPt: z.ZodNumber;
@@ -3048,6 +3654,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3048
3654
  heightPt: z.ZodNumber;
3049
3655
  }, z.core.$strip>>>;
3050
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>>;
3051
3684
  kind: z.ZodLiteral<"line">;
3052
3685
  from: z.ZodObject<{
3053
3686
  xPt: z.ZodNumber;
@@ -3109,6 +3742,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3109
3742
  heightPt: z.ZodNumber;
3110
3743
  }, z.core.$strip>>>;
3111
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>>;
3112
3772
  kind: z.ZodLiteral<"path">;
3113
3773
  frame: z.ZodObject<{
3114
3774
  xPt: z.ZodNumber;
@@ -3342,6 +4002,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3342
4002
  }, z.core.$strip>;
3343
4003
  }, z.core.$strip>, z.ZodObject<{
3344
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>>;
3345
4032
  mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
3346
4033
  starMath: z.ZodOptional<z.ZodString>;
3347
4034
  presentation: z.ZodOptional<z.ZodObject<{
@@ -3712,6 +4399,33 @@ declare function unrecognizedFillKind(fill: {
3712
4399
  kind?: unknown;
3713
4400
  }): string;
3714
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>>;
3715
4429
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
3716
4430
  colSpan: z.ZodOptional<z.ZodNumber>;
3717
4431
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -3876,9 +4590,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
3876
4590
  }, z.core.$strip>>;
3877
4591
  }, z.core.$strip>>;
3878
4592
  verticalAlign: z.ZodOptional<z.ZodEnum<{
3879
- center: "center";
3880
4593
  top: "top";
3881
4594
  bottom: "bottom";
4595
+ center: "center";
3882
4596
  }>>;
3883
4597
  formula: z.ZodOptional<z.ZodString>;
3884
4598
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -3912,6 +4626,33 @@ declare const ContentTableCellSchema: z.ZodObject<{
3912
4626
  }, z.core.$strip>;
3913
4627
  declare const ContentTableRowSchema: z.ZodObject<{
3914
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>>;
3915
4656
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
3916
4657
  colSpan: z.ZodOptional<z.ZodNumber>;
3917
4658
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -4076,9 +4817,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4076
4817
  }, z.core.$strip>>;
4077
4818
  }, z.core.$strip>>;
4078
4819
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4079
- center: "center";
4080
4820
  top: "top";
4081
4821
  bottom: "bottom";
4822
+ center: "center";
4082
4823
  }>>;
4083
4824
  formula: z.ZodOptional<z.ZodString>;
4084
4825
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4117,9 +4858,63 @@ declare const ContentTableRowSchema: z.ZodObject<{
4117
4858
  }>>;
4118
4859
  }, z.core.$strip>;
4119
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>>;
4120
4888
  kind: z.ZodLiteral<"table">;
4121
4889
  rows: z.ZodArray<z.ZodObject<{
4122
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>>;
4123
4918
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
4124
4919
  colSpan: z.ZodOptional<z.ZodNumber>;
4125
4920
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -4284,9 +5079,9 @@ declare const ContentTableSchema: z.ZodObject<{
4284
5079
  }, z.core.$strip>>;
4285
5080
  }, z.core.$strip>>;
4286
5081
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4287
- center: "center";
4288
5082
  top: "top";
4289
5083
  bottom: "bottom";
5084
+ center: "center";
4290
5085
  }>>;
4291
5086
  formula: z.ZodOptional<z.ZodString>;
4292
5087
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4362,6 +5157,33 @@ declare const ContentPageFurnitureSchema: z.ZodObject<{
4362
5157
  }, z.core.$strip>;
4363
5158
  type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
4364
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>>;
4365
5187
  pageSize: z.ZodObject<{
4366
5188
  widthPt: z.ZodNumber;
4367
5189
  heightPt: z.ZodNumber;
@@ -4412,6 +5234,34 @@ declare const ContentSectionSchema: z.ZodObject<{
4412
5234
  }, z.core.$strip>;
4413
5235
  type ContentSection = z.infer<typeof ContentSectionSchema>;
4414
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>>;
4415
5265
  name: z.ZodOptional<z.ZodString>;
4416
5266
  frame: z.ZodObject<{
4417
5267
  xPt: z.ZodNumber;
@@ -4455,15 +5305,69 @@ declare const ContentShapeSchema: z.ZodObject<{
4455
5305
  widthPt: z.ZodNumber;
4456
5306
  heightPt: z.ZodNumber;
4457
5307
  }, z.core.$strip>>>;
4458
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
4459
5308
  }, z.core.$strip>;
4460
5309
  type ContentShape = z.infer<typeof ContentShapeSchema>;
4461
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>>;
4462
5338
  size: z.ZodObject<{
4463
5339
  widthPt: z.ZodNumber;
4464
5340
  heightPt: z.ZodNumber;
4465
5341
  }, z.core.$strip>;
4466
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>>;
4467
5371
  name: z.ZodOptional<z.ZodString>;
4468
5372
  frame: z.ZodObject<{
4469
5373
  xPt: z.ZodNumber;
@@ -4507,7 +5411,6 @@ declare const ContentSlideSchema: z.ZodObject<{
4507
5411
  widthPt: z.ZodNumber;
4508
5412
  heightPt: z.ZodNumber;
4509
5413
  }, z.core.$strip>>>;
4510
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
4511
5414
  }, z.core.$strip>>;
4512
5415
  notes: z.ZodString;
4513
5416
  source: z.ZodOptional<z.ZodObject<{
@@ -4580,6 +5483,33 @@ declare const ContentSheetCellCommentSchema: z.ZodObject<{
4580
5483
  }, z.core.$strip>;
4581
5484
  type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
4582
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>>;
4583
5513
  row: z.ZodNumber;
4584
5514
  column: z.ZodNumber;
4585
5515
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -4619,8 +5549,7 @@ declare const ContentSheetCellSchema: z.ZodObject<{
4619
5549
  formula: z.ZodOptional<z.ZodString>;
4620
5550
  displayText: z.ZodString;
4621
5551
  numberFormatCode: z.ZodOptional<z.ZodString>;
4622
- runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
4623
- text: z.ZodString;
5552
+ font: z.ZodOptional<z.ZodObject<{
4624
5553
  bold: z.ZodOptional<z.ZodBoolean>;
4625
5554
  italic: z.ZodOptional<z.ZodBoolean>;
4626
5555
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -4632,6 +5561,35 @@ declare const ContentSheetCellSchema: z.ZodObject<{
4632
5561
  g: z.ZodNumber;
4633
5562
  b: z.ZodNumber;
4634
5563
  }, z.core.$strip>>;
5564
+ }, z.core.$strip>>;
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>>;
4635
5593
  hyperlink: z.ZodOptional<z.ZodString>;
4636
5594
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4637
5595
  superscript: "superscript";
@@ -4669,6 +5627,18 @@ declare const ContentSheetCellSchema: z.ZodObject<{
4669
5627
  widthPt: z.ZodNumber;
4670
5628
  heightPt: z.ZodNumber;
4671
5629
  }, z.core.$strip>>>;
5630
+ bold: z.ZodOptional<z.ZodBoolean>;
5631
+ italic: z.ZodOptional<z.ZodBoolean>;
5632
+ underline: z.ZodOptional<z.ZodBoolean>;
5633
+ strike: z.ZodOptional<z.ZodBoolean>;
5634
+ fontFamily: z.ZodOptional<z.ZodString>;
5635
+ sizePt: z.ZodOptional<z.ZodNumber>;
5636
+ color: z.ZodOptional<z.ZodObject<{
5637
+ r: z.ZodNumber;
5638
+ g: z.ZodNumber;
5639
+ b: z.ZodNumber;
5640
+ }, z.core.$strip>>;
5641
+ text: z.ZodString;
4672
5642
  }, z.core.$strip>>>;
4673
5643
  colSpan: z.ZodOptional<z.ZodNumber>;
4674
5644
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -4834,8 +5804,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
4834
5804
  }, z.core.$strip>>;
4835
5805
  alignment: z.ZodOptional<z.ZodEnum<{
4836
5806
  left: "left";
4837
- center: "center";
4838
5807
  right: "right";
5808
+ center: "center";
4839
5809
  justify: "justify";
4840
5810
  }>>;
4841
5811
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -5654,6 +6624,33 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
5654
6624
  }, z.core.$strip>], "type">;
5655
6625
  type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalFormatSchema>;
5656
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>>;
5657
6654
  kind: z.ZodLiteral<"image">;
5658
6655
  format: z.ZodEnum<{
5659
6656
  png: "png";
@@ -5665,6 +6662,16 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5665
6662
  widthPt: z.ZodNumber;
5666
6663
  heightPt: z.ZodNumber;
5667
6664
  altText: z.ZodOptional<z.ZodString>;
6665
+ original: z.ZodOptional<z.ZodObject<{
6666
+ filter: z.ZodEnum<{
6667
+ jbig2: "jbig2";
6668
+ jpeg2000: "jpeg2000";
6669
+ }>;
6670
+ base64: z.ZodString;
6671
+ jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
6672
+ }, z.core.$strip>>;
6673
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
6674
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
5668
6675
  floatPosition: z.ZodOptional<z.ZodObject<{
5669
6676
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
5670
6677
  relativeTo: z.ZodEnum<{
@@ -5701,10 +6708,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5701
6708
  }>;
5702
6709
  align: z.ZodEnum<{
5703
6710
  left: "left";
5704
- center: "center";
5705
6711
  right: "right";
5706
6712
  top: "top";
5707
6713
  bottom: "bottom";
6714
+ center: "center";
5708
6715
  inside: "inside";
5709
6716
  outside: "outside";
5710
6717
  }>;
@@ -5744,10 +6751,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5744
6751
  }>;
5745
6752
  align: z.ZodEnum<{
5746
6753
  left: "left";
5747
- center: "center";
5748
6754
  right: "right";
5749
6755
  top: "top";
5750
6756
  bottom: "bottom";
6757
+ center: "center";
5751
6758
  inside: "inside";
5752
6759
  outside: "outside";
5753
6760
  }>;
@@ -5788,8 +6795,62 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5788
6795
  }, z.core.$strip>;
5789
6796
  type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
5790
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>>;
5791
6825
  name: z.ZodString;
5792
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>>;
5793
6854
  row: z.ZodNumber;
5794
6855
  column: z.ZodNumber;
5795
6856
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -5829,8 +6890,7 @@ declare const ContentSheetSchema: z.ZodObject<{
5829
6890
  formula: z.ZodOptional<z.ZodString>;
5830
6891
  displayText: z.ZodString;
5831
6892
  numberFormatCode: z.ZodOptional<z.ZodString>;
5832
- runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
5833
- text: z.ZodString;
6893
+ font: z.ZodOptional<z.ZodObject<{
5834
6894
  bold: z.ZodOptional<z.ZodBoolean>;
5835
6895
  italic: z.ZodOptional<z.ZodBoolean>;
5836
6896
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -5842,6 +6902,35 @@ declare const ContentSheetSchema: z.ZodObject<{
5842
6902
  g: z.ZodNumber;
5843
6903
  b: z.ZodNumber;
5844
6904
  }, z.core.$strip>>;
6905
+ }, z.core.$strip>>;
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>>;
5845
6934
  hyperlink: z.ZodOptional<z.ZodString>;
5846
6935
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5847
6936
  superscript: "superscript";
@@ -5879,6 +6968,18 @@ declare const ContentSheetSchema: z.ZodObject<{
5879
6968
  widthPt: z.ZodNumber;
5880
6969
  heightPt: z.ZodNumber;
5881
6970
  }, z.core.$strip>>>;
6971
+ bold: z.ZodOptional<z.ZodBoolean>;
6972
+ italic: z.ZodOptional<z.ZodBoolean>;
6973
+ underline: z.ZodOptional<z.ZodBoolean>;
6974
+ strike: z.ZodOptional<z.ZodBoolean>;
6975
+ fontFamily: z.ZodOptional<z.ZodString>;
6976
+ sizePt: z.ZodOptional<z.ZodNumber>;
6977
+ color: z.ZodOptional<z.ZodObject<{
6978
+ r: z.ZodNumber;
6979
+ g: z.ZodNumber;
6980
+ b: z.ZodNumber;
6981
+ }, z.core.$strip>>;
6982
+ text: z.ZodString;
5882
6983
  }, z.core.$strip>>>;
5883
6984
  colSpan: z.ZodOptional<z.ZodNumber>;
5884
6985
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -6044,8 +7145,8 @@ declare const ContentSheetSchema: z.ZodObject<{
6044
7145
  }, z.core.$strip>>;
6045
7146
  alignment: z.ZodOptional<z.ZodEnum<{
6046
7147
  left: "left";
6047
- center: "center";
6048
7148
  right: "right";
7149
+ center: "center";
6049
7150
  justify: "justify";
6050
7151
  }>>;
6051
7152
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -6102,6 +7203,33 @@ declare const ContentSheetSchema: z.ZodObject<{
6102
7203
  hidden: z.ZodOptional<z.ZodBoolean>;
6103
7204
  }, z.core.$strip>>;
6104
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>>;
6105
7233
  kind: z.ZodLiteral<"image">;
6106
7234
  format: z.ZodEnum<{
6107
7235
  png: "png";
@@ -6113,6 +7241,16 @@ declare const ContentSheetSchema: z.ZodObject<{
6113
7241
  widthPt: z.ZodNumber;
6114
7242
  heightPt: z.ZodNumber;
6115
7243
  altText: z.ZodOptional<z.ZodString>;
7244
+ original: z.ZodOptional<z.ZodObject<{
7245
+ filter: z.ZodEnum<{
7246
+ jbig2: "jbig2";
7247
+ jpeg2000: "jpeg2000";
7248
+ }>;
7249
+ base64: z.ZodString;
7250
+ jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
7251
+ }, z.core.$strip>>;
7252
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
7253
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
6116
7254
  floatPosition: z.ZodOptional<z.ZodObject<{
6117
7255
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
6118
7256
  relativeTo: z.ZodEnum<{
@@ -6149,10 +7287,10 @@ declare const ContentSheetSchema: z.ZodObject<{
6149
7287
  }>;
6150
7288
  align: z.ZodEnum<{
6151
7289
  left: "left";
6152
- center: "center";
6153
7290
  right: "right";
6154
7291
  top: "top";
6155
7292
  bottom: "bottom";
7293
+ center: "center";
6156
7294
  inside: "inside";
6157
7295
  outside: "outside";
6158
7296
  }>;
@@ -6192,10 +7330,10 @@ declare const ContentSheetSchema: z.ZodObject<{
6192
7330
  }>;
6193
7331
  align: z.ZodEnum<{
6194
7332
  left: "left";
6195
- center: "center";
6196
7333
  right: "right";
6197
7334
  top: "top";
6198
7335
  bottom: "bottom";
7336
+ center: "center";
6199
7337
  inside: "inside";
6200
7338
  outside: "outside";
6201
7339
  }>;
@@ -7127,6 +8265,33 @@ declare const ContentSubpathSchema: z.ZodObject<{
7127
8265
  }, z.core.$strip>;
7128
8266
  type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
7129
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>>;
7130
8295
  kind: z.ZodLiteral<"rect">;
7131
8296
  frame: z.ZodObject<{
7132
8297
  xPt: z.ZodNumber;
@@ -7238,6 +8403,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7238
8403
  heightPt: z.ZodNumber;
7239
8404
  }, z.core.$strip>>>;
7240
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>>;
7241
8433
  kind: z.ZodLiteral<"ellipse">;
7242
8434
  frame: z.ZodObject<{
7243
8435
  xPt: z.ZodNumber;
@@ -7349,6 +8541,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7349
8541
  heightPt: z.ZodNumber;
7350
8542
  }, z.core.$strip>>>;
7351
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>>;
7352
8571
  kind: z.ZodLiteral<"line">;
7353
8572
  from: z.ZodObject<{
7354
8573
  xPt: z.ZodNumber;
@@ -7410,6 +8629,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7410
8629
  heightPt: z.ZodNumber;
7411
8630
  }, z.core.$strip>>>;
7412
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>>;
7413
8659
  kind: z.ZodLiteral<"path">;
7414
8660
  frame: z.ZodObject<{
7415
8661
  xPt: z.ZodNumber;
@@ -7555,11 +8801,66 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7555
8801
  }, z.core.$strip>], "kind">;
7556
8802
  type ContentVector = z.infer<typeof ContentVectorSchema>;
7557
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>>;
7558
8831
  size: z.ZodObject<{
7559
8832
  widthPt: z.ZodNumber;
7560
8833
  heightPt: z.ZodNumber;
7561
8834
  }, z.core.$strip>;
7562
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>>;
7563
8864
  name: z.ZodOptional<z.ZodString>;
7564
8865
  frame: z.ZodObject<{
7565
8866
  xPt: z.ZodNumber;
@@ -7603,9 +8904,35 @@ declare const ContentDrawPageSchema: z.ZodObject<{
7603
8904
  widthPt: z.ZodNumber;
7604
8905
  heightPt: z.ZodNumber;
7605
8906
  }, z.core.$strip>>>;
7606
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
7607
8907
  }, z.core.$strip>>;
7608
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>>;
7609
8936
  kind: z.ZodLiteral<"rect">;
7610
8937
  frame: z.ZodObject<{
7611
8938
  xPt: z.ZodNumber;
@@ -7717,6 +9044,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
7717
9044
  heightPt: z.ZodNumber;
7718
9045
  }, z.core.$strip>>>;
7719
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>>;
7720
9074
  kind: z.ZodLiteral<"ellipse">;
7721
9075
  frame: z.ZodObject<{
7722
9076
  xPt: z.ZodNumber;
@@ -7828,6 +9182,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
7828
9182
  heightPt: z.ZodNumber;
7829
9183
  }, z.core.$strip>>>;
7830
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>>;
7831
9212
  kind: z.ZodLiteral<"line">;
7832
9213
  from: z.ZodObject<{
7833
9214
  xPt: z.ZodNumber;
@@ -7889,6 +9270,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
7889
9270
  heightPt: z.ZodNumber;
7890
9271
  }, z.core.$strip>>>;
7891
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>>;
7892
9300
  kind: z.ZodLiteral<"path">;
7893
9301
  frame: z.ZodObject<{
7894
9302
  xPt: z.ZodNumber;
@@ -8055,6 +9463,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
8055
9463
  }, z.core.$strip>;
8056
9464
  type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
8057
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>>;
8058
9493
  mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
8059
9494
  starMath: z.ZodOptional<z.ZodString>;
8060
9495
  presentation: z.ZodOptional<z.ZodObject<{
@@ -8133,8 +9568,41 @@ declare const contentDocumentSharedFields: {
8133
9568
  }, z.core.$strip>>>;
8134
9569
  }, z.core.$strip>>;
8135
9570
  };
9571
+ declare const ContentDefinedNameSchema: z.ZodObject<{
9572
+ name: z.ZodString;
9573
+ refersTo: z.ZodString;
9574
+ scopeSheetIndex: z.ZodOptional<z.ZodNumber>;
9575
+ }, z.core.$strip>;
9576
+ type ContentDefinedName = z.infer<typeof ContentDefinedNameSchema>;
8136
9577
  declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8137
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>>;
8138
9606
  pageSize: z.ZodObject<{
8139
9607
  widthPt: z.ZodNumber;
8140
9608
  heightPt: z.ZodNumber;
@@ -8252,11 +9720,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8252
9720
  }, z.core.$strip>;
8253
9721
  }, z.core.$strip>, z.ZodObject<{
8254
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>>;
8255
9750
  size: z.ZodObject<{
8256
9751
  widthPt: z.ZodNumber;
8257
9752
  heightPt: z.ZodNumber;
8258
9753
  }, z.core.$strip>;
8259
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>>;
8260
9783
  name: z.ZodOptional<z.ZodString>;
8261
9784
  frame: z.ZodObject<{
8262
9785
  xPt: z.ZodNumber;
@@ -8300,7 +9823,6 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8300
9823
  widthPt: z.ZodNumber;
8301
9824
  heightPt: z.ZodNumber;
8302
9825
  }, z.core.$strip>>>;
8303
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
8304
9826
  }, z.core.$strip>>;
8305
9827
  notes: z.ZodString;
8306
9828
  source: z.ZodOptional<z.ZodObject<{
@@ -8393,8 +9915,62 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8393
9915
  }, z.core.$strip>;
8394
9916
  }, z.core.$strip>, z.ZodObject<{
8395
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>>;
8396
9945
  name: z.ZodString;
8397
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>>;
8398
9974
  row: z.ZodNumber;
8399
9975
  column: z.ZodNumber;
8400
9976
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -8434,8 +10010,7 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8434
10010
  formula: z.ZodOptional<z.ZodString>;
8435
10011
  displayText: z.ZodString;
8436
10012
  numberFormatCode: z.ZodOptional<z.ZodString>;
8437
- runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
8438
- text: z.ZodString;
10013
+ font: z.ZodOptional<z.ZodObject<{
8439
10014
  bold: z.ZodOptional<z.ZodBoolean>;
8440
10015
  italic: z.ZodOptional<z.ZodBoolean>;
8441
10016
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -8447,6 +10022,35 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8447
10022
  g: z.ZodNumber;
8448
10023
  b: z.ZodNumber;
8449
10024
  }, z.core.$strip>>;
10025
+ }, z.core.$strip>>;
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>>;
8450
10054
  hyperlink: z.ZodOptional<z.ZodString>;
8451
10055
  verticalAlign: z.ZodOptional<z.ZodEnum<{
8452
10056
  superscript: "superscript";
@@ -8484,6 +10088,18 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8484
10088
  widthPt: z.ZodNumber;
8485
10089
  heightPt: z.ZodNumber;
8486
10090
  }, z.core.$strip>>>;
10091
+ bold: z.ZodOptional<z.ZodBoolean>;
10092
+ italic: z.ZodOptional<z.ZodBoolean>;
10093
+ underline: z.ZodOptional<z.ZodBoolean>;
10094
+ strike: z.ZodOptional<z.ZodBoolean>;
10095
+ fontFamily: z.ZodOptional<z.ZodString>;
10096
+ sizePt: z.ZodOptional<z.ZodNumber>;
10097
+ color: z.ZodOptional<z.ZodObject<{
10098
+ r: z.ZodNumber;
10099
+ g: z.ZodNumber;
10100
+ b: z.ZodNumber;
10101
+ }, z.core.$strip>>;
10102
+ text: z.ZodString;
8487
10103
  }, z.core.$strip>>>;
8488
10104
  colSpan: z.ZodOptional<z.ZodNumber>;
8489
10105
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -8649,8 +10265,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8649
10265
  }, z.core.$strip>>;
8650
10266
  alignment: z.ZodOptional<z.ZodEnum<{
8651
10267
  left: "left";
8652
- center: "center";
8653
10268
  right: "right";
10269
+ center: "center";
8654
10270
  justify: "justify";
8655
10271
  }>>;
8656
10272
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -8707,6 +10323,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8707
10323
  hidden: z.ZodOptional<z.ZodBoolean>;
8708
10324
  }, z.core.$strip>>;
8709
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>>;
8710
10353
  kind: z.ZodLiteral<"image">;
8711
10354
  format: z.ZodEnum<{
8712
10355
  png: "png";
@@ -8718,6 +10361,16 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8718
10361
  widthPt: z.ZodNumber;
8719
10362
  heightPt: z.ZodNumber;
8720
10363
  altText: z.ZodOptional<z.ZodString>;
10364
+ original: z.ZodOptional<z.ZodObject<{
10365
+ filter: z.ZodEnum<{
10366
+ jbig2: "jbig2";
10367
+ jpeg2000: "jpeg2000";
10368
+ }>;
10369
+ base64: z.ZodString;
10370
+ jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
10371
+ }, z.core.$strip>>;
10372
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
10373
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
8721
10374
  floatPosition: z.ZodOptional<z.ZodObject<{
8722
10375
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
8723
10376
  relativeTo: z.ZodEnum<{
@@ -8754,10 +10407,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8754
10407
  }>;
8755
10408
  align: z.ZodEnum<{
8756
10409
  left: "left";
8757
- center: "center";
8758
10410
  right: "right";
8759
10411
  top: "top";
8760
10412
  bottom: "bottom";
10413
+ center: "center";
8761
10414
  inside: "inside";
8762
10415
  outside: "outside";
8763
10416
  }>;
@@ -8797,10 +10450,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8797
10450
  }>;
8798
10451
  align: z.ZodEnum<{
8799
10452
  left: "left";
8800
- center: "center";
8801
10453
  right: "right";
8802
10454
  top: "top";
8803
10455
  bottom: "bottom";
10456
+ center: "center";
8804
10457
  inside: "inside";
8805
10458
  outside: "outside";
8806
10459
  }>;
@@ -9532,6 +11185,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9532
11185
  xml: z.ZodString;
9533
11186
  }, z.core.$strict>>;
9534
11187
  }, z.core.$strip>>;
11188
+ names: z.ZodOptional<z.ZodArray<z.ZodObject<{
11189
+ name: z.ZodString;
11190
+ refersTo: z.ZodString;
11191
+ scopeSheetIndex: z.ZodOptional<z.ZodNumber>;
11192
+ }, z.core.$strip>>>;
9535
11193
  symbolTable: z.ZodOptional<z.ZodObject<{
9536
11194
  symbols: z.ZodArray<z.ZodObject<{
9537
11195
  glyph: z.ZodString;
@@ -9601,11 +11259,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9601
11259
  }, z.core.$strip>;
9602
11260
  }, z.core.$strip>, z.ZodObject<{
9603
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>>;
9604
11289
  size: z.ZodObject<{
9605
11290
  widthPt: z.ZodNumber;
9606
11291
  heightPt: z.ZodNumber;
9607
11292
  }, z.core.$strip>;
9608
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>>;
9609
11322
  name: z.ZodOptional<z.ZodString>;
9610
11323
  frame: z.ZodObject<{
9611
11324
  xPt: z.ZodNumber;
@@ -9649,9 +11362,35 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9649
11362
  widthPt: z.ZodNumber;
9650
11363
  heightPt: z.ZodNumber;
9651
11364
  }, z.core.$strip>>>;
9652
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
9653
11365
  }, z.core.$strip>>;
9654
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>>;
9655
11394
  kind: z.ZodLiteral<"rect">;
9656
11395
  frame: z.ZodObject<{
9657
11396
  xPt: z.ZodNumber;
@@ -9763,6 +11502,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9763
11502
  heightPt: z.ZodNumber;
9764
11503
  }, z.core.$strip>>>;
9765
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>>;
9766
11532
  kind: z.ZodLiteral<"ellipse">;
9767
11533
  frame: z.ZodObject<{
9768
11534
  xPt: z.ZodNumber;
@@ -9874,6 +11640,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9874
11640
  heightPt: z.ZodNumber;
9875
11641
  }, z.core.$strip>>>;
9876
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>>;
9877
11670
  kind: z.ZodLiteral<"line">;
9878
11671
  from: z.ZodObject<{
9879
11672
  xPt: z.ZodNumber;
@@ -9935,6 +11728,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9935
11728
  heightPt: z.ZodNumber;
9936
11729
  }, z.core.$strip>>>;
9937
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>>;
9938
11758
  kind: z.ZodLiteral<"path">;
9939
11759
  frame: z.ZodObject<{
9940
11760
  xPt: z.ZodNumber;
@@ -10168,6 +11988,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10168
11988
  }, z.core.$strip>;
10169
11989
  }, z.core.$strip>, z.ZodObject<{
10170
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>>;
10171
12018
  mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
10172
12019
  starMath: z.ZodOptional<z.ZodString>;
10173
12020
  presentation: z.ZodOptional<z.ZodObject<{
@@ -10270,4 +12117,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10270
12117
  }, z.core.$strip>], "kind">;
10271
12118
  type ContentDocument = z.infer<typeof ContentDocumentSchema>;
10272
12119
  //#endregion
10273
- export { ContentPageBreak as $, ContentStrokeStyle as $t, ContentFillPatternSchema as A, ContentSheetDataValidation as At, ContentFormulaSchema as B, ContentSheetRange as Bt, ContentDrawPageSchema as C, isContentBlock as Cn, ContentSheetColumnSchema as Ct, ContentEmbeddedObjectKind as D, resolveCellFillColor as Dn, ContentSheetConditionalFormatStyleSchema as Dt, ContentEmbeddedObjectBlockSchema as E, isRunConstructExtent as En, ContentSheetConditionalFormatStyle as Et, ContentFloatOrigin as F, ContentSheetImageSchema as Ft, ContentHatchFill as G, ContentSheetRowSchema as Gt, ContentGradientFillSchema as H, ContentSheetRepeatRange as Ht, ContentFloatOriginSchema as I, ContentSheetPrintRange as It, ContentHatchStyleSchema as J, ContentSlideSchema as Jt, ContentHatchFillSchema as K, ContentSheetSchema as Kt, ContentFloatPosition as L, ContentSheetPrintRangeSchema as Lt, ContentFloatAlignSchema as M, ContentSheetDataValidationType as Mt, ContentFloatAxis as N, ContentSheetDataValidationTypeSchema as Nt, ContentEmbeddedObjectSchema as O, unrecognizedFillKind as On, ContentSheetConditionalFormatValue as Ot, ContentFloatAxisSchema as P, ContentSheetImage as Pt, ContentListMembershipSchema as Q, ContentStrokeSchema as Qt, ContentFloatPositionSchema as R, ContentSheetPrintSettings as Rt, ContentDrawPage as S, findRunConstructFault as Sn, ContentSheetColumn as St, ContentEmbeddedObjectBlock as T, isContentConstructStart as Tn, ContentSheetConditionalFormatSchema as Tt, ContentGradientStyle as U, ContentSheetRepeatRangeSchema as Ut, ContentGradientFill as V, ContentSheetRangeSchema as Vt, ContentGradientStyleSchema as W, ContentSheetRow as Wt, ContentImageBlockSchema as X, ContentStrokeDash as Xt, ContentImageBlock as Y, ContentStroke as Yt, ContentListMembership as Z, ContentStrokeDashSchema as Zt, ContentConstructEndSchema as _, SheetRuleOperator as _n, ContentSheet as _t, ContentBlockSchema as a, ContentTableCellSchema as an, ContentParagraphBordersSchema as at, ContentDocument as b, contentDocumentSharedFields as bn, ContentSheetCellCommentSchema as bt, ContentCellBorders as c, ContentTableSchema as cn, ContentPathPointSchema as ct, ContentCellFillSchema as d, DecimalString as dn, ContentRun as dt, ContentStrokeStyleSchema as en, ContentPageBreakSchema as et, ContentCellPatternType as f, DecimalStringSchema as fn, ContentRunSchema as ft, ContentConstructEnd as g, RunConstructFault as gn, ContentShapeSchema as gt, ContentCellValueSchema as h, RunConstructExtentSchema as hn, ContentShape as ht, ContentBlock as i, ContentTableCell as in, ContentParagraphBorders as it, ContentFloatAlign as j, ContentSheetDataValidationSchema as jt, ContentFillPattern as k, ContentSheetConditionalFormatValueSchema as kt, ContentCellBordersSchema as l, ContentVector as ln, ContentPathSegment as lt, ContentCellValue as m, RunConstructExtent as mn, ContentSectionSchema as mt, ContentBitmapFill as n, ContentSubpathSchema as nn, ContentPageFurnitureSchema as nt, ContentBorder as o, ContentTableRow as on, ContentParagraphSchema as ot, ContentCellPatternTypeSchema as p, FusedNode as pn, ContentSection as pt, ContentHatchStyle as q, ContentSlide as qt, ContentBitmapFillSchema as r, ContentTable as rn, ContentParagraph as rt, ContentBorderSchema as s, ContentTableRowSchema as sn, ContentPathPoint as st, ConstructMarkerImbalance as t, ContentSubpath as tn, ContentPageFurniture as tt, ContentCellFill as u, ContentVectorSchema as un, ContentPathSegmentSchema as ut, ContentConstructStart as v, SheetRuleOperatorSchema as vn, ContentSheetCell as vt, ContentEmbeddedObject as w, isContentConstructEnd as wn, ContentSheetConditionalFormat as wt, ContentDocumentSchema as x, findConstructMarkerImbalance as xn, ContentSheetCellSchema as xt, ContentConstructStartSchema as y, clampHeadingLevel as yn, ContentSheetCellComment as yt, ContentFormula as z, ContentSheetPrintSettingsSchema as zt };
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 };