document-content-model 7.10.0 → 7.11.1

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 (39) hide show
  1. package/dist/codec.d.cts +1 -1
  2. package/dist/codec.d.ts +1 -1
  3. package/dist/{content-Uiq081CA.d.ts → content-DJYlkhmk.d.ts} +39 -24
  4. package/dist/content-json-schema-defs.cjs +1 -0
  5. package/dist/content-json-schema-defs.js +1 -0
  6. package/dist/{content-VC9cnoCv.d.cts → content-oJmrSCr6.d.cts} +39 -24
  7. package/dist/content.cjs +1 -0
  8. package/dist/content.d.cts +1 -1
  9. package/dist/content.d.ts +1 -1
  10. package/dist/content.js +1 -0
  11. package/dist/decompose.d.cts +2 -2
  12. package/dist/decompose.d.ts +2 -2
  13. package/dist/definitions.d.cts +4 -4
  14. package/dist/definitions.d.ts +4 -4
  15. package/dist/factor-styles.d.cts +1 -1
  16. package/dist/factor-styles.d.ts +1 -1
  17. package/dist/flatten.d.cts +1 -1
  18. package/dist/flatten.d.ts +1 -1
  19. package/dist/index.d.cts +3 -3
  20. package/dist/index.d.ts +3 -3
  21. package/dist/{package-node-B0czXNHl.d.cts → package-node-BaeLuQNH.d.cts} +9 -4
  22. package/dist/{package-node-CnUkCuRc.d.ts → package-node-DkOfPGtb.d.ts} +9 -4
  23. package/dist/package-node.d.cts +1 -1
  24. package/dist/package-node.d.ts +1 -1
  25. package/dist/package.d.cts +6 -6
  26. package/dist/package.d.ts +6 -6
  27. package/dist/schema-io.cjs +2 -2
  28. package/dist/schema-io.d.cts +1 -1
  29. package/dist/schema-io.d.ts +1 -1
  30. package/dist/schema-io.js +2 -2
  31. package/dist/{style-BGMcYrD2.d.cts → style-D06NwxAJ.d.cts} +1 -1
  32. package/dist/{style-BGMcYrD2.d.ts → style-D06NwxAJ.d.ts} +1 -1
  33. package/dist/style.d.cts +1 -1
  34. package/dist/style.d.ts +1 -1
  35. package/dist/text-layout.d.cts +1 -1
  36. package/dist/text-layout.d.ts +1 -1
  37. package/package.json +2 -2
  38. package/schemas/content-document.schema.json +40 -13
  39. package/schemas/document-tree.schema.json +6 -3
package/dist/codec.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { C as ContentDocument } from "./content-VC9cnoCv.cjs";
1
+ import { C as ContentDocument } from "./content-oJmrSCr6.cjs";
2
2
  //#region src/codec.d.ts
3
3
  interface ContentCodec<TOptions = unknown> {
4
4
  read(bytes: Uint8Array, options?: TOptions): ContentDocument;
package/dist/codec.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { C as ContentDocument } from "./content-Uiq081CA.js";
1
+ import { C as ContentDocument } from "./content-DJYlkhmk.js";
2
2
  //#region src/codec.d.ts
3
3
  interface ContentCodec<TOptions = unknown> {
4
4
  read(bytes: Uint8Array, options?: TOptions): ContentDocument;
@@ -3,7 +3,7 @@ import { p as MathExpression } from "./math-BScHxedi.js";
3
3
  import { n as Color } from "./color-AELCDH_b.js";
4
4
  import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.js";
5
5
  import { r as SourceResidue } from "./source-Bas5ol6f.js";
6
- import { o as TextDirection } from "./style-BGMcYrD2.js";
6
+ import { o as TextDirection } from "./style-D06NwxAJ.js";
7
7
  import { z } from "zod";
8
8
  //#region src/content.d.ts
9
9
  type FusedNode<T> = T & {
@@ -784,8 +784,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
784
784
  headingLevel: z.ZodOptional<z.ZodNumber>;
785
785
  alignment: z.ZodOptional<z.ZodEnum<{
786
786
  left: "left";
787
- right: "right";
788
787
  center: "center";
788
+ right: "right";
789
789
  justify: "justify";
790
790
  }>>;
791
791
  list: z.ZodOptional<z.ZodObject<{
@@ -921,10 +921,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
921
921
  type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
922
922
  declare const ContentFloatAlignSchema: z.ZodEnum<{
923
923
  left: "left";
924
+ center: "center";
924
925
  right: "right";
925
926
  top: "top";
926
927
  bottom: "bottom";
927
- center: "center";
928
928
  inside: "inside";
929
929
  outside: "outside";
930
930
  }>;
@@ -964,10 +964,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
964
964
  }>;
965
965
  align: z.ZodEnum<{
966
966
  left: "left";
967
+ center: "center";
967
968
  right: "right";
968
969
  top: "top";
969
970
  bottom: "bottom";
970
- center: "center";
971
971
  inside: "inside";
972
972
  outside: "outside";
973
973
  }>;
@@ -1009,10 +1009,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1009
1009
  }>;
1010
1010
  align: z.ZodEnum<{
1011
1011
  left: "left";
1012
+ center: "center";
1012
1013
  right: "right";
1013
1014
  top: "top";
1014
1015
  bottom: "bottom";
1015
- center: "center";
1016
1016
  inside: "inside";
1017
1017
  outside: "outside";
1018
1018
  }>;
@@ -1052,10 +1052,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1052
1052
  }>;
1053
1053
  align: z.ZodEnum<{
1054
1054
  left: "left";
1055
+ center: "center";
1055
1056
  right: "right";
1056
1057
  top: "top";
1057
1058
  bottom: "bottom";
1058
- center: "center";
1059
1059
  inside: "inside";
1060
1060
  outside: "outside";
1061
1061
  }>;
@@ -1159,10 +1159,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1159
1159
  }>;
