document-content-model 7.15.0 → 7.15.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 (51) hide show
  1. package/dist/a1.d.cts +1 -1
  2. package/dist/a1.d.ts +1 -1
  3. package/dist/codec.d.cts +1 -1
  4. package/dist/codec.d.ts +1 -1
  5. package/dist/{color-AELCDH_b.d.cts → color-CS3HtBwD.d.cts} +1 -1
  6. package/dist/{color-AELCDH_b.d.ts → color-CS3HtBwD.d.ts} +1 -1
  7. package/dist/color.d.cts +1 -1
  8. package/dist/color.d.ts +1 -1
  9. package/dist/{construct-GVdTKrE7.d.cts → construct-C9cYkjnd.d.cts} +3 -3
  10. package/dist/{construct-GVdTKrE7.d.ts → construct-C9cYkjnd.d.ts} +3 -3
  11. package/dist/construct.d.cts +1 -1
  12. package/dist/construct.d.ts +1 -1
  13. package/dist/{content-BzGOsekw.d.ts → content-BMrK9SrW.d.ts} +38 -38
  14. package/dist/{content-lXpPw1nC.d.cts → content-Dg9cb8mF.d.cts} +38 -38
  15. package/dist/content.d.cts +1 -1
  16. package/dist/content.d.ts +1 -1
  17. package/dist/decompose.cjs +13 -7
  18. package/dist/decompose.d.cts +2 -2
  19. package/dist/decompose.d.ts +2 -2
  20. package/dist/decompose.js +13 -7
  21. package/dist/definitions.d.cts +4 -4
  22. package/dist/definitions.d.ts +4 -4
  23. package/dist/factor-styles.d.cts +1 -1
  24. package/dist/factor-styles.d.ts +1 -1
  25. package/dist/flatten.d.cts +1 -1
  26. package/dist/flatten.d.ts +1 -1
  27. package/dist/index.d.cts +5 -5
  28. package/dist/index.d.ts +5 -5
  29. package/dist/math-layout.d.cts +1 -1
  30. package/dist/math-layout.d.ts +1 -1
  31. package/dist/{package-node-DosdPQ6x.d.ts → package-node-gA3Kpgl2.d.ts} +9 -9
  32. package/dist/{package-node-CWW0Evpn.d.cts → package-node-wxNXHAov.d.cts} +9 -9
  33. package/dist/package-node.d.cts +1 -1
  34. package/dist/package-node.d.ts +1 -1
  35. package/dist/package.d.cts +6 -6
  36. package/dist/package.d.ts +6 -6
  37. package/dist/schema-io.cjs +2 -2
  38. package/dist/schema-io.d.cts +1 -1
  39. package/dist/schema-io.d.ts +1 -1
  40. package/dist/schema-io.js +2 -2
  41. package/dist/{style-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
  42. package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
  43. package/dist/style.d.cts +1 -1
  44. package/dist/style.d.ts +1 -1
  45. package/dist/table-grid.d.cts +2 -2
  46. package/dist/table-grid.d.ts +2 -2
  47. package/dist/text-layout.d.cts +8 -8
  48. package/dist/text-layout.d.ts +8 -8
  49. package/package.json +1 -1
  50. package/schemas/content-document.schema.json +16 -16
  51. package/schemas/document-tree.schema.json +3 -3
package/dist/a1.d.cts CHANGED
@@ -14,6 +14,6 @@ interface CellRange {
14
14
  endColumn: number;
15
15
  }
16
16
  declare function parseRangeReference(ref: string): CellRange | undefined;
17
- declare function rangeReference(range: CellRange): string;
17
+ declare function rangeReference(range: Readonly<CellRange>): string;
18
18
  //#endregion
19
19
  export { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference };
package/dist/a1.d.ts CHANGED
@@ -14,6 +14,6 @@ interface CellRange {
14
14
  endColumn: number;
15
15
  }
16
16
  declare function parseRangeReference(ref: string): CellRange | undefined;
17
- declare function rangeReference(range: CellRange): string;
17
+ declare function rangeReference(range: Readonly<CellRange>): string;
18
18
  //#endregion
19
19
  export { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference };
package/dist/codec.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { C as ContentDocument } from "./content-lXpPw1nC.cjs";
1
+ import { C as ContentDocument } from "./content-Dg9cb8mF.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-BzGOsekw.js";
1
+ import { C as ContentDocument } from "./content-BMrK9SrW.js";
2
2
  //#region src/codec.d.ts
3
3
  interface ContentCodec<TOptions = unknown> {
4
4
  read(bytes: Uint8Array, options?: TOptions): ContentDocument;
@@ -8,6 +8,6 @@ declare const ColorSchema: z.ZodObject<{
8
8
  type Color = z.infer<typeof ColorSchema>;
9
9
  declare const COLOR_BLACK: Color;
10
10
  declare function rgbHexToColor(hex: string): Color;
11
- declare function colorToRgbHex(color: Color): string;
11
+ declare function colorToRgbHex(color: Readonly<Color>): string;
12
12
  //#endregion
13
13
  export { rgbHexToColor as a, colorToRgbHex as i, Color as n, ColorSchema as r, COLOR_BLACK as t };
@@ -8,6 +8,6 @@ declare const ColorSchema: z.ZodObject<{
8
8
  type Color = z.infer<typeof ColorSchema>;
9
9
  declare const COLOR_BLACK: Color;
10
10
  declare function rgbHexToColor(hex: string): Color;
11
- declare function colorToRgbHex(color: Color): string;
11
+ declare function colorToRgbHex(color: Readonly<Color>): string;
12
12
  //#endregion
13
13
  export { rgbHexToColor as a, colorToRgbHex as i, Color as n, ColorSchema as r, COLOR_BLACK as t };
package/dist/color.d.cts CHANGED
@@ -1,2 +1,2 @@
1
- import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-AELCDH_b.cjs";
1
+ import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-CS3HtBwD.cjs";
2
2
  export { COLOR_BLACK, Color, ColorSchema, colorToRgbHex, rgbHexToColor };
package/dist/color.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-AELCDH_b.js";
1
+ import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-CS3HtBwD.js";
2
2
  export { COLOR_BLACK, Color, ColorSchema, colorToRgbHex, rgbHexToColor };
@@ -1,12 +1,12 @@
1
1
  import { z } from "zod";
2
2
  //#region src/construct.d.ts
3
3
  declare const ContentControlTypeSchema: z.ZodEnum<{
4
- date: "date";
5
4
  richText: "richText";
6
5
  plainText: "plainText";
7
6
  checkbox: "checkbox";
8
7
  dropDown: "dropDown";
9
8
  comboBox: "comboBox";
9
+ date: "date";
10
10
  picture: "picture";
11
11
  repeatingSection: "repeatingSection";
12
12
  button: "button";
@@ -23,12 +23,12 @@ type ContentControlLock = z.infer<typeof ContentControlLockSchema>;
23
23
  declare const ContentControlDescriptorSchema: z.ZodObject<{
24
24
  kind: z.ZodLiteral<"contentControl">;
25
25
  controlType: z.ZodEnum<{
26
- date: "date";
27
26
  richText: "richText";
28
27
  plainText: "plainText";
29
28
  checkbox: "checkbox";
30
29
  dropDown: "dropDown";
31
30
  comboBox: "comboBox";
31
+ date: "date";
32
32
  picture: "picture";
33
33
  repeatingSection: "repeatingSection";
34
34
  button: "button";
@@ -252,12 +252,12 @@ type DivisionDescriptor = z.infer<typeof DivisionDescriptorSchema>;
252
252
  declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
253
253
  kind: z.ZodLiteral<"contentControl">;
254
254
  controlType: z.ZodEnum<{
255
- date: "date";
256
255
  richText: "richText";
257
256
  plainText: "plainText";
258
257
  checkbox: "checkbox";
259
258
  dropDown: "dropDown";
260
259
  comboBox: "comboBox";
260
+ date: "date";
261
261
  picture: "picture";
262
262
  repeatingSection: "repeatingSection";
263
263
  button: "button";
@@ -1,12 +1,12 @@
1
1
  import { z } from "zod";
2
2
  //#region src/construct.d.ts
3
3
  declare const ContentControlTypeSchema: z.ZodEnum<{
4
- date: "date";
5
4
  richText: "richText";
6
5
  plainText: "plainText";
7
6
  checkbox: "checkbox";
8
7
  dropDown: "dropDown";
9
8
  comboBox: "comboBox";
9
+ date: "date";
10
10
  picture: "picture";
11
11
  repeatingSection: "repeatingSection";
12
12
  button: "button";
@@ -23,12 +23,12 @@ type ContentControlLock = z.infer<typeof ContentControlLockSchema>;
23
23
  declare const ContentControlDescriptorSchema: z.ZodObject<{
24
24
  kind: z.ZodLiteral<"contentControl">;
25
25
  controlType: z.ZodEnum<{
26
- date: "date";
27
26
  richText: "richText";
28
27
  plainText: "plainText";
29
28
  checkbox: "checkbox";
30
29
  dropDown: "dropDown";
31
30
  comboBox: "comboBox";
31
+ date: "date";
32
32
  picture: "picture";
33
33
  repeatingSection: "repeatingSection";
34
34
  button: "button";
@@ -252,12 +252,12 @@ type DivisionDescriptor = z.infer<typeof DivisionDescriptorSchema>;
252
252
  declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
253
253
  kind: z.ZodLiteral<"contentControl">;
254
254
  controlType: z.ZodEnum<{
255
- date: "date";
256
255
  richText: "richText";
257
256
  plainText: "plainText";
258
257
  checkbox: "checkbox";
259
258
  dropDown: "dropDown";
260
259
  comboBox: "comboBox";
260
+ date: "date";
261
261
  picture: "picture";
262
262
  repeatingSection: "repeatingSection";
263
263
  button: "button";
@@ -1,2 +1,2 @@
1
- import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-GVdTKrE7.cjs";
1
+ import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-C9cYkjnd.cjs";
2
2
  export { AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, ConstructDescriptor, ConstructDescriptorSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, FieldDescriptor, FieldDescriptorSchema, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema };
@@ -1,2 +1,2 @@
1
- import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-GVdTKrE7.js";
1
+ import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-C9cYkjnd.js";
2
2
  export { AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, ConstructDescriptor, ConstructDescriptorSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, FieldDescriptor, FieldDescriptorSchema, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema };
@@ -1,9 +1,9 @@
1
1
  import { d as MathMlNode } from "./mathml-Czqc1mdZ.js";
2
2
  import { p as MathExpression } from "./math-BScHxedi.js";
3
- import { n as Color } from "./color-AELCDH_b.js";
3
+ import { n as Color } from "./color-CS3HtBwD.js";
4
4
  import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.js";
5
5
  import { r as SourceResidue } from "./source-Bas5ol6f.js";
6
- import { o as TextDirection } from "./style-D06NwxAJ.js";
6
+ import { o as TextDirection } from "./style-BGMcYrD2.js";
7
7
  import { z } from "zod";
8
8
  //#region src/content.d.ts
9
9
  type FusedNode<T> = T & {
@@ -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";
209
208
  richText: "richText";
210
209
  plainText: "plainText";
211
210
  checkbox: "checkbox";
212
211
  dropDown: "dropDown";
213
212
  comboBox: "comboBox";
213
+ date: "date";
214
214
  picture: "picture";
215
215
  repeatingSection: "repeatingSection";
216
216
  button: "button";
@@ -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";
592
591
  richText: "richText";
593
592
  plainText: "plainText";
594
593
  checkbox: "checkbox";
595
594
  dropDown: "dropDown";
596
595
  comboBox: "comboBox";
596
+ date: "date";
597
597
  picture: "picture";
598
598
  repeatingSection: "repeatingSection";
599
599
  button: "button";
@@ -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
- center: "center";
788
787
  right: "right";
788
+ center: "center";
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";
925
924
  right: "right";
926
925
  top: "top";
927
926
  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";
968
967
  right: "right";
969
968
  top: "top";
970
969
  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";
1013
1012
  right: "right";
1014
1013
  top: "top";
1015
1014
  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";
1056
1055
  right: "right";
1057
1056
  top: "top";
1058
1057
  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";
1163
1162
  right: "right";
1164
1163
  top: "top";
1165
1164
  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";
1206
1205
  right: "right";
1207
1206
  top: "top";
1208
1207
  bottom: "bottom";
1208
+ center: "center";
1209
1209
  inside: "inside";
1210
1210
  outside: "outside";
1211
1211
  }>;
@@ -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";
1309
1308
  richText: "richText";
1310
1309
  plainText: "plainText";
1311
1310
  checkbox: "checkbox";
1312
1311
  dropDown: "dropDown";
1313
1312
  comboBox: "comboBox";
1313
+ date: "date";
1314
1314
  picture: "picture";
1315
1315
  repeatingSection: "repeatingSection";
1316
1316
  button: "button";
@@ -1593,12 +1593,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1593
1593
  }, z.core.$strip>>;
1594
1594
  }, z.core.$strip>>;
1595
1595
  objectKind: z.ZodEnum<{
1596
- chart: "chart";
1597
1596
  formula: "formula";
1598
1597
  wordprocessing: "wordprocessing";
1599
1598
  presentation: "presentation";
1600
1599
  spreadsheet: "spreadsheet";
1601
1600
  drawing: "drawing";
1601
+ chart: "chart";
1602
1602
  }>;
1603
1603
  document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
1604
1604
  sections: z.ZodArray<z.ZodObject<{
@@ -2297,8 +2297,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2297
2297
  }, z.core.$strip>>;
2298
2298
  alignment: z.ZodOptional<z.ZodEnum<{
2299
2299
  left: "left";
2300
- center: "center";
2301
2300
  right: "right";
2301
+ center: "center";
2302
2302
  justify: "justify";
2303
2303
  }>>;
2304
2304
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -2440,10 +2440,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2440
2440
  }>;
2441
2441
  align: z.ZodEnum<{
2442
2442
  left: "left";
2443
- center: "center";
2444
2443
  right: "right";
2445
2444
  top: "top";
2446
2445
  bottom: "bottom";
2446
+ center: "center";
2447
2447
  inside: "inside";
2448
2448
  outside: "outside";
2449
2449
  }>;
@@ -2483,10 +2483,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2483
2483
  }>;
2484
2484
  align: z.ZodEnum<{
2485
2485
  left: "left";
2486
- center: "center";
2487
2486
  right: "right";
2488
2487
  top: "top";
2489
2488
  bottom: "bottom";
2489
+ center: "center";
2490
2490
  inside: "inside";
2491
2491
  outside: "outside";
2492
2492
  }>;
@@ -2575,10 +2575,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2575
2575
  endColumn: z.ZodNumber;
2576
2576
  }, z.core.$strip>>;
2577
2577
  type: z.ZodEnum<{
2578
- decimal: "decimal";
2579
- list: "list";
2580
2578
  date: "date";
2581
2579
  custom: "custom";
2580
+ decimal: "decimal";
2581
+ list: "list";
2582
2582
  time: "time";
2583
2583
  whole: "whole";
2584
2584
  textLength: "textLength";
@@ -4610,9 +4610,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
4610
4610
  }, z.core.$strip>>;
4611
4611
  }, z.core.$strip>>;
4612
4612
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4613
- center: "center";
4614
4613
  top: "top";
4615
4614
  bottom: "bottom";
4615
+ center: "center";
4616
4616
  }>>;
4617
4617
  formula: z.ZodOptional<z.ZodString>;
4618
4618
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4837,9 +4837,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4837
4837
  }, z.core.$strip>>;
4838
4838
  }, z.core.$strip>>;
4839
4839
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4840
- center: "center";
4841
4840
  top: "top";
4842
4841
  bottom: "bottom";
4842
+ center: "center";
4843
4843
  }>>;
4844
4844
  formula: z.ZodOptional<z.ZodString>;
4845
4845
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5104,9 +5104,9 @@ declare const ContentTableSchema: z.ZodObject<{
5104
5104
  }, z.core.$strip>>;
5105
5105
  }, z.core.$strip>>;
5106
5106
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5107
- center: "center";
5108
5107
  top: "top";
5109
5108
  bottom: "bottom";
5109
+ center: "center";
5110
5110
  }>>;
