document-schema 7.12.0 → 7.13.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/README.md +6 -0
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{construct-C4XiF8OW.d.cts → construct-GVdTKrE7.d.cts} +3 -3
- package/dist/{construct-C4XiF8OW.d.ts → construct-GVdTKrE7.d.ts} +3 -3
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-DnNAXdH_.d.cts → content-CvvaHPSp.d.cts} +145 -145
- package/dist/{content-vx3Mbnjy.d.ts → content-DbjeTN2j.d.ts} +145 -145
- package/dist/content.d.cts +1 -1
- package/dist/content.d.ts +1 -1
- 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.cjs +2 -0
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +2 -2
- package/dist/{package-node-CjEahULr.d.ts → package-node--fbVCVcl.d.ts} +50 -50
- package/dist/{package-node-DMS4Zrfi.d.cts → package-node-D7WUiIDz.d.cts} +50 -50
- 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-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
- package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
- package/dist/style.d.cts +1 -1
- package/dist/style.d.ts +1 -1
- package/dist/table-grid.cjs +85 -0
- package/dist/table-grid.d.cts +49 -3
- package/dist/table-grid.d.ts +49 -3
- package/dist/table-grid.js +84 -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 +16 -16
- package/schemas/document-tree.schema.json +3 -3
|
@@ -3,19 +3,19 @@ import { p as MathExpression } from "./math-BScHxedi.cjs";
|
|
|
3
3
|
import { n as Color } from "./color-AELCDH_b.cjs";
|
|
4
4
|
import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.cjs";
|
|
5
5
|
import { r as SourceResidue } from "./source-Bas5ol6f.cjs";
|
|
6
|
-
import { o as TextDirection } from "./style-
|
|
6
|
+
import { o as TextDirection } from "./style-BGMcYrD2.cjs";
|
|
7
7
|
import { z } from "zod";
|
|
8
8
|
//#region src/content.d.ts
|
|
9
9
|
type FusedNode<T> = T & {
|
|
10
10
|
frames?: LayoutFrame[];
|
|
11
11
|
};
|
|
12
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";
|
|
278
277
|
bookmark: "bookmark";
|
|
279
278
|
footnote: "footnote";
|
|
280
279
|
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";
|
|
661
660
|
bookmark: "bookmark";
|
|
662
661
|
footnote: "footnote";
|
|
663
662
|
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
|
-
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
|
}>;
|
|
@@ -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<{
|
|
@@ -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
|
}>;
|
|
@@ -1243,12 +1243,12 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1243
1243
|
type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
|
|
1244
1244
|
declare const ContentPageBreakSchema: z.ZodObject<{
|
|
1245
1245
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1246
|
-
body: "body";
|
|
1247
1246
|
chart: "chart";
|
|
1248
1247
|
diagram: "diagram";
|
|
1249
1248
|
table: "table";
|
|
1250
1249
|
image: "image";
|
|
1251
1250
|
notes: "notes";
|
|
1251
|
+
body: "body";
|
|
1252
1252
|
}>>;
|
|
1253
1253
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1254
1254
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1374,10 +1374,10 @@ declare const ContentConstructStartSchema: z.ZodObject<{
|
|
|
1374
1374
|
}, z.core.$strict>, z.ZodObject<{
|
|
1375
1375
|
kind: z.ZodLiteral<"anchor">;
|
|
1376
1376
|
anchorType: z.ZodEnum<{
|
|
1377
|
-
comment: "comment";
|
|
1378
1377
|
bookmark: "bookmark";
|
|
1379
1378
|
footnote: "footnote";
|
|
1380
1379
|
endnote: "endnote";
|
|
1380
|
+
comment: "comment";
|
|
1381
1381
|
}>;
|
|
1382
1382
|
name: z.ZodString;
|
|
1383
1383
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -1561,12 +1561,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1561
1561
|
heightPt: z.ZodNumber;
|
|
1562
1562
|
}, z.core.$strip>>>;
|
|
1563
1563
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1564
|
-
body: "body";
|
|
1565
1564
|
chart: "chart";
|
|
1566
1565
|
diagram: "diagram";
|
|
1567
1566
|
table: "table";
|
|
1568
1567
|
image: "image";
|
|
1569
1568
|
notes: "notes";
|
|
1569
|
+
body: "body";
|
|
1570
1570
|
}>>;
|
|
1571
1571
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1572
1572
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1590,20 +1590,20 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1590
1590
|
objectKind: z.ZodEnum<{
|
|
1591
1591
|
chart: "chart";
|
|
1592
1592
|
formula: "formula";
|
|
1593
|
-
presentation: "presentation";
|
|
1594
1593
|
wordprocessing: "wordprocessing";
|
|
1594
|
+
presentation: "presentation";
|
|
1595
1595
|
spreadsheet: "spreadsheet";
|
|
1596
1596
|
drawing: "drawing";
|
|
1597
1597
|
}>;
|
|
1598
1598
|
document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1599
1599
|
sections: z.ZodArray<z.ZodObject<{
|
|
1600
1600
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1601
|
-
body: "body";
|
|
1602
1601
|
chart: "chart";
|
|
1603
1602
|
diagram: "diagram";
|
|
1604
1603
|
table: "table";
|
|
1605
1604
|
image: "image";
|
|
1606
1605
|
notes: "notes";
|
|
1606
|
+
body: "body";
|
|
1607
1607
|
}>>;
|
|
1608
1608
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1609
1609
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1747,12 +1747,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1747
1747
|
}, z.core.$strip>, z.ZodObject<{
|
|
1748
1748
|
slides: z.ZodArray<z.ZodObject<{
|
|
1749
1749
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1750
|
-
body: "body";
|
|
1751
1750
|
chart: "chart";
|
|
1752
1751
|
diagram: "diagram";
|
|
1753
1752
|
table: "table";
|
|
1754
1753
|
image: "image";
|
|
1755
1754
|
notes: "notes";
|
|
1755
|
+
body: "body";
|
|
1756
1756
|
}>>;
|
|
1757
1757
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1758
1758
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1780,12 +1780,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1780
1780
|
shapes: z.ZodArray<z.ZodObject<{
|
|
1781
1781
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
1782
1782
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1783
|
-
body: "body";
|
|
1784
1783
|
chart: "chart";
|
|
1785
1784
|
diagram: "diagram";
|
|
1786
1785
|
table: "table";
|
|
1787
1786
|
image: "image";
|
|
1788
1787
|
notes: "notes";
|
|
1788
|
+
body: "body";
|
|
1789
1789
|
}>>;
|
|
1790
1790
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1791
1791
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1943,12 +1943,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1943
1943
|
}, z.core.$strip>, z.ZodObject<{
|
|
1944
1944
|
sheets: z.ZodArray<z.ZodObject<{
|
|
1945
1945
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1946
|
-
body: "body";
|
|
1947
1946
|
chart: "chart";
|
|
1948
1947
|
diagram: "diagram";
|
|
1949
1948
|
table: "table";
|
|
1950
1949
|
image: "image";
|
|
1951
1950
|
notes: "notes";
|
|
1951
|
+
body: "body";
|
|
1952
1952
|
}>>;
|
|
1953
1953
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1954
1954
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1972,12 +1972,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1972
1972
|
name: z.ZodString;
|
|
1973
1973
|
cells: z.ZodArray<z.ZodObject<{
|
|
1974
1974
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1975
|
-
body: "body";
|
|
1976
1975
|
chart: "chart";
|
|
1977
1976
|
diagram: "diagram";
|
|
1978
1977
|
table: "table";
|
|
1979
1978
|
image: "image";
|
|
1980
1979
|
notes: "notes";
|
|
1980
|
+
body: "body";
|
|
1981
1981
|
}>>;
|
|
1982
1982
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1983
1983
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2052,12 +2052,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2052
2052
|
}, z.core.$strip>>;
|
|
2053
2053
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2054
2054
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
2055
|
-
body: "body";
|
|
2056
2055
|
chart: "chart";
|
|
2057
2056
|
diagram: "diagram";
|
|
2058
2057
|
table: "table";
|
|
2059
2058
|
image: "image";
|
|
2060
2059
|
notes: "notes";
|
|
2060
|
+
body: "body";
|
|
2061
2061
|
}>>;
|
|
2062
2062
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2063
2063
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2292,8 +2292,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2292
2292
|
}, z.core.$strip>>;
|
|
2293
2293
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
2294
2294
|
left: "left";
|
|
2295
|
-
center: "center";
|
|
2296
2295
|
right: "right";
|
|
2296
|
+
center: "center";
|
|
2297
2297
|
justify: "justify";
|
|
2298
2298
|
}>>;
|
|
2299
2299
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2351,12 +2351,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2351
2351
|
}, z.core.$strip>>;
|
|
2352
2352
|
images: z.ZodArray<z.ZodObject<{
|
|
2353
2353
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
2354
|
-
body: "body";
|
|
2355
2354
|
chart: "chart";
|
|
2356
2355
|
diagram: "diagram";
|
|
2357
2356
|
table: "table";
|
|
2358
2357
|
image: "image";
|
|
2359
2358
|
notes: "notes";
|
|
2359
|
+
body: "body";
|
|
2360
2360
|
}>>;
|
|
2361
2361
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2362
2362
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2435,10 +2435,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2435
2435
|
}>;
|
|
2436
2436
|
align: z.ZodEnum<{
|
|
2437
2437
|
left: "left";
|
|
2438
|
-
center: "center";
|
|
2439
2438
|
right: "right";
|
|
2440
2439
|
top: "top";
|
|
2441
2440
|
bottom: "bottom";
|
|
2441
|
+
center: "center";
|
|
2442
2442
|
inside: "inside";
|
|
2443
2443
|
outside: "outside";
|
|
2444
2444
|
}>;
|
|
@@ -2478,10 +2478,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2478
2478
|
}>;
|
|
2479
2479
|
align: z.ZodEnum<{
|
|
2480
2480
|
left: "left";
|
|
2481
|
-
center: "center";
|
|
2482
2481
|
right: "right";
|
|
2483
2482
|
top: "top";
|
|
2484
2483
|
bottom: "bottom";
|
|
2484
|
+
center: "center";
|
|
2485
2485
|
inside: "inside";
|
|
2486
2486
|
outside: "outside";
|
|
2487
2487
|
}>;
|
|
@@ -2570,11 +2570,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2570
2570
|
endColumn: z.ZodNumber;
|
|
2571
2571
|
}, z.core.$strip>>;
|
|
2572
2572
|
type: z.ZodEnum<{
|
|
2573
|
-
time: "time";
|
|
2574
2573
|
date: "date";
|
|
2575
2574
|
custom: "custom";
|
|
2576
2575
|
decimal: "decimal";
|
|
2577
2576
|
list: "list";
|
|
2577
|
+
time: "time";
|
|
2578
2578
|
whole: "whole";
|
|
2579
2579
|
textLength: "textLength";
|
|
2580
2580
|
}>;
|
|
@@ -3045,11 +3045,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3045
3045
|
stops: z.ZodArray<z.ZodObject<{
|
|
3046
3046
|
value: z.ZodObject<{
|
|
3047
3047
|
type: z.ZodEnum<{
|
|
3048
|
-
num: "num";
|
|
3049
|
-
min: "min";
|
|
3050
|
-
max: "max";
|
|
3051
3048
|
formula: "formula";
|
|
3052
3049
|
percent: "percent";
|
|
3050
|
+
num: "num";
|
|
3051
|
+
max: "max";
|
|
3052
|
+
min: "min";
|
|
3053
3053
|
percentile: "percentile";
|
|
3054
3054
|
}>;
|
|
3055
3055
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3092,22 +3092,22 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3092
3092
|
}, z.core.$strip>, z.ZodObject<{
|
|
3093
3093
|
min: z.ZodObject<{
|
|
3094
3094
|
type: z.ZodEnum<{
|
|
3095
|
-
num: "num";
|
|
3096
|
-
min: "min";
|
|
3097
|
-
max: "max";
|
|
3098
3095
|
formula: "formula";
|
|
3099
3096
|
percent: "percent";
|
|
3097
|
+
num: "num";
|
|
3098
|
+
max: "max";
|
|
3099
|
+
min: "min";
|
|
3100
3100
|
percentile: "percentile";
|
|
3101
3101
|
}>;
|
|
3102
3102
|
value: z.ZodOptional<z.ZodString>;
|
|
3103
3103
|
}, z.core.$strip>;
|
|
3104
3104
|
max: z.ZodObject<{
|
|
3105
3105
|
type: z.ZodEnum<{
|
|
3106
|
-
num: "num";
|
|
3107
|
-
min: "min";
|
|
3108
|
-
max: "max";
|
|
3109
3106
|
formula: "formula";
|
|
3110
3107
|
percent: "percent";
|
|
3108
|
+
num: "num";
|
|
3109
|
+
max: "max";
|
|
3110
|
+
min: "min";
|
|
3111
3111
|
percentile: "percentile";
|
|
3112
3112
|
}>;
|
|
3113
3113
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3151,11 +3151,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3151
3151
|
iconSetType: z.ZodString;
|
|
3152
3152
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
3153
3153
|
type: z.ZodEnum<{
|
|
3154
|
-
num: "num";
|
|
3155
|
-
min: "min";
|
|
3156
|
-
max: "max";
|
|
3157
3154
|
formula: "formula";
|
|
3158
3155
|
percent: "percent";
|
|
3156
|
+
num: "num";
|
|
3157
|
+
max: "max";
|
|
3158
|
+
min: "min";
|
|
3159
3159
|
percentile: "percentile";
|
|
3160
3160
|
}>;
|
|
3161
3161
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3288,12 +3288,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3288
3288
|
}, z.core.$strip>, z.ZodObject<{
|
|
3289
3289
|
pages: z.ZodArray<z.ZodObject<{
|
|
3290
3290
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3291
|
-
body: "body";
|
|
3292
3291
|
chart: "chart";
|
|
3293
3292
|
diagram: "diagram";
|
|
3294
3293
|
table: "table";
|
|
3295
3294
|
image: "image";
|
|
3296
3295
|
notes: "notes";
|
|
3296
|
+
body: "body";
|
|
3297
3297
|
}>>;
|
|
3298
3298
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3299
3299
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3321,12 +3321,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3321
3321
|
shapes: z.ZodArray<z.ZodObject<{
|
|
3322
3322
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3323
3323
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3324
|
-
body: "body";
|
|
3325
3324
|
chart: "chart";
|
|
3326
3325
|
diagram: "diagram";
|
|
3327
3326
|
table: "table";
|
|
3328
3327
|
image: "image";
|
|
3329
3328
|
notes: "notes";
|
|
3329
|
+
body: "body";
|
|
3330
3330
|
}>>;
|
|
3331
3331
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3332
3332
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3394,12 +3394,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3394
3394
|
}, z.core.$strip>>;
|
|
3395
3395
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3396
3396
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3397
|
-
body: "body";
|
|
3398
3397
|
chart: "chart";
|
|
3399
3398
|
diagram: "diagram";
|
|
3400
3399
|
table: "table";
|
|
3401
3400
|
image: "image";
|
|
3402
3401
|
notes: "notes";
|
|
3402
|
+
body: "body";
|
|
3403
3403
|
}>>;
|
|
3404
3404
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3405
3405
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3532,12 +3532,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3532
3532
|
}, z.core.$strip>>>;
|
|
3533
3533
|
}, z.core.$strip>, z.ZodObject<{
|
|
3534
3534
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3535
|
-
body: "body";
|
|
3536
3535
|
chart: "chart";
|
|
3537
3536
|
diagram: "diagram";
|
|
3538
3537
|
table: "table";
|
|
3539
3538
|
image: "image";
|
|
3540
3539
|
notes: "notes";
|
|
3540
|
+
body: "body";
|
|
3541
3541
|
}>>;
|
|
3542
3542
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3543
3543
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3670,12 +3670,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3670
3670
|
}, z.core.$strip>>>;
|
|
3671
3671
|
}, z.core.$strip>, z.ZodObject<{
|
|
3672
3672
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3673
|
-
body: "body";
|
|
3674
3673
|
chart: "chart";
|
|
3675
3674
|
diagram: "diagram";
|
|
3676
3675
|
table: "table";
|
|
3677
3676
|
image: "image";
|
|
3678
3677
|
notes: "notes";
|
|
3678
|
+
body: "body";
|
|
3679
3679
|
}>>;
|
|
3680
3680
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3681
3681
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3758,12 +3758,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3758
3758
|
}, z.core.$strip>>>;
|
|
3759
3759
|
}, z.core.$strip>, z.ZodObject<{
|
|
3760
3760
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3761
|
-
body: "body";
|
|
3762
3761
|
chart: "chart";
|
|
3763
3762
|
diagram: "diagram";
|
|
3764
3763
|
table: "table";
|
|
3765
3764
|
image: "image";
|
|
3766
3765
|
notes: "notes";
|
|
3766
|
+
body: "body";
|
|
3767
3767
|
}>>;
|
|
3768
3768
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3769
3769
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4018,12 +4018,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
4018
4018
|
}, z.core.$strip>, z.ZodObject<{
|
|
4019
4019
|
formula: z.ZodObject<{
|
|
4020
4020
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4021
|
-
body: "body";
|
|
4022
4021
|
chart: "chart";
|
|
4023
4022
|
diagram: "diagram";
|
|
4024
4023
|
table: "table";
|
|
4025
4024
|
image: "image";
|
|
4026
4025
|
notes: "notes";
|
|
4026
|
+
body: "body";
|
|
4027
4027
|
}>>;
|
|
4028
4028
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4029
4029
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4415,12 +4415,12 @@ declare function unrecognizedFillKind(fill: {
|
|
|
4415
4415
|
}): string;
|
|
4416
4416
|
declare const ContentTableCellSchema: z.ZodObject<{
|
|
4417
4417
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4418
|
-
body: "body";
|
|
4419
4418
|
chart: "chart";
|
|
4420
4419
|
diagram: "diagram";
|
|
4421
4420
|
table: "table";
|
|
4422
4421
|
image: "image";
|
|
4423
4422
|
notes: "notes";
|
|
4423
|
+
body: "body";
|
|
4424
4424
|
}>>;
|
|
4425
4425
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4426
4426
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4605,9 +4605,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
4605
4605
|
}, z.core.$strip>>;
|
|
4606
4606
|
}, z.core.$strip>>;
|
|
4607
4607
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4608
|
-
center: "center";
|
|
4609
4608
|
top: "top";
|
|
4610
4609
|
bottom: "bottom";
|
|
4610
|
+
center: "center";
|
|
4611
4611
|
}>>;
|
|
4612
4612
|
formula: z.ZodOptional<z.ZodString>;
|
|
4613
4613
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4642,12 +4642,12 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
4642
4642
|
declare const ContentTableRowSchema: z.ZodObject<{
|
|
4643
4643
|
cells: z.ZodArray<z.ZodObject<{
|
|
4644
4644
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4645
|
-
body: "body";
|
|
4646
4645
|
chart: "chart";
|
|
4647
4646
|
diagram: "diagram";
|
|
4648
4647
|
table: "table";
|
|
4649
4648
|
image: "image";
|
|
4650
4649
|
notes: "notes";
|
|
4650
|
+
body: "body";
|
|
4651
4651
|
}>>;
|
|
4652
4652
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4653
4653
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4832,9 +4832,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4832
4832
|
}, z.core.$strip>>;
|
|
4833
4833
|
}, z.core.$strip>>;
|
|
4834
4834
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4835
|
-
center: "center";
|
|
4836
4835
|
top: "top";
|
|
4837
4836
|
bottom: "bottom";
|
|
4837
|
+
center: "center";
|
|
4838
4838
|
}>>;
|
|
4839
4839
|
formula: z.ZodOptional<z.ZodString>;
|
|
4840
4840
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4874,12 +4874,12 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4874
4874
|
}, z.core.$strip>;
|
|
4875
4875
|
declare const ContentTableSchema: z.ZodObject<{
|
|
4876
4876
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4877
|
-
body: "body";
|
|
4878
4877
|
chart: "chart";
|
|
4879
4878
|
diagram: "diagram";
|
|
4880
4879
|
table: "table";
|
|
4881
4880
|
image: "image";
|
|
4882
4881
|
notes: "notes";
|
|
4882
|
+
body: "body";
|
|
4883
4883
|
}>>;
|
|
4884
4884
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4885
4885
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4904,12 +4904,12 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
4904
4904
|
rows: z.ZodArray<z.ZodObject<{
|
|
4905
4905
|
cells: z.ZodArray<z.ZodObject<{
|
|
4906
4906
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4907
|
-
body: "body";
|
|
4908
4907
|
chart: "chart";
|
|
4909
4908
|
diagram: "diagram";
|
|
4910
4909
|
table: "table";
|
|
4911
4910
|
image: "image";
|
|
4912
4911
|
notes: "notes";
|
|
4912
|
+
body: "body";
|
|
4913
4913
|
}>>;
|
|
4914
4914
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4915
4915
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5094,9 +5094,9 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
5094
5094
|
}, z.core.$strip>>;
|
|
5095
5095
|
}, z.core.$strip>>;
|
|
5096
5096
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
5097
|
-
center: "center";
|
|
5098
5097
|
top: "top";
|
|
5099
5098
|
bottom: "bottom";
|
|
5099
|
+
center: "center";
|
|
5100
5100
|
}>>;
|
|
5101
5101
|
formula: z.ZodOptional<z.ZodString>;
|
|
5102
5102
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -5173,12 +5173,12 @@ declare const ContentPageFurnitureSchema: z.ZodObject<{
|
|
|
5173
5173
|
type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
|
|
5174
5174
|
declare const ContentSectionSchema: z.ZodObject<{
|
|
5175
5175
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5176
|
-
body: "body";
|
|
5177
5176
|
chart: "chart";
|
|
5178
5177
|
diagram: "diagram";
|
|
5179
5178
|
table: "table";
|
|
5180
5179
|
image: "image";
|
|
5181
5180
|
notes: "notes";
|
|
5181
|
+
body: "body";
|
|
5182
5182
|
}>>;
|
|
5183
5183
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5184
5184
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5256,12 +5256,12 @@ type ContentSection = z.infer<typeof ContentSectionSchema>;
|
|
|
5256
5256
|
declare const ContentShapeSchema: z.ZodObject<{
|
|
5257
5257
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5258
5258
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5259
|
-
body: "body";
|
|
5260
5259
|
chart: "chart";
|
|
5261
5260
|
diagram: "diagram";
|
|
5262
5261
|
table: "table";
|
|
5263
5262
|
image: "image";
|
|
5264
5263
|
notes: "notes";
|
|
5264
|
+
body: "body";
|
|
5265
5265
|
}>>;
|
|
5266
5266
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5267
5267
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5330,12 +5330,12 @@ declare const ContentShapeSchema: z.ZodObject<{
|
|
|
5330
5330
|
type ContentShape = z.infer<typeof ContentShapeSchema>;
|
|
5331
5331
|
declare const ContentSlideSchema: z.ZodObject<{
|
|
5332
5332
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5333
|
-
body: "body";
|
|
5334
5333
|
chart: "chart";
|
|
5335
5334
|
diagram: "diagram";
|
|
5336
5335
|
table: "table";
|
|
5337
5336
|
image: "image";
|
|
5338
5337
|
notes: "notes";
|
|
5338
|
+
body: "body";
|
|
5339
5339
|
}>>;
|
|
5340
5340
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5341
5341
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5363,12 +5363,12 @@ declare const ContentSlideSchema: z.ZodObject<{
|
|
|
5363
5363
|
shapes: z.ZodArray<z.ZodObject<{
|
|
5364
5364
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5365
5365
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5366
|
-
body: "body";
|
|
5367
5366
|
chart: "chart";
|
|
5368
5367
|
diagram: "diagram";
|
|
5369
5368
|
table: "table";
|
|
5370
5369
|
image: "image";
|
|
5371
5370
|
notes: "notes";
|
|
5371
|
+
body: "body";
|
|
5372
5372
|
}>>;
|
|
5373
5373
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5374
5374
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5506,12 +5506,12 @@ declare const ContentSheetCellCommentSchema: z.ZodObject<{
|
|
|
5506
5506
|
type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
|
|
5507
5507
|
declare const ContentSheetCellSchema: z.ZodObject<{
|
|
5508
5508
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5509
|
-
body: "body";
|
|
5510
5509
|
chart: "chart";
|
|
5511
5510
|
diagram: "diagram";
|
|
5512
5511
|
table: "table";
|
|
5513
5512
|
image: "image";
|
|
5514
5513
|
notes: "notes";
|
|
5514
|
+
body: "body";
|
|
5515
5515
|
}>>;
|
|
5516
5516
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5517
5517
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5586,12 +5586,12 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
5586
5586
|
}, z.core.$strip>>;
|
|
5587
5587
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5588
5588
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5589
|
-
body: "body";
|
|
5590
5589
|
chart: "chart";
|
|
5591
5590
|
diagram: "diagram";
|
|
5592
5591
|
table: "table";
|
|
5593
5592
|
image: "image";
|
|
5594
5593
|
notes: "notes";
|
|
5594
|
+
body: "body";
|
|
5595
5595
|
}>>;
|
|
5596
5596
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5597
5597
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5826,8 +5826,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
5826
5826
|
}, z.core.$strip>>;
|
|
5827
5827
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
5828
5828
|
left: "left";
|
|
5829
|
-
center: "center";
|
|
5830
5829
|
right: "right";
|
|
5830
|
+
center: "center";
|
|
5831
5831
|
justify: "justify";
|
|
5832
5832
|
}>>;
|
|
5833
5833
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5959,11 +5959,11 @@ declare const SheetRuleOperatorSchema: z.ZodEnum<{
|
|
|
5959
5959
|
}>;
|
|
5960
5960
|
type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
|
|
5961
5961
|
declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
|
|
5962
|
-
time: "time";
|
|
5963
5962
|
date: "date";
|
|
5964
5963
|
custom: "custom";
|
|
5965
5964
|
decimal: "decimal";
|
|
5966
5965
|
list: "list";
|
|
5966
|
+
time: "time";
|
|
5967
5967
|
whole: "whole";
|
|
5968
5968
|
textLength: "textLength";
|
|
5969
5969
|
}>;
|
|
@@ -5976,11 +5976,11 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
|
|
|
5976
5976
|
endColumn: z.ZodNumber;
|
|
5977
5977
|
}, z.core.$strip>>;
|
|
5978
5978
|
type: z.ZodEnum<{
|
|
5979
|
-
time: "time";
|
|
5980
5979
|
date: "date";
|
|
5981
5980
|
custom: "custom";
|
|
5982
5981
|
decimal: "decimal";
|
|
5983
5982
|
list: "list";
|
|
5983
|
+
time: "time";
|
|
5984
5984
|
whole: "whole";
|
|
5985
5985
|
textLength: "textLength";
|
|
5986
5986
|
}>;
|
|
@@ -6065,11 +6065,11 @@ declare const ContentSheetConditionalFormatStyleSchema: z.ZodObject<{
|
|
|
6065
6065
|
type ContentSheetConditionalFormatStyle = z.infer<typeof ContentSheetConditionalFormatStyleSchema>;
|
|
6066
6066
|
declare const ContentSheetConditionalFormatValueSchema: z.ZodObject<{
|
|
6067
6067
|
type: z.ZodEnum<{
|
|
6068
|
-
num: "num";
|
|
6069
|
-
min: "min";
|
|
6070
|
-
max: "max";
|
|
6071
6068
|
formula: "formula";
|
|
6072
6069
|
percent: "percent";
|
|
6070
|
+
num: "num";
|
|
6071
|
+
max: "max";
|
|
6072
|
+
min: "min";
|
|
6073
6073
|
percentile: "percentile";
|
|
6074
6074
|
}>;
|
|
6075
6075
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6497,11 +6497,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6497
6497
|
stops: z.ZodArray<z.ZodObject<{
|
|
6498
6498
|
value: z.ZodObject<{
|
|
6499
6499
|
type: z.ZodEnum<{
|
|
6500
|
-
num: "num";
|
|
6501
|
-
min: "min";
|
|
6502
|
-
max: "max";
|
|
6503
6500
|
formula: "formula";
|
|
6504
6501
|
percent: "percent";
|
|
6502
|
+
num: "num";
|
|
6503
|
+
max: "max";
|
|
6504
|
+
min: "min";
|
|
6505
6505
|
percentile: "percentile";
|
|
6506
6506
|
}>;
|
|
6507
6507
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6544,22 +6544,22 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6544
6544
|
}, z.core.$strip>, z.ZodObject<{
|
|
6545
6545
|
min: z.ZodObject<{
|
|
6546
6546
|
type: z.ZodEnum<{
|
|
6547
|
-
num: "num";
|
|
6548
|
-
min: "min";
|
|
6549
|
-
max: "max";
|
|
6550
6547
|
formula: "formula";
|
|
6551
6548
|
percent: "percent";
|
|
6549
|
+
num: "num";
|
|
6550
|
+
max: "max";
|
|
6551
|
+
min: "min";
|
|
6552
6552
|
percentile: "percentile";
|
|
6553
6553
|
}>;
|
|
6554
6554
|
value: z.ZodOptional<z.ZodString>;
|
|
6555
6555
|
}, z.core.$strip>;
|
|
6556
6556
|
max: z.ZodObject<{
|
|
6557
6557
|
type: z.ZodEnum<{
|
|
6558
|
-
num: "num";
|
|
6559
|
-
min: "min";
|
|
6560
|
-
max: "max";
|
|
6561
6558
|
formula: "formula";
|
|
6562
6559
|
percent: "percent";
|
|
6560
|
+
num: "num";
|
|
6561
|
+
max: "max";
|
|
6562
|
+
min: "min";
|
|
6563
6563
|
percentile: "percentile";
|
|
6564
6564
|
}>;
|
|
6565
6565
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6603,11 +6603,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6603
6603
|
iconSetType: z.ZodString;
|
|
6604
6604
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
6605
6605
|
type: z.ZodEnum<{
|
|
6606
|
-
num: "num";
|
|
6607
|
-
min: "min";
|
|
6608
|
-
max: "max";
|
|
6609
6606
|
formula: "formula";
|
|
6610
6607
|
percent: "percent";
|
|
6608
|
+
num: "num";
|
|
6609
|
+
max: "max";
|
|
6610
|
+
min: "min";
|
|
6611
6611
|
percentile: "percentile";
|
|
6612
6612
|
}>;
|
|
6613
6613
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6647,12 +6647,12 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6647
6647
|
type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalFormatSchema>;
|
|
6648
6648
|
declare const ContentSheetImageSchema: z.ZodObject<{
|
|
6649
6649
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6650
|
-
body: "body";
|
|
6651
6650
|
chart: "chart";
|
|
6652
6651
|
diagram: "diagram";
|
|
6653
6652
|
table: "table";
|
|
6654
6653
|
image: "image";
|
|
6655
6654
|
notes: "notes";
|
|
6655
|
+
body: "body";
|
|
6656
6656
|
}>>;
|
|
6657
6657
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6658
6658
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6731,10 +6731,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6731
6731
|
}>;
|
|
6732
6732
|
align: z.ZodEnum<{
|
|
6733
6733
|
left: "left";
|
|
6734
|
-
center: "center";
|
|
6735
6734
|
right: "right";
|
|
6736
6735
|
top: "top";
|
|
6737
6736
|
bottom: "bottom";
|
|
6737
|
+
center: "center";
|
|
6738
6738
|
inside: "inside";
|
|
6739
6739
|
outside: "outside";
|
|
6740
6740
|
}>;
|
|
@@ -6774,10 +6774,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6774
6774
|
}>;
|
|
6775
6775
|
align: z.ZodEnum<{
|
|
6776
6776
|
left: "left";
|
|
6777
|
-
center: "center";
|
|
6778
6777
|
right: "right";
|
|
6779
6778
|
top: "top";
|
|
6780
6779
|
bottom: "bottom";
|
|
6780
|
+
center: "center";
|
|
6781
6781
|
inside: "inside";
|
|
6782
6782
|
outside: "outside";
|
|
6783
6783
|
}>;
|
|
@@ -6819,12 +6819,12 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6819
6819
|
type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
|
|
6820
6820
|
declare const ContentSheetSchema: z.ZodObject<{
|
|
6821
6821
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6822
|
-
body: "body";
|
|
6823
6822
|
chart: "chart";
|
|
6824
6823
|
diagram: "diagram";
|
|
6825
6824
|
table: "table";
|
|
6826
6825
|
image: "image";
|
|
6827
6826
|
notes: "notes";
|
|
6827
|
+
body: "body";
|
|
6828
6828
|
}>>;
|
|
6829
6829
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6830
6830
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6848,12 +6848,12 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6848
6848
|
name: z.ZodString;
|
|
6849
6849
|
cells: z.ZodArray<z.ZodObject<{
|
|
6850
6850
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6851
|
-
body: "body";
|
|
6852
6851
|
chart: "chart";
|
|
6853
6852
|
diagram: "diagram";
|
|
6854
6853
|
table: "table";
|
|
6855
6854
|
image: "image";
|
|
6856
6855
|
notes: "notes";
|
|
6856
|
+
body: "body";
|
|
6857
6857
|
}>>;
|
|
6858
6858
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6859
6859
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6928,12 +6928,12 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6928
6928
|
}, z.core.$strip>>;
|
|
6929
6929
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6930
6930
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6931
|
-
body: "body";
|
|
6932
6931
|
chart: "chart";
|
|
6933
6932
|
diagram: "diagram";
|
|
6934
6933
|
table: "table";
|
|
6935
6934
|
image: "image";
|
|
6936
6935
|
notes: "notes";
|
|
6936
|
+
body: "body";
|
|
6937
6937
|
}>>;
|
|
6938
6938
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6939
6939
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -7168,8 +7168,8 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7168
7168
|
}, z.core.$strip>>;
|
|
7169
7169
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
7170
7170
|
left: "left";
|
|
7171
|
-
center: "center";
|
|
7172
7171
|
right: "right";
|
|
7172
|
+
center: "center";
|
|
7173
7173
|
justify: "justify";
|
|
7174
7174
|
}>>;
|
|
7175
7175
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7227,12 +7227,12 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7227
7227
|
}, z.core.$strip>>;
|
|
7228
7228
|
images: z.ZodArray<z.ZodObject<{
|
|
7229
7229
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
7230
|
-
body: "body";
|
|
7231
7230
|
chart: "chart";
|
|
7232
7231
|
diagram: "diagram";
|
|
7233
7232
|
table: "table";
|
|
7234
7233
|
image: "image";
|
|
7235
7234
|
notes: "notes";
|
|
7235
|
+
body: "body";
|
|
7236
7236
|
}>>;
|
|
7237
7237
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
7238
7238
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -7311,10 +7311,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7311
7311
|
}>;
|
|
7312
7312
|
align: z.ZodEnum<{
|
|
7313
7313
|
left: "left";
|
|
7314
|
-
center: "center";
|
|
7315
7314
|
right: "right";
|
|
7316
7315
|
top: "top";
|
|
7317
7316
|
bottom: "bottom";
|
|
7317
|
+
center: "center";
|
|
7318
7318
|
inside: "inside";
|
|
7319
7319
|
outside: "outside";
|
|
7320
7320
|
}>;
|
|
@@ -7354,10 +7354,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7354
7354
|
}>;
|
|
7355
7355
|
align: z.ZodEnum<{
|
|
7356
7356
|
left: "left";
|
|
7357
|
-
center: "center";
|
|
7358
7357
|
right: "right";
|
|
7359
7358
|
top: "top";
|
|
7360
7359
|
bottom: "bottom";
|
|
7360
|
+
center: "center";
|
|
7361
7361
|
inside: "inside";
|
|
7362
7362
|
outside: "outside";
|
|
7363
7363
|
}>;
|
|
@@ -7446,11 +7446,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7446
7446
|
endColumn: z.ZodNumber;
|
|
7447
7447
|
}, z.core.$strip>>;
|
|
7448
7448
|
type: z.ZodEnum<{
|
|
7449
|
-
time: "time";
|
|
7450
7449
|
date: "date";
|
|
7451
7450
|
custom: "custom";
|
|
7452
7451
|
decimal: "decimal";
|
|
7453
7452
|
list: "list";
|
|
7453
|
+
time: "time";
|
|
7454
7454
|
whole: "whole";
|
|
7455
7455
|
textLength: "textLength";
|
|
7456
7456
|
}>;
|
|
@@ -7921,11 +7921,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7921
7921
|
stops: z.ZodArray<z.ZodObject<{
|
|
7922
7922
|
value: z.ZodObject<{
|
|
7923
7923
|
type: z.ZodEnum<{
|
|
7924
|
-
num: "num";
|
|
7925
|
-
min: "min";
|
|
7926
|
-
max: "max";
|
|
7927
7924
|
formula: "formula";
|
|
7928
7925
|
percent: "percent";
|
|
7926
|
+
num: "num";
|
|
7927
|
+
max: "max";
|
|
7928
|
+
min: "min";
|
|
7929
7929
|
percentile: "percentile";
|
|
7930
7930
|
}>;
|
|
7931
7931
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -7968,22 +7968,22 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7968
7968
|
}, z.core.$strip>, z.ZodObject<{
|
|
7969
7969
|
min: z.ZodObject<{
|
|
7970
7970
|
type: z.ZodEnum<{
|
|
7971
|
-
num: "num";
|
|
7972
|
-
min: "min";
|
|
7973
|
-
max: "max";
|
|
7974
7971
|
formula: "formula";
|
|
7975
7972
|
percent: "percent";
|
|
7973
|
+
num: "num";
|
|
7974
|
+
max: "max";
|
|
7975
|
+
min: "min";
|
|
7976
7976
|
percentile: "percentile";
|
|
7977
7977
|
}>;
|
|
7978
7978
|
value: z.ZodOptional<z.ZodString>;
|
|
7979
7979
|
}, z.core.$strip>;
|
|
7980
7980
|
max: z.ZodObject<{
|
|
7981
7981
|
type: z.ZodEnum<{
|
|
7982
|
-
num: "num";
|
|
7983
|
-
min: "min";
|
|
7984
|
-
max: "max";
|
|
7985
7982
|
formula: "formula";
|
|
7986
7983
|
percent: "percent";
|
|
7984
|
+
num: "num";
|
|
7985
|
+
max: "max";
|
|
7986
|
+
min: "min";
|
|
7987
7987
|
percentile: "percentile";
|
|
7988
7988
|
}>;
|
|
7989
7989
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -8027,11 +8027,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
8027
8027
|
iconSetType: z.ZodString;
|
|
8028
8028
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
8029
8029
|
type: z.ZodEnum<{
|
|
8030
|
-
num: "num";
|
|
8031
|
-
min: "min";
|
|
8032
|
-
max: "max";
|
|
8033
8030
|
formula: "formula";
|
|
8034
8031
|
percent: "percent";
|
|
8032
|
+
num: "num";
|
|
8033
|
+
max: "max";
|
|
8034
|
+
min: "min";
|
|
8035
8035
|
percentile: "percentile";
|
|
8036
8036
|
}>;
|
|
8037
8037
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -8290,12 +8290,12 @@ declare const ContentSubpathSchema: z.ZodObject<{
|
|
|
8290
8290
|
type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
|
|
8291
8291
|
declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8292
8292
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8293
|
-
body: "body";
|
|
8294
8293
|
chart: "chart";
|
|
8295
8294
|
diagram: "diagram";
|
|
8296
8295
|
table: "table";
|
|
8297
8296
|
image: "image";
|
|
8298
8297
|
notes: "notes";
|
|
8298
|
+
body: "body";
|
|
8299
8299
|
}>>;
|
|
8300
8300
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8301
8301
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8428,12 +8428,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8428
8428
|
}, z.core.$strip>>>;
|
|
8429
8429
|
}, z.core.$strip>, z.ZodObject<{
|
|
8430
8430
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8431
|
-
body: "body";
|
|
8432
8431
|
chart: "chart";
|
|
8433
8432
|
diagram: "diagram";
|
|
8434
8433
|
table: "table";
|
|
8435
8434
|
image: "image";
|
|
8436
8435
|
notes: "notes";
|
|
8436
|
+
body: "body";
|
|
8437
8437
|
}>>;
|
|
8438
8438
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8439
8439
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8566,12 +8566,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8566
8566
|
}, z.core.$strip>>>;
|
|
8567
8567
|
}, z.core.$strip>, z.ZodObject<{
|
|
8568
8568
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8569
|
-
body: "body";
|
|
8570
8569
|
chart: "chart";
|
|
8571
8570
|
diagram: "diagram";
|
|
8572
8571
|
table: "table";
|
|
8573
8572
|
image: "image";
|
|
8574
8573
|
notes: "notes";
|
|
8574
|
+
body: "body";
|
|
8575
8575
|
}>>;
|
|
8576
8576
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8577
8577
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8654,12 +8654,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8654
8654
|
}, z.core.$strip>>>;
|
|
8655
8655
|
}, z.core.$strip>, z.ZodObject<{
|
|
8656
8656
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8657
|
-
body: "body";
|
|
8658
8657
|
chart: "chart";
|
|
8659
8658
|
diagram: "diagram";
|
|
8660
8659
|
table: "table";
|
|
8661
8660
|
image: "image";
|
|
8662
8661
|
notes: "notes";
|
|
8662
|
+
body: "body";
|
|
8663
8663
|
}>>;
|
|
8664
8664
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8665
8665
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8826,12 +8826,12 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8826
8826
|
type ContentVector = z.infer<typeof ContentVectorSchema>;
|
|
8827
8827
|
declare const ContentDrawPageSchema: z.ZodObject<{
|
|
8828
8828
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8829
|
-
body: "body";
|
|
8830
8829
|
chart: "chart";
|
|
8831
8830
|
diagram: "diagram";
|
|
8832
8831
|
table: "table";
|
|
8833
8832
|
image: "image";
|
|
8834
8833
|
notes: "notes";
|
|
8834
|
+
body: "body";
|
|
8835
8835
|
}>>;
|
|
8836
8836
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8837
8837
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8859,12 +8859,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8859
8859
|
shapes: z.ZodArray<z.ZodObject<{
|
|
8860
8860
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
8861
8861
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8862
|
-
body: "body";
|
|
8863
8862
|
chart: "chart";
|
|
8864
8863
|
diagram: "diagram";
|
|
8865
8864
|
table: "table";
|
|
8866
8865
|
image: "image";
|
|
8867
8866
|
notes: "notes";
|
|
8867
|
+
body: "body";
|
|
8868
8868
|
}>>;
|
|
8869
8869
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8870
8870
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8932,12 +8932,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8932
8932
|
}, z.core.$strip>>;
|
|
8933
8933
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8934
8934
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8935
|
-
body: "body";
|
|
8936
8935
|
chart: "chart";
|
|
8937
8936
|
diagram: "diagram";
|
|
8938
8937
|
table: "table";
|
|
8939
8938
|
image: "image";
|
|
8940
8939
|
notes: "notes";
|
|
8940
|
+
body: "body";
|
|
8941
8941
|
}>>;
|
|
8942
8942
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8943
8943
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9070,12 +9070,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9070
9070
|
}, z.core.$strip>>>;
|
|
9071
9071
|
}, z.core.$strip>, z.ZodObject<{
|
|
9072
9072
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9073
|
-
body: "body";
|
|
9074
9073
|
chart: "chart";
|
|
9075
9074
|
diagram: "diagram";
|
|
9076
9075
|
table: "table";
|
|
9077
9076
|
image: "image";
|
|
9078
9077
|
notes: "notes";
|
|
9078
|
+
body: "body";
|
|
9079
9079
|
}>>;
|
|
9080
9080
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9081
9081
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9208,12 +9208,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9208
9208
|
}, z.core.$strip>>>;
|
|
9209
9209
|
}, z.core.$strip>, z.ZodObject<{
|
|
9210
9210
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9211
|
-
body: "body";
|
|
9212
9211
|
chart: "chart";
|
|
9213
9212
|
diagram: "diagram";
|
|
9214
9213
|
table: "table";
|
|
9215
9214
|
image: "image";
|
|
9216
9215
|
notes: "notes";
|
|
9216
|
+
body: "body";
|
|
9217
9217
|
}>>;
|
|
9218
9218
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9219
9219
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9296,12 +9296,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9296
9296
|
}, z.core.$strip>>>;
|
|
9297
9297
|
}, z.core.$strip>, z.ZodObject<{
|
|
9298
9298
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9299
|
-
body: "body";
|
|
9300
9299
|
chart: "chart";
|
|
9301
9300
|
diagram: "diagram";
|
|
9302
9301
|
table: "table";
|
|
9303
9302
|
image: "image";
|
|
9304
9303
|
notes: "notes";
|
|
9304
|
+
body: "body";
|
|
9305
9305
|
}>>;
|
|
9306
9306
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9307
9307
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9489,12 +9489,12 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9489
9489
|
type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
|
|
9490
9490
|
declare const ContentFormulaSchema: z.ZodObject<{
|
|
9491
9491
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9492
|
-
body: "body";
|
|
9493
9492
|
chart: "chart";
|
|
9494
9493
|
diagram: "diagram";
|
|
9495
9494
|
table: "table";
|
|
9496
9495
|
image: "image";
|
|
9497
9496
|
notes: "notes";
|
|
9497
|
+
body: "body";
|
|
9498
9498
|
}>>;
|
|
9499
9499
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9500
9500
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9602,12 +9602,12 @@ type ContentDefinedName = z.infer<typeof ContentDefinedNameSchema>;
|
|
|
9602
9602
|
declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9603
9603
|
sections: z.ZodArray<z.ZodObject<{
|
|
9604
9604
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9605
|
-
body: "body";
|
|
9606
9605
|
chart: "chart";
|
|
9607
9606
|
diagram: "diagram";
|
|
9608
9607
|
table: "table";
|
|
9609
9608
|
image: "image";
|
|
9610
9609
|
notes: "notes";
|
|
9610
|
+
body: "body";
|
|
9611
9611
|
}>>;
|
|
9612
9612
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9613
9613
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9751,12 +9751,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9751
9751
|
}, z.core.$strip>, z.ZodObject<{
|
|
9752
9752
|
slides: z.ZodArray<z.ZodObject<{
|
|
9753
9753
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9754
|
-
body: "body";
|
|
9755
9754
|
chart: "chart";
|
|
9756
9755
|
diagram: "diagram";
|
|
9757
9756
|
table: "table";
|
|
9758
9757
|
image: "image";
|
|
9759
9758
|
notes: "notes";
|
|
9759
|
+
body: "body";
|
|
9760
9760
|
}>>;
|
|
9761
9761
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9762
9762
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9784,12 +9784,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9784
9784
|
shapes: z.ZodArray<z.ZodObject<{
|
|
9785
9785
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
9786
9786
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9787
|
-
body: "body";
|
|
9788
9787
|
chart: "chart";
|
|
9789
9788
|
diagram: "diagram";
|
|
9790
9789
|
table: "table";
|
|
9791
9790
|
image: "image";
|
|
9792
9791
|
notes: "notes";
|
|
9792
|
+
body: "body";
|
|
9793
9793
|
}>>;
|
|
9794
9794
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9795
9795
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9947,12 +9947,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9947
9947
|
}, z.core.$strip>, z.ZodObject<{
|
|
9948
9948
|
sheets: z.ZodArray<z.ZodObject<{
|
|
9949
9949
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9950
|
-
body: "body";
|
|
9951
9950
|
chart: "chart";
|
|
9952
9951
|
diagram: "diagram";
|
|
9953
9952
|
table: "table";
|
|
9954
9953
|
image: "image";
|
|
9955
9954
|
notes: "notes";
|
|
9955
|
+
body: "body";
|
|
9956
9956
|
}>>;
|
|
9957
9957
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9958
9958
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9976,12 +9976,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9976
9976
|
name: z.ZodString;
|
|
9977
9977
|
cells: z.ZodArray<z.ZodObject<{
|
|
9978
9978
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9979
|
-
body: "body";
|
|
9980
9979
|
chart: "chart";
|
|
9981
9980
|
diagram: "diagram";
|
|
9982
9981
|
table: "table";
|
|
9983
9982
|
image: "image";
|
|
9984
9983
|
notes: "notes";
|
|
9984
|
+
body: "body";
|
|
9985
9985
|
}>>;
|
|
9986
9986
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9987
9987
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10056,12 +10056,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10056
10056
|
}, z.core.$strip>>;
|
|
10057
10057
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10058
10058
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
10059
|
-
body: "body";
|
|
10060
10059
|
chart: "chart";
|
|
10061
10060
|
diagram: "diagram";
|
|
10062
10061
|
table: "table";
|
|
10063
10062
|
image: "image";
|
|
10064
10063
|
notes: "notes";
|
|
10064
|
+
body: "body";
|
|
10065
10065
|
}>>;
|
|
10066
10066
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10067
10067
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10296,8 +10296,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10296
10296
|
}, z.core.$strip>>;
|
|
10297
10297
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
10298
10298
|
left: "left";
|
|
10299
|
-
center: "center";
|
|
10300
10299
|
right: "right";
|
|
10300
|
+
center: "center";
|
|
10301
10301
|
justify: "justify";
|
|
10302
10302
|
}>>;
|
|
10303
10303
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -10355,12 +10355,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10355
10355
|
}, z.core.$strip>>;
|
|
10356
10356
|
images: z.ZodArray<z.ZodObject<{
|
|
10357
10357
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
10358
|
-
body: "body";
|
|
10359
10358
|
chart: "chart";
|
|
10360
10359
|
diagram: "diagram";
|
|
10361
10360
|
table: "table";
|
|
10362
10361
|
image: "image";
|
|
10363
10362
|
notes: "notes";
|
|
10363
|
+
body: "body";
|
|
10364
10364
|
}>>;
|
|
10365
10365
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10366
10366
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10439,10 +10439,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10439
10439
|
}>;
|
|
10440
10440
|
align: z.ZodEnum<{
|
|
10441
10441
|
left: "left";
|
|
10442
|
-
center: "center";
|
|
10443
10442
|
right: "right";
|
|
10444
10443
|
top: "top";
|
|
10445
10444
|
bottom: "bottom";
|
|
10445
|
+
center: "center";
|
|
10446
10446
|
inside: "inside";
|
|
10447
10447
|
outside: "outside";
|
|
10448
10448
|
}>;
|
|
@@ -10482,10 +10482,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10482
10482
|
}>;
|
|
10483
10483
|
align: z.ZodEnum<{
|
|
10484
10484
|
left: "left";
|
|
10485
|
-
center: "center";
|
|
10486
10485
|
right: "right";
|
|
10487
10486
|
top: "top";
|
|
10488
10487
|
bottom: "bottom";
|
|
10488
|
+
center: "center";
|
|
10489
10489
|
inside: "inside";
|
|
10490
10490
|
outside: "outside";
|
|
10491
10491
|
}>;
|
|
@@ -10574,11 +10574,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10574
10574
|
endColumn: z.ZodNumber;
|
|
10575
10575
|
}, z.core.$strip>>;
|
|
10576
10576
|
type: z.ZodEnum<{
|
|
10577
|
-
time: "time";
|
|
10578
10577
|
date: "date";
|
|
10579
10578
|
custom: "custom";
|
|
10580
10579
|
decimal: "decimal";
|
|
10581
10580
|
list: "list";
|
|
10581
|
+
time: "time";
|
|
10582
10582
|
whole: "whole";
|
|
10583
10583
|
textLength: "textLength";
|
|
10584
10584
|
}>;
|
|
@@ -11049,11 +11049,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11049
11049
|
stops: z.ZodArray<z.ZodObject<{
|
|
11050
11050
|
value: z.ZodObject<{
|
|
11051
11051
|
type: z.ZodEnum<{
|
|
11052
|
-
num: "num";
|
|
11053
|
-
min: "min";
|
|
11054
|
-
max: "max";
|
|
11055
11052
|
formula: "formula";
|
|
11056
11053
|
percent: "percent";
|
|
11054
|
+
num: "num";
|
|
11055
|
+
max: "max";
|
|
11056
|
+
min: "min";
|
|
11057
11057
|
percentile: "percentile";
|
|
11058
11058
|
}>;
|
|
11059
11059
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11096,22 +11096,22 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11096
11096
|
}, z.core.$strip>, z.ZodObject<{
|
|
11097
11097
|
min: z.ZodObject<{
|
|
11098
11098
|
type: z.ZodEnum<{
|
|
11099
|
-
num: "num";
|
|
11100
|
-
min: "min";
|
|
11101
|
-
max: "max";
|
|
11102
11099
|
formula: "formula";
|
|
11103
11100
|
percent: "percent";
|
|
11101
|
+
num: "num";
|
|
11102
|
+
max: "max";
|
|
11103
|
+
min: "min";
|
|
11104
11104
|
percentile: "percentile";
|
|
11105
11105
|
}>;
|
|
11106
11106
|
value: z.ZodOptional<z.ZodString>;
|
|
11107
11107
|
}, z.core.$strip>;
|
|
11108
11108
|
max: z.ZodObject<{
|
|
11109
11109
|
type: z.ZodEnum<{
|
|
11110
|
-
num: "num";
|
|
11111
|
-
min: "min";
|
|
11112
|
-
max: "max";
|
|
11113
11110
|
formula: "formula";
|
|
11114
11111
|
percent: "percent";
|
|
11112
|
+
num: "num";
|
|
11113
|
+
max: "max";
|
|
11114
|
+
min: "min";
|
|
11115
11115
|
percentile: "percentile";
|
|
11116
11116
|
}>;
|
|
11117
11117
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11155,11 +11155,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11155
11155
|
iconSetType: z.ZodString;
|
|
11156
11156
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
11157
11157
|
type: z.ZodEnum<{
|
|
11158
|
-
num: "num";
|
|
11159
|
-
min: "min";
|
|
11160
|
-
max: "max";
|
|
11161
11158
|
formula: "formula";
|
|
11162
11159
|
percent: "percent";
|
|
11160
|
+
num: "num";
|
|
11161
|
+
max: "max";
|
|
11162
|
+
min: "min";
|
|
11163
11163
|
percentile: "percentile";
|
|
11164
11164
|
}>;
|
|
11165
11165
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11292,12 +11292,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11292
11292
|
}, z.core.$strip>, z.ZodObject<{
|
|
11293
11293
|
pages: z.ZodArray<z.ZodObject<{
|
|
11294
11294
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11295
|
-
body: "body";
|
|
11296
11295
|
chart: "chart";
|
|
11297
11296
|
diagram: "diagram";
|
|
11298
11297
|
table: "table";
|
|
11299
11298
|
image: "image";
|
|
11300
11299
|
notes: "notes";
|
|
11300
|
+
body: "body";
|
|
11301
11301
|
}>>;
|
|
11302
11302
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11303
11303
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11325,12 +11325,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11325
11325
|
shapes: z.ZodArray<z.ZodObject<{
|
|
11326
11326
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
11327
11327
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11328
|
-
body: "body";
|
|
11329
11328
|
chart: "chart";
|
|
11330
11329
|
diagram: "diagram";
|
|
11331
11330
|
table: "table";
|
|
11332
11331
|
image: "image";
|
|
11333
11332
|
notes: "notes";
|
|
11333
|
+
body: "body";
|
|
11334
11334
|
}>>;
|
|
11335
11335
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11336
11336
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11398,12 +11398,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11398
11398
|
}, z.core.$strip>>;
|
|
11399
11399
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11400
11400
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11401
|
-
body: "body";
|
|
11402
11401
|
chart: "chart";
|
|
11403
11402
|
diagram: "diagram";
|
|
11404
11403
|
table: "table";
|
|
11405
11404
|
image: "image";
|
|
11406
11405
|
notes: "notes";
|
|
11406
|
+
body: "body";
|
|
11407
11407
|
}>>;
|
|
11408
11408
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11409
11409
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11536,12 +11536,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11536
11536
|
}, z.core.$strip>>>;
|
|
11537
11537
|
}, z.core.$strip>, z.ZodObject<{
|
|
11538
11538
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11539
|
-
body: "body";
|
|
11540
11539
|
chart: "chart";
|
|
11541
11540
|
diagram: "diagram";
|
|
11542
11541
|
table: "table";
|
|
11543
11542
|
image: "image";
|
|
11544
11543
|
notes: "notes";
|
|
11544
|
+
body: "body";
|
|
11545
11545
|
}>>;
|
|
11546
11546
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11547
11547
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11674,12 +11674,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11674
11674
|
}, z.core.$strip>>>;
|
|
11675
11675
|
}, z.core.$strip>, z.ZodObject<{
|
|
11676
11676
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11677
|
-
body: "body";
|
|
11678
11677
|
chart: "chart";
|
|
11679
11678
|
diagram: "diagram";
|
|
11680
11679
|
table: "table";
|
|
11681
11680
|
image: "image";
|
|
11682
11681
|
notes: "notes";
|
|
11682
|
+
body: "body";
|
|
11683
11683
|
}>>;
|
|
11684
11684
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11685
11685
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11762,12 +11762,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11762
11762
|
}, z.core.$strip>>>;
|
|
11763
11763
|
}, z.core.$strip>, z.ZodObject<{
|
|
11764
11764
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11765
|
-
body: "body";
|
|
11766
11765
|
chart: "chart";
|
|
11767
11766
|
diagram: "diagram";
|
|
11768
11767
|
table: "table";
|
|
11769
11768
|
image: "image";
|
|
11770
11769
|
notes: "notes";
|
|
11770
|
+
body: "body";
|
|
11771
11771
|
}>>;
|
|
11772
11772
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11773
11773
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -12022,12 +12022,12 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12022
12022
|
}, z.core.$strip>, z.ZodObject<{
|
|
12023
12023
|
formula: z.ZodObject<{
|
|
12024
12024
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
12025
|
-
body: "body";
|
|
12026
12025
|
chart: "chart";
|
|
12027
12026
|
diagram: "diagram";
|
|
12028
12027
|
table: "table";
|
|
12029
12028
|
image: "image";
|
|
12030
12029
|
notes: "notes";
|
|
12030
|
+
body: "body";
|
|
12031
12031
|
}>>;
|
|
12032
12032
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
12033
12033
|
transcript: z.ZodOptional<z.ZodObject<{
|