document-content-model 7.8.0 → 7.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{construct-GVdTKrE7.d.cts → construct-C4XiF8OW.d.cts} +3 -3
- package/dist/{construct-GVdTKrE7.d.ts → construct-C4XiF8OW.d.ts} +3 -3
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-DAc4O272.d.ts → content-C1hJ6olW.d.ts} +154 -149
- package/dist/{content-SgKmas45.d.cts → content-DN5CqH6Y.d.cts} +154 -149
- package/dist/content-json-schema-defs.cjs +2 -0
- package/dist/content-json-schema-defs.js +2 -0
- package/dist/content.cjs +1 -0
- package/dist/content.d.cts +1 -1
- package/dist/content.d.ts +1 -1
- package/dist/content.js +1 -0
- package/dist/decompose.d.cts +2 -2
- package/dist/decompose.d.ts +2 -2
- package/dist/definitions.d.cts +4 -4
- package/dist/definitions.d.ts +4 -4
- package/dist/factor-styles.d.cts +1 -1
- package/dist/factor-styles.d.ts +1 -1
- package/dist/flatten.d.cts +1 -1
- package/dist/flatten.d.ts +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/{package-node-BnFUnaa0.d.ts → package-node-B9aFWtrZ.d.ts} +37 -37
- package/dist/{package-node-DnUyGT61.d.cts → package-node-DktLHAKG.d.cts} +37 -37
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.d.cts +7 -7
- package/dist/package.d.ts +7 -7
- package/dist/schema-io.cjs +2 -2
- package/dist/schema-io.d.cts +1 -1
- package/dist/schema-io.d.ts +1 -1
- package/dist/schema-io.js +2 -2
- package/dist/{style-BGMcYrD2.d.cts → style-D06NwxAJ.d.cts} +1 -1
- package/dist/{style-BGMcYrD2.d.ts → style-D06NwxAJ.d.ts} +1 -1
- package/dist/style.d.cts +1 -1
- package/dist/style.d.ts +1 -1
- package/dist/text-layout.d.cts +1 -1
- package/dist/text-layout.d.ts +1 -1
- package/package.json +1 -1
- package/schemas/content-document.schema.json +22 -13
- package/schemas/document-tree.schema.json +9 -3
|
@@ -3,19 +3,19 @@ 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-
|
|
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 & {
|
|
10
10
|
frames?: LayoutFrame[];
|
|
11
11
|
};
|
|
12
12
|
declare const ContentOriginSchema: z.ZodEnum<{
|
|
13
|
-
body: "body";
|
|
14
13
|
chart: "chart";
|
|
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<{
|
|
@@ -53,12 +53,12 @@ declare const ContentInterpretationSchema: z.ZodObject<{
|
|
|
53
53
|
type ContentInterpretation = z.infer<typeof ContentInterpretationSchema>;
|
|
54
54
|
declare const CONTENT_ANNOTATION_FIELDS: {
|
|
55
55
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
56
|
-
body: "body";
|
|
57
56
|
chart: "chart";
|
|
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<{
|
|
@@ -109,12 +109,12 @@ declare const ContentFontSchema: z.ZodObject<{
|
|
|
109
109
|
type ContentFont = z.infer<typeof ContentFontSchema>;
|
|
110
110
|
declare const ContentRunSchema: z.ZodObject<{
|
|
111
111
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
112
|
-
body: "body";
|
|
113
112
|
chart: "chart";
|
|
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<{
|
|
@@ -274,10 +274,10 @@ declare const RunConstructExtentSchema: z.ZodObject<{
|
|
|
274
274
|
}, z.core.$strict>, z.ZodObject<{
|
|
275
275
|
kind: z.ZodLiteral<"anchor">;
|
|
276
276
|
anchorType: z.ZodEnum<{
|
|
277
|
+
comment: "comment";
|
|
277
278
|
bookmark: "bookmark";
|
|
278
279
|
footnote: "footnote";
|
|
279
280
|
endnote: "endnote";
|
|
280
|
-
comment: "comment";
|
|
281
281
|
}>;
|
|
282
282
|
name: z.ZodString;
|
|
283
283
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -479,12 +479,12 @@ declare const ContentParagraphBordersSchema: z.ZodObject<{
|
|
|
479
479
|
type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
|
|
480
480
|
declare const ContentParagraphSchema: z.ZodObject<{
|
|
481
481
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
482
|
-
body: "body";
|
|
483
482
|
chart: "chart";
|
|
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<{
|
|
@@ -508,12 +508,12 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
508
508
|
kind: z.ZodLiteral<"paragraph">;
|
|
509
509
|
runs: z.ZodArray<z.ZodObject<{
|
|
510
510
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
511
|
-
body: "body";
|
|
512
511
|
chart: "chart";
|
|
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<{
|
|
@@ -657,10 +657,10 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
657
657
|
}, z.core.$strict>, z.ZodObject<{
|
|
658
658
|
kind: z.ZodLiteral<"anchor">;
|
|
659
659
|
anchorType: z.ZodEnum<{
|
|
660
|
+
comment: "comment";
|
|
660
661
|
bookmark: "bookmark";
|
|
661
662
|
footnote: "footnote";
|
|
662
663
|
endnote: "endnote";
|
|
663
|
-
comment: "comment";
|
|
664
664
|
}>;
|
|
665
665
|
name: z.ZodString;
|
|
666
666
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -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
|
}>;
|
|
@@ -1075,12 +1075,12 @@ declare const ContentImageOriginalSchema: z.ZodObject<{
|
|
|
1075
1075
|
type ContentImageOriginal = z.infer<typeof ContentImageOriginalSchema>;
|
|
1076
1076
|
declare const ContentImageBlockSchema: z.ZodObject<{
|
|
1077
1077
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1078
|
-
body: "body";
|
|
1079
1078
|
chart: "chart";
|
|
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<{
|
|
@@ -1122,6 +1122,7 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1122
1122
|
}, z.core.$strip>>;
|
|
1123
1123
|
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
1124
1124
|
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
1125
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
1125
1126
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
1126
1127
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
1127
1128
|
relativeTo: z.ZodEnum<{
|
|
@@ -1158,10 +1159,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1158
1159
|
}>;
|
|
1159
1160
|
align: z.ZodEnum<{
|
|
1160
1161
|
left: "left";
|
|
1162
|
+
center: "center";
|
|
1161
1163
|
right: "right";
|
|
1162
1164
|
top: "top";
|
|
1163
1165
|
bottom: "bottom";
|
|
1164
|
-
center: "center";
|
|
1165
1166
|
inside: "inside";
|
|
1166
1167
|
outside: "outside";
|
|
1167
1168
|
}>;
|
|
@@ -1201,10 +1202,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1201
1202
|
}>;
|
|
1202
1203
|
align: z.ZodEnum<{
|
|
1203
1204
|
left: "left";
|
|
1205
|
+
center: "center";
|
|
1204
1206
|
right: "right";
|
|
1205
1207
|
top: "top";
|
|
1206
1208
|
bottom: "bottom";
|
|
1207
|
-
center: "center";
|
|
1208
1209
|
inside: "inside";
|
|
1209
1210
|
outside: "outside";
|
|
1210
1211
|
}>;
|
|
@@ -1242,12 +1243,12 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1242
1243
|
type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
|
|
1243
1244
|
declare const ContentPageBreakSchema: z.ZodObject<{
|
|
1244
1245
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1245
|
-
body: "body";
|
|
1246
1246
|
chart: "chart";
|
|
1247
1247
|
diagram: "diagram";
|
|
1248
1248
|
table: "table";
|
|
1249
1249
|
image: "image";
|
|
1250
1250
|
notes: "notes";
|
|
1251
|
+
body: "body";
|
|
1251
1252
|
}>>;
|
|
1252
1253
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1253
1254
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1373,10 +1374,10 @@ declare const ContentConstructStartSchema: z.ZodObject<{
|
|
|
1373
1374
|
}, z.core.$strict>, z.ZodObject<{
|
|
1374
1375
|
kind: z.ZodLiteral<"anchor">;
|
|
1375
1376
|
anchorType: z.ZodEnum<{
|
|
1377
|
+
comment: "comment";
|
|
1376
1378
|
bookmark: "bookmark";
|
|
1377
1379
|
footnote: "footnote";
|
|
1378
1380
|
endnote: "endnote";
|
|
1379
|
-
comment: "comment";
|
|
1380
1381
|
}>;
|
|
1381
1382
|
name: z.ZodString;
|
|
1382
1383
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -1554,12 +1555,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1554
1555
|
heightPt: z.ZodNumber;
|
|
1555
1556
|
}, z.core.$strip>>>;
|
|
1556
1557
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1557
|
-
body: "body";
|
|
1558
1558
|
chart: "chart";
|
|
1559
1559
|
diagram: "diagram";
|
|
1560
1560
|
table: "table";
|
|
1561
1561
|
image: "image";
|
|
1562
1562
|
notes: "notes";
|
|
1563
|
+
body: "body";
|
|
1563
1564
|
}>>;
|
|
1564
1565
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1565
1566
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1591,12 +1592,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1591
1592
|
document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1592
1593
|
sections: z.ZodArray<z.ZodObject<{
|
|
1593
1594
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1594
|
-
body: "body";
|
|
1595
1595
|
chart: "chart";
|
|
1596
1596
|
diagram: "diagram";
|
|
1597
1597
|
table: "table";
|
|
1598
1598
|
image: "image";
|
|
1599
1599
|
notes: "notes";
|
|
1600
|
+
body: "body";
|
|
1600
1601
|
}>>;
|
|
1601
1602
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1602
1603
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1735,12 +1736,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1735
1736
|
}, z.core.$strip>, z.ZodObject<{
|
|
1736
1737
|
slides: z.ZodArray<z.ZodObject<{
|
|
1737
1738
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1738
|
-
body: "body";
|
|
1739
1739
|
chart: "chart";
|
|
1740
1740
|
diagram: "diagram";
|
|
1741
1741
|
table: "table";
|
|
1742
1742
|
image: "image";
|
|
1743
1743
|
notes: "notes";
|
|
1744
|
+
body: "body";
|
|
1744
1745
|
}>>;
|
|
1745
1746
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1746
1747
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1768,12 +1769,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1768
1769
|
shapes: z.ZodArray<z.ZodObject<{
|
|
1769
1770
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
1770
1771
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1771
|
-
body: "body";
|
|
1772
1772
|
chart: "chart";
|
|
1773
1773
|
diagram: "diagram";
|
|
1774
1774
|
table: "table";
|
|
1775
1775
|
image: "image";
|
|
1776
1776
|
notes: "notes";
|
|
1777
|
+
body: "body";
|
|
1777
1778
|
}>>;
|
|
1778
1779
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1779
1780
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1930,12 +1931,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1930
1931
|
}, z.core.$strip>, z.ZodObject<{
|
|
1931
1932
|
sheets: z.ZodArray<z.ZodObject<{
|
|
1932
1933
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1933
|
-
body: "body";
|
|
1934
1934
|
chart: "chart";
|
|
1935
1935
|
diagram: "diagram";
|
|
1936
1936
|
table: "table";
|
|
1937
1937
|
image: "image";
|
|
1938
1938
|
notes: "notes";
|
|
1939
|
+
body: "body";
|
|
1939
1940
|
}>>;
|
|
1940
1941
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1941
1942
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1959,12 +1960,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1959
1960
|
name: z.ZodString;
|
|
1960
1961
|
cells: z.ZodArray<z.ZodObject<{
|
|
1961
1962
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1962
|
-
body: "body";
|
|
1963
1963
|
chart: "chart";
|
|
1964
1964
|
diagram: "diagram";
|
|
1965
1965
|
table: "table";
|
|
1966
1966
|
image: "image";
|
|
1967
1967
|
notes: "notes";
|
|
1968
|
+
body: "body";
|
|
1968
1969
|
}>>;
|
|
1969
1970
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1970
1971
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2039,12 +2040,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2039
2040
|
}, z.core.$strip>>;
|
|
2040
2041
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2041
2042
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
2042
|
-
body: "body";
|
|
2043
2043
|
chart: "chart";
|
|
2044
2044
|
diagram: "diagram";
|
|
2045
2045
|
table: "table";
|
|
2046
2046
|
image: "image";
|
|
2047
2047
|
notes: "notes";
|
|
2048
|
+
body: "body";
|
|
2048
2049
|
}>>;
|
|
2049
2050
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2050
2051
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2279,8 +2280,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2279
2280
|
}, z.core.$strip>>;
|
|
2280
2281
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
2281
2282
|
left: "left";
|
|
2282
|
-
right: "right";
|
|
2283
2283
|
center: "center";
|
|
2284
|
+
right: "right";
|
|
2284
2285
|
justify: "justify";
|
|
2285
2286
|
}>>;
|
|
2286
2287
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2338,12 +2339,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2338
2339
|
}, z.core.$strip>>;
|
|
2339
2340
|
images: z.ZodArray<z.ZodObject<{
|
|
2340
2341
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
2341
|
-
body: "body";
|
|
2342
2342
|
chart: "chart";
|
|
2343
2343
|
diagram: "diagram";
|
|
2344
2344
|
table: "table";
|
|
2345
2345
|
image: "image";
|
|
2346
2346
|
notes: "notes";
|
|
2347
|
+
body: "body";
|
|
2347
2348
|
}>>;
|
|
2348
2349
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2349
2350
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2385,6 +2386,7 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2385
2386
|
}, z.core.$strip>>;
|
|
2386
2387
|
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
2387
2388
|
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
2389
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
2388
2390
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
2389
2391
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
2390
2392
|
relativeTo: z.ZodEnum<{
|
|
@@ -2421,10 +2423,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2421
2423
|
}>;
|
|
2422
2424
|
align: z.ZodEnum<{
|
|
2423
2425
|
left: "left";
|
|
2426
|
+
center: "center";
|
|
2424
2427
|
right: "right";
|
|
2425
2428
|
top: "top";
|
|
2426
2429
|
bottom: "bottom";
|
|
2427
|
-
center: "center";
|
|
2428
2430
|
inside: "inside";
|
|
2429
2431
|
outside: "outside";
|
|
2430
2432
|
}>;
|
|
@@ -2464,10 +2466,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2464
2466
|
}>;
|
|
2465
2467
|
align: z.ZodEnum<{
|
|
2466
2468
|
left: "left";
|
|
2469
|
+
center: "center";
|
|
2467
2470
|
right: "right";
|
|
2468
2471
|
top: "top";
|
|
2469
2472
|
bottom: "bottom";
|
|
2470
|
-
center: "center";
|
|
2471
2473
|
inside: "inside";
|
|
2472
2474
|
outside: "outside";
|
|
2473
2475
|
}>;
|
|
@@ -2556,11 +2558,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2556
2558
|
endColumn: z.ZodNumber;
|
|
2557
2559
|
}, z.core.$strip>>;
|
|
2558
2560
|
type: z.ZodEnum<{
|
|
2561
|
+
decimal: "decimal";
|
|
2562
|
+
list: "list";
|
|
2559
2563
|
date: "date";
|
|
2560
2564
|
custom: "custom";
|
|
2561
2565
|
time: "time";
|
|
2562
|
-
decimal: "decimal";
|
|
2563
|
-
list: "list";
|
|
2564
2566
|
whole: "whole";
|
|
2565
2567
|
textLength: "textLength";
|
|
2566
2568
|
}>;
|
|
@@ -3031,11 +3033,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3031
3033
|
stops: z.ZodArray<z.ZodObject<{
|
|
3032
3034
|
value: z.ZodObject<{
|
|
3033
3035
|
type: z.ZodEnum<{
|
|
3034
|
-
num: "num";
|
|
3035
|
-
min: "min";
|
|
3036
|
-
max: "max";
|
|
3037
3036
|
formula: "formula";
|
|
3038
3037
|
percent: "percent";
|
|
3038
|
+
num: "num";
|
|
3039
|
+
max: "max";
|
|
3040
|
+
min: "min";
|
|
3039
3041
|
percentile: "percentile";
|
|
3040
3042
|
}>;
|
|
3041
3043
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3078,22 +3080,22 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3078
3080
|
}, z.core.$strip>, z.ZodObject<{
|
|
3079
3081
|
min: z.ZodObject<{
|
|
3080
3082
|
type: z.ZodEnum<{
|
|
3081
|
-
num: "num";
|
|
3082
|
-
min: "min";
|
|
3083
|
-
max: "max";
|
|
3084
3083
|
formula: "formula";
|
|
3085
3084
|
percent: "percent";
|
|
3085
|
+
num: "num";
|
|
3086
|
+
max: "max";
|
|
3087
|
+
min: "min";
|
|
3086
3088
|
percentile: "percentile";
|
|
3087
3089
|
}>;
|
|
3088
3090
|
value: z.ZodOptional<z.ZodString>;
|
|
3089
3091
|
}, z.core.$strip>;
|
|
3090
3092
|
max: z.ZodObject<{
|
|
3091
3093
|
type: z.ZodEnum<{
|
|
3092
|
-
num: "num";
|
|
3093
|
-
min: "min";
|
|
3094
|
-
max: "max";
|
|
3095
3094
|
formula: "formula";
|
|
3096
3095
|
percent: "percent";
|
|
3096
|
+
num: "num";
|
|
3097
|
+
max: "max";
|
|
3098
|
+
min: "min";
|
|
3097
3099
|
percentile: "percentile";
|
|
3098
3100
|
}>;
|
|
3099
3101
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3137,11 +3139,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3137
3139
|
iconSetType: z.ZodString;
|
|
3138
3140
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
3139
3141
|
type: z.ZodEnum<{
|
|
3140
|
-
num: "num";
|
|
3141
|
-
min: "min";
|
|
3142
|
-
max: "max";
|
|
3143
3142
|
formula: "formula";
|
|
3144
3143
|
percent: "percent";
|
|
3144
|
+
num: "num";
|
|
3145
|
+
max: "max";
|
|
3146
|
+
min: "min";
|
|
3145
3147
|
percentile: "percentile";
|
|
3146
3148
|
}>;
|
|
3147
3149
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3274,12 +3276,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3274
3276
|
}, z.core.$strip>, z.ZodObject<{
|
|
3275
3277
|
pages: z.ZodArray<z.ZodObject<{
|
|
3276
3278
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3277
|
-
body: "body";
|
|
3278
3279
|
chart: "chart";
|
|
3279
3280
|
diagram: "diagram";
|
|
3280
3281
|
table: "table";
|
|
3281
3282
|
image: "image";
|
|
3282
3283
|
notes: "notes";
|
|
3284
|
+
body: "body";
|
|
3283
3285
|
}>>;
|
|
3284
3286
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3285
3287
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3307,12 +3309,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3307
3309
|
shapes: z.ZodArray<z.ZodObject<{
|
|
3308
3310
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3309
3311
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3310
|
-
body: "body";
|
|
3311
3312
|
chart: "chart";
|
|
3312
3313
|
diagram: "diagram";
|
|
3313
3314
|
table: "table";
|
|
3314
3315
|
image: "image";
|
|
3315
3316
|
notes: "notes";
|
|
3317
|
+
body: "body";
|
|
3316
3318
|
}>>;
|
|
3317
3319
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3318
3320
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3379,12 +3381,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3379
3381
|
}, z.core.$strip>>;
|
|
3380
3382
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3381
3383
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3382
|
-
body: "body";
|
|
3383
3384
|
chart: "chart";
|
|
3384
3385
|
diagram: "diagram";
|
|
3385
3386
|
table: "table";
|
|
3386
3387
|
image: "image";
|
|
3387
3388
|
notes: "notes";
|
|
3389
|
+
body: "body";
|
|
3388
3390
|
}>>;
|
|
3389
3391
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3390
3392
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3517,12 +3519,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3517
3519
|
}, z.core.$strip>>>;
|
|
3518
3520
|
}, z.core.$strip>, z.ZodObject<{
|
|
3519
3521
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3520
|
-
body: "body";
|
|
3521
3522
|
chart: "chart";
|
|
3522
3523
|
diagram: "diagram";
|
|
3523
3524
|
table: "table";
|
|
3524
3525
|
image: "image";
|
|
3525
3526
|
notes: "notes";
|
|
3527
|
+
body: "body";
|
|
3526
3528
|
}>>;
|
|
3527
3529
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3528
3530
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3655,12 +3657,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3655
3657
|
}, z.core.$strip>>>;
|
|
3656
3658
|
}, z.core.$strip>, z.ZodObject<{
|
|
3657
3659
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3658
|
-
body: "body";
|
|
3659
3660
|
chart: "chart";
|
|
3660
3661
|
diagram: "diagram";
|
|
3661
3662
|
table: "table";
|
|
3662
3663
|
image: "image";
|
|
3663
3664
|
notes: "notes";
|
|
3665
|
+
body: "body";
|
|
3664
3666
|
}>>;
|
|
3665
3667
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3666
3668
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3743,12 +3745,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3743
3745
|
}, z.core.$strip>>>;
|
|
3744
3746
|
}, z.core.$strip>, z.ZodObject<{
|
|
3745
3747
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3746
|
-
body: "body";
|
|
3747
3748
|
chart: "chart";
|
|
3748
3749
|
diagram: "diagram";
|
|
3749
3750
|
table: "table";
|
|
3750
3751
|
image: "image";
|
|
3751
3752
|
notes: "notes";
|
|
3753
|
+
body: "body";
|
|
3752
3754
|
}>>;
|
|
3753
3755
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3754
3756
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4003,12 +4005,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
4003
4005
|
}, z.core.$strip>, z.ZodObject<{
|
|
4004
4006
|
formula: z.ZodObject<{
|
|
4005
4007
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4006
|
-
body: "body";
|
|
4007
4008
|
chart: "chart";
|
|
4008
4009
|
diagram: "diagram";
|
|
4009
4010
|
table: "table";
|
|
4010
4011
|
image: "image";
|
|
4011
4012
|
notes: "notes";
|
|
4013
|
+
body: "body";
|
|
4012
4014
|
}>>;
|
|
4013
4015
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4014
4016
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4400,12 +4402,12 @@ declare function unrecognizedFillKind(fill: {
|
|
|
4400
4402
|
}): string;
|
|
4401
4403
|
declare const ContentTableCellSchema: z.ZodObject<{
|
|
4402
4404
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4403
|
-
body: "body";
|
|
4404
4405
|
chart: "chart";
|
|
4405
4406
|
diagram: "diagram";
|
|
4406
4407
|
table: "table";
|
|
4407
4408
|
image: "image";
|
|
4408
4409
|
notes: "notes";
|
|
4410
|
+
body: "body";
|
|
4409
4411
|
}>>;
|
|
4410
4412
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4411
4413
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4590,9 +4592,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
4590
4592
|
}, z.core.$strip>>;
|
|
4591
4593
|
}, z.core.$strip>>;
|
|
4592
4594
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4595
|
+
center: "center";
|
|
4593
4596
|
top: "top";
|
|
4594
4597
|
bottom: "bottom";
|
|
4595
|
-
center: "center";
|
|
4596
4598
|
}>>;
|
|
4597
4599
|
formula: z.ZodOptional<z.ZodString>;
|
|
4598
4600
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4627,12 +4629,12 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
4627
4629
|
declare const ContentTableRowSchema: z.ZodObject<{
|
|
4628
4630
|
cells: z.ZodArray<z.ZodObject<{
|
|
4629
4631
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4630
|
-
body: "body";
|
|
4631
4632
|
chart: "chart";
|
|
4632
4633
|
diagram: "diagram";
|
|
4633
4634
|
table: "table";
|
|
4634
4635
|
image: "image";
|
|
4635
4636
|
notes: "notes";
|
|
4637
|
+
body: "body";
|
|
4636
4638
|
}>>;
|
|
4637
4639
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4638
4640
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4817,9 +4819,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4817
4819
|
}, z.core.$strip>>;
|
|
4818
4820
|
}, z.core.$strip>>;
|
|
4819
4821
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4822
|
+
center: "center";
|
|
4820
4823
|
top: "top";
|
|
4821
4824
|
bottom: "bottom";
|
|
4822
|
-
center: "center";
|
|
4823
4825
|
}>>;
|
|
4824
4826
|
formula: z.ZodOptional<z.ZodString>;
|
|
4825
4827
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4859,12 +4861,12 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4859
4861
|
}, z.core.$strip>;
|
|
4860
4862
|
declare const ContentTableSchema: z.ZodObject<{
|
|
4861
4863
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4862
|
-
body: "body";
|
|
4863
4864
|
chart: "chart";
|
|
4864
4865
|
diagram: "diagram";
|
|
4865
4866
|
table: "table";
|
|
4866
4867
|
image: "image";
|
|
4867
4868
|
notes: "notes";
|
|
4869
|
+
body: "body";
|
|
4868
4870
|
}>>;
|
|
4869
4871
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4870
4872
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4889,12 +4891,12 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
4889
4891
|
rows: z.ZodArray<z.ZodObject<{
|
|
4890
4892
|
cells: z.ZodArray<z.ZodObject<{
|
|
4891
4893
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4892
|
-
body: "body";
|
|
4893
4894
|
chart: "chart";
|
|
4894
4895
|
diagram: "diagram";
|
|
4895
4896
|
table: "table";
|
|
4896
4897
|
image: "image";
|
|
4897
4898
|
notes: "notes";
|
|
4899
|
+
body: "body";
|
|
4898
4900
|
}>>;
|
|
4899
4901
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4900
4902
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5079,9 +5081,9 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
5079
5081
|
}, z.core.$strip>>;
|
|
5080
5082
|
}, z.core.$strip>>;
|
|
5081
5083
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
5084
|
+
center: "center";
|
|
5082
5085
|
top: "top";
|
|
5083
5086
|
bottom: "bottom";
|
|
5084
|
-
center: "center";
|
|
5085
5087
|
}>>;
|
|
5086
5088
|
formula: z.ZodOptional<z.ZodString>;
|
|
5087
5089
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -5158,12 +5160,12 @@ declare const ContentPageFurnitureSchema: z.ZodObject<{
|
|
|
5158
5160
|
type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
|
|
5159
5161
|
declare const ContentSectionSchema: z.ZodObject<{
|
|
5160
5162
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5161
|
-
body: "body";
|
|
5162
5163
|
chart: "chart";
|
|
5163
5164
|
diagram: "diagram";
|
|
5164
5165
|
table: "table";
|
|
5165
5166
|
image: "image";
|
|
5166
5167
|
notes: "notes";
|
|
5168
|
+
body: "body";
|
|
5167
5169
|
}>>;
|
|
5168
5170
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5169
5171
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5236,12 +5238,12 @@ type ContentSection = z.infer<typeof ContentSectionSchema>;
|
|
|
5236
5238
|
declare const ContentShapeSchema: z.ZodObject<{
|
|
5237
5239
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5238
5240
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5239
|
-
body: "body";
|
|
5240
5241
|
chart: "chart";
|
|
5241
5242
|
diagram: "diagram";
|
|
5242
5243
|
table: "table";
|
|
5243
5244
|
image: "image";
|
|
5244
5245
|
notes: "notes";
|
|
5246
|
+
body: "body";
|
|
5245
5247
|
}>>;
|
|
5246
5248
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5247
5249
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5309,12 +5311,12 @@ declare const ContentShapeSchema: z.ZodObject<{
|
|
|
5309
5311
|
type ContentShape = z.infer<typeof ContentShapeSchema>;
|
|
5310
5312
|
declare const ContentSlideSchema: z.ZodObject<{
|
|
5311
5313
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5312
|
-
body: "body";
|
|
5313
5314
|
chart: "chart";
|
|
5314
5315
|
diagram: "diagram";
|
|
5315
5316
|
table: "table";
|
|
5316
5317
|
image: "image";
|
|
5317
5318
|
notes: "notes";
|
|
5319
|
+
body: "body";
|
|
5318
5320
|
}>>;
|
|
5319
5321
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5320
5322
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5342,12 +5344,12 @@ declare const ContentSlideSchema: z.ZodObject<{
|
|
|
5342
5344
|
shapes: z.ZodArray<z.ZodObject<{
|
|
5343
5345
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5344
5346
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5345
|
-
body: "body";
|
|
5346
5347
|
chart: "chart";
|
|
5347
5348
|
diagram: "diagram";
|
|
5348
5349
|
table: "table";
|
|
5349
5350
|
image: "image";
|
|
5350
5351
|
notes: "notes";
|
|
5352
|
+
body: "body";
|
|
5351
5353
|
}>>;
|
|
5352
5354
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5353
5355
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5484,12 +5486,12 @@ declare const ContentSheetCellCommentSchema: z.ZodObject<{
|
|
|
5484
5486
|
type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
|
|
5485
5487
|
declare const ContentSheetCellSchema: z.ZodObject<{
|
|
5486
5488
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5487
|
-
body: "body";
|
|
5488
5489
|
chart: "chart";
|
|
5489
5490
|
diagram: "diagram";
|
|
5490
5491
|
table: "table";
|
|
5491
5492
|
image: "image";
|
|
5492
5493
|
notes: "notes";
|
|
5494
|
+
body: "body";
|
|
5493
5495
|
}>>;
|
|
5494
5496
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5495
5497
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5564,12 +5566,12 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
5564
5566
|
}, z.core.$strip>>;
|
|
5565
5567
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5566
5568
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5567
|
-
body: "body";
|
|
5568
5569
|
chart: "chart";
|
|
5569
5570
|
diagram: "diagram";
|
|
5570
5571
|
table: "table";
|
|
5571
5572
|
image: "image";
|
|
5572
5573
|
notes: "notes";
|
|
5574
|
+
body: "body";
|
|
5573
5575
|
}>>;
|
|
5574
5576
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5575
5577
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5804,8 +5806,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
5804
5806
|
}, z.core.$strip>>;
|
|
5805
5807
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
5806
5808
|
left: "left";
|
|
5807
|
-
right: "right";
|
|
5808
5809
|
center: "center";
|
|
5810
|
+
right: "right";
|
|
5809
5811
|
justify: "justify";
|
|
5810
5812
|
}>>;
|
|
5811
5813
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5937,11 +5939,11 @@ declare const SheetRuleOperatorSchema: z.ZodEnum<{
|
|
|
5937
5939
|
}>;
|
|
5938
5940
|
type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
|
|
5939
5941
|
declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
|
|
5942
|
+
decimal: "decimal";
|
|
5943
|
+
list: "list";
|
|
5940
5944
|
date: "date";
|
|
5941
5945
|
custom: "custom";
|
|
5942
5946
|
time: "time";
|
|
5943
|
-
decimal: "decimal";
|
|
5944
|
-
list: "list";
|
|
5945
5947
|
whole: "whole";
|
|
5946
5948
|
textLength: "textLength";
|
|
5947
5949
|
}>;
|
|
@@ -5954,11 +5956,11 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
|
|
|
5954
5956
|
endColumn: z.ZodNumber;
|
|
5955
5957
|
}, z.core.$strip>>;
|
|
5956
5958
|
type: z.ZodEnum<{
|
|
5959
|
+
decimal: "decimal";
|
|
5960
|
+
list: "list";
|
|
5957
5961
|
date: "date";
|
|
5958
5962
|
custom: "custom";
|
|
5959
5963
|
time: "time";
|
|
5960
|
-
decimal: "decimal";
|
|
5961
|
-
list: "list";
|
|
5962
5964
|
whole: "whole";
|
|
5963
5965
|
textLength: "textLength";
|
|
5964
5966
|
}>;
|
|
@@ -6043,11 +6045,11 @@ declare const ContentSheetConditionalFormatStyleSchema: z.ZodObject<{
|
|
|
6043
6045
|
type ContentSheetConditionalFormatStyle = z.infer<typeof ContentSheetConditionalFormatStyleSchema>;
|
|
6044
6046
|
declare const ContentSheetConditionalFormatValueSchema: z.ZodObject<{
|
|
6045
6047
|
type: z.ZodEnum<{
|
|
6046
|
-
num: "num";
|
|
6047
|
-
min: "min";
|
|
6048
|
-
max: "max";
|
|
6049
6048
|
formula: "formula";
|
|
6050
6049
|
percent: "percent";
|
|
6050
|
+
num: "num";
|
|
6051
|
+
max: "max";
|
|
6052
|
+
min: "min";
|
|
6051
6053
|
percentile: "percentile";
|
|
6052
6054
|
}>;
|
|
6053
6055
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6475,11 +6477,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6475
6477
|
stops: z.ZodArray<z.ZodObject<{
|
|
6476
6478
|
value: z.ZodObject<{
|
|
6477
6479
|
type: z.ZodEnum<{
|
|
6478
|
-
num: "num";
|
|
6479
|
-
min: "min";
|
|
6480
|
-
max: "max";
|
|
6481
6480
|
formula: "formula";
|
|
6482
6481
|
percent: "percent";
|
|
6482
|
+
num: "num";
|
|
6483
|
+
max: "max";
|
|
6484
|
+
min: "min";
|
|
6483
6485
|
percentile: "percentile";
|
|
6484
6486
|
}>;
|
|
6485
6487
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6522,22 +6524,22 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6522
6524
|
}, z.core.$strip>, z.ZodObject<{
|
|
6523
6525
|
min: z.ZodObject<{
|
|
6524
6526
|
type: z.ZodEnum<{
|
|
6525
|
-
num: "num";
|
|
6526
|
-
min: "min";
|
|
6527
|
-
max: "max";
|
|
6528
6527
|
formula: "formula";
|
|
6529
6528
|
percent: "percent";
|
|
6529
|
+
num: "num";
|
|
6530
|
+
max: "max";
|
|
6531
|
+
min: "min";
|
|
6530
6532
|
percentile: "percentile";
|
|
6531
6533
|
}>;
|
|
6532
6534
|
value: z.ZodOptional<z.ZodString>;
|
|
6533
6535
|
}, z.core.$strip>;
|
|
6534
6536
|
max: z.ZodObject<{
|
|
6535
6537
|
type: z.ZodEnum<{
|
|
6536
|
-
num: "num";
|
|
6537
|
-
min: "min";
|
|
6538
|
-
max: "max";
|
|
6539
6538
|
formula: "formula";
|
|
6540
6539
|
percent: "percent";
|
|
6540
|
+
num: "num";
|
|
6541
|
+
max: "max";
|
|
6542
|
+
min: "min";
|
|
6541
6543
|
percentile: "percentile";
|
|
6542
6544
|
}>;
|
|
6543
6545
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6581,11 +6583,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6581
6583
|
iconSetType: z.ZodString;
|
|
6582
6584
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
6583
6585
|
type: z.ZodEnum<{
|
|
6584
|
-
num: "num";
|
|
6585
|
-
min: "min";
|
|
6586
|
-
max: "max";
|
|
6587
6586
|
formula: "formula";
|
|
6588
6587
|
percent: "percent";
|
|
6588
|
+
num: "num";
|
|
6589
|
+
max: "max";
|
|
6590
|
+
min: "min";
|
|
6589
6591
|
percentile: "percentile";
|
|
6590
6592
|
}>;
|
|
6591
6593
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6625,12 +6627,12 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6625
6627
|
type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalFormatSchema>;
|
|
6626
6628
|
declare const ContentSheetImageSchema: z.ZodObject<{
|
|
6627
6629
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6628
|
-
body: "body";
|
|
6629
6630
|
chart: "chart";
|
|
6630
6631
|
diagram: "diagram";
|
|
6631
6632
|
table: "table";
|
|
6632
6633
|
image: "image";
|
|
6633
6634
|
notes: "notes";
|
|
6635
|
+
body: "body";
|
|
6634
6636
|
}>>;
|
|
6635
6637
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6636
6638
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6672,6 +6674,7 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6672
6674
|
}, z.core.$strip>>;
|
|
6673
6675
|
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
6674
6676
|
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
6677
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
6675
6678
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
6676
6679
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
6677
6680
|
relativeTo: z.ZodEnum<{
|
|
@@ -6708,10 +6711,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6708
6711
|
}>;
|
|
6709
6712
|
align: z.ZodEnum<{
|
|
6710
6713
|
left: "left";
|
|
6714
|
+
center: "center";
|
|
6711
6715
|
right: "right";
|
|
6712
6716
|
top: "top";
|
|
6713
6717
|
bottom: "bottom";
|
|
6714
|
-
center: "center";
|
|
6715
6718
|
inside: "inside";
|
|
6716
6719
|
outside: "outside";
|
|
6717
6720
|
}>;
|
|
@@ -6751,10 +6754,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6751
6754
|
}>;
|
|
6752
6755
|
align: z.ZodEnum<{
|
|
6753
6756
|
left: "left";
|
|
6757
|
+
center: "center";
|
|
6754
6758
|
right: "right";
|
|
6755
6759
|
top: "top";
|
|
6756
6760
|
bottom: "bottom";
|
|
6757
|
-
center: "center";
|
|
6758
6761
|
inside: "inside";
|
|
6759
6762
|
outside: "outside";
|
|
6760
6763
|
}>;
|
|
@@ -6796,12 +6799,12 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6796
6799
|
type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
|
|
6797
6800
|
declare const ContentSheetSchema: z.ZodObject<{
|
|
6798
6801
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6799
|
-
body: "body";
|
|
6800
6802
|
chart: "chart";
|
|
6801
6803
|
diagram: "diagram";
|
|
6802
6804
|
table: "table";
|
|
6803
6805
|
image: "image";
|
|
6804
6806
|
notes: "notes";
|
|
6807
|
+
body: "body";
|
|
6805
6808
|
}>>;
|
|
6806
6809
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6807
6810
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6825,12 +6828,12 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6825
6828
|
name: z.ZodString;
|
|
6826
6829
|
cells: z.ZodArray<z.ZodObject<{
|
|
6827
6830
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6828
|
-
body: "body";
|
|
6829
6831
|
chart: "chart";
|
|
6830
6832
|
diagram: "diagram";
|
|
6831
6833
|
table: "table";
|
|
6832
6834
|
image: "image";
|
|
6833
6835
|
notes: "notes";
|
|
6836
|
+
body: "body";
|
|
6834
6837
|
}>>;
|
|
6835
6838
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6836
6839
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6905,12 +6908,12 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6905
6908
|
}, z.core.$strip>>;
|
|
6906
6909
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6907
6910
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6908
|
-
body: "body";
|
|
6909
6911
|
chart: "chart";
|
|
6910
6912
|
diagram: "diagram";
|
|
6911
6913
|
table: "table";
|
|
6912
6914
|
image: "image";
|
|
6913
6915
|
notes: "notes";
|
|
6916
|
+
body: "body";
|
|
6914
6917
|
}>>;
|
|
6915
6918
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6916
6919
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -7145,8 +7148,8 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7145
7148
|
}, z.core.$strip>>;
|
|
7146
7149
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
7147
7150
|
left: "left";
|
|
7148
|
-
right: "right";
|
|
7149
7151
|
center: "center";
|
|
7152
|
+
right: "right";
|
|
7150
7153
|
justify: "justify";
|
|
7151
7154
|
}>>;
|
|
7152
7155
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7204,12 +7207,12 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7204
7207
|
}, z.core.$strip>>;
|
|
7205
7208
|
images: z.ZodArray<z.ZodObject<{
|
|
7206
7209
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
7207
|
-
body: "body";
|
|
7208
7210
|
chart: "chart";
|
|
7209
7211
|
diagram: "diagram";
|
|
7210
7212
|
table: "table";
|
|
7211
7213
|
image: "image";
|
|
7212
7214
|
notes: "notes";
|
|
7215
|
+
body: "body";
|
|
7213
7216
|
}>>;
|
|
7214
7217
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
7215
7218
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -7251,6 +7254,7 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7251
7254
|
}, z.core.$strip>>;
|
|
7252
7255
|
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
7253
7256
|
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
7257
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
7254
7258
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
7255
7259
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
7256
7260
|
relativeTo: z.ZodEnum<{
|
|
@@ -7287,10 +7291,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7287
7291
|
}>;
|
|
7288
7292
|
align: z.ZodEnum<{
|
|
7289
7293
|
left: "left";
|
|
7294
|
+
center: "center";
|
|
7290
7295
|
right: "right";
|
|
7291
7296
|
top: "top";
|
|
7292
7297
|
bottom: "bottom";
|
|
7293
|
-
center: "center";
|
|
7294
7298
|
inside: "inside";
|
|
7295
7299
|
outside: "outside";
|
|
7296
7300
|
}>;
|
|
@@ -7330,10 +7334,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7330
7334
|
}>;
|
|
7331
7335
|
align: z.ZodEnum<{
|
|
7332
7336
|
left: "left";
|
|
7337
|
+
center: "center";
|
|
7333
7338
|
right: "right";
|
|
7334
7339
|
top: "top";
|
|
7335
7340
|
bottom: "bottom";
|
|
7336
|
-
center: "center";
|
|
7337
7341
|
inside: "inside";
|
|
7338
7342
|
outside: "outside";
|
|
7339
7343
|
}>;
|
|
@@ -7422,11 +7426,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7422
7426
|
endColumn: z.ZodNumber;
|
|
7423
7427
|
}, z.core.$strip>>;
|
|
7424
7428
|
type: z.ZodEnum<{
|
|
7429
|
+
decimal: "decimal";
|
|
7430
|
+
list: "list";
|
|
7425
7431
|
date: "date";
|
|
7426
7432
|
custom: "custom";
|
|
7427
7433
|
time: "time";
|
|
7428
|
-
decimal: "decimal";
|
|
7429
|
-
list: "list";
|
|
7430
7434
|
whole: "whole";
|
|
7431
7435
|
textLength: "textLength";
|
|
7432
7436
|
}>;
|
|
@@ -7897,11 +7901,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7897
7901
|
stops: z.ZodArray<z.ZodObject<{
|
|
7898
7902
|
value: z.ZodObject<{
|
|
7899
7903
|
type: z.ZodEnum<{
|
|
7900
|
-
num: "num";
|
|
7901
|
-
min: "min";
|
|
7902
|
-
max: "max";
|
|
7903
7904
|
formula: "formula";
|
|
7904
7905
|
percent: "percent";
|
|
7906
|
+
num: "num";
|
|
7907
|
+
max: "max";
|
|
7908
|
+
min: "min";
|
|
7905
7909
|
percentile: "percentile";
|
|
7906
7910
|
}>;
|
|
7907
7911
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -7944,22 +7948,22 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7944
7948
|
}, z.core.$strip>, z.ZodObject<{
|
|
7945
7949
|
min: z.ZodObject<{
|
|
7946
7950
|
type: z.ZodEnum<{
|
|
7947
|
-
num: "num";
|
|
7948
|
-
min: "min";
|
|
7949
|
-
max: "max";
|
|
7950
7951
|
formula: "formula";
|
|
7951
7952
|
percent: "percent";
|
|
7953
|
+
num: "num";
|
|
7954
|
+
max: "max";
|
|
7955
|
+
min: "min";
|
|
7952
7956
|
percentile: "percentile";
|
|
7953
7957
|
}>;
|
|
7954
7958
|
value: z.ZodOptional<z.ZodString>;
|
|
7955
7959
|
}, z.core.$strip>;
|
|
7956
7960
|
max: z.ZodObject<{
|
|
7957
7961
|
type: z.ZodEnum<{
|
|
7958
|
-
num: "num";
|
|
7959
|
-
min: "min";
|
|
7960
|
-
max: "max";
|
|
7961
7962
|
formula: "formula";
|
|
7962
7963
|
percent: "percent";
|
|
7964
|
+
num: "num";
|
|
7965
|
+
max: "max";
|
|
7966
|
+
min: "min";
|
|
7963
7967
|
percentile: "percentile";
|
|
7964
7968
|
}>;
|
|
7965
7969
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -8003,11 +8007,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
8003
8007
|
iconSetType: z.ZodString;
|
|
8004
8008
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
8005
8009
|
type: z.ZodEnum<{
|
|
8006
|
-
num: "num";
|
|
8007
|
-
min: "min";
|
|
8008
|
-
max: "max";
|
|
8009
8010
|
formula: "formula";
|
|
8010
8011
|
percent: "percent";
|
|
8012
|
+
num: "num";
|
|
8013
|
+
max: "max";
|
|
8014
|
+
min: "min";
|
|
8011
8015
|
percentile: "percentile";
|
|
8012
8016
|
}>;
|
|
8013
8017
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -8266,12 +8270,12 @@ declare const ContentSubpathSchema: z.ZodObject<{
|
|
|
8266
8270
|
type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
|
|
8267
8271
|
declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8268
8272
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8269
|
-
body: "body";
|
|
8270
8273
|
chart: "chart";
|
|
8271
8274
|
diagram: "diagram";
|
|
8272
8275
|
table: "table";
|
|
8273
8276
|
image: "image";
|
|
8274
8277
|
notes: "notes";
|
|
8278
|
+
body: "body";
|
|
8275
8279
|
}>>;
|
|
8276
8280
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8277
8281
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8404,12 +8408,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8404
8408
|
}, z.core.$strip>>>;
|
|
8405
8409
|
}, z.core.$strip>, z.ZodObject<{
|
|
8406
8410
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8407
|
-
body: "body";
|
|
8408
8411
|
chart: "chart";
|
|
8409
8412
|
diagram: "diagram";
|
|
8410
8413
|
table: "table";
|
|
8411
8414
|
image: "image";
|
|
8412
8415
|
notes: "notes";
|
|
8416
|
+
body: "body";
|
|
8413
8417
|
}>>;
|
|
8414
8418
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8415
8419
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8542,12 +8546,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8542
8546
|
}, z.core.$strip>>>;
|
|
8543
8547
|
}, z.core.$strip>, z.ZodObject<{
|
|
8544
8548
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8545
|
-
body: "body";
|
|
8546
8549
|
chart: "chart";
|
|
8547
8550
|
diagram: "diagram";
|
|
8548
8551
|
table: "table";
|
|
8549
8552
|
image: "image";
|
|
8550
8553
|
notes: "notes";
|
|
8554
|
+
body: "body";
|
|
8551
8555
|
}>>;
|
|
8552
8556
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8553
8557
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8630,12 +8634,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8630
8634
|
}, z.core.$strip>>>;
|
|
8631
8635
|
}, z.core.$strip>, z.ZodObject<{
|
|
8632
8636
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8633
|
-
body: "body";
|
|
8634
8637
|
chart: "chart";
|
|
8635
8638
|
diagram: "diagram";
|
|
8636
8639
|
table: "table";
|
|
8637
8640
|
image: "image";
|
|
8638
8641
|
notes: "notes";
|
|
8642
|
+
body: "body";
|
|
8639
8643
|
}>>;
|
|
8640
8644
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8641
8645
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8802,12 +8806,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8802
8806
|
type ContentVector = z.infer<typeof ContentVectorSchema>;
|
|
8803
8807
|
declare const ContentDrawPageSchema: z.ZodObject<{
|
|
8804
8808
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8805
|
-
body: "body";
|
|
8806
8809
|
chart: "chart";
|
|
8807
8810
|
diagram: "diagram";
|
|
8808
8811
|
table: "table";
|
|
8809
8812
|
image: "image";
|
|
8810
8813
|
notes: "notes";
|
|
8814
|
+
body: "body";
|
|
8811
8815
|
}>>;
|
|
8812
8816
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8813
8817
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8835,12 +8839,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8835
8839
|
shapes: z.ZodArray<z.ZodObject<{
|
|
8836
8840
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
8837
8841
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8838
|
-
body: "body";
|
|
8839
8842
|
chart: "chart";
|
|
8840
8843
|
diagram: "diagram";
|
|
8841
8844
|
table: "table";
|
|
8842
8845
|
image: "image";
|
|
8843
8846
|
notes: "notes";
|
|
8847
|
+
body: "body";
|
|
8844
8848
|
}>>;
|
|
8845
8849
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8846
8850
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8907,12 +8911,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8907
8911
|
}, z.core.$strip>>;
|
|
8908
8912
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8909
8913
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8910
|
-
body: "body";
|
|
8911
8914
|
chart: "chart";
|
|
8912
8915
|
diagram: "diagram";
|
|
8913
8916
|
table: "table";
|
|
8914
8917
|
image: "image";
|
|
8915
8918
|
notes: "notes";
|
|
8919
|
+
body: "body";
|
|
8916
8920
|
}>>;
|
|
8917
8921
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8918
8922
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9045,12 +9049,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9045
9049
|
}, z.core.$strip>>>;
|
|
9046
9050
|
}, z.core.$strip>, z.ZodObject<{
|
|
9047
9051
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9048
|
-
body: "body";
|
|
9049
9052
|
chart: "chart";
|
|
9050
9053
|
diagram: "diagram";
|
|
9051
9054
|
table: "table";
|
|
9052
9055
|
image: "image";
|
|
9053
9056
|
notes: "notes";
|
|
9057
|
+
body: "body";
|
|
9054
9058
|
}>>;
|
|
9055
9059
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9056
9060
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9183,12 +9187,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9183
9187
|
}, z.core.$strip>>>;
|
|
9184
9188
|
}, z.core.$strip>, z.ZodObject<{
|
|
9185
9189
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9186
|
-
body: "body";
|
|
9187
9190
|
chart: "chart";
|
|
9188
9191
|
diagram: "diagram";
|
|
9189
9192
|
table: "table";
|
|
9190
9193
|
image: "image";
|
|
9191
9194
|
notes: "notes";
|
|
9195
|
+
body: "body";
|
|
9192
9196
|
}>>;
|
|
9193
9197
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9194
9198
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9271,12 +9275,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9271
9275
|
}, z.core.$strip>>>;
|
|
9272
9276
|
}, z.core.$strip>, z.ZodObject<{
|
|
9273
9277
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9274
|
-
body: "body";
|
|
9275
9278
|
chart: "chart";
|
|
9276
9279
|
diagram: "diagram";
|
|
9277
9280
|
table: "table";
|
|
9278
9281
|
image: "image";
|
|
9279
9282
|
notes: "notes";
|
|
9283
|
+
body: "body";
|
|
9280
9284
|
}>>;
|
|
9281
9285
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9282
9286
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9464,12 +9468,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9464
9468
|
type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
|
|
9465
9469
|
declare const ContentFormulaSchema: z.ZodObject<{
|
|
9466
9470
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9467
|
-
body: "body";
|
|
9468
9471
|
chart: "chart";
|
|
9469
9472
|
diagram: "diagram";
|
|
9470
9473
|
table: "table";
|
|
9471
9474
|
image: "image";
|
|
9472
9475
|
notes: "notes";
|
|
9476
|
+
body: "body";
|
|
9473
9477
|
}>>;
|
|
9474
9478
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9475
9479
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9577,12 +9581,12 @@ type ContentDefinedName = z.infer<typeof ContentDefinedNameSchema>;
|
|
|
9577
9581
|
declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9578
9582
|
sections: z.ZodArray<z.ZodObject<{
|
|
9579
9583
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9580
|
-
body: "body";
|
|
9581
9584
|
chart: "chart";
|
|
9582
9585
|
diagram: "diagram";
|
|
9583
9586
|
table: "table";
|
|
9584
9587
|
image: "image";
|
|
9585
9588
|
notes: "notes";
|
|
9589
|
+
body: "body";
|
|
9586
9590
|
}>>;
|
|
9587
9591
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9588
9592
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9721,12 +9725,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9721
9725
|
}, z.core.$strip>, z.ZodObject<{
|
|
9722
9726
|
slides: z.ZodArray<z.ZodObject<{
|
|
9723
9727
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9724
|
-
body: "body";
|
|
9725
9728
|
chart: "chart";
|
|
9726
9729
|
diagram: "diagram";
|
|
9727
9730
|
table: "table";
|
|
9728
9731
|
image: "image";
|
|
9729
9732
|
notes: "notes";
|
|
9733
|
+
body: "body";
|
|
9730
9734
|
}>>;
|
|
9731
9735
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9732
9736
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9754,12 +9758,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9754
9758
|
shapes: z.ZodArray<z.ZodObject<{
|
|
9755
9759
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
9756
9760
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9757
|
-
body: "body";
|
|
9758
9761
|
chart: "chart";
|
|
9759
9762
|
diagram: "diagram";
|
|
9760
9763
|
table: "table";
|
|
9761
9764
|
image: "image";
|
|
9762
9765
|
notes: "notes";
|
|
9766
|
+
body: "body";
|
|
9763
9767
|
}>>;
|
|
9764
9768
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9765
9769
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9916,12 +9920,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9916
9920
|
}, z.core.$strip>, z.ZodObject<{
|
|
9917
9921
|
sheets: z.ZodArray<z.ZodObject<{
|
|
9918
9922
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9919
|
-
body: "body";
|
|
9920
9923
|
chart: "chart";
|
|
9921
9924
|
diagram: "diagram";
|
|
9922
9925
|
table: "table";
|
|
9923
9926
|
image: "image";
|
|
9924
9927
|
notes: "notes";
|
|
9928
|
+
body: "body";
|
|
9925
9929
|
}>>;
|
|
9926
9930
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9927
9931
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9945,12 +9949,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9945
9949
|
name: z.ZodString;
|
|
9946
9950
|
cells: z.ZodArray<z.ZodObject<{
|
|
9947
9951
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9948
|
-
body: "body";
|
|
9949
9952
|
chart: "chart";
|
|
9950
9953
|
diagram: "diagram";
|
|
9951
9954
|
table: "table";
|
|
9952
9955
|
image: "image";
|
|
9953
9956
|
notes: "notes";
|
|
9957
|
+
body: "body";
|
|
9954
9958
|
}>>;
|
|
9955
9959
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9956
9960
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10025,12 +10029,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10025
10029
|
}, z.core.$strip>>;
|
|
10026
10030
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10027
10031
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
10028
|
-
body: "body";
|
|
10029
10032
|
chart: "chart";
|
|
10030
10033
|
diagram: "diagram";
|
|
10031
10034
|
table: "table";
|
|
10032
10035
|
image: "image";
|
|
10033
10036
|
notes: "notes";
|
|
10037
|
+
body: "body";
|
|
10034
10038
|
}>>;
|
|
10035
10039
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10036
10040
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10265,8 +10269,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10265
10269
|
}, z.core.$strip>>;
|
|
10266
10270
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
10267
10271
|
left: "left";
|
|
10268
|
-
right: "right";
|
|
10269
10272
|
center: "center";
|
|
10273
|
+
right: "right";
|
|
10270
10274
|
justify: "justify";
|
|
10271
10275
|
}>>;
|
|
10272
10276
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -10324,12 +10328,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10324
10328
|
}, z.core.$strip>>;
|
|
10325
10329
|
images: z.ZodArray<z.ZodObject<{
|
|
10326
10330
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
10327
|
-
body: "body";
|
|
10328
10331
|
chart: "chart";
|
|
10329
10332
|
diagram: "diagram";
|
|
10330
10333
|
table: "table";
|
|
10331
10334
|
image: "image";
|
|
10332
10335
|
notes: "notes";
|
|
10336
|
+
body: "body";
|
|
10333
10337
|
}>>;
|
|
10334
10338
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10335
10339
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10371,6 +10375,7 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10371
10375
|
}, z.core.$strip>>;
|
|
10372
10376
|
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
10373
10377
|
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
10378
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
10374
10379
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
10375
10380
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
10376
10381
|
relativeTo: z.ZodEnum<{
|
|
@@ -10407,10 +10412,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10407
10412
|
}>;
|
|
10408
10413
|
align: z.ZodEnum<{
|
|
10409
10414
|
left: "left";
|
|
10415
|
+
center: "center";
|
|
10410
10416
|
right: "right";
|
|
10411
10417
|
top: "top";
|
|
10412
10418
|
bottom: "bottom";
|
|
10413
|
-
center: "center";
|
|
10414
10419
|
inside: "inside";
|
|
10415
10420
|
outside: "outside";
|
|
10416
10421
|
}>;
|
|
@@ -10450,10 +10455,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10450
10455
|
}>;
|
|
10451
10456
|
align: z.ZodEnum<{
|
|
10452
10457
|
left: "left";
|
|
10458
|
+
center: "center";
|
|
10453
10459
|
right: "right";
|
|
10454
10460
|
top: "top";
|
|
10455
10461
|
bottom: "bottom";
|
|
10456
|
-
center: "center";
|
|
10457
10462
|
inside: "inside";
|
|
10458
10463
|
outside: "outside";
|
|
10459
10464
|
}>;
|
|
@@ -10542,11 +10547,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10542
10547
|
endColumn: z.ZodNumber;
|
|
10543
10548
|
}, z.core.$strip>>;
|
|
10544
10549
|
type: z.ZodEnum<{
|
|
10550
|
+
decimal: "decimal";
|
|
10551
|
+
list: "list";
|
|
10545
10552
|
date: "date";
|
|
10546
10553
|
custom: "custom";
|
|
10547
10554
|
time: "time";
|
|
10548
|
-
decimal: "decimal";
|
|
10549
|
-
list: "list";
|
|
10550
10555
|
whole: "whole";
|
|
10551
10556
|
textLength: "textLength";
|
|
10552
10557
|
}>;
|
|
@@ -11017,11 +11022,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11017
11022
|
stops: z.ZodArray<z.ZodObject<{
|
|
11018
11023
|
value: z.ZodObject<{
|
|
11019
11024
|
type: z.ZodEnum<{
|
|
11020
|
-
num: "num";
|
|
11021
|
-
min: "min";
|
|
11022
|
-
max: "max";
|
|
11023
11025
|
formula: "formula";
|
|
11024
11026
|
percent: "percent";
|
|
11027
|
+
num: "num";
|
|
11028
|
+
max: "max";
|
|
11029
|
+
min: "min";
|
|
11025
11030
|
percentile: "percentile";
|
|
11026
11031
|
}>;
|
|
11027
11032
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11064,22 +11069,22 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11064
11069
|
}, z.core.$strip>, z.ZodObject<{
|
|
11065
11070
|
min: z.ZodObject<{
|
|
11066
11071
|
type: z.ZodEnum<{
|
|
11067
|
-
num: "num";
|
|
11068
|
-
min: "min";
|
|
11069
|
-
max: "max";
|
|
11070
11072
|
formula: "formula";
|
|
11071
11073
|
percent: "percent";
|
|
11074
|
+
num: "num";
|
|
11075
|
+
max: "max";
|
|
11076
|
+
min: "min";
|
|
11072
11077
|
percentile: "percentile";
|
|
11073
11078
|
}>;
|
|
11074
11079
|
value: z.ZodOptional<z.ZodString>;
|
|
11075
11080
|
}, z.core.$strip>;
|
|
11076
11081
|
max: z.ZodObject<{
|
|
11077
11082
|
type: z.ZodEnum<{
|
|
11078
|
-
num: "num";
|
|
11079
|
-
min: "min";
|
|
11080
|
-
max: "max";
|
|
11081
11083
|
formula: "formula";
|
|
11082
11084
|
percent: "percent";
|
|
11085
|
+
num: "num";
|
|
11086
|
+
max: "max";
|
|
11087
|
+
min: "min";
|
|
11083
11088
|
percentile: "percentile";
|
|
11084
11089
|
}>;
|
|
11085
11090
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11123,11 +11128,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11123
11128
|
iconSetType: z.ZodString;
|
|
11124
11129
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
11125
11130
|
type: z.ZodEnum<{
|
|
11126
|
-
num: "num";
|
|
11127
|
-
min: "min";
|
|
11128
|
-
max: "max";
|
|
11129
11131
|
formula: "formula";
|
|
11130
11132
|
percent: "percent";
|
|
11133
|
+
num: "num";
|
|
11134
|
+
max: "max";
|
|
11135
|
+
min: "min";
|
|
11131
11136
|
percentile: "percentile";
|
|
11132
11137
|
}>;
|
|
11133
11138
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11260,12 +11265,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11260
11265
|
}, z.core.$strip>, z.ZodObject<{
|
|
11261
11266
|
pages: z.ZodArray<z.ZodObject<{
|
|
11262
11267
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11263
|
-
body: "body";
|
|
11264
11268
|
chart: "chart";
|
|
11265
11269
|
diagram: "diagram";
|
|
11266
11270
|
table: "table";
|
|
11267
11271
|
image: "image";
|
|
11268
11272
|
notes: "notes";
|
|
11273
|
+
body: "body";
|
|
11269
11274
|
}>>;
|
|
11270
11275
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11271
11276
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11293,12 +11298,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11293
11298
|
shapes: z.ZodArray<z.ZodObject<{
|
|
11294
11299
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
11295
11300
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11296
|
-
body: "body";
|
|
11297
11301
|
chart: "chart";
|
|
11298
11302
|
diagram: "diagram";
|
|
11299
11303
|
table: "table";
|
|
11300
11304
|
image: "image";
|
|
11301
11305
|
notes: "notes";
|
|
11306
|
+
body: "body";
|
|
11302
11307
|
}>>;
|
|
11303
11308
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11304
11309
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11365,12 +11370,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11365
11370
|
}, z.core.$strip>>;
|
|
11366
11371
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11367
11372
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11368
|
-
body: "body";
|
|
11369
11373
|
chart: "chart";
|
|
11370
11374
|
diagram: "diagram";
|
|
11371
11375
|
table: "table";
|
|
11372
11376
|
image: "image";
|
|
11373
11377
|
notes: "notes";
|
|
11378
|
+
body: "body";
|
|
11374
11379
|
}>>;
|
|
11375
11380
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11376
11381
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11503,12 +11508,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11503
11508
|
}, z.core.$strip>>>;
|
|
11504
11509
|
}, z.core.$strip>, z.ZodObject<{
|
|
11505
11510
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11506
|
-
body: "body";
|
|
11507
11511
|
chart: "chart";
|
|
11508
11512
|
diagram: "diagram";
|
|
11509
11513
|
table: "table";
|
|
11510
11514
|
image: "image";
|
|
11511
11515
|
notes: "notes";
|
|
11516
|
+
body: "body";
|
|
11512
11517
|
}>>;
|
|
11513
11518
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11514
11519
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11641,12 +11646,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11641
11646
|
}, z.core.$strip>>>;
|
|
11642
11647
|
}, z.core.$strip>, z.ZodObject<{
|
|
11643
11648
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11644
|
-
body: "body";
|
|
11645
11649
|
chart: "chart";
|
|
11646
11650
|
diagram: "diagram";
|
|
11647
11651
|
table: "table";
|
|
11648
11652
|
image: "image";
|
|
11649
11653
|
notes: "notes";
|
|
11654
|
+
body: "body";
|
|
11650
11655
|
}>>;
|
|
11651
11656
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11652
11657
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11729,12 +11734,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11729
11734
|
}, z.core.$strip>>>;
|
|
11730
11735
|
}, z.core.$strip>, z.ZodObject<{
|
|
11731
11736
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11732
|
-
body: "body";
|
|
11733
11737
|
chart: "chart";
|
|
11734
11738
|
diagram: "diagram";
|
|
11735
11739
|
table: "table";
|
|
11736
11740
|
image: "image";
|
|
11737
11741
|
notes: "notes";
|
|
11742
|
+
body: "body";
|
|
11738
11743
|
}>>;
|
|
11739
11744
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11740
11745
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11989,12 +11994,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11989
11994
|
}, z.core.$strip>, z.ZodObject<{
|
|
11990
11995
|
formula: z.ZodObject<{
|
|
11991
11996
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11992
|
-
body: "body";
|
|
11993
11997
|
chart: "chart";
|
|
11994
11998
|
diagram: "diagram";
|
|
11995
11999
|
table: "table";
|
|
11996
12000
|
image: "image";
|
|
11997
12001
|
notes: "notes";
|
|
12002
|
+
body: "body";
|
|
11998
12003
|
}>>;
|
|
11999
12004
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
12000
12005
|
transcript: z.ZodOptional<z.ZodObject<{
|