5111
5111
  formula: z.ZodOptional<z.ZodString>;
5112
5112
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5840,8 +5840,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
5840
5840
  }, z.core.$strip>>;
5841
5841
  alignment: z.ZodOptional<z.ZodEnum<{
5842
5842
  left: "left";
5843
- center: "center";
5844
5843
  right: "right";
5844
+ center: "center";
5845
5845
  justify: "justify";
5846
5846
  }>>;
5847
5847
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -5973,10 +5973,10 @@ declare const SheetRuleOperatorSchema: z.ZodEnum<{
5973
5973
  }>;
5974
5974
  type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
5975
5975
  declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
5976
- decimal: "decimal";
5977
- list: "list";
5978
5976
  date: "date";
5979
5977
  custom: "custom";
5978
+ decimal: "decimal";
5979
+ list: "list";
5980
5980
  time: "time";
5981
5981
  whole: "whole";
5982
5982
  textLength: "textLength";
@@ -5990,10 +5990,10 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
5990
5990
  endColumn: z.ZodNumber;
5991
5991
  }, z.core.$strip>>;
5992
5992
  type: z.ZodEnum<{
5993
- decimal: "decimal";
5994
- list: "list";
5995
5993
  date: "date";
5996
5994
  custom: "custom";
5995
+ decimal: "decimal";
5996
+ list: "list";
5997
5997
  time: "time";
5998
5998
  whole: "whole";
5999
5999
  textLength: "textLength";
@@ -6745,10 +6745,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6745
6745
  }>;