1160
1160
  align: z.ZodEnum<{
1161
1161
  left: "left";
1162
+ center: "center";
1162
1163
  right: "right";
1163
1164
  top: "top";
1164
1165
  bottom: "bottom";
1165
- center: "center";
1166
1166
  inside: "inside";
1167
1167
  outside: "outside";
1168
1168
  }>;
@@ -1202,10 +1202,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1202
1202
  }>;
1203
1203
  align: z.ZodEnum<{
1204
1204
  left: "left";
1205
+ center: "center";
1205
1206
  right: "right";
1206
1207
  top: "top";
1207
1208
  bottom: "bottom";
1208
- center: "center";
1209
1209
  inside: "inside";
1210
1210
  outside: "outside";
1211
1211
  }>;
@@ -1588,12 +1588,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1588
1588
  }, z.core.$strip>>;
1589
1589
  }, z.core.$strip>>;
1590
1590
  objectKind: z.ZodEnum<{
1591
- chart: "chart";
1592
1591
  formula: "formula";
1593
1592
  wordprocessing: "wordprocessing";
1594
1593
  presentation: "presentation";
1595
1594
  spreadsheet: "spreadsheet";
1596
1595
  drawing: "drawing";
1596
+ chart: "chart";
1597
1597
  }>;
1598
1598
  document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
1599
1599
  sections: z.ZodArray<z.ZodObject<{
@@ -1651,6 +1651,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1651
1651
  even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1652
1652
  first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1653
1653
  }, z.core.$strip>>;
1654
+ watermarks: z.ZodOptional<z.ZodObject<{
1655
+ default: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1656
+ even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1657
+ first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1658
+ }, z.core.$strip>>;
1654
1659
  source: z.ZodOptional<z.ZodObject<{
1655
1660
  format: z.ZodEnum<{
1656
1661
  docx: "docx";
@@ -2287,8 +2292,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2287
2292
  }, z.core.$strip>>;
2288
2293
  alignment: z.ZodOptional<z.ZodEnum<{
2289
2294
  left: "left";
2290
- right: "right";
2291
2295
  center: "center";
2296
+ right: "right";
2292
2297
  justify: "justify";
2293
2298
  }>>;
2294
2299
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -2430,10 +2435,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2430
2435
  }>;
2431
2436
  align: z.ZodEnum<{
2432
2437
  left: "left";
2438
+ center: "center";
2433
2439
  right: "right";
2434
2440
  top: "top";
2435
2441
  bottom: "bottom";
2436
- center: "center";
2437
2442
  inside: "inside";
2438
2443
  outside: "outside";
2439
2444
  }>;
@@ -2473,10 +2478,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2473
2478
  }>;
2474
2479
  align: z.ZodEnum<{
2475
2480
  left: "left";
2481
+ center: "center";
2476
2482
  right: "right";
2477
2483
  top: "top";
2478
2484
  bottom: "bottom";
2479
- center: "center";
2480
2485
  inside: "inside";
2481
2486
  outside: "outside";
2482
2487
  }>;
@@ -4600,9 +4605,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
4600
4605
  }, z.core.$strip>>;
4601
4606
  }, z.core.$strip>>;
4602
4607
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4608
+ center: "center";
4603
4609
  top: "top";
4604
4610
  bottom: "bottom";
4605
- center: "center";
4606
4611
  }>>;
4607
4612
  formula: z.ZodOptional<z.ZodString>;
4608
4613
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4827,9 +4832,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4827
4832
  }, z.core.$strip>>;
4828
4833
  }, z.core.$strip>>;
4829
4834
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4835
+ center: "center";
4830
4836
  top: "top";
4831
4837
  bottom: "bottom";
4832
- center: "center";
4833
4838
  }>>;
4834
4839
  formula: z.ZodOptional<z.ZodString>;
4835
4840
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5089,9 +5094,9 @@ declare const ContentTableSchema: z.ZodObject<{
5089
5094
  }, z.core.$strip>>;
5090
5095
  }, z.core.$strip>>;
5091
5096
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5097
+ center: "center";
5092
5098
  top: "top";
5093
5099
  bottom: "bottom";
5094
- center: "center";
5095
5100
  }>>;
