document-content-model 7.14.1 → 7.15.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 (43) 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-GVdTKrE7.d.cts} +3 -3
  4. package/dist/{construct-C9cYkjnd.d.ts → construct-GVdTKrE7.d.ts} +3 -3
  5. package/dist/construct.d.cts +1 -1
  6. package/dist/construct.d.ts +1 -1
  7. package/dist/{content-Cj_IC0ge.d.ts → content-BzGOsekw.d.ts} +124 -113
  8. package/dist/content-json-schema-defs.cjs +15 -6
  9. package/dist/content-json-schema-defs.js +15 -6
  10. package/dist/{content-DZDor2Ct.d.cts → content-lXpPw1nC.d.cts} +124 -113
  11. package/dist/content.cjs +10 -2
  12. package/dist/content.d.cts +2 -2
  13. package/dist/content.d.ts +2 -2
  14. package/dist/content.js +10 -3
  15. package/dist/decompose.d.cts +2 -2
  16. package/dist/decompose.d.ts +2 -2
  17. package/dist/definitions.d.cts +1 -1
  18. package/dist/definitions.d.ts +1 -1
  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 +1 -0
  24. package/dist/index.d.cts +4 -4
  25. package/dist/index.d.ts +4 -4
  26. package/dist/index.js +2 -2
  27. package/dist/{package-node-DBtKtaqn.d.cts → package-node-CWW0Evpn.d.cts} +40 -40
  28. package/dist/{package-node-SBZNVEGu.d.ts → package-node-DosdPQ6x.d.ts} +40 -40
  29. package/dist/package-node.d.cts +1 -1
  30. package/dist/package-node.d.ts +1 -1
  31. package/dist/package.d.cts +2 -2
  32. package/dist/package.d.ts +2 -2
  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/table-grid.cjs +3 -3
  38. package/dist/table-grid.d.cts +3 -3
  39. package/dist/table-grid.d.ts +3 -3
  40. package/dist/table-grid.js +3 -3
  41. package/package.json +1 -1
  42. package/schemas/content-document.schema.json +35 -20
  43. package/schemas/document-tree.schema.json +22 -7
@@ -11,11 +11,11 @@ type FusedNode<T> = T & {
11
11
  };
12
12
  declare const ContentOriginSchema: z.ZodEnum<{
13
13
  chart: "chart";
14
- body: "body";
15
14
  diagram: "diagram";
16
15
  table: "table";
17
16
  image: "image";
18
17
  notes: "notes";
18
+ body: "body";
19
19
  }>;
20
20
  type ContentOrigin = z.infer<typeof ContentOriginSchema>;
