document-content-model 7.7.0 → 7.9.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 (45) hide show
  1. package/dist/codec.d.cts +1 -1
  2. package/dist/codec.d.ts +1 -1
  3. package/dist/{construct-C9cYkjnd.d.cts → construct-C4XiF8OW.d.cts} +6 -6
  4. package/dist/{construct-C9cYkjnd.d.ts → construct-C4XiF8OW.d.ts} +6 -6
  5. package/dist/construct.d.cts +1 -1
  6. package/dist/construct.d.ts +1 -1
  7. package/dist/{content-BIM8bWWt.d.ts → content-C1hJ6olW.d.ts} +1753 -47
  8. package/dist/{content-DpsxyPMw.d.cts → content-DN5CqH6Y.d.cts} +1753 -47
  9. package/dist/content-json-schema-defs.cjs +128 -15
  10. package/dist/content-json-schema-defs.js +128 -15
  11. package/dist/content.cjs +71 -17
  12. package/dist/content.d.cts +2 -2
  13. package/dist/content.d.ts +2 -2
  14. package/dist/content.js +68 -18
  15. package/dist/decompose.d.cts +2 -2
  16. package/dist/decompose.d.ts +2 -2
  17. package/dist/definitions.d.cts +4 -4
  18. package/dist/definitions.d.ts +4 -4
  19. package/dist/factor-styles.d.cts +1 -1
  20. package/dist/factor-styles.d.ts +1 -1
  21. package/dist/flatten.d.cts +1 -1
  22. package/dist/flatten.d.ts +1 -1
  23. package/dist/index.cjs +4 -0
  24. package/dist/index.d.cts +5 -5
  25. package/dist/index.d.ts +5 -5
  26. package/dist/index.js +2 -2
  27. package/dist/{package-node-B8LBrCCD.d.ts → package-node-B9aFWtrZ.d.ts} +311 -14
  28. package/dist/{package-node-CENJl5PH.d.cts → package-node-DktLHAKG.d.cts} +311 -14
  29. package/dist/package-node.d.cts +1 -1
  30. package/dist/package-node.d.ts +1 -1
  31. package/dist/package.d.cts +33 -6
  32. package/dist/package.d.ts +33 -6
  33. package/dist/schema-io.cjs +2 -2
  34. package/dist/schema-io.d.cts +1 -1
  35. package/dist/schema-io.d.ts +1 -1
  36. package/dist/schema-io.js +2 -2
  37. package/dist/{style-BGMcYrD2.d.cts → style-D06NwxAJ.d.cts} +1 -1
  38. package/dist/{style-BGMcYrD2.d.ts → style-D06NwxAJ.d.ts} +1 -1
  39. package/dist/style.d.cts +1 -1
  40. package/dist/style.d.ts +1 -1
  41. package/dist/text-layout.d.cts +1 -1
  42. package/dist/text-layout.d.ts +1 -1
  43. package/package.json +1 -1
  44. package/schemas/content-document.schema.json +1147 -13
  45. package/schemas/document-tree.schema.json +214 -3
@@ -3,12 +3,83 @@ import { p as MathExpression } from "./math-BScHxedi.cjs";
3
3
  import { n as Color } from "./color-AELCDH_b.cjs";
4
4
  import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.cjs";
5
5
  import { r as SourceResidue } from "./source-Bas5ol6f.cjs";
6
- import { o as TextDirection } from "./style-BGMcYrD2.cjs";
6
+ import { o as TextDirection } from "./style-D06NwxAJ.cjs";
7
7
  import { z } from "zod";
8
8
  //#region src/content.d.ts
9
9
  type FusedNode<T> = T & {
10
10
  frames?: LayoutFrame[];
11
11
  };