5096
5101
  formula: z.ZodOptional<z.ZodString>;
5097
5102
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5221,6 +5226,11 @@ declare const ContentSectionSchema: z.ZodObject<{
5221
5226
  even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5222
5227
  first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5223
5228
  }, z.core.$strip>>;
5229
+ watermarks: z.ZodOptional<z.ZodObject<{
5230
+ default: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5231
+ even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5232
+ first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5233
+ }, z.core.$strip>>;
5224
5234
  source: z.ZodOptional<z.ZodObject<{
5225
5235
  format: z.ZodEnum<{
5226
5236
  docx: "docx";
@@ -5816,8 +5826,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
5816
5826
  }, z.core.$strip>>;
5817
5827
  alignment: z.ZodOptional<z.ZodEnum<{
5818
5828
  left: "left";
5819
- right: "right";
5820
5829
  center: "center";
5830
+ right: "right";
5821
5831
  justify: "justify";
5822
5832
  }>>;
5823
5833
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -6721,10 +6731,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6721
6731
  }>;
6722
6732
  align: z.ZodEnum<{
6723
6733
  left: "left";
6734
+ center: "center";
6724
6735
  right: "right";
6725
6736
  top: "top";
6726
6737
  bottom: "bottom";
6727
- center: "center";
6728
6738
  inside: "inside";
6729
6739
  outside: "outside";
6730
6740
  }>;
@@ -6764,10 +6774,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6764
6774
  }>;
6765
6775
  align: z.ZodEnum<{
6766
6776
  left: "left";
6777
+ center: "center";
6767
6778
  right: "right";
6768
6779
  top: "top";
6769
6780
  bottom: "bottom";
6770
- center: "center";
6771
6781
  inside: "inside";
6772
6782
  outside: "outside";
6773
6783
  }>;
@@ -7158,8 +7168,8 @@ declare const ContentSheetSchema: z.ZodObject<{
7158
7168
  }, z.core.$strip>>;
7159
7169
  alignment: z.ZodOptional<z.ZodEnum<{
7160
7170
  left: "left";
7161
- right: "right";
7162
7171
  center: "center";
7172
+ right: "right";
7163
7173
  justify: "justify";
7164
7174
  }>>;
7165
7175
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -7301,10 +7311,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7301
7311
  }>;
7302
7312
  align: z.ZodEnum<{
7303
7313
  left: "left";
7314
+ center: "center";
7304
7315
  right: "right";
7305
7316
  top: "top";
7306
7317
  bottom: "bottom";
7307
- center: "center";
7308
7318
  inside: "inside";
7309
7319
  outside: "outside";
7310
7320
  }>;
@@ -7344,10 +7354,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7344
7354
  }>;
7345
7355
  align: z.ZodEnum<{
7346
7356
  left: "left";
7357
+ center: "center";
7347
7358
  right: "right";
7348
7359
  top: "top";
7349
7360
  bottom: "bottom";
7350
- center: "center";
7351
7361
  inside: "inside";
7352
7362
  outside: "outside";
7353
7363
  }>;
@@ -9645,6 +9655,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9645
9655
  even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9646
9656
  first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9647
9657
  }, z.core.$strip>>;
9658
+ watermarks: z.ZodOptional<z.ZodObject<{
9659
+ default: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9660
+ even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9661
+ first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9662
+ }, z.core.$strip>>;
9648
9663
  source: z.ZodOptional<z.ZodObject<{
9649
9664
  format: z.ZodEnum<{
9650
9665
  docx: "docx";
@@ -10281,8 +10296,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10281
10296
  }, z.core.$strip>>;
10282
10297
  alignment: z.ZodOptional<z.ZodEnum<{
10283
10298
  left: "left";
10284
- right: "right";
10285
10299
  center: "center";
10300
+ right: "right";
10286
10301
  justify: "justify";
10287
10302
  }>>;
10288
10303
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -10424,10 +10439,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10424
10439
  }>;
10425
10440
  align: z.ZodEnum<{
10426
10441
  left: "left";
10442
+ center: "center";
10427
10443
  right: "right";
10428
10444
  top: "top";
10429
10445
  bottom: "bottom";
10430
- center: "center";
10431
10446
  inside: "inside";
10432
10447
  outside: "outside";
10433
10448
  }>;
@@ -10467,10 +10482,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10467
10482
  }>;
10468
10483
  align: z.ZodEnum<{
10469
10484
  left: "left";
10485
+ center: "center";
10470
10486
  right: "right";
10471
10487
  top: "top";
10472
10488
  bottom: "bottom";
10473
- center: "center";
10474
10489
  inside: "inside";
10475
10490
  outside: "outside";
10476
10491
  }>;
@@ -868,6 +868,7 @@ const CONTENT_DEFS = {
868
868
  },
869
869
  headers: { $ref: "#/$defs/ContentPageFurniture" },
870
870
  footers: { $ref: "#/$defs/ContentPageFurniture" },
871
+ watermarks: { $ref: "#/$defs/ContentPageFurniture" },
871
872
  source: { $ref: "#/$defs/SourceResidue" },