6746
6746
  align: z.ZodEnum<{
6747
6747
  left: "left";
6748
- center: "center";
6749
6748
  right: "right";
6750
6749
  top: "top";
6751
6750
  bottom: "bottom";
6751
+ center: "center";
6752
6752
  inside: "inside";
6753
6753
  outside: "outside";
6754
6754
  }>;
@@ -6788,10 +6788,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6788
6788
  }>;
6789
6789
  align: z.ZodEnum<{
6790
6790
  left: "left";
6791
- center: "center";
6792
6791
  right: "right";
6793
6792
  top: "top";
6794
6793
  bottom: "bottom";
6794
+ center: "center";
6795
6795
  inside: "inside";
6796
6796
  outside: "outside";
6797
6797
  }>;
@@ -7182,8 +7182,8 @@ declare const ContentSheetSchema: z.ZodObject<{
7182
7182
  }, z.core.$strip>>;
7183
7183
  alignment: z.ZodOptional<z.ZodEnum<{
7184
7184
  left: "left";
7185
- center: "center";
7186
7185
  right: "right";
7186
+ center: "center";
7187
7187
  justify: "justify";
7188
7188
  }>>;
7189
7189
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -7325,10 +7325,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7325
7325
  }>;
7326
7326
  align: z.ZodEnum<{
7327
7327
  left: "left";
7328
- center: "center";
7329
7328
  right: "right";
7330
7329
  top: "top";
7331
7330
  bottom: "bottom";
7331
+ center: "center";
7332
7332
  inside: "inside";
7333
7333
  outside: "outside";
7334
7334
  }>;