21
21
  declare const ContentTranscriptSchema: z.ZodObject<{
@@ -54,11 +54,11 @@ type ContentInterpretation = z.infer<typeof ContentInterpretationSchema>;
54
54
  declare const CONTENT_ANNOTATION_FIELDS: {
55
55
  origin: z.ZodOptional<z.ZodEnum<{
56
56
  chart: "chart";
57
- body: "body";
58
57
  diagram: "diagram";
59
58
  table: "table";
60
59
  image: "image";
61
60
  notes: "notes";
61
+ body: "body";
62
62
  }>>;
63
63
  interpretation: z.ZodOptional<z.ZodObject<{
64
64
  transcript: z.ZodOptional<z.ZodObject<{
@@ -110,11 +110,11 @@ type ContentFont = z.infer<typeof ContentFontSchema>;
110
110
  declare const ContentRunSchema: z.ZodObject<{
111
111
  origin: z.ZodOptional<z.ZodEnum<{
112
112
  chart: "chart";
113
- body: "body";
114
113
  diagram: "diagram";
115
114
  table: "table";
116
115
  image: "image";
117
116
  notes: "notes";
117
+ body: "body";
118
118
  }>>;
119
119
  interpretation: z.ZodOptional<z.ZodObject<{
120
120
  transcript: z.ZodOptional<z.ZodObject<{
@@ -205,12 +205,12 @@ declare const RunConstructExtentSchema: z.ZodObject<{
205
205
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
206
206
  kind: z.ZodLiteral<"contentControl">;
207
207
  controlType: z.ZodEnum<{
208
+ date: "date";
208
209
  richText: "richText";
209
210
  plainText: "plainText";
210
211
  checkbox: "checkbox";
211
212
  dropDown: "dropDown";
212
213
  comboBox: "comboBox";
213
- date: "date";
214
214
  picture: "picture";
215
215
  repeatingSection: "repeatingSection";
216
216
  button: "button";
@@ -480,11 +480,11 @@ type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
480
480
  declare const ContentParagraphSchema: z.ZodObject<{
481
481
  origin: z.ZodOptional<z.ZodEnum<{
482
482
  chart: "chart";
483
- body: "body";
484
483
  diagram: "diagram";
485
484
  table: "table";
486
485
  image: "image";
487
486
  notes: "notes";
487
+ body: "body";
488
488
  }>>;
489
489
  interpretation: z.ZodOptional<z.ZodObject<{
490
490
  transcript: z.ZodOptional<z.ZodObject<{
@@ -509,11 +509,11 @@ declare const ContentParagraphSchema: z.ZodObject<{
509
509
  runs: z.ZodArray<z.ZodObject<{
510
510
  origin: z.ZodOptional<z.ZodEnum<{
511
511
  chart: "chart";
512
- body: "body";
513
512
  diagram: "diagram";
514
513
  table: "table";
515
514
  image: "image";
516
515
  notes: "notes";
516
+ body: "body";
517
517
  }>>;
518
518
  interpretation: z.ZodOptional<z.ZodObject<{
519
519
  transcript: z.ZodOptional<z.ZodObject<{
@@ -588,12 +588,12 @@ declare const ContentParagraphSchema: z.ZodObject<{
588
588
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
589
589
  kind: z.ZodLiteral<"contentControl">;
590
590
  controlType: z.ZodEnum<{
591
+ date: "date";
591
592
  richText: "richText";
592
593
  plainText: "plainText";
593
594
  checkbox: "checkbox";
594
595
  dropDown: "dropDown";
595
596
  comboBox: "comboBox";
596
- date: "date";
597
597
  picture: "picture";
598
598
  repeatingSection: "repeatingSection";
599
599
  button: "button";
@@ -1076,11 +1076,11 @@ type ContentImageOriginal = z.infer<typeof ContentImageOriginalSchema>;
1076
1076
  declare const ContentImageBlockSchema: z.ZodObject<{
1077
1077
  origin: z.ZodOptional<z.ZodEnum<{
1078
1078
  chart: "chart";
1079
- body: "body";
1080
1079
  diagram: "diagram";
1081
1080
  table: "table";
1082
1081
  image: "image";
1083
1082
  notes: "notes";
1083
+ body: "body";
1084
1084
  }>>;
1085
1085
  interpretation: z.ZodOptional<z.ZodObject<{
1086
1086
  transcript: z.ZodOptional<z.ZodObject<{
@@ -1244,11 +1244,11 @@ type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
1244
1244
  declare const ContentPageBreakSchema: z.ZodObject<{
1245
1245
  origin: z.ZodOptional<z.ZodEnum<{
1246
1246
  chart: "chart";
1247
- body: "body";
1248
1247
  diagram: "diagram";
1249
1248
  table: "table";
1250
1249
  image: "image";
1251
1250
  notes: "notes";
1251
+ body: "body";
1252
1252
  }>>;
1253
1253
  interpretation: z.ZodOptional<z.ZodObject<{
1254
1254
  transcript: z.ZodOptional<z.ZodObject<{
@@ -1305,12 +1305,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
1305
1305
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
1306
1306
  kind: z.ZodLiteral<"contentControl">;
1307
1307
  controlType: z.ZodEnum<{
1308
+ date: "date";
1308
1309
  richText: "richText";
1309
1310
  plainText: "plainText";
1310
1311
  checkbox: "checkbox";
1311
1312
  dropDown: "dropDown";
1312
1313
  comboBox: "comboBox";
1313
- date: "date";
1314
1314
  picture: "picture";
1315
1315
  repeatingSection: "repeatingSection";
1316
1316
  button: "button";
@@ -1518,10 +1518,14 @@ interface ContentTableRow {
1518
1518
  direction?: TextDirection;
1519
1519
  isHeader?: boolean;
1520
1520
  }
1521
+ interface ContentTableColumn {
1522
+ widthPt: number;
1523
+ isHeader?: boolean;
1524
+ }
1521
1525
  interface ContentTable {
1522
1526
  kind: "table";
1523
1527
  rows: ContentTableRow[];
1524
- columnWidthsPt: number[];
1528
+ columns: ContentTableColumn[];
1525
1529
  sourcePath?: string;
1526
1530
  source?: SourceResidue;
1527
1531
  frames?: LayoutFrame[];
@@ -1563,11 +1567,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1563
1567
  }, z.core.$strip>>>;
1564
1568
  origin: z.ZodOptional<z.ZodEnum<{
1565
1569
  chart: "chart";
1566
- body: "body";
1567
1570
  diagram: "diagram";
1568
1571
  table: "table";
1569
1572
  image: "image";
1570
1573
  notes: "notes";
1574
+ body: "body";
1571
1575
  }>>;
1572
1576
  interpretation: z.ZodOptional<z.ZodObject<{
1573
1577
  transcript: z.ZodOptional<z.ZodObject<{
@@ -1589,22 +1593,22 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1589
1593
  }, z.core.$strip>>;
1590
1594
  }, z.core.$strip>>;
1591
1595
  objectKind: z.ZodEnum<{
1596
+ chart: "chart";
1592
1597
  formula: "formula";
1593
1598
  wordprocessing: "wordprocessing";
1594
1599
  presentation: "presentation";
1595
1600
  spreadsheet: "spreadsheet";
1596
1601
  drawing: "drawing";
1597
- chart: "chart";
1598
1602
  }>;
1599
1603
  document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
1600
1604
  sections: z.ZodArray<z.ZodObject<{
1601
1605
  origin: z.ZodOptional<z.ZodEnum<{
1602
1606
  chart: "chart";
1603
- body: "body";
1604
1607
  diagram: "diagram";
1605
1608
  table: "table";
1606
1609
  image: "image";
1607
1610
  notes: "notes";
1611
+ body: "body";
1608
1612
  }>>;
1609
1613
  interpretation: z.ZodOptional<z.ZodObject<{
1610
1614
  transcript: z.ZodOptional<z.ZodObject<{
@@ -1749,11 +1753,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1749
1753
  slides: z.ZodArray<z.ZodObject<{
1750
1754
  origin: z.ZodOptional<z.ZodEnum<{
1751
1755
  chart: "chart";
1752
- body: "body";
1753
1756
  diagram: "diagram";
1754
1757
  table: "table";
1755
1758
  image: "image";
1756
1759
  notes: "notes";
1760
+ body: "body";
1757
1761
  }>>;
1758
1762
  interpretation: z.ZodOptional<z.ZodObject<{
1759
1763
  transcript: z.ZodOptional<z.ZodObject<{
@@ -1782,11 +1786,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1782
1786
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
1783
1787
  origin: z.ZodOptional<z.ZodEnum<{
1784
1788
  chart: "chart";
1785
- body: "body";
1786
1789
  diagram: "diagram";
1787
1790
  table: "table";
1788
1791
  image: "image";
1789
1792
  notes: "notes";
1793
+ body: "body";
1790
1794
  }>>;
1791
1795
  interpretation: z.ZodOptional<z.ZodObject<{
1792
1796
  transcript: z.ZodOptional<z.ZodObject<{
@@ -1945,11 +1949,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1945
1949
  sheets: z.ZodArray<z.ZodObject<{
1946
1950
  origin: z.ZodOptional<z.ZodEnum<{
1947
1951
  chart: "chart";
1948
- body: "body";
1949
1952
  diagram: "diagram";
1950
1953
  table: "table";
1951
1954
  image: "image";
1952
1955
  notes: "notes";
1956
+ body: "body";
1953
1957
  }>>;
1954
1958
  interpretation: z.ZodOptional<z.ZodObject<{
1955
1959
  transcript: z.ZodOptional<z.ZodObject<{
@@ -1974,11 +1978,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1974
1978
  cells: z.ZodArray<z.ZodObject<{
1975
1979
  origin: z.ZodOptional<z.ZodEnum<{
1976
1980
  chart: "chart";
1977
- body: "body";
1978
1981
  diagram: "diagram";
1979
1982
  table: "table";
1980
1983
  image: "image";
1981
1984
  notes: "notes";
1985
+ body: "body";
1982
1986
  }>>;
1983
1987
  interpretation: z.ZodOptional<z.ZodObject<{
1984
1988
  transcript: z.ZodOptional<z.ZodObject<{
@@ -2054,11 +2058,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2054
2058
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
2055
2059
  origin: z.ZodOptional<z.ZodEnum<{
2056
2060
  chart: "chart";
2057
- body: "body";
2058
2061
  diagram: "diagram";
2059
2062
  table: "table";
2060
2063
  image: "image";
2061
2064
  notes: "notes";
2065
+ body: "body";
2062
2066
  }>>;
2063
2067
  interpretation: z.ZodOptional<z.ZodObject<{
2064
2068
  transcript: z.ZodOptional<z.ZodObject<{
@@ -2353,11 +2357,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2353
2357
  images: z.ZodArray<z.ZodObject<{
2354
2358
  origin: z.ZodOptional<z.ZodEnum<{
2355
2359
  chart: "chart";
2356
- body: "body";
2357
2360
  diagram: "diagram";
2358
2361
  table: "table";
2359
2362
  image: "image";
2360
2363
  notes: "notes";
2364
+ body: "body";
2361
2365
  }>>;
2362
2366
  interpretation: z.ZodOptional<z.ZodObject<{
2363
2367
  transcript: z.ZodOptional<z.ZodObject<{
@@ -2571,11 +2575,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2571
2575
  endColumn: z.ZodNumber;
2572
2576
  }, z.core.$strip>>;
2573
2577
  type: z.ZodEnum<{
2578
+ decimal: "decimal";
2579
+ list: "list";
2574
2580
  date: "date";
2575
2581
  custom: "custom";
2576
2582
  time: "time";
2577
- decimal: "decimal";
2578
- list: "list";
2579
2583
  whole: "whole";
2580
2584
  textLength: "textLength";
2581
2585
  }>;
@@ -3047,10 +3051,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3047
3051
  value: z.ZodObject<{
3048
3052
  type: z.ZodEnum<{
3049
3053
  formula: "formula";
3054
+ percent: "percent";
3050
3055
  num: "num";
3051
- min: "min";
3052
3056
  max: "max";
3053
- percent: "percent";
3057
+ min: "min";
3054
3058
  percentile: "percentile";
3055
3059
  }>;
3056
3060
  value: z.ZodOptional<z.ZodString>;
@@ -3094,10 +3098,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3094
3098
  min: z.ZodObject<{
3095
3099
  type: z.ZodEnum<{
3096
3100
  formula: "formula";
3101
+ percent: "percent";
3097
3102
  num: "num";
3098
- min: "min";
3099
3103
  max: "max";
3100
- percent: "percent";
3104
+ min: "min";
3101
3105
  percentile: "percentile";
3102
3106
  }>;
3103
3107
  value: z.ZodOptional<z.ZodString>;
@@ -3105,10 +3109,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3105
3109
  max: z.ZodObject<{
3106
3110
  type: z.ZodEnum<{
3107
3111
  formula: "formula";
3112
+ percent: "percent";
3108
3113
  num: "num";
3109
- min: "min";
3110
3114
  max: "max";
3111
- percent: "percent";
3115
+ min: "min";
3112
3116
  percentile: "percentile";
3113
3117
  }>;
3114
3118
  value: z.ZodOptional<z.ZodString>;
@@ -3153,10 +3157,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3153
3157
  thresholds: z.ZodArray<z.ZodObject<{
3154
3158
  type: z.ZodEnum<{
3155
3159
  formula: "formula";
3160
+ percent: "percent";
3156
3161
  num: "num";
3157
- min: "min";
3158
3162
  max: "max";
3159
- percent: "percent";
3163
+ min: "min";
3160
3164
  percentile: "percentile";
3161
3165
  }>;
3162
3166
  value: z.ZodOptional<z.ZodString>;
@@ -3290,11 +3294,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3290
3294
  pages: z.ZodArray<z.ZodObject<{
3291
3295
  origin: z.ZodOptional<z.ZodEnum<{
3292
3296
  chart: "chart";
3293
- body: "body";
3294
3297
  diagram: "diagram";
3295
3298
  table: "table";
3296
3299
  image: "image";
3297
3300
  notes: "notes";
3301
+ body: "body";
3298
3302
  }>>;
3299
3303
  interpretation: z.ZodOptional<z.ZodObject<{
3300
3304
  transcript: z.ZodOptional<z.ZodObject<{
@@ -3323,11 +3327,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3323
3327
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
3324
3328
  origin: z.ZodOptional<z.ZodEnum<{
3325
3329
  chart: "chart";
3326
- body: "body";
3327
3330
  diagram: "diagram";
3328
3331
  table: "table";
3329
3332
  image: "image";
3330
3333
  notes: "notes";
3334
+ body: "body";
3331
3335
  }>>;
3332
3336
  interpretation: z.ZodOptional<z.ZodObject<{
3333
3337
  transcript: z.ZodOptional<z.ZodObject<{
@@ -3396,11 +3400,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3396
3400
  vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
3397
3401
  origin: z.ZodOptional<z.ZodEnum<{
3398
3402
  chart: "chart";
3399
- body: "body";
3400
3403
  diagram: "diagram";
3401
3404
  table: "table";
3402
3405
  image: "image";
3403
3406
  notes: "notes";
3407
+ body: "body";
3404
3408
  }>>;
3405
3409
  interpretation: z.ZodOptional<z.ZodObject<{
3406
3410
  transcript: z.ZodOptional<z.ZodObject<{
@@ -3534,11 +3538,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3534
3538
  }, z.core.$strip>, z.ZodObject<{
3535
3539
  origin: z.ZodOptional<z.ZodEnum<{
3536
3540
  chart: "chart";
3537
- body: "body";
3538
3541
  diagram: "diagram";
3539
3542
  table: "table";
3540
3543
  image: "image";
3541
3544
  notes: "notes";
3545
+ body: "body";
3542
3546
  }>>;
3543
3547
  interpretation: z.ZodOptional<z.ZodObject<{
3544
3548
  transcript: z.ZodOptional<z.ZodObject<{
@@ -3672,11 +3676,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3672
3676
  }, z.core.$strip>, z.ZodObject<{
3673
3677
  origin: z.ZodOptional<z.ZodEnum<{
3674
3678
  chart: "chart";
3675
- body: "body";
3676
3679
  diagram: "diagram";
3677
3680
  table: "table";
3678
3681
  image: "image";
3679
3682
  notes: "notes";
3683
+ body: "body";
3680
3684
  }>>;
3681
3685
  interpretation: z.ZodOptional<z.ZodObject<{
3682
3686
  transcript: z.ZodOptional<z.ZodObject<{
@@ -3760,11 +3764,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
3760
3764
  }, z.core.$strip>, z.ZodObject<{
3761
3765
  origin: z.ZodOptional<z.ZodEnum<{
3762
3766
  chart: "chart";
3763
- body: "body";
3764
3767
  diagram: "diagram";
3765
3768
  table: "table";
3766
3769
  image: "image";
3767
3770
  notes: "notes";
3771
+ body: "body";
3768
3772
  }>>;
3769
3773
  interpretation: z.ZodOptional<z.ZodObject<{
3770
3774
  transcript: z.ZodOptional<z.ZodObject<{
@@ -4020,11 +4024,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
4020
4024
  formula: z.ZodObject<{
4021
4025
  origin: z.ZodOptional<z.ZodEnum<{
4022
4026
  chart: "chart";
4023
- body: "body";
4024
4027
  diagram: "diagram";
4025
4028
  table: "table";
4026
4029
  image: "image";
4027
4030
  notes: "notes";
4031
+ body: "body";
4028
4032
  }>>;
4029
4033
  interpretation: z.ZodOptional<z.ZodObject<{
4030
4034
  transcript: z.ZodOptional<z.ZodObject<{
@@ -4417,11 +4421,11 @@ declare function unrecognizedFillKind(fill: {
4417
4421
  declare const ContentTableCellSchema: z.ZodObject<{
4418
4422
  origin: z.ZodOptional<z.ZodEnum<{
4419
4423
  chart: "chart";
4420
- body: "body";
4421
4424
  diagram: "diagram";
4422
4425
  table: "table";
4423
4426
  image: "image";
4424
4427
  notes: "notes";
4428
+ body: "body";
4425
4429
  }>>;
4426
4430
  interpretation: z.ZodOptional<z.ZodObject<{
4427
4431
  transcript: z.ZodOptional<z.ZodObject<{
@@ -4644,11 +4648,11 @@ declare const ContentTableRowSchema: z.ZodObject<{
4644
4648
  cells: z.ZodArray<z.ZodObject<{
4645
4649
  origin: z.ZodOptional<z.ZodEnum<{
4646
4650
  chart: "chart";
4647
- body: "body";
4648
4651
  diagram: "diagram";
4649
4652
  table: "table";
4650
4653
  image: "image";
4651
4654
  notes: "notes";
4655
+ body: "body";
4652
4656
  }>>;
4653
4657
  interpretation: z.ZodOptional<z.ZodObject<{
4654
4658
  transcript: z.ZodOptional<z.ZodObject<{
@@ -4874,14 +4878,18 @@ declare const ContentTableRowSchema: z.ZodObject<{
4874
4878
  }>>;
4875
4879
  isHeader: z.ZodOptional<z.ZodBoolean>;
4876
4880
  }, z.core.$strip>;
4881
+ declare const ContentTableColumnSchema: z.ZodObject<{
4882
+ widthPt: z.ZodNumber;
4883
+ isHeader: z.ZodOptional<z.ZodBoolean>;
4884
+ }, z.core.$strip>;
4877
4885
  declare const ContentTableSchema: z.ZodObject<{
4878
4886
  origin: z.ZodOptional<z.ZodEnum<{
4879
4887
  chart: "chart";
4880
- body: "body";
4881
4888
  diagram: "diagram";
4882
4889
  table: "table";
4883
4890
  image: "image";
4884
4891
  notes: "notes";
4892
+ body: "body";
4885
4893
  }>>;
4886
4894
  interpretation: z.ZodOptional<z.ZodObject<{
4887
4895
  transcript: z.ZodOptional<z.ZodObject<{
@@ -4907,11 +4915,11 @@ declare const ContentTableSchema: z.ZodObject<{
4907
4915
  cells: z.ZodArray<z.ZodObject<{
4908
4916
  origin: z.ZodOptional<z.ZodEnum<{
4909
4917
  chart: "chart";
4910
- body: "body";
4911
4918
  diagram: "diagram";
4912
4919
  table: "table";
4913
4920
  image: "image";
4914
4921
  notes: "notes";
4922
+ body: "body";
4915
4923
  }>>;
4916
4924
  interpretation: z.ZodOptional<z.ZodObject<{
4917
4925
  transcript: z.ZodOptional<z.ZodObject<{
@@ -5137,7 +5145,10 @@ declare const ContentTableSchema: z.ZodObject<{
5137
5145
  }>>;
5138
5146
  isHeader: z.ZodOptional<z.ZodBoolean>;
5139
5147
  }, z.core.$strip>>;
5140
- columnWidthsPt: z.ZodArray<z.ZodNumber>;
5148
+ columns: z.ZodArray<z.ZodObject<{
5149
+ widthPt: z.ZodNumber;
5150
+ isHeader: z.ZodOptional<z.ZodBoolean>;
5151
+ }, z.core.$strip>>;
5141
5152
  sourcePath: z.ZodOptional<z.ZodString>;
5142
5153
  source: z.ZodOptional<z.ZodObject<{
5143
5154
  format: z.ZodEnum<{
@@ -5177,11 +5188,11 @@ type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
5177
5188
  declare const ContentSectionSchema: z.ZodObject<{
5178
5189
  origin: z.ZodOptional<z.ZodEnum<{
5179
5190
  chart: "chart";
5180
- body: "body";
5181
5191
  diagram: "diagram";
5182
5192
  table: "table";
5183
5193
  image: "image";
5184
5194
  notes: "notes";
5195
+ body: "body";
5185
5196
  }>>;
5186
5197
  interpretation: z.ZodOptional<z.ZodObject<{
5187
5198
  transcript: z.ZodOptional<z.ZodObject<{
@@ -5260,11 +5271,11 @@ declare const ContentShapeSchema: z.ZodObject<{
5260
5271
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
5261
5272
  origin: z.ZodOptional<z.ZodEnum<{
5262
5273
  chart: "chart";
5263
- body: "body";
5264
5274
  diagram: "diagram";
5265
5275
  table: "table";
5266
5276
  image: "image";
5267
5277
  notes: "notes";
5278
+ body: "body";
5268
5279
  }>>;
5269
5280
  interpretation: z.ZodOptional<z.ZodObject<{
5270
5281
  transcript: z.ZodOptional<z.ZodObject<{
@@ -5334,11 +5345,11 @@ type ContentShape = z.infer<typeof ContentShapeSchema>;
5334
5345
  declare const ContentSlideSchema: z.ZodObject<{
5335
5346
  origin: z.ZodOptional<z.ZodEnum<{
5336
5347
  chart: "chart";
5337
- body: "body";
5338
5348
  diagram: "diagram";
5339
5349
  table: "table";
5340
5350
  image: "image";
5341
5351
  notes: "notes";
5352
+ body: "body";
5342
5353
  }>>;
5343
5354
  interpretation: z.ZodOptional<z.ZodObject<{
5344
5355
  transcript: z.ZodOptional<z.ZodObject<{
@@ -5367,11 +5378,11 @@ declare const ContentSlideSchema: z.ZodObject<{
5367
5378
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
5368
5379
  origin: z.ZodOptional<z.ZodEnum<{
5369
5380
  chart: "chart";
5370
- body: "body";
5371
5381
  diagram: "diagram";
5372
5382
  table: "table";
5373
5383
  image: "image";
5374
5384
  notes: "notes";
5385
+ body: "body";
5375
5386
  }>>;
5376
5387
  interpretation: z.ZodOptional<z.ZodObject<{
5377
5388
  transcript: z.ZodOptional<z.ZodObject<{
@@ -5510,11 +5521,11 @@ type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
5510
5521
  declare const ContentSheetCellSchema: z.ZodObject<{
5511
5522
  origin: z.ZodOptional<z.ZodEnum<{
5512
5523
  chart: "chart";
5513
- body: "body";
5514
5524
  diagram: "diagram";
5515
5525
  table: "table";
5516
5526
  image: "image";
5517
5527
  notes: "notes";
5528
+ body: "body";
5518
5529
  }>>;
5519
5530
  interpretation: z.ZodOptional<z.ZodObject<{
5520
5531
  transcript: z.ZodOptional<z.ZodObject<{
@@ -5590,11 +5601,11 @@ declare const ContentSheetCellSchema: z.ZodObject<{
5590
5601
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
5591
5602
  origin: z.ZodOptional<z.ZodEnum<{
5592
5603
  chart: "chart";
5593
- body: "body";
5594
5604
  diagram: "diagram";
5595
5605
  table: "table";
5596
5606
  image: "image";
5597
5607
  notes: "notes";
5608
+ body: "body";
5598
5609
  }>>;
5599
5610
  interpretation: z.ZodOptional<z.ZodObject<{
5600
5611
  transcript: z.ZodOptional<z.ZodObject<{
@@ -5962,11 +5973,11 @@ declare const SheetRuleOperatorSchema: z.ZodEnum<{
5962
5973
  }>;
5963
5974
  type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
5964
5975
  declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
5976
+ decimal: "decimal";
5977
+ list: "list";
5965
5978
  date: "date";
5966
5979
  custom: "custom";
5967
5980
  time: "time";
5968
- decimal: "decimal";
5969
- list: "list";
5970
5981
  whole: "whole";
5971
5982
  textLength: "textLength";
5972
5983
  }>;
@@ -5979,11 +5990,11 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
5979
5990
  endColumn: z.ZodNumber;
5980
5991
  }, z.core.$strip>>;
5981
5992
  type: z.ZodEnum<{
5993
+ decimal: "decimal";
5994
+ list: "list";
5982
5995
  date: "date";
5983
5996
  custom: "custom";
5984
5997
  time: "time";
5985
- decimal: "decimal";
5986
- list: "list";
5987
5998
  whole: "whole";
5988
5999
  textLength: "textLength";
5989
6000
  }>;
@@ -6069,10 +6080,10 @@ type ContentSheetConditionalFormatStyle = z.infer<typeof ContentSheetConditional
6069
6080
  declare const ContentSheetConditionalFormatValueSchema: z.ZodObject<{
6070
6081
  type: z.ZodEnum<{
6071
6082
  formula: "formula";
6083
+ percent: "percent";
6072
6084
  num: "num";
6073
- min: "min";
6074
6085
  max: "max";
6075
- percent: "percent";
6086
+ min: "min";
6076
6087
  percentile: "percentile";
6077
6088
  }>;
6078
6089
  value: z.ZodOptional<z.ZodString>;
@@ -6501,10 +6512,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
6501
6512
  value: z.ZodObject<{
6502
6513
  type: z.ZodEnum<{
6503
6514
  formula: "formula";
6515
+ percent: "percent";
6504
6516
  num: "num";
6505
- min: "min";
6506
6517
  max: "max";
6507
- percent: "percent";
6518
+ min: "min";
6508
6519
  percentile: "percentile";
6509
6520
  }>;
6510
6521
  value: z.ZodOptional<z.ZodString>;
@@ -6548,10 +6559,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
6548
6559
  min: z.ZodObject<{
6549
6560
  type: z.ZodEnum<{
6550
6561
  formula: "formula";
6562
+ percent: "percent";
6551
6563
  num: "num";
6552
- min: "min";
6553
6564
  max: "max";
6554
- percent: "percent";
6565
+ min: "min";
6555
6566
  percentile: "percentile";
6556
6567
  }>;
6557
6568
  value: z.ZodOptional<z.ZodString>;
@@ -6559,10 +6570,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
6559
6570
  max: z.ZodObject<{
6560
6571
  type: z.ZodEnum<{
6561
6572
  formula: "formula";
6573
+ percent: "percent";
6562
6574
  num: "num";
6563
- min: "min";
6564
6575
  max: "max";
6565
- percent: "percent";
6576
+ min: "min";
6566
6577
  percentile: "percentile";
6567
6578
  }>;
6568
6579
  value: z.ZodOptional<z.ZodString>;
@@ -6607,10 +6618,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
6607
6618
  thresholds: z.ZodArray<z.ZodObject<{
6608
6619
  type: z.ZodEnum<{
6609
6620
  formula: "formula";
6621
+ percent: "percent";
6610
6622
  num: "num";
6611
- min: "min";
6612
6623
  max: "max";
6613
- percent: "percent";
6624
+ min: "min";
6614
6625
  percentile: "percentile";
6615
6626
  }>;
6616
6627
  value: z.ZodOptional<z.ZodString>;
@@ -6651,11 +6662,11 @@ type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalForma
6651
6662
  declare const ContentSheetImageSchema: z.ZodObject<{
6652
6663
  origin: z.ZodOptional<z.ZodEnum<{
6653
6664
  chart: "chart";
6654
- body: "body";
6655
6665
  diagram: "diagram";
6656
6666
  table: "table";
6657
6667
  image: "image";
6658
6668
  notes: "notes";
6669
+ body: "body";
6659
6670
  }>>;
6660
6671
  interpretation: z.ZodOptional<z.ZodObject<{
6661
6672
  transcript: z.ZodOptional<z.ZodObject<{
@@ -6823,11 +6834,11 @@ type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
6823
6834
  declare const ContentSheetSchema: z.ZodObject<{
6824
6835
  origin: z.ZodOptional<z.ZodEnum<{
6825
6836
  chart: "chart";
6826
- body: "body";
6827
6837
  diagram: "diagram";
6828
6838
  table: "table";
6829
6839
  image: "image";
6830
6840
  notes: "notes";
6841
+ body: "body";
6831
6842
  }>>;
6832
6843
  interpretation: z.ZodOptional<z.ZodObject<{
6833
6844
  transcript: z.ZodOptional<z.ZodObject<{
@@ -6852,11 +6863,11 @@ declare const ContentSheetSchema: z.ZodObject<{
6852
6863
  cells: z.ZodArray<z.ZodObject<{
6853
6864
  origin: z.ZodOptional<z.ZodEnum<{
6854
6865
  chart: "chart";
6855
- body: "body";
6856
6866
  diagram: "diagram";
6857
6867
  table: "table";
6858
6868
  image: "image";
6859
6869
  notes: "notes";
6870
+ body: "body";
6860
6871
  }>>;
6861
6872
  interpretation: z.ZodOptional<z.ZodObject<{
6862
6873
  transcript: z.ZodOptional<z.ZodObject<{
@@ -6932,11 +6943,11 @@ declare const ContentSheetSchema: z.ZodObject<{
6932
6943
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
6933
6944
  origin: z.ZodOptional<z.ZodEnum<{
6934
6945
  chart: "chart";
6935
- body: "body";
6936
6946
  diagram: "diagram";
6937
6947
  table: "table";
6938
6948
  image: "image";
6939
6949
  notes: "notes";
6950
+ body: "body";
6940
6951
  }>>;
6941
6952
  interpretation: z.ZodOptional<z.ZodObject<{
6942
6953
  transcript: z.ZodOptional<z.ZodObject<{
@@ -7231,11 +7242,11 @@ declare const ContentSheetSchema: z.ZodObject<{
7231
7242
  images: z.ZodArray<z.ZodObject<{
7232
7243
  origin: z.ZodOptional<z.ZodEnum<{
7233
7244
  chart: "chart";
7234
- body: "body";
7235
7245
  diagram: "diagram";
7236
7246
  table: "table";
7237
7247
  image: "image";
7238
7248
  notes: "notes";
7249
+ body: "body";
7239
7250
  }>>;
7240
7251
  interpretation: z.ZodOptional<z.ZodObject<{
7241
7252
  transcript: z.ZodOptional<z.ZodObject<{
@@ -7449,11 +7460,11 @@ declare const ContentSheetSchema: z.ZodObject<{
7449
7460
  endColumn: z.ZodNumber;
7450
7461
  }, z.core.$strip>>;
7451
7462
  type: z.ZodEnum<{
7463
+ decimal: "decimal";
7464
+ list: "list";
7452
7465
  date: "date";
7453
7466
  custom: "custom";
7454
7467
  time: "time";
7455
- decimal: "decimal";
7456
- list: "list";
7457
7468
  whole: "whole";
7458
7469
  textLength: "textLength";
7459
7470
  }>;
@@ -7925,10 +7936,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7925
7936
  value: z.ZodObject<{
7926
7937
  type: z.ZodEnum<{
7927
7938
  formula: "formula";
7939
+ percent: "percent";
7928
7940
  num: "num";
7929
- min: "min";
7930
7941
  max: "max";
7931
- percent: "percent";
7942
+ min: "min";
7932
7943
  percentile: "percentile";
7933
7944
  }>;
7934
7945
  value: z.ZodOptional<z.ZodString>;
@@ -7972,10 +7983,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7972
7983
  min: z.ZodObject<{
7973
7984
  type: z.ZodEnum<{
7974
7985
  formula: "formula";
7986
+ percent: "percent";
7975
7987
  num: "num";
7976
- min: "min";
7977
7988
  max: "max";
7978
- percent: "percent";
7989
+ min: "min";
7979
7990
  percentile: "percentile";
7980
7991
  }>;
7981
7992
  value: z.ZodOptional<z.ZodString>;
@@ -7983,10 +7994,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7983
7994
  max: z.ZodObject<{
7984
7995
  type: z.ZodEnum<{
7985
7996
  formula: "formula";
7997
+ percent: "percent";
7986
7998
  num: "num";
7987
- min: "min";
7988
7999
  max: "max";
7989
- percent: "percent";
8000
+ min: "min";
7990
8001
  percentile: "percentile";
7991
8002
  }>;
7992
8003
  value: z.ZodOptional<z.ZodString>;
@@ -8031,10 +8042,10 @@ declare const ContentSheetSchema: z.ZodObject<{
8031
8042
  thresholds: z.ZodArray<z.ZodObject<{
8032
8043
  type: z.ZodEnum<{
8033
8044
  formula: "formula";
8045
+ percent: "percent";
8034
8046
  num: "num";
8035
- min: "min";
8036
8047
  max: "max";
8037
- percent: "percent";
8048
+ min: "min";
8038
8049
  percentile: "percentile";
8039
8050
  }>;
8040
8051
  value: z.ZodOptional<z.ZodString>;
@@ -8294,11 +8305,11 @@ type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
8294
8305
  declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8295
8306
  origin: z.ZodOptional<z.ZodEnum<{
8296
8307
  chart: "chart";
8297
- body: "body";
8298
8308
  diagram: "diagram";
8299
8309
  table: "table";
8300
8310
  image: "image";
8301
8311
  notes: "notes";
8312
+ body: "body";
8302
8313
  }>>;
8303
8314
  interpretation: z.ZodOptional<z.ZodObject<{
8304
8315
  transcript: z.ZodOptional<z.ZodObject<{
@@ -8432,11 +8443,11 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8432
8443
  }, z.core.$strip>, z.ZodObject<{
8433
8444
  origin: z.ZodOptional<z.ZodEnum<{
8434
8445
  chart: "chart";
8435
- body: "body";
8436
8446
  diagram: "diagram";
8437
8447
  table: "table";
8438
8448
  image: "image";
8439
8449
  notes: "notes";
8450
+ body: "body";
8440
8451
  }>>;
8441
8452
  interpretation: z.ZodOptional<z.ZodObject<{
8442
8453
  transcript: z.ZodOptional<z.ZodObject<{
@@ -8570,11 +8581,11 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8570
8581
  }, z.core.$strip>, z.ZodObject<{
8571
8582
  origin: z.ZodOptional<z.ZodEnum<{
8572
8583
  chart: "chart";
8573
- body: "body";
8574
8584
  diagram: "diagram";
8575
8585
  table: "table";
8576
8586
  image: "image";
8577
8587
  notes: "notes";
8588
+ body: "body";
8578
8589
  }>>;
8579
8590
  interpretation: z.ZodOptional<z.ZodObject<{
8580
8591
  transcript: z.ZodOptional<z.ZodObject<{
@@ -8658,11 +8669,11 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8658
8669
  }, z.core.$strip>, z.ZodObject<{
8659
8670
  origin: z.ZodOptional<z.ZodEnum<{
8660
8671
  chart: "chart";
8661
- body: "body";
8662
8672
  diagram: "diagram";
8663
8673
  table: "table";
8664
8674
  image: "image";
8665
8675
  notes: "notes";
8676
+ body: "body";
8666
8677
  }>>;
8667
8678
  interpretation: z.ZodOptional<z.ZodObject<{
8668
8679
  transcript: z.ZodOptional<z.ZodObject<{
@@ -8830,11 +8841,11 @@ type ContentVector = z.infer<typeof ContentVectorSchema>;
8830
8841
  declare const ContentDrawPageSchema: z.ZodObject<{
8831
8842
  origin: z.ZodOptional<z.ZodEnum<{
8832
8843
  chart: "chart";
8833
- body: "body";
8834
8844
  diagram: "diagram";
8835
8845
  table: "table";
8836
8846
  image: "image";
8837
8847
  notes: "notes";
8848
+ body: "body";
8838
8849
  }>>;
8839
8850
  interpretation: z.ZodOptional<z.ZodObject<{
8840
8851
  transcript: z.ZodOptional<z.ZodObject<{
@@ -8863,11 +8874,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
8863
8874
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
8864
8875
  origin: z.ZodOptional<z.ZodEnum<{
8865
8876
  chart: "chart";
8866
- body: "body";
8867
8877
  diagram: "diagram";
8868
8878
  table: "table";
8869
8879
  image: "image";
8870
8880
  notes: "notes";
8881
+ body: "body";
8871
8882
  }>>;
8872
8883
  interpretation: z.ZodOptional<z.ZodObject<{
8873
8884
  transcript: z.ZodOptional<z.ZodObject<{
@@ -8936,11 +8947,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
8936
8947
  vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
8937
8948
  origin: z.ZodOptional<z.ZodEnum<{
8938
8949
  chart: "chart";
8939
- body: "body";
8940
8950
  diagram: "diagram";
8941
8951
  table: "table";
8942
8952
  image: "image";
8943
8953
  notes: "notes";
8954
+ body: "body";
8944
8955
  }>>;
8945
8956
  interpretation: z.ZodOptional<z.ZodObject<{
8946
8957
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9074,11 +9085,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
9074
9085
  }, z.core.$strip>, z.ZodObject<{
9075
9086
  origin: z.ZodOptional<z.ZodEnum<{
9076
9087
  chart: "chart";
9077
- body: "body";
9078
9088
  diagram: "diagram";
9079
9089
  table: "table";
9080
9090
  image: "image";
9081
9091
  notes: "notes";
9092
+ body: "body";
9082
9093
  }>>;
9083
9094
  interpretation: z.ZodOptional<z.ZodObject<{
9084
9095
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9212,11 +9223,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
9212
9223
  }, z.core.$strip>, z.ZodObject<{
9213
9224
  origin: z.ZodOptional<z.ZodEnum<{
9214
9225
  chart: "chart";
9215
- body: "body";
9216
9226
  diagram: "diagram";
9217
9227
  table: "table";
9218
9228
  image: "image";
9219
9229
  notes: "notes";
9230
+ body: "body";
9220
9231
  }>>;
9221
9232
  interpretation: z.ZodOptional<z.ZodObject<{
9222
9233
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9300,11 +9311,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
9300
9311
  }, z.core.$strip>, z.ZodObject<{
9301
9312
  origin: z.ZodOptional<z.ZodEnum<{
9302
9313
  chart: "chart";
9303
- body: "body";
9304
9314
  diagram: "diagram";
9305
9315
  table: "table";
9306
9316
  image: "image";
9307
9317
  notes: "notes";
9318
+ body: "body";
9308
9319
  }>>;
9309
9320
  interpretation: z.ZodOptional<z.ZodObject<{
9310
9321
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9493,11 +9504,11 @@ type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
9493
9504
  declare const ContentFormulaSchema: z.ZodObject<{
9494
9505
  origin: z.ZodOptional<z.ZodEnum<{
9495
9506
  chart: "chart";
9496
- body: "body";
9497
9507
  diagram: "diagram";
9498
9508
  table: "table";
9499
9509
  image: "image";
9500
9510
  notes: "notes";
9511
+ body: "body";
9501
9512
  }>>;
9502
9513
  interpretation: z.ZodOptional<z.ZodObject<{
9503
9514
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9606,11 +9617,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9606
9617
  sections: z.ZodArray<z.ZodObject<{
9607
9618
  origin: z.ZodOptional<z.ZodEnum<{
9608
9619
  chart: "chart";
9609
- body: "body";
9610
9620
  diagram: "diagram";
9611
9621
  table: "table";
9612
9622
  image: "image";
9613
9623
  notes: "notes";
9624
+ body: "body";
9614
9625
  }>>;
9615
9626
  interpretation: z.ZodOptional<z.ZodObject<{
9616
9627
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9755,11 +9766,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9755
9766
  slides: z.ZodArray<z.ZodObject<{
9756
9767
  origin: z.ZodOptional<z.ZodEnum<{
9757
9768
  chart: "chart";
9758
- body: "body";
9759
9769
  diagram: "diagram";
9760
9770
  table: "table";
9761
9771
  image: "image";
9762
9772
  notes: "notes";
9773
+ body: "body";
9763
9774
  }>>;
9764
9775
  interpretation: z.ZodOptional<z.ZodObject<{
9765
9776
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9788,11 +9799,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9788
9799
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
9789
9800
  origin: z.ZodOptional<z.ZodEnum<{
9790
9801
  chart: "chart";
9791
- body: "body";
9792
9802
  diagram: "diagram";
9793
9803
  table: "table";
9794
9804
  image: "image";
9795
9805
  notes: "notes";
9806
+ body: "body";
9796
9807
  }>>;
9797
9808
  interpretation: z.ZodOptional<z.ZodObject<{
9798
9809
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9951,11 +9962,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9951
9962
  sheets: z.ZodArray<z.ZodObject<{
9952
9963
  origin: z.ZodOptional<z.ZodEnum<{
9953
9964
  chart: "chart";
9954
- body: "body";
9955
9965
  diagram: "diagram";
9956
9966
  table: "table";
9957
9967
  image: "image";
9958
9968
  notes: "notes";
9969
+ body: "body";
9959
9970
  }>>;
9960
9971
  interpretation: z.ZodOptional<z.ZodObject<{
9961
9972
  transcript: z.ZodOptional<z.ZodObject<{
@@ -9980,11 +9991,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9980
9991
  cells: z.ZodArray<z.ZodObject<{
9981
9992
  origin: z.ZodOptional<z.ZodEnum<{
9982
9993
  chart: "chart";
9983
- body: "body";
9984
9994
  diagram: "diagram";
9985
9995
  table: "table";
9986
9996
  image: "image";
9987
9997
  notes: "notes";
9998
+ body: "body";
9988
9999
  }>>;
9989
10000
  interpretation: z.ZodOptional<z.ZodObject<{
9990
10001
  transcript: z.ZodOptional<z.ZodObject<{
@@ -10060,11 +10071,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10060
10071
  runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
10061
10072
  origin: z.ZodOptional<z.ZodEnum<{
10062
10073
  chart: "chart";
10063
- body: "body";
10064
10074
  diagram: "diagram";
10065
10075
  table: "table";
10066
10076
  image: "image";
10067
10077
  notes: "notes";
10078
+ body: "body";
10068
10079
  }>>;
10069
10080
  interpretation: z.ZodOptional<z.ZodObject<{
10070
10081
  transcript: z.ZodOptional<z.ZodObject<{
@@ -10359,11 +10370,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10359
10370
  images: z.ZodArray<z.ZodObject<{
10360
10371
  origin: z.ZodOptional<z.ZodEnum<{
10361
10372
  chart: "chart";
10362
- body: "body";
10363
10373
  diagram: "diagram";
10364
10374
  table: "table";
10365
10375
  image: "image";
10366
10376
  notes: "notes";
10377
+ body: "body";
10367
10378
  }>>;
10368
10379
  interpretation: z.ZodOptional<z.ZodObject<{
10369
10380
  transcript: z.ZodOptional<z.ZodObject<{
@@ -10577,11 +10588,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10577
10588
  endColumn: z.ZodNumber;
10578
10589
  }, z.core.$strip>>;
10579
10590
  type: z.ZodEnum<{
10591
+ decimal: "decimal";
10592
+ list: "list";
10580
10593
  date: "date";
10581
10594
  custom: "custom";
10582
10595
  time: "time";
10583
- decimal: "decimal";
10584
- list: "list";
10585
10596
  whole: "whole";
10586
10597
  textLength: "textLength";
10587
10598
  }>;
@@ -11053,10 +11064,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11053
11064
  value: z.ZodObject<{
11054
11065
  type: z.ZodEnum<{
11055
11066
  formula: "formula";
11067
+ percent: "percent";
11056
11068
  num: "num";
11057
- min: "min";
11058
11069
  max: "max";
11059
- percent: "percent";
11070
+ min: "min";
11060
11071
  percentile: "percentile";
11061
11072
  }>;
11062
11073
  value: z.ZodOptional<z.ZodString>;
@@ -11100,10 +11111,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11100
11111
  min: z.ZodObject<{
11101
11112
  type: z.ZodEnum<{
11102
11113
  formula: "formula";
11114
+ percent: "percent";
11103
11115
  num: "num";
11104
- min: "min";
11105
11116
  max: "max";
11106
- percent: "percent";
11117
+ min: "min";
11107
11118
  percentile: "percentile";
11108
11119
  }>;
11109
11120
  value: z.ZodOptional<z.ZodString>;
@@ -11111,10 +11122,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11111
11122
  max: z.ZodObject<{
11112
11123
  type: z.ZodEnum<{
11113
11124
  formula: "formula";
11125
+ percent: "percent";
11114
11126
  num: "num";
11115
- min: "min";
11116
11127
  max: "max";
11117
- percent: "percent";
11128
+ min: "min";
11118
11129
  percentile: "percentile";
11119
11130
  }>;
11120
11131
  value: z.ZodOptional<z.ZodString>;
@@ -11159,10 +11170,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11159
11170
  thresholds: z.ZodArray<z.ZodObject<{
11160
11171
  type: z.ZodEnum<{
11161
11172
  formula: "formula";
11173
+ percent: "percent";
11162
11174
  num: "num";
11163
- min: "min";
11164
11175
  max: "max";
11165
- percent: "percent";
11176
+ min: "min";
11166
11177
  percentile: "percentile";
11167
11178
  }>;
11168
11179
  value: z.ZodOptional<z.ZodString>;
@@ -11296,11 +11307,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11296
11307
  pages: z.ZodArray<z.ZodObject<{
11297
11308
  origin: z.ZodOptional<z.ZodEnum<{
11298
11309
  chart: "chart";
11299
- body: "body";
11300
11310
  diagram: "diagram";
11301
11311
  table: "table";
11302
11312
  image: "image";
11303
11313
  notes: "notes";
11314
+ body: "body";
11304
11315
  }>>;
11305
11316
  interpretation: z.ZodOptional<z.ZodObject<{
11306
11317
  transcript: z.ZodOptional<z.ZodObject<{
@@ -11329,11 +11340,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11329
11340
  blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
11330
11341
  origin: z.ZodOptional<z.ZodEnum<{
11331
11342
  chart: "chart";
11332
- body: "body";
11333
11343
  diagram: "diagram";
11334
11344
  table: "table";
11335
11345
  image: "image";
11336
11346
  notes: "notes";
11347
+ body: "body";
11337
11348
  }>>;
11338
11349
  interpretation: z.ZodOptional<z.ZodObject<{
11339
11350
  transcript: z.ZodOptional<z.ZodObject<{
@@ -11402,11 +11413,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11402
11413
  vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
11403
11414
  origin: z.ZodOptional<z.ZodEnum<{
11404
11415
  chart: "chart";
11405
- body: "body";
11406
11416
  diagram: "diagram";
11407
11417
  table: "table";
11408
11418
  image: "image";
11409
11419
  notes: "notes";
11420
+ body: "body";
11410
11421
  }>>;
11411
11422
  interpretation: z.ZodOptional<z.ZodObject<{
11412
11423
  transcript: z.ZodOptional<z.ZodObject<{
@@ -11540,11 +11551,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11540
11551
  }, z.core.$strip>, z.ZodObject<{
11541
11552
  origin: z.ZodOptional<z.ZodEnum<{
11542
11553
  chart: "chart";
11543
- body: "body";
11544
11554
  diagram: "diagram";
11545
11555
  table: "table";
11546
11556
  image: "image";
11547
11557
  notes: "notes";
11558
+ body: "body";
11548
11559
  }>>;
11549
11560
  interpretation: z.ZodOptional<z.ZodObject<{
11550
11561
  transcript: z.ZodOptional<z.ZodObject<{
@@ -11678,11 +11689,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11678
11689
  }, z.core.$strip>, z.ZodObject<{
11679
11690
  origin: z.ZodOptional<z.ZodEnum<{
11680
11691
  chart: "chart";
11681
- body: "body";
11682
11692
  diagram: "diagram";
11683
11693
  table: "table";
11684
11694
  image: "image";
11685
11695
  notes: "notes";
11696
+ body: "body";
11686
11697
  }>>;
11687
11698
  interpretation: z.ZodOptional<z.ZodObject<{
11688
11699
  transcript: z.ZodOptional<z.ZodObject<{
@@ -11766,11 +11777,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11766
11777
  }, z.core.$strip>, z.ZodObject<{
11767
11778
  origin: z.ZodOptional<z.ZodEnum<{
11768
11779
  chart: "chart";
11769
- body: "body";
11770
11780
  diagram: "diagram";
11771
11781
  table: "table";
11772
11782
  image: "image";
11773
11783
  notes: "notes";
11784
+ body: "body";
11774
11785
  }>>;
11775
11786
  interpretation: z.ZodOptional<z.ZodObject<{
11776
11787
  transcript: z.ZodOptional<z.ZodObject<{
@@ -12026,11 +12037,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
12026
12037
  formula: z.ZodObject<{
12027
12038
  origin: z.ZodOptional<z.ZodEnum<{
12028
12039
  chart: "chart";
12029
- body: "body";
12030
12040
  diagram: "diagram";
12031
12041
  table: "table";
12032
12042
  image: "image";
12033
12043
  notes: "notes";
12044
+ body: "body";
12034
12045
  }>>;
12035
12046
  interpretation: z.ZodOptional<z.ZodObject<{
12036
12047
  transcript: z.ZodOptional<z.ZodObject<{
@@ -12153,4 +12164,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
12153
12164
  }, z.core.$strip>], "kind">;
12154
12165
  type ContentDocument = z.infer<typeof ContentDocumentSchema>;
12155
12166
  //#endregion
12156
- 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 };
12167
+ export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, ImageFormat as An, ContentSheetCellComment as At, ContentFloatPosition as B, findRunConstructFault as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentTranscriptSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, DecimalStringSchema as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, DecimalString as En, ContentShape as Et, ContentFloatAlignSchema as F, SheetRuleOperator as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, resolveCellFillColor as Gn, ContentSheetImage as Gt, ContentFont as H, isContentConstructEnd as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, SheetRuleOperatorSchema as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, unrecognizedFillKind as Kn, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, clampHeadingLevel as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructExtent as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, RunConstructExtentSchema as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, FusedNode as On, ContentSheet as Ot, ContentFloatAlign as P, RunConstructFault as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, contentDocumentSharedFields as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentTranscript as Sn, ContentRun as St, ContentDrawPage as T, ContentVectorSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, isContentConstructStart as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentBlock as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, isRunConstructExtent 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 _, ContentTableColumn as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTableRowSchema 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, RUN_FONT_PROPERTY_SHAPE as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, IMAGE_FORMATS 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, ContentTableColumnSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, ContentVector as wn, ContentSection as wt, ContentDefinedName as x, ContentTableSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableRow as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, findConstructMarkerImbalance as zn, ContentSheetConditionalFormatValue as zt };