872
873
  origin: { $ref: "#/$defs/ContentOrigin" },
873
874
  interpretation: { $ref: "#/$defs/ContentInterpretation" },
@@ -867,6 +867,7 @@ const CONTENT_DEFS = {
867
867
  },
868
868
  headers: { $ref: "#/$defs/ContentPageFurniture" },
869
869
  footers: { $ref: "#/$defs/ContentPageFurniture" },
870
+ watermarks: { $ref: "#/$defs/ContentPageFurniture" },
870
871
  source: { $ref: "#/$defs/SourceResidue" },
871
872
  origin: { $ref: "#/$defs/ContentOrigin" },
872
873
  interpretation: { $ref: "#/$defs/ContentInterpretation" },
@@ -3,7 +3,7 @@ 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 & {
@@ -784,8 +784,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
784
784
  headingLevel: z.ZodOptional<z.ZodNumber>;
785
785
  alignment: z.ZodOptional<z.ZodEnum<{
786
786
  left: "left";
787
- right: "right";
788
787
  center: "center";
788
+ right: "right";
789
789
  justify: "justify";
790
790
  }>>;
791
791
  list: z.ZodOptional<z.ZodObject<{
@@ -921,10 +921,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
921
921
  type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
922
922
  declare const ContentFloatAlignSchema: z.ZodEnum<{
923
923
  left: "left";
924
+ center: "center";
924
925
  right: "right";
925
926
  top: "top";
926
927
  bottom: "bottom";
927
- center: "center";
928
928
  inside: "inside";
929
929
  outside: "outside";
930
930
  }>;
@@ -964,10 +964,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
964
964
  }>;
965
965
  align: z.ZodEnum<{
966
966
  left: "left";
967
+ center: "center";
967
968
  right: "right";
968
969
  top: "top";
969
970
  bottom: "bottom";
970
- center: "center";
971
971
  inside: "inside";
972
972
  outside: "outside";
973
973
  }>;
@@ -1009,10 +1009,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1009
1009
  }>;
1010
1010
  align: z.ZodEnum<{
1011
1011
  left: "left";
1012
+ center: "center";
1012
1013
  right: "right";
1013
1014
  top: "top";
1014
1015
  bottom: "bottom";
1015
- center: "center";
1016
1016
  inside: "inside";
1017
1017
  outside: "outside";
1018
1018
  }>;
@@ -1052,10 +1052,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1052
1052
  }>;
1053
1053
  align: z.ZodEnum<{
1054
1054
  left: "left";
1055
+ center: "center";
1055
1056
  right: "right";
1056
1057
  top: "top";
1057
1058
  bottom: "bottom";
1058
- center: "center";
1059
1059
  inside: "inside";
1060
1060
  outside: "outside";
1061
1061
  }>;
@@ -1159,10 +1159,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1159
1159
  }>;
1160
1160
  align: z.ZodEnum<{
1161
1161
  left: "left";
1162
+ center: "center";
1162
1163
  right: "right";
1163
1164
  top: "top";
1164
1165
  bottom: "bottom";
1165
- center: "center";
1166
1166
  inside: "inside";
1167
1167
  outside: "outside";
1168
1168
  }>;
@@ -1202,10 +1202,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1202
1202
  }>;
1203
1203
  align: z.ZodEnum<{
1204
1204
  left: "left";
1205
+ center: "center";
1205
1206
  right: "right";
1206
1207
  top: "top";
1207
1208
  bottom: "bottom";
1208
- center: "center";
1209
1209
  inside: "inside";
1210
1210
  outside: "outside";
1211
1211
  }>;
@@ -1588,12 +1588,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1588
1588
  }, z.core.$strip>>;
1589
1589
  }, z.core.$strip>>;
1590
1590
  objectKind: z.ZodEnum<{
1591
- chart: "chart";
1592
1591
  formula: "formula";
1593
1592
  wordprocessing: "wordprocessing";
1594
1593
  presentation: "presentation";
1595
1594
  spreadsheet: "spreadsheet";
1596
1595
  drawing: "drawing";
1596
+ chart: "chart";
1597
1597
  }>;
1598
1598
  document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
1599
1599
  sections: z.ZodArray<z.ZodObject<{
@@ -1651,6 +1651,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1651
1651
  even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1652
1652
  first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1653
1653
  }, z.core.$strip>>;
1654
+ watermarks: z.ZodOptional<z.ZodObject<{
1655
+ default: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1656
+ even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1657
+ first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
1658
+ }, z.core.$strip>>;
1654
1659
  source: z.ZodOptional<z.ZodObject<{
1655
1660
  format: z.ZodEnum<{
1656
1661
  docx: "docx";
@@ -2287,8 +2292,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2287
2292
  }, z.core.$strip>>;
2288
2293
  alignment: z.ZodOptional<z.ZodEnum<{
2289
2294
  left: "left";
2290
- right: "right";
2291
2295
  center: "center";
2296
+ right: "right";
2292
2297
  justify: "justify";
2293
2298
  }>>;
2294
2299
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -2430,10 +2435,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2430
2435
  }>;