@@ -7368,10 +7368,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7368
7368
  }>;
7369
7369
  align: z.ZodEnum<{
7370
7370
  left: "left";
7371
- center: "center";
7372
7371
  right: "right";
7373
7372
  top: "top";
7374
7373
  bottom: "bottom";
7374
+ center: "center";
7375
7375
  inside: "inside";
7376
7376
  outside: "outside";
7377
7377
  }>;
@@ -7460,10 +7460,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7460
7460
  endColumn: z.ZodNumber;
7461
7461
  }, z.core.$strip>>;
7462
7462
  type: z.ZodEnum<{
7463
- decimal: "decimal";
7464
- list: "list";
7465
7463
  date: "date";
7466
7464
  custom: "custom";
7465
+ decimal: "decimal";
7466
+ list: "list";
7467
7467
  time: "time";
7468
7468
  whole: "whole";
7469
7469
  textLength: "textLength";
@@ -10310,8 +10310,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10310
10310
  }, z.core.$strip>>;
10311
10311
  alignment: z.ZodOptional<z.ZodEnum<{
10312
10312
  left: "left";
10313
- center: "center";
10314
10313
  right: "right";
10314
+ center: "center";
10315
10315
  justify: "justify";
10316
10316
  }>>;
10317
10317
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -10453,10 +10453,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10453
10453
  }>;
10454
10454
  align: z.ZodEnum<{
10455
10455
  left: "left";
10456
- center: "center";
10457
10456
  right: "right";
10458
10457
  top: "top";
10459
10458
  bottom: "bottom";
10459
+ center: "center";
10460
10460
  inside: "inside";
10461
10461
  outside: "outside";
10462
10462
  }>;
@@ -10496,10 +10496,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10496
10496
  }>;
10497
10497
  align: z.ZodEnum<{
10498
10498
  left: "left";
10499
- center: "center";
10500
10499
  right: "right";
10501
10500
  top: "top";
10502
10501
  bottom: "bottom";
10502
+ center: "center";
10503
10503
  inside: "inside";
10504
10504
  outside: "outside";
10505
10505
  }>;
@@ -10588,10 +10588,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10588
10588
  endColumn: z.ZodNumber;
10589
10589
  }, z.core.$strip>>;
10590
10590
  type: z.ZodEnum<{
10591
- decimal: "decimal";
10592
- list: "list";
10593
10591
  date: "date";
10594
10592
  custom: "custom";
10593
+ decimal: "decimal";
10594
+ list: "list";
10595
10595
  time: "time";
10596
10596
  whole: "whole";
10597
10597
  textLength: "textLength";