12
+ declare const ContentOriginSchema: z.ZodEnum<{
13
+ chart: "chart";
14
+ diagram: "diagram";
15
+ table: "table";
16
+ image: "image";
17
+ notes: "notes";
18
+ body: "body";
19
+ }>;
20
+ type ContentOrigin = z.infer<typeof ContentOriginSchema>;
21
+ declare const ContentTranscriptSchema: z.ZodObject<{
22
+ text: z.ZodString;
23
+ confidence: z.ZodEnum<{
24
+ high: "high";
25
+ medium: "medium";
26
+ low: "low";
27
+ }>;
28
+ mechanism: z.ZodEnum<{
29
+ deterministic: "deterministic";
30
+ model: "model";
31
+ }>;
32
+ }, z.core.$strip>;
33
+ type ContentTranscript = z.infer<typeof ContentTranscriptSchema>;
34
+ declare const ContentInterpretationSchema: z.ZodObject<{
35
+ transcript: z.ZodOptional<z.ZodObject<{
36
+ text: z.ZodString;
37
+ confidence: z.ZodEnum<{
38
+ high: "high";
39
+ medium: "medium";
40
+ low: "low";
41
+ }>;
42
+ mechanism: z.ZodEnum<{
43
+ deterministic: "deterministic";
44
+ model: "model";
45
+ }>;
46
+ }, z.core.$strip>>;
47
+ description: z.ZodOptional<z.ZodString>;
48
+ by: z.ZodOptional<z.ZodObject<{
49
+ model: z.ZodString;
50
+ at: z.ZodString;
51
+ }, z.core.$strip>>;
52
+ }, z.core.$strip>;
53
+ type ContentInterpretation = z.infer<typeof ContentInterpretationSchema>;
54
+ declare const CONTENT_ANNOTATION_FIELDS: {
55
+ origin: z.ZodOptional<z.ZodEnum<{
56
+ chart: "chart";
57
+ diagram: "diagram";
58
+ table: "table";
59
+ image: "image";
60
+ notes: "notes";
61
+ body: "body";
62
+ }>>;
63
+ interpretation: z.ZodOptional<z.ZodObject<{
64
+ transcript: z.ZodOptional<z.ZodObject<{
65
+ text: z.ZodString;
66
+ confidence: z.ZodEnum<{
67
+ high: "high";
68
+ medium: "medium";
69
+ low: "low";
70
+ }>;
71
+ mechanism: z.ZodEnum<{
72
+ deterministic: "deterministic";
73
+ model: "model";
74
+ }>;
75
+ }, z.core.$strip>>;
76
+ description: z.ZodOptional<z.ZodString>;
77
+ by: z.ZodOptional<z.ZodObject<{
78
+ model: z.ZodString;
79
+ at: z.ZodString;
80
+ }, z.core.$strip>>;
81
+ }, z.core.$strip>>;
82
+ };
12
83
  declare const RUN_FONT_PROPERTY_SHAPE: {
13
84
  readonly bold: z.ZodOptional<z.ZodBoolean>;
14
85
  readonly italic: z.ZodOptional<z.ZodBoolean>;
@@ -37,6 +108,33 @@ declare const ContentFontSchema: z.ZodObject<{
37
108
  }, z.core.$strip>;
38
109
  type ContentFont = z.infer<typeof ContentFontSchema>;
39
110
  declare const ContentRunSchema: z.ZodObject<{
111
+ origin: z.ZodOptional<z.ZodEnum<{
112
+ chart: "chart";
113
+ diagram: "diagram";
114
+ table: "table";
115
+ image: "image";
116
+ notes: "notes";
117
+ body: "body";
118
+ }>>;
119
+ interpretation: z.ZodOptional<z.ZodObject<{
120
+ transcript: z.ZodOptional<z.ZodObject<{
121
+ text: z.ZodString;
122
+ confidence: z.ZodEnum<{
123
+ high: "high";
124
+ medium: "medium";
125
+ low: "low";
126
+ }>;
127
+ mechanism: z.ZodEnum<{
128
+ deterministic: "deterministic";
129
+ model: "model";
130
+ }>;
131
+ }, z.core.$strip>>;
132
+ description: z.ZodOptional<z.ZodString>;
133
+ by: z.ZodOptional<z.ZodObject<{
134
+ model: z.ZodString;
135
+ at: z.ZodString;
136
+ }, z.core.$strip>>;
137
+ }, z.core.$strip>>;
40
138
  hyperlink: z.ZodOptional<z.ZodString>;
41
139
  verticalAlign: z.ZodOptional<z.ZodEnum<{
42
140
  superscript: "superscript";
@@ -107,12 +205,12 @@ declare const RunConstructExtentSchema: z.ZodObject<{
107
205
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
108
206
  kind: z.ZodLiteral<"contentControl">;
109
207
  controlType: z.ZodEnum<{
208
+ date: "date";
110
209
  richText: "richText";
111
210
  plainText: "plainText";
112
211
  checkbox: "checkbox";
113
212
  dropDown: "dropDown";
114
213
  comboBox: "comboBox";
115
- date: "date";
116
214
  picture: "picture";
117
215
  repeatingSection: "repeatingSection";
118
216
  button: "button";
@@ -176,10 +274,10 @@ declare const RunConstructExtentSchema: z.ZodObject<{
176
274
  }, z.core.$strict>, z.ZodObject<{
177
275
  kind: z.ZodLiteral<"anchor">;
178
276
  anchorType: z.ZodEnum<{
277
+ comment: "comment";
179
278
  bookmark: "bookmark";
180
279
  footnote: "footnote";
181
280
  endnote: "endnote";
182
- comment: "comment";
183
281
  }>;
184
282
  name: z.ZodString;
185
283
  definition: z.ZodOptional<z.ZodString>;
@@ -380,8 +478,62 @@ declare const ContentParagraphBordersSchema: z.ZodObject<{
380
478
  }, z.core.$strip>;
381
479
  type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
382
480
  declare const ContentParagraphSchema: z.ZodObject<{
481
+ origin: z.ZodOptional<z.ZodEnum<{
482
+ chart: "chart";
483
+ diagram: "diagram";
484
+ table: "table";
485
+ image: "image";
486
+ notes: "notes";
487
+ body: "body";
488
+ }>>;
489
+ interpretation: z.ZodOptional<z.ZodObject<{
490
+ transcript: z.ZodOptional<z.ZodObject<{
491
+ text: z.ZodString;
492
+ confidence: z.ZodEnum<{
493
+ high: "high";
494
+ medium: "medium";
495
+ low: "low";
496
+ }>;
497
+ mechanism: z.ZodEnum<{
498
+ deterministic: "deterministic";
499
+ model: "model";
500
+ }>;
501
+ }, z.core.$strip>>;
502
+ description: z.ZodOptional<z.ZodString>;
503
+ by: z.ZodOptional<z.ZodObject<{
504
+ model: z.ZodString;
505
+ at: z.ZodString;
506
+ }, z.core.$strip>>;
507
+ }, z.core.$strip>>;
383
508
  kind: z.ZodLiteral<"paragraph">;
384
509
  runs: z.ZodArray<z.ZodObject<{
510
+ origin: z.ZodOptional<z.ZodEnum<{
511
+ chart: "chart";
512
+ diagram: "diagram";
513
+ table: "table";
514
+ image: "image";
515
+ notes: "notes";
516
+ body: "body";
517
+ }>>;
518
+ interpretation: z.ZodOptional<z.ZodObject<{
519
+ transcript: z.ZodOptional<z.ZodObject<{
520
+ text: z.ZodString;
521
+ confidence: z.ZodEnum<{
522
+ high: "high";
523
+ medium: "medium";
524
+ low: "low";
525
+ }>;
526
+ mechanism: z.ZodEnum<{
527
+ deterministic: "deterministic";
528
+ model: "model";
529
+ }>;
530
+ }, z.core.$strip>>;
531
+ description: z.ZodOptional<z.ZodString>;
532
+ by: z.ZodOptional<z.ZodObject<{
533
+ model: z.ZodString;
534
+ at: z.ZodString;
535
+ }, z.core.$strip>>;
536
+ }, z.core.$strip>>;
385
537
  hyperlink: z.ZodOptional<z.ZodString>;
386
538
  verticalAlign: z.ZodOptional<z.ZodEnum<{
387
539
  superscript: "superscript";
@@ -436,12 +588,12 @@ declare const ContentParagraphSchema: z.ZodObject<{
436
588
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
437
589
  kind: z.ZodLiteral<"contentControl">;
438
590
  controlType: z.ZodEnum<{
591
+ date: "date";
439
592
  richText: "richText";
440
593
  plainText: "plainText";
441
594
  checkbox: "checkbox";
442
595
  dropDown: "dropDown";
443
596
  comboBox: "comboBox";
444
- date: "date";
445
597
  picture: "picture";
446
598
  repeatingSection: "repeatingSection";
447
599
  button: "button";
@@ -505,10 +657,10 @@ declare const ContentParagraphSchema: z.ZodObject<{
505
657
  }, z.core.$strict>, z.ZodObject<{
506
658
  kind: z.ZodLiteral<"anchor">;
507
659
  anchorType: z.ZodEnum<{
660
+ comment: "comment";
508
661
  bookmark: "bookmark";
509
662
  footnote: "footnote";
510
663
  endnote: "endnote";
511
- comment: "comment";
512
664
  }>;
513
665
  name: z.ZodString;
514
666
  definition: z.ZodOptional<z.ZodString>;
@@ -632,8 +784,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
632
784
  headingLevel: z.ZodOptional<z.ZodNumber>;
633
785
  alignment: z.ZodOptional<z.ZodEnum<{
634
786
  left: "left";
635
- right: "right";
636
787
  center: "center";
788
+ right: "right";
637
789
  justify: "justify";
638
790
  }>>;
639
791
  list: z.ZodOptional<z.ZodObject<{
@@ -769,10 +921,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
769
921
  type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
770
922
  declare const ContentFloatAlignSchema: z.ZodEnum<{
771
923
  left: "left";
924
+ center: "center";
772
925
  right: "right";
773
926
  top: "top";
774
927
  bottom: "bottom";
775
- center: "center";
776
928
  inside: "inside";
777
929
  outside: "outside";
778
930
  }>;
@@ -812,10 +964,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
812
964
  }>;
813
965
  align: z.ZodEnum<{
814
966
  left: "left";
967
+ center: "center";
815
968
  right: "right";
816
969
  top: "top";
817
970
  bottom: "bottom";
818
- center: "center";
819
971
  inside: "inside";
820
972
  outside: "outside";
821
973
  }>;
@@ -857,10 +1009,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
857
1009
  }>;
858
1010
  align: z.ZodEnum<{
859
1011
  left: "left";
1012
+ center: "center";
860
1013
  right: "right";
861
1014
  top: "top";
862
1015
  bottom: "bottom";
863
- center: "center";
864
1016
  inside: "inside";
865
1017
  outside: "outside";
866
1018
  }>;
@@ -900,10 +1052,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
900
1052
  }>;
901
1053
  align: z.ZodEnum<{
902
1054
  left: "left";
1055
+ center: "center";
903
1056
  right: "right";
904
1057
  top: "top";
905
1058
  bottom: "bottom";
906
- center: "center";
907
1059
  inside: "inside";
908
1060
  outside: "outside";
909
1061
  }>;
@@ -922,6 +1074,33 @@ declare const ContentImageOriginalSchema: z.ZodObject<{
922
1074
  }, z.core.$strip>;
923
1075
  type ContentImageOriginal = z.infer<typeof ContentImageOriginalSchema>;
924
1076
  declare const ContentImageBlockSchema: z.ZodObject<{
1077
+ origin: z.ZodOptional<z.ZodEnum<{
1078
+ chart: "chart";
1079
+ diagram: "diagram";
1080
+ table: "table";
1081
+ image: "image";
1082
+ notes: "notes";
1083
+ body: "body";
1084
+ }>>;
1085
+ interpretation: z.ZodOptional<z.ZodObject<{
1086
+ transcript: z.ZodOptional<z.ZodObject<{
1087
+ text: z.ZodString;
1088
+ confidence: z.ZodEnum<{
1089
+ high: "high";
1090
+ medium: "medium";
1091
+ low: "low";
1092
+ }>;
1093
+ mechanism: z.ZodEnum<{
1094
+ deterministic: "deterministic";
1095
+ model: "model";
1096
+ }>;
1097
+ }, z.core.$strip>>;
1098
+ description: z.ZodOptional<z.ZodString>;
1099
+ by: z.ZodOptional<z.ZodObject<{
1100
+ model: z.ZodString;
1101
+ at: z.ZodString;
1102
+ }, z.core.$strip>>;
1103
+ }, z.core.$strip>>;
925
1104
  kind: z.ZodLiteral<"image">;
926
1105
  format: z.ZodEnum<{
927
1106
  png: "png";
@@ -941,6 +1120,9 @@ declare const ContentImageBlockSchema: z.ZodObject<{
941
1120
  base64: z.ZodString;
942
1121
  jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
943
1122
  }, z.core.$strip>>;
1123
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
1124
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
1125
+ caption: z.ZodOptional<z.ZodString>;
944
1126
  floatPosition: z.ZodOptional<z.ZodObject<{
945
1127
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
946
1128
  relativeTo: z.ZodEnum<{
@@ -977,10 +1159,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
977
1159
  }>;
978
1160
  align: z.ZodEnum<{
979
1161
  left: "left";
1162
+ center: "center";
980
1163
  right: "right";
981
1164
  top: "top";
982
1165
  bottom: "bottom";
983
- center: "center";
984
1166
  inside: "inside";
985
1167
  outside: "outside";
986
1168
  }>;
@@ -1020,10 +1202,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1020
1202
  }>;
1021
1203
  align: z.ZodEnum<{
1022
1204
  left: "left";
1205
+ center: "center";
1023
1206
  right: "right";
1024
1207
  top: "top";
1025
1208
  bottom: "bottom";
1026
- center: "center";
1027
1209
  inside: "inside";
1028
1210
  outside: "outside";
1029
1211
  }>;
@@ -1060,6 +1242,33 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1060
1242
  }, z.core.$strip>;
1061
1243
  type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
1062
1244
  declare const ContentPageBreakSchema: z.ZodObject<{
1245
+ origin: z.ZodOptional<z.ZodEnum<{
1246
+ chart: "chart";
1247
+ diagram: "diagram";
1248
+ table: "table";
1249
+ image: "image";
1250
+ notes: "notes";
1251
+ body: "body";
1252
+ }>>;
1253
+ interpretation: z.ZodOptional<z.ZodObject<{
1254
+ transcript: z.ZodOptional<z.ZodObject<{
1255
+ text: z.ZodString;
1256
+ confidence: z.ZodEnum<{
1257
+ high: "high";
1258
+ medium: "medium";
1259
+ low: "low";
1260
+ }>;
1261
+ mechanism: z.ZodEnum<{
1262
+ deterministic: "deterministic";
1263
+ model: "model";
1264
+ }>;
1265
+ }, z.core.$strip>>;
1266
+ description: z.ZodOptional<z.ZodString>;
1267
+ by: z.ZodOptional<z.ZodObject<{
1268
+ model: z.ZodString;
1269
+ at: z.ZodString;
1270
+ }, z.core.$strip>>;
1271
+ }, z.core.$strip>>;
1063
1272
  kind: z.ZodLiteral<"pageBreak">;
1064
1273
  sourcePath: z.ZodOptional<z.ZodString>;
1065
1274
  source: z.ZodOptional<z.ZodObject<{
@@ -1096,12 +1305,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
1096
1305
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
1097
1306
  kind: z.ZodLiteral<"contentControl">;
1098
1307
  controlType: z.ZodEnum<{
1308
+ date: "date";
1099
1309
  richText: "richText";
1100
1310
  plainText: "plainText";
1101
1311
  checkbox: "checkbox";
1102
1312
  dropDown: "dropDown";
1103
1313
  comboBox: "comboBox";
1104
- date: "date";
1105
1314
  picture: "picture";
1106
1315
  repeatingSection: "repeatingSection";
1107
1316
  button: "button";
@@ -1165,10 +1374,10 @@ declare const ContentConstructStartSchema: z.ZodObject<{
1165
1374
  }, z.core.$strict>, z.ZodObject<{
1166
1375
  kind: z.ZodLiteral<"anchor">;
1167
1376
  anchorType: z.ZodEnum<{
1377
+ comment: "comment";
1168
1378
  bookmark: "bookmark";
1169
1379
  footnote: "footnote";
1170
1380
  endnote: "endnote";
1171
- comment: "comment";
1172
1381
  }>;
1173
1382
  name: z.ZodString;
1174
1383
  definition: z.ZodOptional<z.ZodString>;
@@ -1345,6 +1554,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1345
1554
  widthPt: z.ZodNumber;
1346
1555
  heightPt: z.ZodNumber;
1347
1556
  }, z.core.$strip>>>;
1557
+ origin: z.ZodOptional<z.ZodEnum<{
1558
+ chart: "chart";
1559
+ diagram: "diagram";
1560
+ table: "table";
1561
+ image: "image";
1562
+ notes: "notes";
1563
+ body: "body";
1564
+ }>>;
1565
+ interpretation: z.ZodOptional<z.ZodObject<{
1566
+ transcript: z.ZodOptional<z.ZodObject<{
1567
+ text: z.ZodString;
1568
+ confidence: z.ZodEnum<{
1569
+ high: "high";
1570
+ medium: "medium";
1571
+ low: "low";
1572
+ }>;
1573
+ mechanism: z.ZodEnum<{
1574
+ deterministic: "deterministic";
1575
+ model: "model";
1576
+ }>;
1577
+ }, z.core.$strip>>;
1578
+ description: z.ZodOptional<z.ZodString>;
1579
+ by: z.ZodOptional<z.ZodObject<{
1580
+ model: z.ZodString;
1581
+ at: z.ZodString;
1582
+ }, z.core.$strip>>;
1583
+ }, z.core.$strip>>;
1348
1584
  objectKind: z.ZodEnum<{
1349
1585
  formula: "formula";
1350
1586
  wordprocessing: "wordprocessing";
@@ -1355,6 +1591,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1355
1591
  }>;
1356
1592
  document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
1357
1593
  sections: z.ZodArray<z.ZodObject<{
1594
+ origin: z.ZodOptional<z.ZodEnum<{
1595
+ chart: "chart";
1596
+ diagram: "diagram";
1597
+ table: "table";
1598
+ image: "image";
1599
+ notes: "notes";
1600
+ body: "body";
1601
+ }>>;
1602
+ interpretation: z.ZodOptional<z.ZodObject<{
1603
+ transcript: z.ZodOptional<z.ZodObject<{
1604
+ text: z.ZodString;
1605
+ confidence: z.ZodEnum<{
1606
+ high: "high";
1607
+ medium: "medium";
1608
+ low: "low";
1609
+ }>;
1610
+ mechanism: z.ZodEnum<{
1611
+ deterministic: "deterministic";
1612
+ model: "model";
1613
+ }>;
1614
+ }, z.core.$strip>>;
1615
+ description: z.ZodOptional<z.ZodString>;
1616
+ by: z.ZodOptional<z.ZodObject<{
1617
+ model: z.ZodString;
1618
+ at: z.ZodString;
1619
+ }, z.core.$strip>>;
1620
+ }, z.core.$strip>>;
1358
1621
  pageSize: z.ZodObject<{
1359
1622
  widthPt: z.ZodNumber;
1360
1623
  heightPt: z.ZodNumber;
@@ -1472,11 +1735,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1472
1735
  }, z.core.$strip>;
1473
1736
  }, z.core.$strip>, z.ZodObject<{
1474
1737
  slides: z.ZodArray<z.ZodObject<{
1738
+ origin: z.ZodOptional<z.ZodEnum<{
1739
+ chart: "chart";
1740
+ diagram: "diagram";
1741
+ table: "table";
1742
+ image: "image";
1743
+ notes: "notes";
1744
+ body: "body";
1745
+ }>>;
1746
+ interpretation: z.ZodOptional<z.ZodObject<{
1747
+ transcript: z.ZodOptional<z.ZodObject<{
1748
+ text: z.ZodString;
1749
+ confidence: z.ZodEnum<{
1750
+ high: "high";
1751
+ medium: "medium";
1752
+ low: "low";
1753
+ }>;
1754
+ mechanism: z.ZodEnum<{
1755
+ deterministic: "deterministic";
1756
+ model: "model";
1757
+ }>;
1758
+ }, z.core.$strip>>;
1759
+ description: z.ZodOptional<z.ZodString>;
1760
+ by: z.ZodOptional<z.ZodObject<{
1761
+ model: z.ZodString;
1762
+ at: z.ZodString;
1763
+ }, z.core.$strip>>;
1764
+ }, z.core.$strip>>;
1475
1765
  size: z.ZodObject<{
1476
1766
  widthPt: z.ZodNumber;
1477
1767
  heightPt: z.ZodNumber;
1478
1768
  }, z.core.$strip>;
1479
1769
  shapes: z.ZodArray<z.ZodObject<{
1770
+ blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
1771
+ origin: z.ZodOptional<z.ZodEnum<{
1772
+ chart: "chart";
1773
+ diagram: "diagram";
1774
+ table: "table";
1775
+ image: "image";
1776
+ notes: "notes";
1777
+ body: "body";
1778
+ }>>;
1779
+ interpretation: z.ZodOptional<z.ZodObject<{
1780
+ transcript: z.ZodOptional<z.ZodObject<{
1781
+ text: z.ZodString;
1782
+ confidence: z.ZodEnum<{
1783
+ high: "high";
1784
+ medium: "medium";
1785
+ low: "low";
1786
+ }>;
1787
+ mechanism: z.ZodEnum<{
1788
+ deterministic: "deterministic";
1789
+ model: "model";
1790
+ }>;
1791
+ }, z.core.$strip>>;
1792
+ description: z.ZodOptional<z.ZodString>;
1793
+ by: z.ZodOptional<z.ZodObject<{
1794
+ model: z.ZodString;
1795
+ at: z.ZodString;
1796
+ }, z.core.$strip>>;
1797
+ }, z.core.$strip>>;
1480
1798
  name: z.ZodOptional<z.ZodString>;
1481
1799
  frame: z.ZodObject<{
1482
1800
  xPt: z.ZodNumber;
@@ -1520,7 +1838,6 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1520
1838
  widthPt: z.ZodNumber;
1521
1839
  heightPt: z.ZodNumber;
1522
1840
  }, z.core.$strip>>>;
1523
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
1524
1841
  }, z.core.$strip>>;
1525
1842
  notes: z.ZodString;
1526
1843
  source: z.ZodOptional<z.ZodObject<{
@@ -1613,8 +1930,62 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1613
1930
  }, z.core.$strip>;
1614
1931
  }, z.core.$strip>, z.ZodObject<{
1615
1932
  sheets: z.ZodArray<z.ZodObject<{
1933
+ origin: z.ZodOptional<z.ZodEnum<{
1934
+ chart: "chart";
1935
+ diagram: "diagram";
1936
+ table: "table";
1937
+ image: "image";
1938
+ notes: "notes";
1939
+ body: "body";
1940
+ }>>;
1941
+ interpretation: z.ZodOptional<z.ZodObject<{
1942
+ transcript: z.ZodOptional<z.ZodObject<{
1943
+ text: z.ZodString;
1944
+ confidence: z.ZodEnum<{
1945
+ high: "high";
1946
+ medium: "medium";
1947
+ low: "low";
1948
+ }>;
1949
+ mechanism: z.ZodEnum<{
1950
+ deterministic: "deterministic";
1951
+ model: "model";
1952
+ }>;
1953
+ }, z.core.$strip>>;
1954
+ description: z.ZodOptional<z.ZodString>;
1955
+ by: z.ZodOptional<z.ZodObject<{
1956
+ model: z.ZodString;
1957
+ at: z.ZodString;
1958
+ }, z.core.$strip>>;
1959
+ }, z.core.$strip>>;
1616
1960
  name: z.ZodString;
1617
1961
  cells: z.ZodArray<z.ZodObject<{
1962
+ origin: z.ZodOptional<z.ZodEnum<{
1963
+ chart: "chart";
1964
+ diagram: "diagram";
1965
+ table: "table";
1966
+ image: "image";
1967
+ notes: "notes";
1968
+ body: "body";
1969
+ }>>;
1970
+ interpretation: z.ZodOptional<z.ZodObject<{
1971
+ transcript: z.ZodOptional<z.ZodObject<{
1972
+ text: z.ZodString;
1973
+ confidence: z.ZodEnum<{
1974
+ high: "high";
1975
+ medium: "medium";
1976
+ low: "low";
1977
+ }>;
1978
+ mechanism: z.ZodEnum<{
1979
+ deterministic: "deterministic";
1980
+ model: "model";
1981
+ }>;
1982
+ }, z.core.$strip>>;
1983
+ description: z.ZodOptional<z.ZodString>;
1984
+ by: z.ZodOptional<z.ZodObject<{
1985
+ model: z.ZodString;
1986
+ at: z.ZodString;
1987
+ }, z.core.$strip>>;
1988
+ }, z.core.$strip>>;
1618
1989
  row: z.ZodNumber;
1619
1990
  column: z.ZodNumber;
1620
1991
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -1668,6 +2039,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1668
2039
  }, z.core.$strip>>;
1669
2040
  }, z.core.$strip>>;
1670
2041
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
2042
+ origin: z.ZodOptional<z.ZodEnum<{
2043
+ chart: "chart";
2044
+ diagram: "diagram";
2045
+ table: "table";
2046
+ image: "image";
2047
+ notes: "notes";
2048
+ body: "body";
2049
+ }>>;
2050
+ interpretation: z.ZodOptional<z.ZodObject<{
2051
+ transcript: z.ZodOptional<z.ZodObject<{
2052
+ text: z.ZodString;
2053
+ confidence: z.ZodEnum<{
2054
+ high: "high";
2055
+ medium: "medium";
2056
+ low: "low";
2057
+ }>;
2058
+ mechanism: z.ZodEnum<{
2059
+ deterministic: "deterministic";
2060
+ model: "model";
2061
+ }>;
2062
+ }, z.core.$strip>>;
2063
+ description: z.ZodOptional<z.ZodString>;
2064
+ by: z.ZodOptional<z.ZodObject<{
2065
+ model: z.ZodString;
2066
+ at: z.ZodString;
2067
+ }, z.core.$strip>>;
2068
+ }, z.core.$strip>>;
1671
2069
  hyperlink: z.ZodOptional<z.ZodString>;
1672
2070
  verticalAlign: z.ZodOptional<z.ZodEnum<{
1673
2071
  superscript: "superscript";
@@ -1882,8 +2280,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1882
2280
  }, z.core.$strip>>;
1883
2281
  alignment: z.ZodOptional<z.ZodEnum<{
1884
2282
  left: "left";
1885
- right: "right";
1886
2283
  center: "center";
2284
+ right: "right";
1887
2285
  justify: "justify";
1888
2286
  }>>;
1889
2287
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -1940,6 +2338,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1940
2338
  hidden: z.ZodOptional<z.ZodBoolean>;
1941
2339
  }, z.core.$strip>>;
1942
2340
  images: z.ZodArray<z.ZodObject<{
2341
+ origin: z.ZodOptional<z.ZodEnum<{
2342
+ chart: "chart";
2343
+ diagram: "diagram";
2344
+ table: "table";
2345
+ image: "image";
2346
+ notes: "notes";
2347
+ body: "body";
2348
+ }>>;
2349
+ interpretation: z.ZodOptional<z.ZodObject<{
2350
+ transcript: z.ZodOptional<z.ZodObject<{
2351
+ text: z.ZodString;
2352
+ confidence: z.ZodEnum<{
2353
+ high: "high";
2354
+ medium: "medium";
2355
+ low: "low";
2356
+ }>;
2357
+ mechanism: z.ZodEnum<{
2358
+ deterministic: "deterministic";
2359
+ model: "model";
2360
+ }>;
2361
+ }, z.core.$strip>>;
2362
+ description: z.ZodOptional<z.ZodString>;
2363
+ by: z.ZodOptional<z.ZodObject<{
2364
+ model: z.ZodString;
2365
+ at: z.ZodString;
2366
+ }, z.core.$strip>>;
2367
+ }, z.core.$strip>>;
1943
2368
  kind: z.ZodLiteral<"image">;
1944
2369
  format: z.ZodEnum<{
1945
2370
  png: "png";
@@ -1959,6 +2384,9 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1959
2384
  base64: z.ZodString;
1960
2385
  jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
1961
2386
  }, z.core.$strip>>;
2387
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
2388
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
2389
+ caption: z.ZodOptional<z.ZodString>;
1962
2390
  floatPosition: z.ZodOptional<z.ZodObject<{
1963
2391
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
1964
2392
  relativeTo: z.ZodEnum<{
@@ -1995,10 +2423,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1995
2423
  }>;
1996
2424
  align: z.ZodEnum<{
1997
2425
  left: "left";
2426
+ center: "center";
1998
2427
  right: "right";
1999
2428
  top: "top";
2000
2429
  bottom: "bottom";
2001
- center: "center";
2002
2430
  inside: "inside";
2003
2431
  outside: "outside";
2004
2432
  }>;
@@ -2038,10 +2466,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2038
2466
  }>;
2039
2467
  align: z.ZodEnum<{
2040
2468
  left: "left";
2469
+ center: "center";
2041
2470
  right: "right";
2042
2471
  top: "top";
2043
2472
  bottom: "bottom";
2044
- center: "center";
2045
2473
  inside: "inside";
2046
2474
  outside: "outside";
2047
2475
  }>;
@@ -2130,10 +2558,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2130
2558
  endColumn: z.ZodNumber;
2131
2559
  }, z.core.$strip>>;
2132
2560
  type: z.ZodEnum<{
2133
- date: "date";
2134
- custom: "custom";
2135
2561
  decimal: "decimal";
2136
2562
  list: "list";
2563
+ date: "date";
2564
+ custom: "custom";
2137
2565
  time: "time";
2138
2566
  whole: "whole";
2139
2567
  textLength: "textLength";
@@ -2847,11 +3275,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2847
3275
  }, z.core.$strip>;
2848
3276
  }, z.core.$strip>, z.ZodObject<{
2849
3277
  pages: z.ZodArray<z.ZodObject<{
3278
+ origin: z.ZodOptional<z.ZodEnum<{
3279
+ chart: "chart";
3280
+ diagram: "diagram";
3281
+ table: "table";
3282
+ image: "image";
3283
+ notes: "notes";
3284
+ body: "body";
3285
+ }>>;
3286
+ interpretation: z.ZodOptional<z.ZodObject<{
3287
+ transcript: z.ZodOptional<z.ZodObject<{
3288
+ text: z.ZodString;
3289
+ confidence: z.ZodEnum<{
3290
+ high: "high";
3291
+ medium: "medium";
3292
+ low: "low";
3293
+ }>;
3294
+ mechanism: z.ZodEnum<{
3295
+ deterministic: "deterministic";
3296
+ model: "model";
3297
+ }>;
3298
+ }, z.core.$strip>>;
3299
+ description: z.ZodOptional<z.ZodString>;
3300
+ by: z.ZodOptional<z.ZodObject<{
3301
+ model: z.ZodString;
3302
+ at: z.ZodString;
3303
+ }, z.core.$strip>>;
3304
+ }, z.core.$strip>>;
2850
3305
  size: z.ZodObject<{
2851
3306
  widthPt: z.ZodNumber;
2852
3307
  heightPt: z.ZodNumber;
2853
3308
  }, z.core.$strip>;
2854
3309
  shapes: z.ZodArray<z.ZodObject<{
3310
+ blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
3311
+ origin: z.ZodOptional<z.ZodEnum<{
3312
+ chart: "chart";
3313
+ diagram: "diagram";
3314
+ table: "table";
3315
+ image: "image";
3316
+ notes: "notes";
3317
+ body: "body";
3318
+ }>>;
3319
+ interpretation: z.ZodOptional<z.ZodObject<{
3320
+ transcript: z.ZodOptional<z.ZodObject<{
3321
+ text: z.ZodString;
3322
+ confidence: z.ZodEnum<{
3323
+ high: "high";
3324
+ medium: "medium";
3325
+ low: "low";
3326
+ }>;
3327
+ mechanism: z.ZodEnum<{
3328
+ deterministic: "deterministic";
3329
+ model: "model";
3330
+ }>;
3331
+ }, z.core.$strip>>;
3332
+ description: z.ZodOptional<z.ZodString>;
3333
+ by: z.ZodOptional<z.ZodObject<{
3334
+ model: z.ZodString;
3335
+ at: z.ZodString;
3336
+ }, z.core.$strip>>;
3337
+ }, z.core.$strip>>;
2855
3338
  name: z.ZodOptional<z.ZodString>;
2856
3339
  frame: z.ZodObject<{
2857
3340
  xPt: z.ZodNumber;
@@ -2895,9 +3378,35 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2895
3378
  widthPt: z.ZodNumber;
2896
3379
  heightPt: z.ZodNumber;
2897
3380
  }, z.core.$strip>>>;
2898
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
2899
3381
  }, z.core.$strip>>;
2900
3382
  vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
3383
+ origin: z.ZodOptional<z.ZodEnum<{
3384
+ chart: "chart";
3385
+ diagram: "diagram";
3386
+ table: "table";
3387
+ image: "image";
3388
+ notes: "notes";
3389
+ body: "body";
3390
+ }>>;
3391
+ interpretation: z.ZodOptional<z.ZodObject<{
3392
+ transcript: z.ZodOptional<z.ZodObject<{
3393
+ text: z.ZodString;
3394
+ confidence: z.ZodEnum<{
3395
+ high: "high";
3396
+ medium: "medium";
3397
+ low: "low";
3398
+ }>;
3399
+ mechanism: z.ZodEnum<{
3400
+ deterministic: "deterministic";
3401
+ model: "model";
3402
+ }>;
3403
+ }, z.core.$strip>>;
3404
+ description: z.ZodOptional<z.ZodString>;
3405
+ by: z.ZodOptional<z.ZodObject<{
3406
+ model: z.ZodString;
3407
+ at: z.ZodString;
3408
+ }, z.core.$strip>>;
3409
+ }, z.core.$strip>>;
2901
3410
  kind: z.ZodLiteral<"rect">;
2902
3411
  frame: z.ZodObject<{
2903
3412
  xPt: z.ZodNumber;
@@ -3009,6 +3518,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3009
3518
  heightPt: z.ZodNumber;
3010
3519
  }, z.core.$strip>>>;
3011
3520
  }, z.core.$strip>, z.ZodObject<{
3521
+ origin: z.ZodOptional<z.ZodEnum<{
3522
+ chart: "chart";
3523
+ diagram: "diagram";
3524
+ table: "table";
3525
+ image: "image";
3526
+ notes: "notes";
3527
+ body: "body";
3528
+ }>>;
3529
+ interpretation: z.ZodOptional<z.ZodObject<{
3530
+ transcript: z.ZodOptional<z.ZodObject<{
3531
+ text: z.ZodString;
3532
+ confidence: z.ZodEnum<{
3533
+ high: "high";
3534
+ medium: "medium";
3535
+ low: "low";
3536
+ }>;
3537
+ mechanism: z.ZodEnum<{
3538
+ deterministic: "deterministic";
3539
+ model: "model";
3540
+ }>;
3541
+ }, z.core.$strip>>;
3542
+ description: z.ZodOptional<z.ZodString>;
3543
+ by: z.ZodOptional<z.ZodObject<{
3544
+ model: z.ZodString;
3545
+ at: z.ZodString;
3546
+ }, z.core.$strip>>;
3547
+ }, z.core.$strip>>;
3012
3548
  kind: z.ZodLiteral<"ellipse">;
3013
3549
  frame: z.ZodObject<{
3014
3550
  xPt: z.ZodNumber;
@@ -3120,6 +3656,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3120
3656
  heightPt: z.ZodNumber;
3121
3657
  }, z.core.$strip>>>;
3122
3658
  }, z.core.$strip>, z.ZodObject<{
3659
+ origin: z.ZodOptional<z.ZodEnum<{
3660
+ chart: "chart";
3661
+ diagram: "diagram";
3662
+ table: "table";
3663
+ image: "image";
3664
+ notes: "notes";
3665
+ body: "body";
3666
+ }>>;
3667
+ interpretation: z.ZodOptional<z.ZodObject<{
3668
+ transcript: z.ZodOptional<z.ZodObject<{
3669
+ text: z.ZodString;
3670
+ confidence: z.ZodEnum<{
3671
+ high: "high";
3672
+ medium: "medium";
3673
+ low: "low";
3674
+ }>;
3675
+ mechanism: z.ZodEnum<{
3676
+ deterministic: "deterministic";
3677
+ model: "model";
3678
+ }>;
3679
+ }, z.core.$strip>>;
3680
+ description: z.ZodOptional<z.ZodString>;
3681
+ by: z.ZodOptional<z.ZodObject<{
3682
+ model: z.ZodString;
3683
+ at: z.ZodString;
3684
+ }, z.core.$strip>>;
3685
+ }, z.core.$strip>>;
3123
3686
  kind: z.ZodLiteral<"line">;
3124
3687
  from: z.ZodObject<{
3125
3688
  xPt: z.ZodNumber;
@@ -3181,6 +3744,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3181
3744
  heightPt: z.ZodNumber;
3182
3745
  }, z.core.$strip>>>;
3183
3746
  }, z.core.$strip>, z.ZodObject<{
3747
+ origin: z.ZodOptional<z.ZodEnum<{
3748
+ chart: "chart";
3749
+ diagram: "diagram";
3750
+ table: "table";
3751
+ image: "image";
3752
+ notes: "notes";
3753
+ body: "body";
3754
+ }>>;
3755
+ interpretation: z.ZodOptional<z.ZodObject<{
3756
+ transcript: z.ZodOptional<z.ZodObject<{
3757
+ text: z.ZodString;
3758
+ confidence: z.ZodEnum<{
3759
+ high: "high";
3760
+ medium: "medium";
3761
+ low: "low";
3762
+ }>;
3763
+ mechanism: z.ZodEnum<{
3764
+ deterministic: "deterministic";
3765
+ model: "model";
3766
+ }>;
3767
+ }, z.core.$strip>>;
3768
+ description: z.ZodOptional<z.ZodString>;
3769
+ by: z.ZodOptional<z.ZodObject<{
3770
+ model: z.ZodString;
3771
+ at: z.ZodString;
3772
+ }, z.core.$strip>>;
3773
+ }, z.core.$strip>>;
3184
3774
  kind: z.ZodLiteral<"path">;
3185
3775
  frame: z.ZodObject<{
3186
3776
  xPt: z.ZodNumber;
@@ -3414,6 +4004,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3414
4004
  }, z.core.$strip>;
3415
4005
  }, z.core.$strip>, z.ZodObject<{
3416
4006
  formula: z.ZodObject<{
4007
+ origin: z.ZodOptional<z.ZodEnum<{
4008
+ chart: "chart";
4009
+ diagram: "diagram";
4010
+ table: "table";
4011
+ image: "image";
4012
+ notes: "notes";
4013
+ body: "body";
4014
+ }>>;
4015
+ interpretation: z.ZodOptional<z.ZodObject<{
4016
+ transcript: z.ZodOptional<z.ZodObject<{
4017
+ text: z.ZodString;
4018
+ confidence: z.ZodEnum<{
4019
+ high: "high";
4020
+ medium: "medium";
4021
+ low: "low";
4022
+ }>;
4023
+ mechanism: z.ZodEnum<{
4024
+ deterministic: "deterministic";
4025
+ model: "model";
4026
+ }>;
4027
+ }, z.core.$strip>>;
4028
+ description: z.ZodOptional<z.ZodString>;
4029
+ by: z.ZodOptional<z.ZodObject<{
4030
+ model: z.ZodString;
4031
+ at: z.ZodString;
4032
+ }, z.core.$strip>>;
4033
+ }, z.core.$strip>>;
3417
4034
  mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
3418
4035
  starMath: z.ZodOptional<z.ZodString>;
3419
4036
  presentation: z.ZodOptional<z.ZodObject<{
@@ -3784,6 +4401,33 @@ declare function unrecognizedFillKind(fill: {
3784
4401
  kind?: unknown;
3785
4402
  }): string;
3786
4403
  declare const ContentTableCellSchema: z.ZodObject<{
4404
+ origin: z.ZodOptional<z.ZodEnum<{
4405
+ chart: "chart";
4406
+ diagram: "diagram";
4407
+ table: "table";
4408
+ image: "image";
4409
+ notes: "notes";
4410
+ body: "body";
4411
+ }>>;
4412
+ interpretation: z.ZodOptional<z.ZodObject<{
4413
+ transcript: z.ZodOptional<z.ZodObject<{
4414
+ text: z.ZodString;
4415
+ confidence: z.ZodEnum<{
4416
+ high: "high";
4417
+ medium: "medium";
4418
+ low: "low";
4419
+ }>;
4420
+ mechanism: z.ZodEnum<{
4421
+ deterministic: "deterministic";
4422
+ model: "model";
4423
+ }>;
4424
+ }, z.core.$strip>>;
4425
+ description: z.ZodOptional<z.ZodString>;
4426
+ by: z.ZodOptional<z.ZodObject<{
4427
+ model: z.ZodString;
4428
+ at: z.ZodString;
4429
+ }, z.core.$strip>>;
4430
+ }, z.core.$strip>>;
3787
4431
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
3788
4432
  colSpan: z.ZodOptional<z.ZodNumber>;
3789
4433
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -3948,9 +4592,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
3948
4592
  }, z.core.$strip>>;
3949
4593
  }, z.core.$strip>>;
3950
4594
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4595
+ center: "center";
3951
4596
  top: "top";
3952
4597
  bottom: "bottom";
3953
- center: "center";
3954
4598
  }>>;
3955
4599
  formula: z.ZodOptional<z.ZodString>;
3956
4600
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -3984,6 +4628,33 @@ declare const ContentTableCellSchema: z.ZodObject<{
3984
4628
  }, z.core.$strip>;
3985
4629
  declare const ContentTableRowSchema: z.ZodObject<{
3986
4630
  cells: z.ZodArray<z.ZodObject<{
4631
+ origin: z.ZodOptional<z.ZodEnum<{
4632
+ chart: "chart";
4633
+ diagram: "diagram";
4634
+ table: "table";
4635
+ image: "image";
4636
+ notes: "notes";
4637
+ body: "body";
4638
+ }>>;
4639
+ interpretation: z.ZodOptional<z.ZodObject<{
4640
+ transcript: z.ZodOptional<z.ZodObject<{
4641
+ text: z.ZodString;
4642
+ confidence: z.ZodEnum<{
4643
+ high: "high";
4644
+ medium: "medium";
4645
+ low: "low";
4646
+ }>;
4647
+ mechanism: z.ZodEnum<{
4648
+ deterministic: "deterministic";
4649
+ model: "model";
4650
+ }>;
4651
+ }, z.core.$strip>>;
4652
+ description: z.ZodOptional<z.ZodString>;
4653
+ by: z.ZodOptional<z.ZodObject<{
4654
+ model: z.ZodString;
4655
+ at: z.ZodString;
4656
+ }, z.core.$strip>>;
4657
+ }, z.core.$strip>>;
3987
4658
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
3988
4659
  colSpan: z.ZodOptional<z.ZodNumber>;
3989
4660
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -4148,9 +4819,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4148
4819
  }, z.core.$strip>>;
4149
4820
  }, z.core.$strip>>;
4150
4821
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4822
+ center: "center";
4151
4823
  top: "top";
4152
4824
  bottom: "bottom";
4153
- center: "center";
4154
4825
  }>>;
4155
4826
  formula: z.ZodOptional<z.ZodString>;
4156
4827
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4189,9 +4860,63 @@ declare const ContentTableRowSchema: z.ZodObject<{
4189
4860
  }>>;
4190
4861
  }, z.core.$strip>;
4191
4862
  declare const ContentTableSchema: z.ZodObject<{
4863
+ origin: z.ZodOptional<z.ZodEnum<{
4864
+ chart: "chart";
4865
+ diagram: "diagram";
4866
+ table: "table";
4867
+ image: "image";
4868
+ notes: "notes";
4869
+ body: "body";
4870
+ }>>;
4871
+ interpretation: z.ZodOptional<z.ZodObject<{
4872
+ transcript: z.ZodOptional<z.ZodObject<{
4873
+ text: z.ZodString;
4874
+ confidence: z.ZodEnum<{
4875
+ high: "high";
4876
+ medium: "medium";
4877
+ low: "low";
4878
+ }>;
4879
+ mechanism: z.ZodEnum<{
4880
+ deterministic: "deterministic";
4881
+ model: "model";
4882
+ }>;
4883
+ }, z.core.$strip>>;
4884
+ description: z.ZodOptional<z.ZodString>;
4885
+ by: z.ZodOptional<z.ZodObject<{
4886
+ model: z.ZodString;
4887
+ at: z.ZodString;
4888
+ }, z.core.$strip>>;
4889
+ }, z.core.$strip>>;
4192
4890
  kind: z.ZodLiteral<"table">;
4193
4891
  rows: z.ZodArray<z.ZodObject<{
4194
4892
  cells: z.ZodArray<z.ZodObject<{
4893
+ origin: z.ZodOptional<z.ZodEnum<{
4894
+ chart: "chart";
4895
+ diagram: "diagram";
4896
+ table: "table";
4897
+ image: "image";
4898
+ notes: "notes";
4899
+ body: "body";
4900
+ }>>;
4901
+ interpretation: z.ZodOptional<z.ZodObject<{
4902
+ transcript: z.ZodOptional<z.ZodObject<{
4903
+ text: z.ZodString;
4904
+ confidence: z.ZodEnum<{
4905
+ high: "high";
4906
+ medium: "medium";
4907
+ low: "low";
4908
+ }>;
4909
+ mechanism: z.ZodEnum<{
4910
+ deterministic: "deterministic";
4911
+ model: "model";
4912
+ }>;
4913
+ }, z.core.$strip>>;
4914
+ description: z.ZodOptional<z.ZodString>;
4915
+ by: z.ZodOptional<z.ZodObject<{
4916
+ model: z.ZodString;
4917
+ at: z.ZodString;
4918
+ }, z.core.$strip>>;
4919
+ }, z.core.$strip>>;
4195
4920
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
4196
4921
  colSpan: z.ZodOptional<z.ZodNumber>;
4197
4922
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -4356,9 +5081,9 @@ declare const ContentTableSchema: z.ZodObject<{
4356
5081
  }, z.core.$strip>>;
4357
5082
  }, z.core.$strip>>;
4358
5083
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5084
+ center: "center";
4359
5085
  top: "top";
4360
5086
  bottom: "bottom";
4361
- center: "center";
4362
5087
  }>>;
4363
5088
  formula: z.ZodOptional<z.ZodString>;
4364
5089
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4434,6 +5159,33 @@ declare const ContentPageFurnitureSchema: z.ZodObject<{
4434
5159
  }, z.core.$strip>;
4435
5160
  type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
4436
5161
  declare const ContentSectionSchema: z.ZodObject<{
5162
+ origin: z.ZodOptional<z.ZodEnum<{
5163
+ chart: "chart";
5164
+ diagram: "diagram";
5165
+ table: "table";
5166
+ image: "image";
5167
+ notes: "notes";
5168
+ body: "body";
5169
+ }>>;
5170
+ interpretation: z.ZodOptional<z.ZodObject<{
5171
+ transcript: z.ZodOptional<z.ZodObject<{
5172
+ text: z.ZodString;
5173
+ confidence: z.ZodEnum<{
5174
+ high: "high";
5175
+ medium: "medium";
5176
+ low: "low";
5177
+ }>;
5178
+ mechanism: z.ZodEnum<{
5179
+ deterministic: "deterministic";
5180
+ model: "model";
5181
+ }>;
5182
+ }, z.core.$strip>>;
5183
+ description: z.ZodOptional<z.ZodString>;
5184
+ by: z.ZodOptional<z.ZodObject<{
5185
+ model: z.ZodString;
5186
+ at: z.ZodString;
5187
+ }, z.core.$strip>>;
5188
+ }, z.core.$strip>>;
4437
5189
  pageSize: z.ZodObject<{
4438
5190
  widthPt: z.ZodNumber;
4439
5191
  heightPt: z.ZodNumber;
@@ -4484,6 +5236,34 @@ declare const ContentSectionSchema: z.ZodObject<{
4484
5236
  }, z.core.$strip>;
4485
5237
  type ContentSection = z.infer<typeof ContentSectionSchema>;
4486
5238
  declare const ContentShapeSchema: z.ZodObject<{
5239
+ blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
5240
+ origin: z.ZodOptional<z.ZodEnum<{
5241
+ chart: "chart";
5242
+ diagram: "diagram";
5243
+ table: "table";
5244
+ image: "image";
5245
+ notes: "notes";
5246
+ body: "body";
5247
+ }>>;
5248
+ interpretation: z.ZodOptional<z.ZodObject<{
5249
+ transcript: z.ZodOptional<z.ZodObject<{
5250
+ text: z.ZodString;
5251
+ confidence: z.ZodEnum<{
5252
+ high: "high";
5253
+ medium: "medium";
5254
+ low: "low";
5255
+ }>;
5256
+ mechanism: z.ZodEnum<{
5257
+ deterministic: "deterministic";
5258
+ model: "model";
5259
+ }>;
5260
+ }, z.core.$strip>>;
5261
+ description: z.ZodOptional<z.ZodString>;
5262
+ by: z.ZodOptional<z.ZodObject<{
5263
+ model: z.ZodString;
5264
+ at: z.ZodString;
5265
+ }, z.core.$strip>>;
5266
+ }, z.core.$strip>>;
4487
5267
  name: z.ZodOptional<z.ZodString>;
4488
5268
  frame: z.ZodObject<{
4489
5269
  xPt: z.ZodNumber;
@@ -4527,15 +5307,69 @@ declare const ContentShapeSchema: z.ZodObject<{
4527
5307
  widthPt: z.ZodNumber;
4528
5308
  heightPt: z.ZodNumber;
4529
5309
  }, z.core.$strip>>>;
4530
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
4531
5310
  }, z.core.$strip>;
4532
5311
  type ContentShape = z.infer<typeof ContentShapeSchema>;
4533
5312
  declare const ContentSlideSchema: z.ZodObject<{
5313
+ origin: z.ZodOptional<z.ZodEnum<{
5314
+ chart: "chart";
5315
+ diagram: "diagram";
5316
+ table: "table";
5317
+ image: "image";
5318
+ notes: "notes";
5319
+ body: "body";
5320
+ }>>;
5321
+ interpretation: z.ZodOptional<z.ZodObject<{
5322
+ transcript: z.ZodOptional<z.ZodObject<{
5323
+ text: z.ZodString;
5324
+ confidence: z.ZodEnum<{
5325
+ high: "high";
5326
+ medium: "medium";
5327
+ low: "low";
5328
+ }>;
5329
+ mechanism: z.ZodEnum<{
5330
+ deterministic: "deterministic";
5331
+ model: "model";
5332
+ }>;
5333
+ }, z.core.$strip>>;
5334
+ description: z.ZodOptional<z.ZodString>;
5335
+ by: z.ZodOptional<z.ZodObject<{
5336
+ model: z.ZodString;
5337
+ at: z.ZodString;
5338
+ }, z.core.$strip>>;
5339
+ }, z.core.$strip>>;
4534
5340
  size: z.ZodObject<{
4535
5341
  widthPt: z.ZodNumber;
4536
5342
  heightPt: z.ZodNumber;
4537
5343
  }, z.core.$strip>;
4538
5344
  shapes: z.ZodArray<z.ZodObject<{
5345
+ blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
5346
+ origin: z.ZodOptional<z.ZodEnum<{
5347
+ chart: "chart";
5348
+ diagram: "diagram";
5349
+ table: "table";
5350
+ image: "image";
5351
+ notes: "notes";
5352
+ body: "body";
5353
+ }>>;
5354
+ interpretation: z.ZodOptional<z.ZodObject<{
5355
+ transcript: z.ZodOptional<z.ZodObject<{
5356
+ text: z.ZodString;
5357
+ confidence: z.ZodEnum<{
5358
+ high: "high";
5359
+ medium: "medium";
5360
+ low: "low";
5361
+ }>;
5362
+ mechanism: z.ZodEnum<{
5363
+ deterministic: "deterministic";
5364
+ model: "model";
5365
+ }>;
5366
+ }, z.core.$strip>>;
5367
+ description: z.ZodOptional<z.ZodString>;
5368
+ by: z.ZodOptional<z.ZodObject<{
5369
+ model: z.ZodString;
5370
+ at: z.ZodString;
5371
+ }, z.core.$strip>>;
5372
+ }, z.core.$strip>>;
4539
5373
  name: z.ZodOptional<z.ZodString>;
4540
5374
  frame: z.ZodObject<{
4541
5375
  xPt: z.ZodNumber;
@@ -4579,7 +5413,6 @@ declare const ContentSlideSchema: z.ZodObject<{
4579
5413
  widthPt: z.ZodNumber;
4580
5414
  heightPt: z.ZodNumber;
4581
5415
  }, z.core.$strip>>>;
4582
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
4583
5416
  }, z.core.$strip>>;
4584
5417
  notes: z.ZodString;
4585
5418
  source: z.ZodOptional<z.ZodObject<{
@@ -4652,6 +5485,33 @@ declare const ContentSheetCellCommentSchema: z.ZodObject<{
4652
5485
  }, z.core.$strip>;
4653
5486
  type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
4654
5487
  declare const ContentSheetCellSchema: z.ZodObject<{
5488
+ origin: z.ZodOptional<z.ZodEnum<{
5489
+ chart: "chart";
5490
+ diagram: "diagram";
5491
+ table: "table";
5492
+ image: "image";
5493
+ notes: "notes";
5494
+ body: "body";
5495
+ }>>;
5496
+ interpretation: z.ZodOptional<z.ZodObject<{
5497
+ transcript: z.ZodOptional<z.ZodObject<{
5498
+ text: z.ZodString;
5499
+ confidence: z.ZodEnum<{
5500
+ high: "high";
5501
+ medium: "medium";
5502
+ low: "low";
5503
+ }>;
5504
+ mechanism: z.ZodEnum<{
5505
+ deterministic: "deterministic";
5506
+ model: "model";
5507
+ }>;
5508
+ }, z.core.$strip>>;
5509
+ description: z.ZodOptional<z.ZodString>;
5510
+ by: z.ZodOptional<z.ZodObject<{
5511
+ model: z.ZodString;
5512
+ at: z.ZodString;
5513
+ }, z.core.$strip>>;
5514
+ }, z.core.$strip>>;
4655
5515
  row: z.ZodNumber;
4656
5516
  column: z.ZodNumber;
4657
5517
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -4705,6 +5565,33 @@ declare const ContentSheetCellSchema: z.ZodObject<{
4705
5565
  }, z.core.$strip>>;
4706
5566
  }, z.core.$strip>>;
4707
5567
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
5568
+ origin: z.ZodOptional<z.ZodEnum<{
5569
+ chart: "chart";
5570
+ diagram: "diagram";
5571
+ table: "table";
5572
+ image: "image";
5573
+ notes: "notes";
5574
+ body: "body";
5575
+ }>>;
5576
+ interpretation: z.ZodOptional<z.ZodObject<{
5577
+ transcript: z.ZodOptional<z.ZodObject<{
5578
+ text: z.ZodString;
5579
+ confidence: z.ZodEnum<{
5580
+ high: "high";
5581
+ medium: "medium";
5582
+ low: "low";
5583
+ }>;
5584
+ mechanism: z.ZodEnum<{
5585
+ deterministic: "deterministic";
5586
+ model: "model";
5587
+ }>;
5588
+ }, z.core.$strip>>;
5589
+ description: z.ZodOptional<z.ZodString>;
5590
+ by: z.ZodOptional<z.ZodObject<{
5591
+ model: z.ZodString;
5592
+ at: z.ZodString;
5593
+ }, z.core.$strip>>;
5594
+ }, z.core.$strip>>;
4708
5595
  hyperlink: z.ZodOptional<z.ZodString>;
4709
5596
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4710
5597
  superscript: "superscript";
@@ -4919,8 +5806,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
4919
5806
  }, z.core.$strip>>;
4920
5807
  alignment: z.ZodOptional<z.ZodEnum<{
4921
5808
  left: "left";
4922
- right: "right";
4923
5809
  center: "center";
5810
+ right: "right";
4924
5811
  justify: "justify";
4925
5812
  }>>;
4926
5813
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -5052,10 +5939,10 @@ declare const SheetRuleOperatorSchema: z.ZodEnum<{
5052
5939
  }>;
5053
5940
  type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
5054
5941
  declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
5055
- date: "date";
5056
- custom: "custom";
5057
5942
  decimal: "decimal";
5058
5943
  list: "list";
5944
+ date: "date";
5945
+ custom: "custom";
5059
5946
  time: "time";
5060
5947
  whole: "whole";
5061
5948
  textLength: "textLength";
@@ -5069,10 +5956,10 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
5069
5956
  endColumn: z.ZodNumber;
5070
5957
  }, z.core.$strip>>;
5071
5958
  type: z.ZodEnum<{
5072
- date: "date";
5073
- custom: "custom";
5074
5959
  decimal: "decimal";
5075
5960
  list: "list";
5961
+ date: "date";
5962
+ custom: "custom";
5076
5963
  time: "time";
5077
5964
  whole: "whole";
5078
5965
  textLength: "textLength";
@@ -5739,6 +6626,33 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
5739
6626
  }, z.core.$strip>], "type">;
5740
6627
  type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalFormatSchema>;
5741
6628
  declare const ContentSheetImageSchema: z.ZodObject<{
6629
+ origin: z.ZodOptional<z.ZodEnum<{
6630
+ chart: "chart";
6631
+ diagram: "diagram";
6632
+ table: "table";
6633
+ image: "image";
6634
+ notes: "notes";
6635
+ body: "body";
6636
+ }>>;
6637
+ interpretation: z.ZodOptional<z.ZodObject<{
6638
+ transcript: z.ZodOptional<z.ZodObject<{
6639
+ text: z.ZodString;
6640
+ confidence: z.ZodEnum<{
6641
+ high: "high";
6642
+ medium: "medium";
6643
+ low: "low";
6644
+ }>;
6645
+ mechanism: z.ZodEnum<{
6646
+ deterministic: "deterministic";
6647
+ model: "model";
6648
+ }>;
6649
+ }, z.core.$strip>>;
6650
+ description: z.ZodOptional<z.ZodString>;
6651
+ by: z.ZodOptional<z.ZodObject<{
6652
+ model: z.ZodString;
6653
+ at: z.ZodString;
6654
+ }, z.core.$strip>>;
6655
+ }, z.core.$strip>>;
5742
6656
  kind: z.ZodLiteral<"image">;
5743
6657
  format: z.ZodEnum<{
5744
6658
  png: "png";
@@ -5758,6 +6672,9 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5758
6672
  base64: z.ZodString;
5759
6673
  jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
5760
6674
  }, z.core.$strip>>;
6675
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
6676
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
6677
+ caption: z.ZodOptional<z.ZodString>;
5761
6678
  floatPosition: z.ZodOptional<z.ZodObject<{
5762
6679
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
5763
6680
  relativeTo: z.ZodEnum<{
@@ -5794,10 +6711,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5794
6711
  }>;
5795
6712
  align: z.ZodEnum<{
5796
6713
  left: "left";
6714
+ center: "center";
5797
6715
  right: "right";
5798
6716
  top: "top";
5799
6717
  bottom: "bottom";
5800
- center: "center";
5801
6718
  inside: "inside";
5802
6719
  outside: "outside";
5803
6720
  }>;
@@ -5837,10 +6754,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5837
6754
  }>;
5838
6755
  align: z.ZodEnum<{
5839
6756
  left: "left";
6757
+ center: "center";
5840
6758
  right: "right";
5841
6759
  top: "top";
5842
6760
  bottom: "bottom";
5843
- center: "center";
5844
6761
  inside: "inside";
5845
6762
  outside: "outside";
5846
6763
  }>;
@@ -5881,8 +6798,62 @@ declare const ContentSheetImageSchema: z.ZodObject<{
5881
6798
  }, z.core.$strip>;
5882
6799
  type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
5883
6800
  declare const ContentSheetSchema: z.ZodObject<{
6801
+ origin: z.ZodOptional<z.ZodEnum<{
6802
+ chart: "chart";
6803
+ diagram: "diagram";
6804
+ table: "table";
6805
+ image: "image";
6806
+ notes: "notes";
6807
+ body: "body";
6808
+ }>>;
6809
+ interpretation: z.ZodOptional<z.ZodObject<{
6810
+ transcript: z.ZodOptional<z.ZodObject<{
6811
+ text: z.ZodString;
6812
+ confidence: z.ZodEnum<{
6813
+ high: "high";
6814
+ medium: "medium";
6815
+ low: "low";
6816
+ }>;
6817
+ mechanism: z.ZodEnum<{
6818
+ deterministic: "deterministic";
6819
+ model: "model";
6820
+ }>;
6821
+ }, z.core.$strip>>;
6822
+ description: z.ZodOptional<z.ZodString>;
6823
+ by: z.ZodOptional<z.ZodObject<{
6824
+ model: z.ZodString;
6825
+ at: z.ZodString;
6826
+ }, z.core.$strip>>;
6827
+ }, z.core.$strip>>;
5884
6828
  name: z.ZodString;
5885
6829
  cells: z.ZodArray<z.ZodObject<{
6830
+ origin: z.ZodOptional<z.ZodEnum<{
6831
+ chart: "chart";
6832
+ diagram: "diagram";
6833
+ table: "table";
6834
+ image: "image";
6835
+ notes: "notes";
6836
+ body: "body";
6837
+ }>>;
6838
+ interpretation: z.ZodOptional<z.ZodObject<{
6839
+ transcript: z.ZodOptional<z.ZodObject<{
6840
+ text: z.ZodString;
6841
+ confidence: z.ZodEnum<{
6842
+ high: "high";
6843
+ medium: "medium";
6844
+ low: "low";
6845
+ }>;
6846
+ mechanism: z.ZodEnum<{
6847
+ deterministic: "deterministic";
6848
+ model: "model";
6849
+ }>;
6850
+ }, z.core.$strip>>;
6851
+ description: z.ZodOptional<z.ZodString>;
6852
+ by: z.ZodOptional<z.ZodObject<{
6853
+ model: z.ZodString;
6854
+ at: z.ZodString;
6855
+ }, z.core.$strip>>;
6856
+ }, z.core.$strip>>;
5886
6857
  row: z.ZodNumber;
5887
6858
  column: z.ZodNumber;
5888
6859
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -5936,6 +6907,33 @@ declare const ContentSheetSchema: z.ZodObject<{
5936
6907
  }, z.core.$strip>>;
5937
6908
  }, z.core.$strip>>;
5938
6909
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
6910
+ origin: z.ZodOptional<z.ZodEnum<{
6911
+ chart: "chart";
6912
+ diagram: "diagram";
6913
+ table: "table";
6914
+ image: "image";
6915
+ notes: "notes";
6916
+ body: "body";
6917
+ }>>;
6918
+ interpretation: z.ZodOptional<z.ZodObject<{
6919
+ transcript: z.ZodOptional<z.ZodObject<{
6920
+ text: z.ZodString;
6921
+ confidence: z.ZodEnum<{
6922
+ high: "high";
6923
+ medium: "medium";
6924
+ low: "low";
6925
+ }>;
6926
+ mechanism: z.ZodEnum<{
6927
+ deterministic: "deterministic";
6928
+ model: "model";
6929
+ }>;
6930
+ }, z.core.$strip>>;
6931
+ description: z.ZodOptional<z.ZodString>;
6932
+ by: z.ZodOptional<z.ZodObject<{
6933
+ model: z.ZodString;
6934
+ at: z.ZodString;
6935
+ }, z.core.$strip>>;
6936
+ }, z.core.$strip>>;
5939
6937
  hyperlink: z.ZodOptional<z.ZodString>;
5940
6938
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5941
6939
  superscript: "superscript";
@@ -6150,8 +7148,8 @@ declare const ContentSheetSchema: z.ZodObject<{
6150
7148
  }, z.core.$strip>>;
6151
7149
  alignment: z.ZodOptional<z.ZodEnum<{
6152
7150
  left: "left";
6153
- right: "right";
6154
7151
  center: "center";
7152
+ right: "right";
6155
7153
  justify: "justify";
6156
7154
  }>>;
6157
7155
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -6208,6 +7206,33 @@ declare const ContentSheetSchema: z.ZodObject<{
6208
7206
  hidden: z.ZodOptional<z.ZodBoolean>;
6209
7207
  }, z.core.$strip>>;
6210
7208
  images: z.ZodArray<z.ZodObject<{
7209
+ origin: z.ZodOptional<z.ZodEnum<{
7210
+ chart: "chart";
7211
+ diagram: "diagram";
7212
+ table: "table";
7213
+ image: "image";
7214
+ notes: "notes";
7215
+ body: "body";
7216
+ }>>;
7217
+ interpretation: z.ZodOptional<z.ZodObject<{
7218
+ transcript: z.ZodOptional<z.ZodObject<{
7219
+ text: z.ZodString;
7220
+ confidence: z.ZodEnum<{
7221
+ high: "high";
7222
+ medium: "medium";
7223
+ low: "low";
7224
+ }>;
7225
+ mechanism: z.ZodEnum<{
7226
+ deterministic: "deterministic";
7227
+ model: "model";
7228
+ }>;
7229
+ }, z.core.$strip>>;
7230
+ description: z.ZodOptional<z.ZodString>;
7231
+ by: z.ZodOptional<z.ZodObject<{
7232
+ model: z.ZodString;
7233
+ at: z.ZodString;
7234
+ }, z.core.$strip>>;
7235
+ }, z.core.$strip>>;
6211
7236
  kind: z.ZodLiteral<"image">;
6212
7237
  format: z.ZodEnum<{
6213
7238
  png: "png";
@@ -6227,6 +7252,9 @@ declare const ContentSheetSchema: z.ZodObject<{
6227
7252
  base64: z.ZodString;
6228
7253
  jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
6229
7254
  }, z.core.$strip>>;
7255
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
7256
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
7257
+ caption: z.ZodOptional<z.ZodString>;
6230
7258
  floatPosition: z.ZodOptional<z.ZodObject<{
6231
7259
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
6232
7260
  relativeTo: z.ZodEnum<{
@@ -6263,10 +7291,10 @@ declare const ContentSheetSchema: z.ZodObject<{
6263
7291
  }>;
6264
7292
  align: z.ZodEnum<{
6265
7293
  left: "left";
7294
+ center: "center";
6266
7295
  right: "right";
6267
7296
  top: "top";
6268
7297
  bottom: "bottom";
6269
- center: "center";
6270
7298
  inside: "inside";
6271
7299
  outside: "outside";
6272
7300
  }>;
@@ -6306,10 +7334,10 @@ declare const ContentSheetSchema: z.ZodObject<{
6306
7334
  }>;
6307
7335
  align: z.ZodEnum<{
6308
7336
  left: "left";
7337
+ center: "center";
6309
7338
  right: "right";
6310
7339
  top: "top";
6311
7340
  bottom: "bottom";
6312
- center: "center";
6313
7341
  inside: "inside";
6314
7342
  outside: "outside";
6315
7343
  }>;
@@ -6398,10 +7426,10 @@ declare const ContentSheetSchema: z.ZodObject<{
6398
7426
  endColumn: z.ZodNumber;
6399
7427
  }, z.core.$strip>>;
6400
7428
  type: z.ZodEnum<{
6401
- date: "date";
6402
- custom: "custom";
6403
7429
  decimal: "decimal";
6404
7430
  list: "list";
7431
+ date: "date";
7432
+ custom: "custom";
6405
7433
  time: "time";
6406
7434
  whole: "whole";
6407
7435
  textLength: "textLength";
@@ -7241,6 +8269,33 @@ declare const ContentSubpathSchema: z.ZodObject<{
7241
8269
  }, z.core.$strip>;
7242
8270
  type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
7243
8271
  declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8272
+ origin: z.ZodOptional<z.ZodEnum<{
8273
+ chart: "chart";
8274
+ diagram: "diagram";
8275
+ table: "table";
8276
+ image: "image";
8277
+ notes: "notes";
8278
+ body: "body";
8279
+ }>>;
8280
+ interpretation: z.ZodOptional<z.ZodObject<{
8281
+ transcript: z.ZodOptional<z.ZodObject<{
8282
+ text: z.ZodString;
8283
+ confidence: z.ZodEnum<{
8284
+ high: "high";
8285
+ medium: "medium";
8286
+ low: "low";
8287
+ }>;
8288
+ mechanism: z.ZodEnum<{
8289
+ deterministic: "deterministic";
8290
+ model: "model";
8291
+ }>;
8292
+ }, z.core.$strip>>;
8293
+ description: z.ZodOptional<z.ZodString>;
8294
+ by: z.ZodOptional<z.ZodObject<{
8295
+ model: z.ZodString;
8296
+ at: z.ZodString;
8297
+ }, z.core.$strip>>;
8298
+ }, z.core.$strip>>;
7244
8299
  kind: z.ZodLiteral<"rect">;
7245
8300
  frame: z.ZodObject<{
7246
8301
  xPt: z.ZodNumber;
@@ -7352,6 +8407,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7352
8407
  heightPt: z.ZodNumber;
7353
8408
  }, z.core.$strip>>>;
7354
8409
  }, z.core.$strip>, z.ZodObject<{
8410
+ origin: z.ZodOptional<z.ZodEnum<{
8411
+ chart: "chart";
8412
+ diagram: "diagram";
8413
+ table: "table";
8414
+ image: "image";
8415
+ notes: "notes";
8416
+ body: "body";
8417
+ }>>;
8418
+ interpretation: z.ZodOptional<z.ZodObject<{
8419
+ transcript: z.ZodOptional<z.ZodObject<{
8420
+ text: z.ZodString;
8421
+ confidence: z.ZodEnum<{
8422
+ high: "high";
8423
+ medium: "medium";
8424
+ low: "low";
8425
+ }>;
8426
+ mechanism: z.ZodEnum<{
8427
+ deterministic: "deterministic";
8428
+ model: "model";
8429
+ }>;
8430
+ }, z.core.$strip>>;
8431
+ description: z.ZodOptional<z.ZodString>;
8432
+ by: z.ZodOptional<z.ZodObject<{
8433
+ model: z.ZodString;
8434
+ at: z.ZodString;
8435
+ }, z.core.$strip>>;
8436
+ }, z.core.$strip>>;
7355
8437
  kind: z.ZodLiteral<"ellipse">;
7356
8438
  frame: z.ZodObject<{
7357
8439
  xPt: z.ZodNumber;
@@ -7463,6 +8545,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7463
8545
  heightPt: z.ZodNumber;
7464
8546
  }, z.core.$strip>>>;
7465
8547
  }, z.core.$strip>, z.ZodObject<{
8548
+ origin: z.ZodOptional<z.ZodEnum<{
8549
+ chart: "chart";
8550
+ diagram: "diagram";
8551
+ table: "table";
8552
+ image: "image";
8553
+ notes: "notes";
8554
+ body: "body";
8555
+ }>>;
8556
+ interpretation: z.ZodOptional<z.ZodObject<{
8557
+ transcript: z.ZodOptional<z.ZodObject<{
8558
+ text: z.ZodString;
8559
+ confidence: z.ZodEnum<{
8560
+ high: "high";
8561
+ medium: "medium";
8562
+ low: "low";
8563
+ }>;
8564
+ mechanism: z.ZodEnum<{
8565
+ deterministic: "deterministic";
8566
+ model: "model";
8567
+ }>;
8568
+ }, z.core.$strip>>;
8569
+ description: z.ZodOptional<z.ZodString>;
8570
+ by: z.ZodOptional<z.ZodObject<{
8571
+ model: z.ZodString;
8572
+ at: z.ZodString;
8573
+ }, z.core.$strip>>;
8574
+ }, z.core.$strip>>;
7466
8575
  kind: z.ZodLiteral<"line">;
7467
8576
  from: z.ZodObject<{
7468
8577
  xPt: z.ZodNumber;
@@ -7524,6 +8633,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7524
8633
  heightPt: z.ZodNumber;
7525
8634
  }, z.core.$strip>>>;
7526
8635
  }, z.core.$strip>, z.ZodObject<{
8636
+ origin: z.ZodOptional<z.ZodEnum<{
8637
+ chart: "chart";
8638
+ diagram: "diagram";
8639
+ table: "table";
8640
+ image: "image";
8641
+ notes: "notes";
8642
+ body: "body";
8643
+ }>>;
8644
+ interpretation: z.ZodOptional<z.ZodObject<{
8645
+ transcript: z.ZodOptional<z.ZodObject<{
8646
+ text: z.ZodString;
8647
+ confidence: z.ZodEnum<{
8648
+ high: "high";
8649
+ medium: "medium";
8650
+ low: "low";
8651
+ }>;
8652
+ mechanism: z.ZodEnum<{
8653
+ deterministic: "deterministic";
8654
+ model: "model";
8655
+ }>;
8656
+ }, z.core.$strip>>;
8657
+ description: z.ZodOptional<z.ZodString>;
8658
+ by: z.ZodOptional<z.ZodObject<{
8659
+ model: z.ZodString;
8660
+ at: z.ZodString;
8661
+ }, z.core.$strip>>;
8662
+ }, z.core.$strip>>;
7527
8663
  kind: z.ZodLiteral<"path">;
7528
8664
  frame: z.ZodObject<{
7529
8665
  xPt: z.ZodNumber;
@@ -7669,11 +8805,66 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
7669
8805
  }, z.core.$strip>], "kind">;
7670
8806
  type ContentVector = z.infer<typeof ContentVectorSchema>;
7671
8807
  declare const ContentDrawPageSchema: z.ZodObject<{
8808
+ origin: z.ZodOptional<z.ZodEnum<{
8809
+ chart: "chart";
8810
+ diagram: "diagram";
8811
+ table: "table";
8812
+ image: "image";
8813
+ notes: "notes";
8814
+ body: "body";
8815
+ }>>;
8816
+ interpretation: z.ZodOptional<z.ZodObject<{
8817
+ transcript: z.ZodOptional<z.ZodObject<{
8818
+ text: z.ZodString;
8819
+ confidence: z.ZodEnum<{
8820
+ high: "high";
8821
+ medium: "medium";
8822
+ low: "low";
8823
+ }>;
8824
+ mechanism: z.ZodEnum<{
8825
+ deterministic: "deterministic";
8826
+ model: "model";
8827
+ }>;
8828
+ }, z.core.$strip>>;
8829
+ description: z.ZodOptional<z.ZodString>;
8830
+ by: z.ZodOptional<z.ZodObject<{
8831
+ model: z.ZodString;
8832
+ at: z.ZodString;
8833
+ }, z.core.$strip>>;
8834
+ }, z.core.$strip>>;
7672
8835
  size: z.ZodObject<{
7673
8836
  widthPt: z.ZodNumber;
7674
8837
  heightPt: z.ZodNumber;
7675
8838
  }, z.core.$strip>;
7676
8839
  shapes: z.ZodArray<z.ZodObject<{
8840
+ blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
8841
+ origin: z.ZodOptional<z.ZodEnum<{
8842
+ chart: "chart";
8843
+ diagram: "diagram";
8844
+ table: "table";
8845
+ image: "image";
8846
+ notes: "notes";
8847
+ body: "body";
8848
+ }>>;
8849
+ interpretation: z.ZodOptional<z.ZodObject<{
8850
+ transcript: z.ZodOptional<z.ZodObject<{
8851
+ text: z.ZodString;
8852
+ confidence: z.ZodEnum<{
8853
+ high: "high";
8854
+ medium: "medium";
8855
+ low: "low";
8856
+ }>;
8857
+ mechanism: z.ZodEnum<{
8858
+ deterministic: "deterministic";
8859
+ model: "model";
8860
+ }>;
8861
+ }, z.core.$strip>>;
8862
+ description: z.ZodOptional<z.ZodString>;
8863
+ by: z.ZodOptional<z.ZodObject<{
8864
+ model: z.ZodString;
8865
+ at: z.ZodString;
8866
+ }, z.core.$strip>>;
8867
+ }, z.core.$strip>>;
7677
8868
  name: z.ZodOptional<z.ZodString>;
7678
8869
  frame: z.ZodObject<{
7679
8870
  xPt: z.ZodNumber;
@@ -7717,9 +8908,35 @@ declare const ContentDrawPageSchema: z.ZodObject<{
7717
8908
  widthPt: z.ZodNumber;
7718
8909
  heightPt: z.ZodNumber;
7719
8910
  }, z.core.$strip>>>;
7720
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
7721
8911
  }, z.core.$strip>>;
7722
8912
  vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
8913
+ origin: z.ZodOptional<z.ZodEnum<{
8914
+ chart: "chart";
8915
+ diagram: "diagram";
8916
+ table: "table";
8917
+ image: "image";
8918
+ notes: "notes";
8919
+ body: "body";
8920
+ }>>;
8921
+ interpretation: z.ZodOptional<z.ZodObject<{
8922
+ transcript: z.ZodOptional<z.ZodObject<{
8923
+ text: z.ZodString;
8924
+ confidence: z.ZodEnum<{
8925
+ high: "high";
8926
+ medium: "medium";
8927
+ low: "low";
8928
+ }>;
8929
+ mechanism: z.ZodEnum<{
8930
+ deterministic: "deterministic";
8931
+ model: "model";
8932
+ }>;
8933
+ }, z.core.$strip>>;
8934
+ description: z.ZodOptional<z.ZodString>;
8935
+ by: z.ZodOptional<z.ZodObject<{
8936
+ model: z.ZodString;
8937
+ at: z.ZodString;
8938
+ }, z.core.$strip>>;
8939
+ }, z.core.$strip>>;
7723
8940
  kind: z.ZodLiteral<"rect">;
7724
8941
  frame: z.ZodObject<{
7725
8942
  xPt: z.ZodNumber;
@@ -7831,6 +9048,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
7831
9048
  heightPt: z.ZodNumber;
7832
9049
  }, z.core.$strip>>>;
7833
9050
  }, z.core.$strip>, z.ZodObject<{
9051
+ origin: z.ZodOptional<z.ZodEnum<{
9052
+ chart: "chart";
9053
+ diagram: "diagram";
9054
+ table: "table";
9055
+ image: "image";
9056
+ notes: "notes";
9057
+ body: "body";
9058
+ }>>;
9059
+ interpretation: z.ZodOptional<z.ZodObject<{
9060
+ transcript: z.ZodOptional<z.ZodObject<{
9061
+ text: z.ZodString;
9062
+ confidence: z.ZodEnum<{
9063
+ high: "high";
9064
+ medium: "medium";
9065
+ low: "low";
9066
+ }>;
9067
+ mechanism: z.ZodEnum<{
9068
+ deterministic: "deterministic";
9069
+ model: "model";
9070
+ }>;
9071
+ }, z.core.$strip>>;
9072
+ description: z.ZodOptional<z.ZodString>;
9073
+ by: z.ZodOptional<z.ZodObject<{
9074
+ model: z.ZodString;
9075
+ at: z.ZodString;
9076
+ }, z.core.$strip>>;
9077
+ }, z.core.$strip>>;
7834
9078
  kind: z.ZodLiteral<"ellipse">;
7835
9079
  frame: z.ZodObject<{
7836
9080
  xPt: z.ZodNumber;
@@ -7942,6 +9186,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
7942
9186
  heightPt: z.ZodNumber;
7943
9187
  }, z.core.$strip>>>;
7944
9188
  }, z.core.$strip>, z.ZodObject<{
9189
+ origin: z.ZodOptional<z.ZodEnum<{
9190
+ chart: "chart";
9191
+ diagram: "diagram";
9192
+ table: "table";
9193
+ image: "image";
9194
+ notes: "notes";
9195
+ body: "body";
9196
+ }>>;
9197
+ interpretation: z.ZodOptional<z.ZodObject<{
9198
+ transcript: z.ZodOptional<z.ZodObject<{
9199
+ text: z.ZodString;
9200
+ confidence: z.ZodEnum<{
9201
+ high: "high";
9202
+ medium: "medium";
9203
+ low: "low";
9204
+ }>;
9205
+ mechanism: z.ZodEnum<{
9206
+ deterministic: "deterministic";
9207
+ model: "model";
9208
+ }>;
9209
+ }, z.core.$strip>>;
9210
+ description: z.ZodOptional<z.ZodString>;
9211
+ by: z.ZodOptional<z.ZodObject<{
9212
+ model: z.ZodString;
9213
+ at: z.ZodString;
9214
+ }, z.core.$strip>>;
9215
+ }, z.core.$strip>>;
7945
9216
  kind: z.ZodLiteral<"line">;
7946
9217
  from: z.ZodObject<{
7947
9218
  xPt: z.ZodNumber;
@@ -8003,6 +9274,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
8003
9274
  heightPt: z.ZodNumber;
8004
9275
  }, z.core.$strip>>>;
8005
9276
  }, z.core.$strip>, z.ZodObject<{
9277
+ origin: z.ZodOptional<z.ZodEnum<{
9278
+ chart: "chart";
9279
+ diagram: "diagram";
9280
+ table: "table";
9281
+ image: "image";
9282
+ notes: "notes";
9283
+ body: "body";
9284
+ }>>;
9285
+ interpretation: z.ZodOptional<z.ZodObject<{
9286
+ transcript: z.ZodOptional<z.ZodObject<{
9287
+ text: z.ZodString;
9288
+ confidence: z.ZodEnum<{
9289
+ high: "high";
9290
+ medium: "medium";
9291
+ low: "low";
9292
+ }>;
9293
+ mechanism: z.ZodEnum<{
9294
+ deterministic: "deterministic";
9295
+ model: "model";
9296
+ }>;
9297
+ }, z.core.$strip>>;
9298
+ description: z.ZodOptional<z.ZodString>;
9299
+ by: z.ZodOptional<z.ZodObject<{
9300
+ model: z.ZodString;
9301
+ at: z.ZodString;
9302
+ }, z.core.$strip>>;
9303
+ }, z.core.$strip>>;
8006
9304
  kind: z.ZodLiteral<"path">;
8007
9305
  frame: z.ZodObject<{
8008
9306
  xPt: z.ZodNumber;
@@ -8169,6 +9467,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
8169
9467
  }, z.core.$strip>;
8170
9468
  type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
8171
9469
  declare const ContentFormulaSchema: z.ZodObject<{
9470
+ origin: z.ZodOptional<z.ZodEnum<{
9471
+ chart: "chart";
9472
+ diagram: "diagram";
9473
+ table: "table";
9474
+ image: "image";
9475
+ notes: "notes";
9476
+ body: "body";
9477
+ }>>;
9478
+ interpretation: z.ZodOptional<z.ZodObject<{
9479
+ transcript: z.ZodOptional<z.ZodObject<{
9480
+ text: z.ZodString;
9481
+ confidence: z.ZodEnum<{
9482
+ high: "high";
9483
+ medium: "medium";
9484
+ low: "low";
9485
+ }>;
9486
+ mechanism: z.ZodEnum<{
9487
+ deterministic: "deterministic";
9488
+ model: "model";
9489
+ }>;
9490
+ }, z.core.$strip>>;
9491
+ description: z.ZodOptional<z.ZodString>;
9492
+ by: z.ZodOptional<z.ZodObject<{
9493
+ model: z.ZodString;
9494
+ at: z.ZodString;
9495
+ }, z.core.$strip>>;
9496
+ }, z.core.$strip>>;
8172
9497
  mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
8173
9498
  starMath: z.ZodOptional<z.ZodString>;
8174
9499
  presentation: z.ZodOptional<z.ZodObject<{
@@ -8255,6 +9580,33 @@ declare const ContentDefinedNameSchema: z.ZodObject<{
8255
9580
  type ContentDefinedName = z.infer<typeof ContentDefinedNameSchema>;
8256
9581
  declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8257
9582
  sections: z.ZodArray<z.ZodObject<{
9583
+ origin: z.ZodOptional<z.ZodEnum<{
9584
+ chart: "chart";
9585
+ diagram: "diagram";
9586
+ table: "table";
9587
+ image: "image";
9588
+ notes: "notes";
9589
+ body: "body";
9590
+ }>>;
9591
+ interpretation: z.ZodOptional<z.ZodObject<{
9592
+ transcript: z.ZodOptional<z.ZodObject<{
9593
+ text: z.ZodString;
9594
+ confidence: z.ZodEnum<{
9595
+ high: "high";
9596
+ medium: "medium";
9597
+ low: "low";
9598
+ }>;
9599
+ mechanism: z.ZodEnum<{
9600
+ deterministic: "deterministic";
9601
+ model: "model";
9602
+ }>;
9603
+ }, z.core.$strip>>;
9604
+ description: z.ZodOptional<z.ZodString>;
9605
+ by: z.ZodOptional<z.ZodObject<{
9606
+ model: z.ZodString;
9607
+ at: z.ZodString;
9608
+ }, z.core.$strip>>;
9609
+ }, z.core.$strip>>;
8258
9610
  pageSize: z.ZodObject<{
8259
9611
  widthPt: z.ZodNumber;
8260
9612
  heightPt: z.ZodNumber;
@@ -8372,11 +9724,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8372
9724
  }, z.core.$strip>;
8373
9725
  }, z.core.$strip>, z.ZodObject<{
8374
9726
  slides: z.ZodArray<z.ZodObject<{
9727
+ origin: z.ZodOptional<z.ZodEnum<{
9728
+ chart: "chart";
9729
+ diagram: "diagram";
9730
+ table: "table";
9731
+ image: "image";
9732
+ notes: "notes";
9733
+ body: "body";
9734
+ }>>;
9735
+ interpretation: z.ZodOptional<z.ZodObject<{
9736
+ transcript: z.ZodOptional<z.ZodObject<{
9737
+ text: z.ZodString;
9738
+ confidence: z.ZodEnum<{
9739
+ high: "high";
9740
+ medium: "medium";
9741
+ low: "low";
9742
+ }>;
9743
+ mechanism: z.ZodEnum<{
9744
+ deterministic: "deterministic";
9745
+ model: "model";
9746
+ }>;
9747
+ }, z.core.$strip>>;
9748
+ description: z.ZodOptional<z.ZodString>;
9749
+ by: z.ZodOptional<z.ZodObject<{
9750
+ model: z.ZodString;
9751
+ at: z.ZodString;
9752
+ }, z.core.$strip>>;
9753
+ }, z.core.$strip>>;
8375
9754
  size: z.ZodObject<{
8376
9755
  widthPt: z.ZodNumber;
8377
9756
  heightPt: z.ZodNumber;
8378
9757
  }, z.core.$strip>;
8379
9758
  shapes: z.ZodArray<z.ZodObject<{
9759
+ blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
9760
+ origin: z.ZodOptional<z.ZodEnum<{
9761
+ chart: "chart";
9762
+ diagram: "diagram";
9763
+ table: "table";
9764
+ image: "image";
9765
+ notes: "notes";
9766
+ body: "body";
9767
+ }>>;
9768
+ interpretation: z.ZodOptional<z.ZodObject<{
9769
+ transcript: z.ZodOptional<z.ZodObject<{
9770
+ text: z.ZodString;
9771
+ confidence: z.ZodEnum<{
9772
+ high: "high";
9773
+ medium: "medium";
9774
+ low: "low";
9775
+ }>;
9776
+ mechanism: z.ZodEnum<{
9777
+ deterministic: "deterministic";
9778
+ model: "model";
9779
+ }>;
9780
+ }, z.core.$strip>>;
9781
+ description: z.ZodOptional<z.ZodString>;
9782
+ by: z.ZodOptional<z.ZodObject<{
9783
+ model: z.ZodString;
9784
+ at: z.ZodString;
9785
+ }, z.core.$strip>>;
9786
+ }, z.core.$strip>>;
8380
9787
  name: z.ZodOptional<z.ZodString>;
8381
9788
  frame: z.ZodObject<{
8382
9789
  xPt: z.ZodNumber;
@@ -8420,7 +9827,6 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8420
9827
  widthPt: z.ZodNumber;
8421
9828
  heightPt: z.ZodNumber;
8422
9829
  }, z.core.$strip>>>;
8423
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
8424
9830
  }, z.core.$strip>>;
8425
9831
  notes: z.ZodString;
8426
9832
  source: z.ZodOptional<z.ZodObject<{
@@ -8513,8 +9919,62 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8513
9919
  }, z.core.$strip>;
8514
9920
  }, z.core.$strip>, z.ZodObject<{
8515
9921
  sheets: z.ZodArray<z.ZodObject<{
9922
+ origin: z.ZodOptional<z.ZodEnum<{
9923
+ chart: "chart";
9924
+ diagram: "diagram";
9925
+ table: "table";
9926
+ image: "image";
9927
+ notes: "notes";
9928
+ body: "body";
9929
+ }>>;
9930
+ interpretation: z.ZodOptional<z.ZodObject<{
9931
+ transcript: z.ZodOptional<z.ZodObject<{
9932
+ text: z.ZodString;
9933
+ confidence: z.ZodEnum<{
9934
+ high: "high";
9935
+ medium: "medium";
9936
+ low: "low";
9937
+ }>;
9938
+ mechanism: z.ZodEnum<{
9939
+ deterministic: "deterministic";
9940
+ model: "model";
9941
+ }>;
9942
+ }, z.core.$strip>>;
9943
+ description: z.ZodOptional<z.ZodString>;
9944
+ by: z.ZodOptional<z.ZodObject<{
9945
+ model: z.ZodString;
9946
+ at: z.ZodString;
9947
+ }, z.core.$strip>>;
9948
+ }, z.core.$strip>>;
8516
9949
  name: z.ZodString;
8517
9950
  cells: z.ZodArray<z.ZodObject<{
9951
+ origin: z.ZodOptional<z.ZodEnum<{
9952
+ chart: "chart";
9953
+ diagram: "diagram";
9954
+ table: "table";
9955
+ image: "image";
9956
+ notes: "notes";
9957
+ body: "body";
9958
+ }>>;
9959
+ interpretation: z.ZodOptional<z.ZodObject<{
9960
+ transcript: z.ZodOptional<z.ZodObject<{
9961
+ text: z.ZodString;
9962
+ confidence: z.ZodEnum<{
9963
+ high: "high";
9964
+ medium: "medium";
9965
+ low: "low";
9966
+ }>;
9967
+ mechanism: z.ZodEnum<{
9968
+ deterministic: "deterministic";
9969
+ model: "model";
9970
+ }>;
9971
+ }, z.core.$strip>>;
9972
+ description: z.ZodOptional<z.ZodString>;
9973
+ by: z.ZodOptional<z.ZodObject<{
9974
+ model: z.ZodString;
9975
+ at: z.ZodString;
9976
+ }, z.core.$strip>>;
9977
+ }, z.core.$strip>>;
8518
9978
  row: z.ZodNumber;
8519
9979
  column: z.ZodNumber;
8520
9980
  value: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -8568,6 +10028,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8568
10028
  }, z.core.$strip>>;
8569
10029
  }, z.core.$strip>>;
8570
10030
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
10031
+ origin: z.ZodOptional<z.ZodEnum<{
10032
+ chart: "chart";
10033
+ diagram: "diagram";
10034
+ table: "table";
10035
+ image: "image";
10036
+ notes: "notes";
10037
+ body: "body";
10038
+ }>>;
10039
+ interpretation: z.ZodOptional<z.ZodObject<{
10040
+ transcript: z.ZodOptional<z.ZodObject<{
10041
+ text: z.ZodString;
10042
+ confidence: z.ZodEnum<{
10043
+ high: "high";
10044
+ medium: "medium";
10045
+ low: "low";
10046
+ }>;
10047
+ mechanism: z.ZodEnum<{
10048
+ deterministic: "deterministic";
10049
+ model: "model";
10050
+ }>;
10051
+ }, z.core.$strip>>;
10052
+ description: z.ZodOptional<z.ZodString>;
10053
+ by: z.ZodOptional<z.ZodObject<{
10054
+ model: z.ZodString;
10055
+ at: z.ZodString;
10056
+ }, z.core.$strip>>;
10057
+ }, z.core.$strip>>;
8571
10058
  hyperlink: z.ZodOptional<z.ZodString>;
8572
10059
  verticalAlign: z.ZodOptional<z.ZodEnum<{
8573
10060
  superscript: "superscript";
@@ -8782,8 +10269,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8782
10269
  }, z.core.$strip>>;
8783
10270
  alignment: z.ZodOptional<z.ZodEnum<{
8784
10271
  left: "left";
8785
- right: "right";
8786
10272
  center: "center";
10273
+ right: "right";
8787
10274
  justify: "justify";
8788
10275
  }>>;
8789
10276
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -8840,6 +10327,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8840
10327
  hidden: z.ZodOptional<z.ZodBoolean>;
8841
10328
  }, z.core.$strip>>;
8842
10329
  images: z.ZodArray<z.ZodObject<{
10330
+ origin: z.ZodOptional<z.ZodEnum<{
10331
+ chart: "chart";
10332
+ diagram: "diagram";
10333
+ table: "table";
10334
+ image: "image";
10335
+ notes: "notes";
10336
+ body: "body";
10337
+ }>>;
10338
+ interpretation: z.ZodOptional<z.ZodObject<{
10339
+ transcript: z.ZodOptional<z.ZodObject<{
10340
+ text: z.ZodString;
10341
+ confidence: z.ZodEnum<{
10342
+ high: "high";
10343
+ medium: "medium";
10344
+ low: "low";
10345
+ }>;
10346
+ mechanism: z.ZodEnum<{
10347
+ deterministic: "deterministic";
10348
+ model: "model";
10349
+ }>;
10350
+ }, z.core.$strip>>;
10351
+ description: z.ZodOptional<z.ZodString>;
10352
+ by: z.ZodOptional<z.ZodObject<{
10353
+ model: z.ZodString;
10354
+ at: z.ZodString;
10355
+ }, z.core.$strip>>;
10356
+ }, z.core.$strip>>;
8843
10357
  kind: z.ZodLiteral<"image">;
8844
10358
  format: z.ZodEnum<{
8845
10359
  png: "png";
@@ -8859,6 +10373,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8859
10373
  base64: z.ZodString;
8860
10374
  jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
8861
10375
  }, z.core.$strip>>;
10376
+ anchorRunIndex: z.ZodOptional<z.ZodNumber>;
10377
+ anchorOffset: z.ZodOptional<z.ZodNumber>;
10378
+ caption: z.ZodOptional<z.ZodString>;
8862
10379
  floatPosition: z.ZodOptional<z.ZodObject<{
8863
10380
  horizontal: z.ZodUnion<readonly [z.ZodObject<{
8864
10381
  relativeTo: z.ZodEnum<{
@@ -8895,10 +10412,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8895
10412
  }>;
8896
10413
  align: z.ZodEnum<{
8897
10414
  left: "left";
10415
+ center: "center";
8898
10416
  right: "right";
8899
10417
  top: "top";
8900
10418
  bottom: "bottom";
8901
- center: "center";
8902
10419
  inside: "inside";
8903
10420
  outside: "outside";
8904
10421
  }>;
@@ -8938,10 +10455,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8938
10455
  }>;
8939
10456
  align: z.ZodEnum<{
8940
10457
  left: "left";
10458
+ center: "center";
8941
10459
  right: "right";
8942
10460
  top: "top";
8943
10461
  bottom: "bottom";
8944
- center: "center";
8945
10462
  inside: "inside";
8946
10463
  outside: "outside";
8947
10464
  }>;
@@ -9030,10 +10547,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9030
10547
  endColumn: z.ZodNumber;
9031
10548
  }, z.core.$strip>>;
9032
10549
  type: z.ZodEnum<{
9033
- date: "date";
9034
- custom: "custom";
9035
10550
  decimal: "decimal";
9036
10551
  list: "list";
10552
+ date: "date";
10553
+ custom: "custom";
9037
10554
  time: "time";
9038
10555
  whole: "whole";
9039
10556
  textLength: "textLength";
@@ -9747,11 +11264,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9747
11264
  }, z.core.$strip>;
9748
11265
  }, z.core.$strip>, z.ZodObject<{
9749
11266
  pages: z.ZodArray<z.ZodObject<{
11267
+ origin: z.ZodOptional<z.ZodEnum<{
11268
+ chart: "chart";
11269
+ diagram: "diagram";
11270
+ table: "table";
11271
+ image: "image";
11272
+ notes: "notes";
11273
+ body: "body";
11274
+ }>>;
11275
+ interpretation: z.ZodOptional<z.ZodObject<{
11276
+ transcript: z.ZodOptional<z.ZodObject<{
11277
+ text: z.ZodString;
11278
+ confidence: z.ZodEnum<{
11279
+ high: "high";
11280
+ medium: "medium";
11281
+ low: "low";
11282
+ }>;
11283
+ mechanism: z.ZodEnum<{
11284
+ deterministic: "deterministic";
11285
+ model: "model";
11286
+ }>;
11287
+ }, z.core.$strip>>;
11288
+ description: z.ZodOptional<z.ZodString>;
11289
+ by: z.ZodOptional<z.ZodObject<{
11290
+ model: z.ZodString;
11291
+ at: z.ZodString;
11292
+ }, z.core.$strip>>;
11293
+ }, z.core.$strip>>;
9750
11294
  size: z.ZodObject<{
9751
11295
  widthPt: z.ZodNumber;
9752
11296
  heightPt: z.ZodNumber;
9753
11297
  }, z.core.$strip>;
9754
11298
  shapes: z.ZodArray<z.ZodObject<{
11299
+ blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
11300
+ origin: z.ZodOptional<z.ZodEnum<{
11301
+ chart: "chart";
11302
+ diagram: "diagram";
11303
+ table: "table";
11304
+ image: "image";
11305
+ notes: "notes";
11306
+ body: "body";
11307
+ }>>;
11308
+ interpretation: z.ZodOptional<z.ZodObject<{
11309
+ transcript: z.ZodOptional<z.ZodObject<{
11310
+ text: z.ZodString;
11311
+ confidence: z.ZodEnum<{
11312
+ high: "high";
11313
+ medium: "medium";
11314
+ low: "low";
11315
+ }>;
11316
+ mechanism: z.ZodEnum<{
11317
+ deterministic: "deterministic";
11318
+ model: "model";
11319
+ }>;
11320
+ }, z.core.$strip>>;
11321
+ description: z.ZodOptional<z.ZodString>;
11322
+ by: z.ZodOptional<z.ZodObject<{
11323
+ model: z.ZodString;
11324
+ at: z.ZodString;
11325
+ }, z.core.$strip>>;
11326
+ }, z.core.$strip>>;
9755
11327
  name: z.ZodOptional<z.ZodString>;
9756
11328
  frame: z.ZodObject<{
9757
11329
  xPt: z.ZodNumber;
@@ -9795,9 +11367,35 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9795
11367
  widthPt: z.ZodNumber;
9796
11368
  heightPt: z.ZodNumber;
9797
11369
  }, z.core.$strip>>>;
9798
- blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
9799
11370
  }, z.core.$strip>>;
9800
11371
  vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
11372
+ origin: z.ZodOptional<z.ZodEnum<{
11373
+ chart: "chart";
11374
+ diagram: "diagram";
11375
+ table: "table";
11376
+ image: "image";
11377
+ notes: "notes";
11378
+ body: "body";
11379
+ }>>;
11380
+ interpretation: z.ZodOptional<z.ZodObject<{
11381
+ transcript: z.ZodOptional<z.ZodObject<{
11382
+ text: z.ZodString;
11383
+ confidence: z.ZodEnum<{
11384
+ high: "high";
11385
+ medium: "medium";
11386
+ low: "low";
11387
+ }>;
11388
+ mechanism: z.ZodEnum<{
11389
+ deterministic: "deterministic";
11390
+ model: "model";
11391
+ }>;
11392
+ }, z.core.$strip>>;
11393
+ description: z.ZodOptional<z.ZodString>;
11394
+ by: z.ZodOptional<z.ZodObject<{
11395
+ model: z.ZodString;
11396
+ at: z.ZodString;
11397
+ }, z.core.$strip>>;
11398
+ }, z.core.$strip>>;
9801
11399
  kind: z.ZodLiteral<"rect">;
9802
11400
  frame: z.ZodObject<{
9803
11401
  xPt: z.ZodNumber;
@@ -9909,6 +11507,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9909
11507
  heightPt: z.ZodNumber;
9910
11508
  }, z.core.$strip>>>;
9911
11509
  }, z.core.$strip>, z.ZodObject<{
11510
+ origin: z.ZodOptional<z.ZodEnum<{
11511
+ chart: "chart";
11512
+ diagram: "diagram";
11513
+ table: "table";
11514
+ image: "image";
11515
+ notes: "notes";
11516
+ body: "body";
11517
+ }>>;
11518
+ interpretation: z.ZodOptional<z.ZodObject<{
11519
+ transcript: z.ZodOptional<z.ZodObject<{
11520
+ text: z.ZodString;
11521
+ confidence: z.ZodEnum<{
11522
+ high: "high";
11523
+ medium: "medium";
11524
+ low: "low";
11525
+ }>;
11526
+ mechanism: z.ZodEnum<{
11527
+ deterministic: "deterministic";
11528
+ model: "model";
11529
+ }>;
11530
+ }, z.core.$strip>>;
11531
+ description: z.ZodOptional<z.ZodString>;
11532
+ by: z.ZodOptional<z.ZodObject<{
11533
+ model: z.ZodString;
11534
+ at: z.ZodString;
11535
+ }, z.core.$strip>>;
11536
+ }, z.core.$strip>>;
9912
11537
  kind: z.ZodLiteral<"ellipse">;
9913
11538
  frame: z.ZodObject<{
9914
11539
  xPt: z.ZodNumber;
@@ -10020,6 +11645,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10020
11645
  heightPt: z.ZodNumber;
10021
11646
  }, z.core.$strip>>>;
10022
11647
  }, z.core.$strip>, z.ZodObject<{
11648
+ origin: z.ZodOptional<z.ZodEnum<{
11649
+ chart: "chart";
11650
+ diagram: "diagram";
11651
+ table: "table";
11652
+ image: "image";
11653
+ notes: "notes";
11654
+ body: "body";
11655
+ }>>;
11656
+ interpretation: z.ZodOptional<z.ZodObject<{
11657
+ transcript: z.ZodOptional<z.ZodObject<{
11658
+ text: z.ZodString;
11659
+ confidence: z.ZodEnum<{
11660
+ high: "high";
11661
+ medium: "medium";
11662
+ low: "low";
11663
+ }>;
11664
+ mechanism: z.ZodEnum<{
11665
+ deterministic: "deterministic";
11666
+ model: "model";
11667
+ }>;
11668
+ }, z.core.$strip>>;
11669
+ description: z.ZodOptional<z.ZodString>;
11670
+ by: z.ZodOptional<z.ZodObject<{
11671
+ model: z.ZodString;
11672
+ at: z.ZodString;
11673
+ }, z.core.$strip>>;
11674
+ }, z.core.$strip>>;
10023
11675
  kind: z.ZodLiteral<"line">;
10024
11676
  from: z.ZodObject<{
10025
11677
  xPt: z.ZodNumber;
@@ -10081,6 +11733,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10081
11733
  heightPt: z.ZodNumber;
10082
11734
  }, z.core.$strip>>>;
10083
11735
  }, z.core.$strip>, z.ZodObject<{
11736
+ origin: z.ZodOptional<z.ZodEnum<{
11737
+ chart: "chart";
11738
+ diagram: "diagram";
11739
+ table: "table";
11740
+ image: "image";
11741
+ notes: "notes";
11742
+ body: "body";
11743
+ }>>;
11744
+ interpretation: z.ZodOptional<z.ZodObject<{
11745
+ transcript: z.ZodOptional<z.ZodObject<{
11746
+ text: z.ZodString;
11747
+ confidence: z.ZodEnum<{
11748
+ high: "high";
11749
+ medium: "medium";
11750
+ low: "low";
11751
+ }>;
11752
+ mechanism: z.ZodEnum<{
11753
+ deterministic: "deterministic";
11754
+ model: "model";
11755
+ }>;
11756
+ }, z.core.$strip>>;
11757
+ description: z.ZodOptional<z.ZodString>;
11758
+ by: z.ZodOptional<z.ZodObject<{
11759
+ model: z.ZodString;
11760
+ at: z.ZodString;
11761
+ }, z.core.$strip>>;
11762
+ }, z.core.$strip>>;
10084
11763
  kind: z.ZodLiteral<"path">;
10085
11764
  frame: z.ZodObject<{
10086
11765
  xPt: z.ZodNumber;
@@ -10314,6 +11993,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10314
11993
  }, z.core.$strip>;
10315
11994
  }, z.core.$strip>, z.ZodObject<{
10316
11995
  formula: z.ZodObject<{
11996
+ origin: z.ZodOptional<z.ZodEnum<{
11997
+ chart: "chart";
11998
+ diagram: "diagram";
11999
+ table: "table";
12000
+ image: "image";
12001
+ notes: "notes";
12002
+ body: "body";
12003
+ }>>;
12004
+ interpretation: z.ZodOptional<z.ZodObject<{
12005
+ transcript: z.ZodOptional<z.ZodObject<{
12006
+ text: z.ZodString;
12007
+ confidence: z.ZodEnum<{
12008
+ high: "high";
12009
+ medium: "medium";
12010
+ low: "low";
12011
+ }>;
12012
+ mechanism: z.ZodEnum<{
12013
+ deterministic: "deterministic";
12014
+ model: "model";
12015
+ }>;
12016
+ }, z.core.$strip>>;
12017
+ description: z.ZodOptional<z.ZodString>;
12018
+ by: z.ZodOptional<z.ZodObject<{
12019
+ model: z.ZodString;
12020
+ at: z.ZodString;
12021
+ }, z.core.$strip>>;
12022
+ }, z.core.$strip>>;
10317
12023
  mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
10318
12024
  starMath: z.ZodOptional<z.ZodString>;
10319
12025
  presentation: z.ZodOptional<z.ZodObject<{
@@ -10416,4 +12122,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10416
12122
  }, z.core.$strip>], "kind">;
10417
12123
  type ContentDocument = z.infer<typeof ContentDocumentSchema>;
10418
12124
  //#endregion
10419
- export { ContentImageBlock as $, ContentSlide as $t, ContentEmbeddedObjectSchema as A, findConstructMarkerImbalance as An, ContentSheetConditionalFormat as At, ContentFloatPositionSchema as B, ContentSheetImage as Bt, ContentDocumentSchema as C, RunConstructExtent as Cn, ContentSheet as Ct, ContentEmbeddedObjectBlock as D, SheetRuleOperatorSchema as Dn, ContentSheetCellSchema as Dt, ContentEmbeddedObject as E, SheetRuleOperator as En, ContentSheetCellCommentSchema as Et, ContentFloatAxis as F, isRunConstructExtent as Fn, ContentSheetConditionalFormatValueSchema as Ft, ContentGradientFill as G, ContentSheetPrintSettingsSchema as Gt, ContentFontSchema as H, ContentSheetPrintRange as Ht, ContentFloatAxisSchema as I, resolveCellFillColor as In, ContentSheetDataValidation as It, ContentGradientStyleSchema as J, ContentSheetRepeatRange as Jt, ContentGradientFillSchema as K, ContentSheetRange as Kt, ContentFloatOrigin as L, unrecognizedFillKind as Ln, ContentSheetDataValidationSchema as Lt, ContentFillPatternSchema as M, isContentBlock as Mn, ContentSheetConditionalFormatStyle as Mt, ContentFloatAlign as N, isContentConstructEnd as Nn, ContentSheetConditionalFormatStyleSchema as Nt, ContentEmbeddedObjectBlockSchema as O, clampHeadingLevel as On, ContentSheetColumn as Ot, ContentFloatAlignSchema as P, isContentConstructStart as Pn, ContentSheetConditionalFormatValue as Pt, ContentHatchStyleSchema as Q, ContentSheetSchema as Qt, ContentFloatOriginSchema as R, ContentSheetDataValidationType as Rt, ContentDocument as S, RUN_FONT_PROPERTY_SHAPE as Sn, ContentShapeSchema as St, ContentDrawPageSchema as T, RunConstructFault as Tn, ContentSheetCellComment as Tt, ContentFormula as U, ContentSheetPrintRangeSchema as Ut, ContentFont as V, ContentSheetImageSchema as Vt, ContentFormulaSchema as W, ContentSheetPrintSettings as Wt, ContentHatchFillSchema as X, ContentSheetRow as Xt, ContentHatchFill as Y, ContentSheetRepeatRangeSchema as Yt, ContentHatchStyle as Z, ContentSheetRowSchema as Zt, ContentConstructEndSchema as _, DecimalString as _n, ContentRun as _t, ContentBlockSchema as a, ContentStrokeStyle as an, ContentPageBreak as at, ContentDefinedName as b, IMAGE_FORMATS as bn, ContentSectionSchema as bt, ContentCellBorders as c, ContentSubpathSchema as cn, ContentPageFurnitureSchema as ct, ContentCellFillSchema as d, ContentTableCellSchema as dn, ContentParagraphBordersSchema as dt, ContentSlideSchema as en, ContentImageBlockSchema as et, ContentCellPatternType as f, ContentTableRow as fn, ContentParagraphSchema as ft, ContentConstructEnd as g, ContentVectorSchema as gn, ContentPathSegmentSchema as gt, ContentCellValueSchema as h, ContentVector as hn, ContentPathSegment as ht, ContentBlock as i, ContentStrokeSchema as in, ContentListMembershipSchema as it, ContentFillPattern as j, findRunConstructFault as jn, ContentSheetConditionalFormatSchema as jt, ContentEmbeddedObjectKind as k, contentDocumentSharedFields as kn, ContentSheetColumnSchema as kt, ContentCellBordersSchema as l, ContentTable as ln, ContentParagraph as lt, ContentCellValue as m, ContentTableSchema as mn, ContentPathPointSchema as mt, ContentBitmapFill as n, ContentStrokeDash as nn, ContentImageOriginalSchema as nt, ContentBorder as o, ContentStrokeStyleSchema as on, ContentPageBreakSchema as ot, ContentCellPatternTypeSchema as p, ContentTableRowSchema as pn, ContentPathPoint as pt, ContentGradientStyle as q, ContentSheetRangeSchema as qt, ContentBitmapFillSchema as r, ContentStrokeDashSchema as rn, ContentListMembership as rt, ContentBorderSchema as s, ContentSubpath as sn, ContentPageFurniture as st, ConstructMarkerImbalance as t, ContentStroke as tn, ContentImageOriginal as tt, ContentCellFill as u, ContentTableCell as un, ContentParagraphBorders as ut, ContentConstructStart as v, DecimalStringSchema as vn, ContentRunSchema as vt, ContentDrawPage as w, RunConstructExtentSchema as wn, ContentSheetCell as wt, ContentDefinedNameSchema as x, ImageFormat as xn, ContentShape as xt, ContentConstructStartSchema as y, FusedNode as yn, ContentSection as yt, ContentFloatPosition as z, ContentSheetDataValidationTypeSchema as zt };
12125
+ 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 };