2431
2436
  align: z.ZodEnum<{
2432
2437
  left: "left";
2438
+ center: "center";
2433
2439
  right: "right";
2434
2440
  top: "top";
2435
2441
  bottom: "bottom";
2436
- center: "center";
2437
2442
  inside: "inside";
2438
2443
  outside: "outside";
2439
2444
  }>;
@@ -2473,10 +2478,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2473
2478
  }>;
2474
2479
  align: z.ZodEnum<{
2475
2480
  left: "left";
2481
+ center: "center";
2476
2482
  right: "right";
2477
2483
  top: "top";
2478
2484
  bottom: "bottom";
2479
- center: "center";
2480
2485
  inside: "inside";
2481
2486
  outside: "outside";
2482
2487
  }>;
@@ -4600,9 +4605,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
4600
4605
  }, z.core.$strip>>;
4601
4606
  }, z.core.$strip>>;
4602
4607
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4608
+ center: "center";
4603
4609
  top: "top";
4604
4610
  bottom: "bottom";
4605
- center: "center";
4606
4611
  }>>;
4607
4612
  formula: z.ZodOptional<z.ZodString>;
4608
4613
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4827,9 +4832,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4827
4832
  }, z.core.$strip>>;
4828
4833
  }, z.core.$strip>>;
4829
4834
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4835
+ center: "center";
4830
4836
  top: "top";
4831
4837
  bottom: "bottom";
4832
- center: "center";
4833
4838
  }>>;
4834
4839
  formula: z.ZodOptional<z.ZodString>;
4835
4840
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5089,9 +5094,9 @@ declare const ContentTableSchema: z.ZodObject<{
5089
5094
  }, z.core.$strip>>;
5090
5095
  }, z.core.$strip>>;
5091
5096
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5097
+ center: "center";
5092
5098
  top: "top";
5093
5099
  bottom: "bottom";
5094
- center: "center";
5095
5100
  }>>;
5096
5101
  formula: z.ZodOptional<z.ZodString>;
5097
5102
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5221,6 +5226,11 @@ declare const ContentSectionSchema: z.ZodObject<{
5221
5226
  even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5222
5227
  first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5223
5228
  }, z.core.$strip>>;
5229
+ watermarks: z.ZodOptional<z.ZodObject<{
5230
+ default: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5231
+ even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5232
+ first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
5233
+ }, z.core.$strip>>;
5224
5234
  source: z.ZodOptional<z.ZodObject<{
5225
5235
  format: z.ZodEnum<{
5226
5236
  docx: "docx";
@@ -5816,8 +5826,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
5816
5826
  }, z.core.$strip>>;
5817
5827
  alignment: z.ZodOptional<z.ZodEnum<{
5818
5828
  left: "left";
5819
- right: "right";
5820
5829
  center: "center";
5830
+ right: "right";
5821
5831
  justify: "justify";
5822
5832
  }>>;
5823
5833
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -6721,10 +6731,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6721
6731
  }>;
6722
6732
  align: z.ZodEnum<{
6723
6733
  left: "left";
6734
+ center: "center";
6724
6735
  right: "right";
6725
6736
  top: "top";
6726
6737
  bottom: "bottom";
6727
- center: "center";
6728
6738
  inside: "inside";
6729
6739
  outside: "outside";
6730
6740
  }>;
@@ -6764,10 +6774,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6764
6774
  }>;
6765
6775
  align: z.ZodEnum<{
6766
6776
  left: "left";
6777
+ center: "center";
6767
6778
  right: "right";
6768
6779
  top: "top";
6769
6780
  bottom: "bottom";
6770
- center: "center";
6771
6781
  inside: "inside";
6772
6782
  outside: "outside";
6773
6783
  }>;
@@ -7158,8 +7168,8 @@ declare const ContentSheetSchema: z.ZodObject<{
7158
7168
  }, z.core.$strip>>;
7159
7169
  alignment: z.ZodOptional<z.ZodEnum<{
7160
7170
  left: "left";
7161
- right: "right";
7162
7171
  center: "center";
7172
+ right: "right";
7163
7173
  justify: "justify";
7164
7174
  }>>;
7165
7175
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -7301,10 +7311,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7301
7311
  }>;
7302
7312
  align: z.ZodEnum<{
7303
7313
  left: "left";
7314
+ center: "center";
7304
7315
  right: "right";
7305
7316
  top: "top";
7306
7317
  bottom: "bottom";
7307
- center: "center";
7308
7318
  inside: "inside";
7309
7319
  outside: "outside";
7310
7320
  }>;
@@ -7344,10 +7354,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7344
7354
  }>;
7345
7355
  align: z.ZodEnum<{
7346
7356
  left: "left";
7357
+ center: "center";
7347
7358
  right: "right";
7348
7359
  top: "top";
7349
7360
  bottom: "bottom";
7350
- center: "center";
7351
7361
  inside: "inside";
7352
7362
  outside: "outside";
7353
7363
  }>;
@@ -9645,6 +9655,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9645
9655
  even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9646
9656
  first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9647
9657
  }, z.core.$strip>>;
9658
+ watermarks: z.ZodOptional<z.ZodObject<{
9659
+ default: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9660
+ even: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9661
+ first: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>>;
9662
+ }, z.core.$strip>>;
9648
9663
  source: z.ZodOptional<z.ZodObject<{
9649
9664
  format: z.ZodEnum<{
9650
9665
  docx: "docx";
@@ -10281,8 +10296,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10281
10296
  }, z.core.$strip>>;
10282
10297
  alignment: z.ZodOptional<z.ZodEnum<{
10283
10298
  left: "left";
10284
- right: "right";
10285
10299
  center: "center";
10300
+ right: "right";
10286
10301
  justify: "justify";
10287
10302
  }>>;
10288
10303
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -10424,10 +10439,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10424
10439
  }>;
10425
10440
  align: z.ZodEnum<{
10426
10441
  left: "left";
10442
+ center: "center";
10427
10443
  right: "right";
10428
10444
  top: "top";
10429
10445
  bottom: "bottom";
10430
- center: "center";
10431
10446
  inside: "inside";
10432
10447
  outside: "outside";
10433
10448
  }>;
@@ -10467,10 +10482,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10467
10482
  }>;
10468
10483
  align: z.ZodEnum<{
10469
10484
  left: "left";
10485
+ center: "center";
10470
10486
  right: "right";
10471
10487
  top: "top";
10472
10488
  bottom: "bottom";
10473
- center: "center";
10474
10489
  inside: "inside";
10475
10490
  outside: "outside";
10476
10491
  }>;
package/dist/content.cjs CHANGED
@@ -431,6 +431,7 @@ const ContentSectionSchema = zod.z.object({
431
431
  ]).optional(),
432
432
  headers: ContentPageFurnitureSchema.optional(),
433
433
  footers: ContentPageFurnitureSchema.optional(),
434
+ watermarks: ContentPageFurnitureSchema.optional(),
434
435
  source: require_source.SourceResidueSchema.optional(),
435
436
  ...CONTENT_ANNOTATION_FIELDS
436
437
  });
@@ -1,2 +1,2 @@
1
- import { $ as ContentHatchStyleSchema, $t as ContentSheetRepeatRange, A as ContentEmbeddedObjectKind, An as RunConstructExtent, At as ContentSheetCellComment, B as ContentFloatPosition, Bn as isContentConstructEnd, Bt as ContentSheetConditionalFormatValueSchema, C as ContentDocument, Cn as ContentVectorSchema, Ct as ContentRunSchema, D as ContentEmbeddedObject, Dn as IMAGE_FORMATS, Dt as ContentShapeSchema, E as ContentDrawPageSchema, En as FusedNode, Et as ContentShape, F as ContentFloatAlignSchema, Fn as clampHeadingLevel, Ft as ContentSheetConditionalFormat, G as ContentFormulaSchema, Gt as ContentSheetImage, H as ContentFont, Hn as isRunConstructExtent, Ht as ContentSheetDataValidationSchema, I as ContentFloatAxis, In as contentDocumentSharedFields, It as ContentSheetConditionalFormatSchema, J as ContentGradientStyle, Jt as ContentSheetPrintRangeSchema, K as ContentGradientFill, Kt as ContentSheetImageSchema, L as ContentFloatAxisSchema, Ln as findConstructMarkerImbalance, Lt as ContentSheetConditionalFormatStyle, M as ContentFillPattern, Mn as RunConstructFault, Mt as ContentSheetCellSchema, N as ContentFillPatternSchema, Nn as SheetRuleOperator, Nt as ContentSheetColumn, O as ContentEmbeddedObjectBlock, On as ImageFormat, Ot as ContentSheet, P as ContentFloatAlign, Pn as SheetRuleOperatorSchema, Pt as ContentSheetColumnSchema, Q as ContentHatchStyle, Qt as ContentSheetRangeSchema, R as ContentFloatOrigin, Rn as findRunConstructFault, Rt as ContentSheetConditionalFormatStyleSchema, S as ContentDefinedNameSchema, Sn as ContentVector, St as ContentRun, T as ContentDrawPage, Tn as DecimalStringSchema, Tt as ContentSectionSchema, U as ContentFontSchema, Un as resolveCellFillColor, Ut as ContentSheetDataValidationType, V as ContentFloatPositionSchema, Vn as isContentConstructStart, Vt as ContentSheetDataValidation, W as ContentFormula, Wn as unrecognizedFillKind, Wt as ContentSheetDataValidationTypeSchema, X as ContentHatchFill, Xt as ContentSheetPrintSettingsSchema, Y as ContentGradientStyleSchema, Yt as ContentSheetPrintSettings, Z as ContentHatchFillSchema, Zt as ContentSheetRange, _ as ContentConstructEnd, _n as ContentTableRow, _t as ContentParagraphSchema, a as ContentBlock, an as ContentSlideSchema, at as ContentInterpretationSchema, b as ContentConstructStartSchema, bn as ContentTranscript, bt as ContentPathSegment, c as ContentBorderSchema, cn as ContentStrokeDashSchema, ct as ContentOrigin, d as ContentCellFill, dn as ContentStrokeStyleSchema, dt as ContentPageBreakSchema, en as ContentSheetRepeatRangeSchema, et as ContentImageBlock, f as ContentCellFillSchema, fn as ContentSubpath, ft as ContentPageFurniture, g as ContentCellValueSchema, gn as ContentTableCellSchema, gt as ContentParagraphBordersSchema, h as ContentCellValue, hn as ContentTableCell, ht as ContentParagraphBorders, i as ContentBitmapFillSchema, in as ContentSlide, it as ContentInterpretation, j as ContentEmbeddedObjectSchema, jn as RunConstructExtentSchema, jt as ContentSheetCellCommentSchema, k as ContentEmbeddedObjectBlockSchema, kn as RUN_FONT_PROPERTY_SHAPE, kt as ContentSheetCell, l as ContentCellBorders, ln as ContentStrokeSchema, lt as ContentOriginSchema, m as ContentCellPatternTypeSchema, mn as ContentTable, mt as ContentParagraph, n as ConstructMarkerImbalance, nn as ContentSheetRowSchema, nt as ContentImageOriginal, o as ContentBlockSchema, on as ContentStroke, ot as ContentListMembership, p as ContentCellPatternType, pn as ContentSubpathSchema, pt as ContentPageFurnitureSchema, q as ContentGradientFillSchema, qt as ContentSheetPrintRange, r as ContentBitmapFill, rn as ContentSheetSchema, rt as ContentImageOriginalSchema, s as ContentBorder, sn as ContentStrokeDash, st as ContentListMembershipSchema, t as CONTENT_ANNOTATION_FIELDS, tn as ContentSheetRow, tt as ContentImageBlockSchema, u as ContentCellBordersSchema, un as ContentStrokeStyle, ut as ContentPageBreak, v as ContentConstructEndSchema, vn as ContentTableRowSchema, vt as ContentPathPoint, w as ContentDocumentSchema, wn as DecimalString, wt as ContentSection, x as ContentDefinedName, xn as ContentTranscriptSchema, xt as ContentPathSegmentSchema, y as ContentConstructStart, yn as ContentTableSchema, yt as ContentPathPointSchema, z as ContentFloatOriginSchema, zn as isContentBlock, zt as ContentSheetConditionalFormatValue } from "./content-VC9cnoCv.cjs";
1
+ import { $ as ContentHatchStyleSchema, $t as ContentSheetRepeatRange, A as ContentEmbeddedObjectKind, An as RunConstructExtent, At as ContentSheetCellComment, B as ContentFloatPosition, Bn as isContentConstructEnd, Bt as ContentSheetConditionalFormatValueSchema, C as ContentDocument, Cn as ContentVectorSchema, Ct as ContentRunSchema, D as ContentEmbeddedObject, Dn as IMAGE_FORMATS, Dt as ContentShapeSchema, E as ContentDrawPageSchema, En as FusedNode, Et as ContentShape, F as ContentFloatAlignSchema, Fn as clampHeadingLevel, Ft as ContentSheetConditionalFormat, G as ContentFormulaSchema, Gt as ContentSheetImage, H as ContentFont, Hn as isRunConstructExtent, Ht as ContentSheetDataValidationSchema, I as ContentFloatAxis, In as contentDocumentSharedFields, It as ContentSheetConditionalFormatSchema, J as ContentGradientStyle, Jt as ContentSheetPrintRangeSchema, K as ContentGradientFill, Kt as ContentSheetImageSchema, L as ContentFloatAxisSchema, Ln as findConstructMarkerImbalance, Lt as ContentSheetConditionalFormatStyle, M as ContentFillPattern, Mn as RunConstructFault, Mt as ContentSheetCellSchema, N as ContentFillPatternSchema, Nn as SheetRuleOperator, Nt as ContentSheetColumn, O as ContentEmbeddedObjectBlock, On as ImageFormat, Ot as ContentSheet, P as ContentFloatAlign, Pn as SheetRuleOperatorSchema, Pt as ContentSheetColumnSchema, Q as ContentHatchStyle, Qt as ContentSheetRangeSchema, R as ContentFloatOrigin, Rn as findRunConstructFault, Rt as ContentSheetConditionalFormatStyleSchema, S as ContentDefinedNameSchema, Sn as ContentVector, St as ContentRun, T as ContentDrawPage, Tn as DecimalStringSchema, Tt as ContentSectionSchema, U as ContentFontSchema, Un as resolveCellFillColor, Ut as ContentSheetDataValidationType, V as ContentFloatPositionSchema, Vn as isContentConstructStart, Vt as ContentSheetDataValidation, W as ContentFormula, Wn as unrecognizedFillKind, Wt as ContentSheetDataValidationTypeSchema, X as ContentHatchFill, Xt as ContentSheetPrintSettingsSchema, Y as ContentGradientStyleSchema, Yt as ContentSheetPrintSettings, Z as ContentHatchFillSchema, Zt as ContentSheetRange, _ as ContentConstructEnd, _n as ContentTableRow, _t as ContentParagraphSchema, a as ContentBlock, an as ContentSlideSchema, at as ContentInterpretationSchema, b as ContentConstructStartSchema, bn as ContentTranscript, bt as ContentPathSegment, c as ContentBorderSchema, cn as ContentStrokeDashSchema, ct as ContentOrigin, d as ContentCellFill, dn as ContentStrokeStyleSchema, dt as ContentPageBreakSchema, en as ContentSheetRepeatRangeSchema, et as ContentImageBlock, f as ContentCellFillSchema, fn as ContentSubpath, ft as ContentPageFurniture, g as ContentCellValueSchema, gn as ContentTableCellSchema, gt as ContentParagraphBordersSchema, h as ContentCellValue, hn as ContentTableCell, ht as ContentParagraphBorders, i as ContentBitmapFillSchema, in as ContentSlide, it as ContentInterpretation, j as ContentEmbeddedObjectSchema, jn as RunConstructExtentSchema, jt as ContentSheetCellCommentSchema, k as ContentEmbeddedObjectBlockSchema, kn as RUN_FONT_PROPERTY_SHAPE, kt as ContentSheetCell, l as ContentCellBorders, ln as ContentStrokeSchema, lt as ContentOriginSchema, m as ContentCellPatternTypeSchema, mn as ContentTable, mt as ContentParagraph, n as ConstructMarkerImbalance, nn as ContentSheetRowSchema, nt as ContentImageOriginal, o as ContentBlockSchema, on as ContentStroke, ot as ContentListMembership, p as ContentCellPatternType, pn as ContentSubpathSchema, pt as ContentPageFurnitureSchema, q as ContentGradientFillSchema, qt as ContentSheetPrintRange, r as ContentBitmapFill, rn as ContentSheetSchema, rt as ContentImageOriginalSchema, s as ContentBorder, sn as ContentStrokeDash, st as ContentListMembershipSchema, t as CONTENT_ANNOTATION_FIELDS, tn as ContentSheetRow, tt as ContentImageBlockSchema, u as ContentCellBordersSchema, un as ContentStrokeStyle, ut as ContentPageBreak, v as ContentConstructEndSchema, vn as ContentTableRowSchema, vt as ContentPathPoint, w as ContentDocumentSchema, wn as DecimalString, wt as ContentSection, x as ContentDefinedName, xn as ContentTranscriptSchema, xt as ContentPathSegmentSchema, y as ContentConstructStart, yn as ContentTableSchema, yt as ContentPathPointSchema, z as ContentFloatOriginSchema, zn as isContentBlock, zt as ContentSheetConditionalFormatValue } from "./content-oJmrSCr6.cjs";
2
2
  export { CONTENT_ANNOTATION_FIELDS, ConstructMarkerImbalance, ContentBitmapFill, ContentBitmapFillSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellFill, ContentCellFillSchema, ContentCellPatternType, ContentCellPatternTypeSchema, ContentCellValue, ContentCellValueSchema, ContentConstructEnd, ContentConstructEndSchema, ContentConstructStart, ContentConstructStartSchema, ContentDefinedName, ContentDefinedNameSchema, ContentDocument, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFillPattern, ContentFillPatternSchema, ContentFloatAlign, ContentFloatAlignSchema, ContentFloatAxis, ContentFloatAxisSchema, ContentFloatOrigin, ContentFloatOriginSchema, ContentFloatPosition, ContentFloatPositionSchema, ContentFont, ContentFontSchema, ContentFormula, ContentFormulaSchema, ContentGradientFill, ContentGradientFillSchema, ContentGradientStyle, ContentGradientStyleSchema, ContentHatchFill, ContentHatchFillSchema, ContentHatchStyle, ContentHatchStyleSchema, ContentImageBlock, ContentImageBlockSchema, ContentImageOriginal, ContentImageOriginalSchema, ContentInterpretation, ContentInterpretationSchema, ContentListMembership, ContentListMembershipSchema, ContentOrigin, ContentOriginSchema, ContentPageBreak, ContentPageBreakSchema, ContentPageFurniture, ContentPageFurnitureSchema, ContentParagraph, ContentParagraphBorders, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellComment, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetConditionalFormat, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyle, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValue, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidation, ContentSheetDataValidationSchema, ContentSheetDataValidationType, ContentSheetDataValidationTypeSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRange, ContentSheetRangeSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeDash, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentTranscript, ContentTranscriptSchema, ContentVector, ContentVectorSchema, DecimalString, DecimalStringSchema, FusedNode, IMAGE_FORMATS, ImageFormat, RUN_FONT_PROPERTY_SHAPE, RunConstructExtent, RunConstructExtentSchema, RunConstructFault, SheetRuleOperator, SheetRuleOperatorSchema, clampHeadingLevel, contentDocumentSharedFields, findConstructMarkerImbalance, findRunConstructFault, isContentBlock, isContentConstructEnd, isContentConstructStart, isRunConstructExtent, resolveCellFillColor, unrecognizedFillKind };