document-content-model 7.14.1 → 7.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/a1.d.cts +1 -1
- package/dist/a1.d.ts +1 -1
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{color-AELCDH_b.d.cts → color-CS3HtBwD.d.cts} +1 -1
- package/dist/{color-AELCDH_b.d.ts → color-CS3HtBwD.d.ts} +1 -1
- package/dist/color.d.cts +1 -1
- package/dist/color.d.ts +1 -1
- package/dist/{content-Cj_IC0ge.d.ts → content-BMrK9SrW.d.ts} +139 -128
- package/dist/{content-DZDor2Ct.d.cts → content-Dg9cb8mF.d.cts} +139 -128
- package/dist/content-json-schema-defs.cjs +15 -6
- package/dist/content-json-schema-defs.js +15 -6
- package/dist/content.cjs +10 -2
- package/dist/content.d.cts +2 -2
- package/dist/content.d.ts +2 -2
- package/dist/content.js +10 -3
- package/dist/decompose.cjs +13 -7
- package/dist/decompose.d.cts +2 -2
- package/dist/decompose.d.ts +2 -2
- package/dist/decompose.js +13 -7
- 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 +1 -0
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +2 -2
- package/dist/math-layout.d.cts +1 -1
- package/dist/math-layout.d.ts +1 -1
- package/dist/{package-node-SBZNVEGu.d.ts → package-node-gA3Kpgl2.d.ts} +39 -39
- package/dist/{package-node-DBtKtaqn.d.cts → package-node-wxNXHAov.d.cts} +39 -39
- 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 +3 -3
- package/dist/table-grid.d.cts +4 -4
- package/dist/table-grid.d.ts +4 -4
- package/dist/table-grid.js +3 -3
- package/dist/text-layout.d.cts +8 -8
- package/dist/text-layout.d.ts +8 -8
- package/package.json +1 -1
- package/schemas/content-document.schema.json +35 -20
- package/schemas/document-tree.schema.json +22 -7
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { d as MathMlNode } from "./mathml-Czqc1mdZ.cjs";
|
|
2
2
|
import { p as MathExpression } from "./math-BScHxedi.cjs";
|
|
3
|
-
import { n as Color } from "./color-
|
|
3
|
+
import { n as Color } from "./color-CS3HtBwD.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 & {
|
|
@@ -11,11 +11,11 @@ type FusedNode<T> = T & {
|
|
|
11
11
|
};
|
|
12
12
|
declare const ContentOriginSchema: z.ZodEnum<{
|
|
13
13
|
chart: "chart";
|
|
14
|
-
body: "body";
|
|
15
14
|
diagram: "diagram";
|
|
16
15
|
table: "table";
|
|
17
16
|
image: "image";
|
|
18
17
|
notes: "notes";
|
|
18
|
+
body: "body";
|
|
19
19
|
}>;
|
|
20
20
|
type ContentOrigin = z.infer<typeof ContentOriginSchema>;
|
|
21
21
|
declare const ContentTranscriptSchema: z.ZodObject<{
|
|
@@ -54,11 +54,11 @@ type ContentInterpretation = z.infer<typeof ContentInterpretationSchema>;
|
|
|
54
54
|
declare const CONTENT_ANNOTATION_FIELDS: {
|
|
55
55
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
56
56
|
chart: "chart";
|
|
57
|
-
body: "body";
|
|
58
57
|
diagram: "diagram";
|
|
59
58
|
table: "table";
|
|
60
59
|
image: "image";
|
|
61
60
|
notes: "notes";
|
|
61
|
+
body: "body";
|
|
62
62
|
}>>;
|
|
63
63
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
64
64
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -110,11 +110,11 @@ type ContentFont = z.infer<typeof ContentFontSchema>;
|
|
|
110
110
|
declare const ContentRunSchema: z.ZodObject<{
|
|
111
111
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
112
112
|
chart: "chart";
|
|
113
|
-
body: "body";
|
|
114
113
|
diagram: "diagram";
|
|
115
114
|
table: "table";
|
|
116
115
|
image: "image";
|
|
117
116
|
notes: "notes";
|
|
117
|
+
body: "body";
|
|
118
118
|
}>>;
|
|
119
119
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
120
120
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -480,11 +480,11 @@ type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
|
|
|
480
480
|
declare const ContentParagraphSchema: z.ZodObject<{
|
|
481
481
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
482
482
|
chart: "chart";
|
|
483
|
-
body: "body";
|
|
484
483
|
diagram: "diagram";
|
|
485
484
|
table: "table";
|
|
486
485
|
image: "image";
|
|
487
486
|
notes: "notes";
|
|
487
|
+
body: "body";
|
|
488
488
|
}>>;
|
|
489
489
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
490
490
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -509,11 +509,11 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
509
509
|
runs: z.ZodArray<z.ZodObject<{
|
|
510
510
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
511
511
|
chart: "chart";
|
|
512
|
-
body: "body";
|
|
513
512
|
diagram: "diagram";
|
|
514
513
|
table: "table";
|
|
515
514
|
image: "image";
|
|
516
515
|
notes: "notes";
|
|
516
|
+
body: "body";
|
|
517
517
|
}>>;
|
|
518
518
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
519
519
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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
|
}>;
|
|
@@ -1076,11 +1076,11 @@ type ContentImageOriginal = z.infer<typeof ContentImageOriginalSchema>;
|
|
|
1076
1076
|
declare const ContentImageBlockSchema: z.ZodObject<{
|
|
1077
1077
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1078
1078
|
chart: "chart";
|
|
1079
|
-
body: "body";
|
|
1080
1079
|
diagram: "diagram";
|
|
1081
1080
|
table: "table";
|
|
1082
1081
|
image: "image";
|
|
1083
1082
|
notes: "notes";
|
|
1083
|
+
body: "body";
|
|
1084
1084
|
}>>;
|
|
1085
1085
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1086
1086
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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
|
}>;
|
|
@@ -1244,11 +1244,11 @@ type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
|
|
|
1244
1244
|
declare const ContentPageBreakSchema: z.ZodObject<{
|
|
1245
1245
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1246
1246
|
chart: "chart";
|
|
1247
|
-
body: "body";
|
|
1248
1247
|
diagram: "diagram";
|
|
1249
1248
|
table: "table";
|
|
1250
1249
|
image: "image";
|
|
1251
1250
|
notes: "notes";
|
|
1251
|
+
body: "body";
|
|
1252
1252
|
}>>;
|
|
1253
1253
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1254
1254
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1518,10 +1518,14 @@ interface ContentTableRow {
|
|
|
1518
1518
|
direction?: TextDirection;
|
|
1519
1519
|
isHeader?: boolean;
|
|
1520
1520
|
}
|
|
1521
|
+
interface ContentTableColumn {
|
|
1522
|
+
widthPt: number;
|
|
1523
|
+
isHeader?: boolean;
|
|
1524
|
+
}
|
|
1521
1525
|
interface ContentTable {
|
|
1522
1526
|
kind: "table";
|
|
1523
1527
|
rows: ContentTableRow[];
|
|
1524
|
-
|
|
1528
|
+
columns: ContentTableColumn[];
|
|
1525
1529
|
sourcePath?: string;
|
|
1526
1530
|
source?: SourceResidue;
|
|
1527
1531
|
frames?: LayoutFrame[];
|
|
@@ -1563,11 +1567,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1563
1567
|
}, z.core.$strip>>>;
|
|
1564
1568
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1565
1569
|
chart: "chart";
|
|
1566
|
-
body: "body";
|
|
1567
1570
|
diagram: "diagram";
|
|
1568
1571
|
table: "table";
|
|
1569
1572
|
image: "image";
|
|
1570
1573
|
notes: "notes";
|
|
1574
|
+
body: "body";
|
|
1571
1575
|
}>>;
|
|
1572
1576
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1573
1577
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1600,11 +1604,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1600
1604
|
sections: z.ZodArray<z.ZodObject<{
|
|
1601
1605
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1602
1606
|
chart: "chart";
|
|
1603
|
-
body: "body";
|
|
1604
1607
|
diagram: "diagram";
|
|
1605
1608
|
table: "table";
|
|
1606
1609
|
image: "image";
|
|
1607
1610
|
notes: "notes";
|
|
1611
|
+
body: "body";
|
|
1608
1612
|
}>>;
|
|
1609
1613
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1610
1614
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1749,11 +1753,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1749
1753
|
slides: z.ZodArray<z.ZodObject<{
|
|
1750
1754
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1751
1755
|
chart: "chart";
|
|
1752
|
-
body: "body";
|
|
1753
1756
|
diagram: "diagram";
|
|
1754
1757
|
table: "table";
|
|
1755
1758
|
image: "image";
|
|
1756
1759
|
notes: "notes";
|
|
1760
|
+
body: "body";
|
|
1757
1761
|
}>>;
|
|
1758
1762
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1759
1763
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1782,11 +1786,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1782
1786
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
1783
1787
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1784
1788
|
chart: "chart";
|
|
1785
|
-
body: "body";
|
|
1786
1789
|
diagram: "diagram";
|
|
1787
1790
|
table: "table";
|
|
1788
1791
|
image: "image";
|
|
1789
1792
|
notes: "notes";
|
|
1793
|
+
body: "body";
|
|
1790
1794
|
}>>;
|
|
1791
1795
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1792
1796
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1945,11 +1949,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1945
1949
|
sheets: z.ZodArray<z.ZodObject<{
|
|
1946
1950
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1947
1951
|
chart: "chart";
|
|
1948
|
-
body: "body";
|
|
1949
1952
|
diagram: "diagram";
|
|
1950
1953
|
table: "table";
|
|
1951
1954
|
image: "image";
|
|
1952
1955
|
notes: "notes";
|
|
1956
|
+
body: "body";
|
|
1953
1957
|
}>>;
|
|
1954
1958
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1955
1959
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1974,11 +1978,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1974
1978
|
cells: z.ZodArray<z.ZodObject<{
|
|
1975
1979
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
1976
1980
|
chart: "chart";
|
|
1977
|
-
body: "body";
|
|
1978
1981
|
diagram: "diagram";
|
|
1979
1982
|
table: "table";
|
|
1980
1983
|
image: "image";
|
|
1981
1984
|
notes: "notes";
|
|
1985
|
+
body: "body";
|
|
1982
1986
|
}>>;
|
|
1983
1987
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1984
1988
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2054,11 +2058,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2054
2058
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2055
2059
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
2056
2060
|
chart: "chart";
|
|
2057
|
-
body: "body";
|
|
2058
2061
|
diagram: "diagram";
|
|
2059
2062
|
table: "table";
|
|
2060
2063
|
image: "image";
|
|
2061
2064
|
notes: "notes";
|
|
2065
|
+
body: "body";
|
|
2062
2066
|
}>>;
|
|
2063
2067
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2064
2068
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2293,8 +2297,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2293
2297
|
}, z.core.$strip>>;
|
|
2294
2298
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
2295
2299
|
left: "left";
|
|
2296
|
-
center: "center";
|
|
2297
2300
|
right: "right";
|
|
2301
|
+
center: "center";
|
|
2298
2302
|
justify: "justify";
|
|
2299
2303
|
}>>;
|
|
2300
2304
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2353,11 +2357,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2353
2357
|
images: z.ZodArray<z.ZodObject<{
|
|
2354
2358
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
2355
2359
|
chart: "chart";
|
|
2356
|
-
body: "body";
|
|
2357
2360
|
diagram: "diagram";
|
|
2358
2361
|
table: "table";
|
|
2359
2362
|
image: "image";
|
|
2360
2363
|
notes: "notes";
|
|
2364
|
+
body: "body";
|
|
2361
2365
|
}>>;
|
|
2362
2366
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2363
2367
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -2436,10 +2440,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2436
2440
|
}>;
|
|
2437
2441
|
align: z.ZodEnum<{
|
|
2438
2442
|
left: "left";
|
|
2439
|
-
center: "center";
|
|
2440
2443
|
right: "right";
|
|
2441
2444
|
top: "top";
|
|
2442
2445
|
bottom: "bottom";
|
|
2446
|
+
center: "center";
|
|
2443
2447
|
inside: "inside";
|
|
2444
2448
|
outside: "outside";
|
|
2445
2449
|
}>;
|
|
@@ -2479,10 +2483,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2479
2483
|
}>;
|
|
2480
2484
|
align: z.ZodEnum<{
|
|
2481
2485
|
left: "left";
|
|
2482
|
-
center: "center";
|
|
2483
2486
|
right: "right";
|
|
2484
2487
|
top: "top";
|
|
2485
2488
|
bottom: "bottom";
|
|
2489
|
+
center: "center";
|
|
2486
2490
|
inside: "inside";
|
|
2487
2491
|
outside: "outside";
|
|
2488
2492
|
}>;
|
|
@@ -2573,9 +2577,9 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2573
2577
|
type: z.ZodEnum<{
|
|
2574
2578
|
date: "date";
|
|
2575
2579
|
custom: "custom";
|
|
2576
|
-
time: "time";
|
|
2577
2580
|
decimal: "decimal";
|
|
2578
2581
|
list: "list";
|
|
2582
|
+
time: "time";
|
|
2579
2583
|
whole: "whole";
|
|
2580
2584
|
textLength: "textLength";
|
|
2581
2585
|
}>;
|
|
@@ -3047,10 +3051,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3047
3051
|
value: z.ZodObject<{
|
|
3048
3052
|
type: z.ZodEnum<{
|
|
3049
3053
|
formula: "formula";
|
|
3054
|
+
percent: "percent";
|
|
3050
3055
|
num: "num";
|
|
3051
|
-
min: "min";
|
|
3052
3056
|
max: "max";
|
|
3053
|
-
|
|
3057
|
+
min: "min";
|
|
3054
3058
|
percentile: "percentile";
|
|
3055
3059
|
}>;
|
|
3056
3060
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3094,10 +3098,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3094
3098
|
min: z.ZodObject<{
|
|
3095
3099
|
type: z.ZodEnum<{
|
|
3096
3100
|
formula: "formula";
|
|
3101
|
+
percent: "percent";
|
|
3097
3102
|
num: "num";
|
|
3098
|
-
min: "min";
|
|
3099
3103
|
max: "max";
|
|
3100
|
-
|
|
3104
|
+
min: "min";
|
|
3101
3105
|
percentile: "percentile";
|
|
3102
3106
|
}>;
|
|
3103
3107
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3105,10 +3109,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3105
3109
|
max: z.ZodObject<{
|
|
3106
3110
|
type: z.ZodEnum<{
|
|
3107
3111
|
formula: "formula";
|
|
3112
|
+
percent: "percent";
|
|
3108
3113
|
num: "num";
|
|
3109
|
-
min: "min";
|
|
3110
3114
|
max: "max";
|
|
3111
|
-
|
|
3115
|
+
min: "min";
|
|
3112
3116
|
percentile: "percentile";
|
|
3113
3117
|
}>;
|
|
3114
3118
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3153,10 +3157,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3153
3157
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
3154
3158
|
type: z.ZodEnum<{
|
|
3155
3159
|
formula: "formula";
|
|
3160
|
+
percent: "percent";
|
|
3156
3161
|
num: "num";
|
|
3157
|
-
min: "min";
|
|
3158
3162
|
max: "max";
|
|
3159
|
-
|
|
3163
|
+
min: "min";
|
|
3160
3164
|
percentile: "percentile";
|
|
3161
3165
|
}>;
|
|
3162
3166
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3290,11 +3294,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3290
3294
|
pages: z.ZodArray<z.ZodObject<{
|
|
3291
3295
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3292
3296
|
chart: "chart";
|
|
3293
|
-
body: "body";
|
|
3294
3297
|
diagram: "diagram";
|
|
3295
3298
|
table: "table";
|
|
3296
3299
|
image: "image";
|
|
3297
3300
|
notes: "notes";
|
|
3301
|
+
body: "body";
|
|
3298
3302
|
}>>;
|
|
3299
3303
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3300
3304
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3323,11 +3327,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3323
3327
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3324
3328
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3325
3329
|
chart: "chart";
|
|
3326
|
-
body: "body";
|
|
3327
3330
|
diagram: "diagram";
|
|
3328
3331
|
table: "table";
|
|
3329
3332
|
image: "image";
|
|
3330
3333
|
notes: "notes";
|
|
3334
|
+
body: "body";
|
|
3331
3335
|
}>>;
|
|
3332
3336
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3333
3337
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3396,11 +3400,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3396
3400
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3397
3401
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3398
3402
|
chart: "chart";
|
|
3399
|
-
body: "body";
|
|
3400
3403
|
diagram: "diagram";
|
|
3401
3404
|
table: "table";
|
|
3402
3405
|
image: "image";
|
|
3403
3406
|
notes: "notes";
|
|
3407
|
+
body: "body";
|
|
3404
3408
|
}>>;
|
|
3405
3409
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3406
3410
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3534,11 +3538,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3534
3538
|
}, z.core.$strip>, z.ZodObject<{
|
|
3535
3539
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3536
3540
|
chart: "chart";
|
|
3537
|
-
body: "body";
|
|
3538
3541
|
diagram: "diagram";
|
|
3539
3542
|
table: "table";
|
|
3540
3543
|
image: "image";
|
|
3541
3544
|
notes: "notes";
|
|
3545
|
+
body: "body";
|
|
3542
3546
|
}>>;
|
|
3543
3547
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3544
3548
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3672,11 +3676,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3672
3676
|
}, z.core.$strip>, z.ZodObject<{
|
|
3673
3677
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3674
3678
|
chart: "chart";
|
|
3675
|
-
body: "body";
|
|
3676
3679
|
diagram: "diagram";
|
|
3677
3680
|
table: "table";
|
|
3678
3681
|
image: "image";
|
|
3679
3682
|
notes: "notes";
|
|
3683
|
+
body: "body";
|
|
3680
3684
|
}>>;
|
|
3681
3685
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3682
3686
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -3760,11 +3764,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3760
3764
|
}, z.core.$strip>, z.ZodObject<{
|
|
3761
3765
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
3762
3766
|
chart: "chart";
|
|
3763
|
-
body: "body";
|
|
3764
3767
|
diagram: "diagram";
|
|
3765
3768
|
table: "table";
|
|
3766
3769
|
image: "image";
|
|
3767
3770
|
notes: "notes";
|
|
3771
|
+
body: "body";
|
|
3768
3772
|
}>>;
|
|
3769
3773
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3770
3774
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4020,11 +4024,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
4020
4024
|
formula: z.ZodObject<{
|
|
4021
4025
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4022
4026
|
chart: "chart";
|
|
4023
|
-
body: "body";
|
|
4024
4027
|
diagram: "diagram";
|
|
4025
4028
|
table: "table";
|
|
4026
4029
|
image: "image";
|
|
4027
4030
|
notes: "notes";
|
|
4031
|
+
body: "body";
|
|
4028
4032
|
}>>;
|
|
4029
4033
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4030
4034
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4417,11 +4421,11 @@ declare function unrecognizedFillKind(fill: {
|
|
|
4417
4421
|
declare const ContentTableCellSchema: z.ZodObject<{
|
|
4418
4422
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4419
4423
|
chart: "chart";
|
|
4420
|
-
body: "body";
|
|
4421
4424
|
diagram: "diagram";
|
|
4422
4425
|
table: "table";
|
|
4423
4426
|
image: "image";
|
|
4424
4427
|
notes: "notes";
|
|
4428
|
+
body: "body";
|
|
4425
4429
|
}>>;
|
|
4426
4430
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4427
4431
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4606,9 +4610,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
4606
4610
|
}, z.core.$strip>>;
|
|
4607
4611
|
}, z.core.$strip>>;
|
|
4608
4612
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4609
|
-
center: "center";
|
|
4610
4613
|
top: "top";
|
|
4611
4614
|
bottom: "bottom";
|
|
4615
|
+
center: "center";
|
|
4612
4616
|
}>>;
|
|
4613
4617
|
formula: z.ZodOptional<z.ZodString>;
|
|
4614
4618
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4644,11 +4648,11 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4644
4648
|
cells: z.ZodArray<z.ZodObject<{
|
|
4645
4649
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4646
4650
|
chart: "chart";
|
|
4647
|
-
body: "body";
|
|
4648
4651
|
diagram: "diagram";
|
|
4649
4652
|
table: "table";
|
|
4650
4653
|
image: "image";
|
|
4651
4654
|
notes: "notes";
|
|
4655
|
+
body: "body";
|
|
4652
4656
|
}>>;
|
|
4653
4657
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4654
4658
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4833,9 +4837,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4833
4837
|
}, z.core.$strip>>;
|
|
4834
4838
|
}, z.core.$strip>>;
|
|
4835
4839
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4836
|
-
center: "center";
|
|
4837
4840
|
top: "top";
|
|
4838
4841
|
bottom: "bottom";
|
|
4842
|
+
center: "center";
|
|
4839
4843
|
}>>;
|
|
4840
4844
|
formula: z.ZodOptional<z.ZodString>;
|
|
4841
4845
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4874,14 +4878,18 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4874
4878
|
}>>;
|
|
4875
4879
|
isHeader: z.ZodOptional<z.ZodBoolean>;
|
|
4876
4880
|
}, z.core.$strip>;
|
|
4881
|
+
declare const ContentTableColumnSchema: z.ZodObject<{
|
|
4882
|
+
widthPt: z.ZodNumber;
|
|
4883
|
+
isHeader: z.ZodOptional<z.ZodBoolean>;
|
|
4884
|
+
}, z.core.$strip>;
|
|
4877
4885
|
declare const ContentTableSchema: z.ZodObject<{
|
|
4878
4886
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4879
4887
|
chart: "chart";
|
|
4880
|
-
body: "body";
|
|
4881
4888
|
diagram: "diagram";
|
|
4882
4889
|
table: "table";
|
|
4883
4890
|
image: "image";
|
|
4884
4891
|
notes: "notes";
|
|
4892
|
+
body: "body";
|
|
4885
4893
|
}>>;
|
|
4886
4894
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4887
4895
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -4907,11 +4915,11 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
4907
4915
|
cells: z.ZodArray<z.ZodObject<{
|
|
4908
4916
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
4909
4917
|
chart: "chart";
|
|
4910
|
-
body: "body";
|
|
4911
4918
|
diagram: "diagram";
|
|
4912
4919
|
table: "table";
|
|
4913
4920
|
image: "image";
|
|
4914
4921
|
notes: "notes";
|
|
4922
|
+
body: "body";
|
|
4915
4923
|
}>>;
|
|
4916
4924
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4917
4925
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5096,9 +5104,9 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
5096
5104
|
}, z.core.$strip>>;
|
|
5097
5105
|
}, z.core.$strip>>;
|
|
5098
5106
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
5099
|
-
center: "center";
|
|
5100
5107
|
top: "top";
|
|
5101
5108
|
bottom: "bottom";
|
|
5109
|
+
center: "center";
|
|
5102
5110
|
}>>;
|
|
5103
5111
|
formula: z.ZodOptional<z.ZodString>;
|
|
5104
5112
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -5137,7 +5145,10 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
5137
5145
|
}>>;
|
|
5138
5146
|
isHeader: z.ZodOptional<z.ZodBoolean>;
|
|
5139
5147
|
}, z.core.$strip>>;
|
|
5140
|
-
|
|
5148
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
5149
|
+
widthPt: z.ZodNumber;
|
|
5150
|
+
isHeader: z.ZodOptional<z.ZodBoolean>;
|
|
5151
|
+
}, z.core.$strip>>;
|
|
5141
5152
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
5142
5153
|
source: z.ZodOptional<z.ZodObject<{
|
|
5143
5154
|
format: z.ZodEnum<{
|
|
@@ -5177,11 +5188,11 @@ type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
|
|
|
5177
5188
|
declare const ContentSectionSchema: z.ZodObject<{
|
|
5178
5189
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5179
5190
|
chart: "chart";
|
|
5180
|
-
body: "body";
|
|
5181
5191
|
diagram: "diagram";
|
|
5182
5192
|
table: "table";
|
|
5183
5193
|
image: "image";
|
|
5184
5194
|
notes: "notes";
|
|
5195
|
+
body: "body";
|
|
5185
5196
|
}>>;
|
|
5186
5197
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5187
5198
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5260,11 +5271,11 @@ declare const ContentShapeSchema: z.ZodObject<{
|
|
|
5260
5271
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5261
5272
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5262
5273
|
chart: "chart";
|
|
5263
|
-
body: "body";
|
|
5264
5274
|
diagram: "diagram";
|
|
5265
5275
|
table: "table";
|
|
5266
5276
|
image: "image";
|
|
5267
5277
|
notes: "notes";
|
|
5278
|
+
body: "body";
|
|
5268
5279
|
}>>;
|
|
5269
5280
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5270
5281
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5334,11 +5345,11 @@ type ContentShape = z.infer<typeof ContentShapeSchema>;
|
|
|
5334
5345
|
declare const ContentSlideSchema: z.ZodObject<{
|
|
5335
5346
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5336
5347
|
chart: "chart";
|
|
5337
|
-
body: "body";
|
|
5338
5348
|
diagram: "diagram";
|
|
5339
5349
|
table: "table";
|
|
5340
5350
|
image: "image";
|
|
5341
5351
|
notes: "notes";
|
|
5352
|
+
body: "body";
|
|
5342
5353
|
}>>;
|
|
5343
5354
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5344
5355
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5367,11 +5378,11 @@ declare const ContentSlideSchema: z.ZodObject<{
|
|
|
5367
5378
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5368
5379
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5369
5380
|
chart: "chart";
|
|
5370
|
-
body: "body";
|
|
5371
5381
|
diagram: "diagram";
|
|
5372
5382
|
table: "table";
|
|
5373
5383
|
image: "image";
|
|
5374
5384
|
notes: "notes";
|
|
5385
|
+
body: "body";
|
|
5375
5386
|
}>>;
|
|
5376
5387
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5377
5388
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5510,11 +5521,11 @@ type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
|
|
|
5510
5521
|
declare const ContentSheetCellSchema: z.ZodObject<{
|
|
5511
5522
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5512
5523
|
chart: "chart";
|
|
5513
|
-
body: "body";
|
|
5514
5524
|
diagram: "diagram";
|
|
5515
5525
|
table: "table";
|
|
5516
5526
|
image: "image";
|
|
5517
5527
|
notes: "notes";
|
|
5528
|
+
body: "body";
|
|
5518
5529
|
}>>;
|
|
5519
5530
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5520
5531
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5590,11 +5601,11 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
5590
5601
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5591
5602
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
5592
5603
|
chart: "chart";
|
|
5593
|
-
body: "body";
|
|
5594
5604
|
diagram: "diagram";
|
|
5595
5605
|
table: "table";
|
|
5596
5606
|
image: "image";
|
|
5597
5607
|
notes: "notes";
|
|
5608
|
+
body: "body";
|
|
5598
5609
|
}>>;
|
|
5599
5610
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5600
5611
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -5829,8 +5840,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
5829
5840
|
}, z.core.$strip>>;
|
|
5830
5841
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
5831
5842
|
left: "left";
|
|
5832
|
-
center: "center";
|
|
5833
5843
|
right: "right";
|
|
5844
|
+
center: "center";
|
|
5834
5845
|
justify: "justify";
|
|
5835
5846
|
}>>;
|
|
5836
5847
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5964,9 +5975,9 @@ type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
|
|
|
5964
5975
|
declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
|
|
5965
5976
|
date: "date";
|
|
5966
5977
|
custom: "custom";
|
|
5967
|
-
time: "time";
|
|
5968
5978
|
decimal: "decimal";
|
|
5969
5979
|
list: "list";
|
|
5980
|
+
time: "time";
|
|
5970
5981
|
whole: "whole";
|
|
5971
5982
|
textLength: "textLength";
|
|
5972
5983
|
}>;
|
|
@@ -5981,9 +5992,9 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
|
|
|
5981
5992
|
type: z.ZodEnum<{
|
|
5982
5993
|
date: "date";
|
|
5983
5994
|
custom: "custom";
|
|
5984
|
-
time: "time";
|
|
5985
5995
|
decimal: "decimal";
|
|
5986
5996
|
list: "list";
|
|
5997
|
+
time: "time";
|
|
5987
5998
|
whole: "whole";
|
|
5988
5999
|
textLength: "textLength";
|
|
5989
6000
|
}>;
|
|
@@ -6069,10 +6080,10 @@ type ContentSheetConditionalFormatStyle = z.infer<typeof ContentSheetConditional
|
|
|
6069
6080
|
declare const ContentSheetConditionalFormatValueSchema: z.ZodObject<{
|
|
6070
6081
|
type: z.ZodEnum<{
|
|
6071
6082
|
formula: "formula";
|
|
6083
|
+
percent: "percent";
|
|
6072
6084
|
num: "num";
|
|
6073
|
-
min: "min";
|
|
6074
6085
|
max: "max";
|
|
6075
|
-
|
|
6086
|
+
min: "min";
|
|
6076
6087
|
percentile: "percentile";
|
|
6077
6088
|
}>;
|
|
6078
6089
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6501,10 +6512,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6501
6512
|
value: z.ZodObject<{
|
|
6502
6513
|
type: z.ZodEnum<{
|
|
6503
6514
|
formula: "formula";
|
|
6515
|
+
percent: "percent";
|
|
6504
6516
|
num: "num";
|
|
6505
|
-
min: "min";
|
|
6506
6517
|
max: "max";
|
|
6507
|
-
|
|
6518
|
+
min: "min";
|
|
6508
6519
|
percentile: "percentile";
|
|
6509
6520
|
}>;
|
|
6510
6521
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6548,10 +6559,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6548
6559
|
min: z.ZodObject<{
|
|
6549
6560
|
type: z.ZodEnum<{
|
|
6550
6561
|
formula: "formula";
|
|
6562
|
+
percent: "percent";
|
|
6551
6563
|
num: "num";
|
|
6552
|
-
min: "min";
|
|
6553
6564
|
max: "max";
|
|
6554
|
-
|
|
6565
|
+
min: "min";
|
|
6555
6566
|
percentile: "percentile";
|
|
6556
6567
|
}>;
|
|
6557
6568
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6559,10 +6570,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6559
6570
|
max: z.ZodObject<{
|
|
6560
6571
|
type: z.ZodEnum<{
|
|
6561
6572
|
formula: "formula";
|
|
6573
|
+
percent: "percent";
|
|
6562
6574
|
num: "num";
|
|
6563
|
-
min: "min";
|
|
6564
6575
|
max: "max";
|
|
6565
|
-
|
|
6576
|
+
min: "min";
|
|
6566
6577
|
percentile: "percentile";
|
|
6567
6578
|
}>;
|
|
6568
6579
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6607,10 +6618,10 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6607
6618
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
6608
6619
|
type: z.ZodEnum<{
|
|
6609
6620
|
formula: "formula";
|
|
6621
|
+
percent: "percent";
|
|
6610
6622
|
num: "num";
|
|
6611
|
-
min: "min";
|
|
6612
6623
|
max: "max";
|
|
6613
|
-
|
|
6624
|
+
min: "min";
|
|
6614
6625
|
percentile: "percentile";
|
|
6615
6626
|
}>;
|
|
6616
6627
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6651,11 +6662,11 @@ type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalForma
|
|
|
6651
6662
|
declare const ContentSheetImageSchema: z.ZodObject<{
|
|
6652
6663
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6653
6664
|
chart: "chart";
|
|
6654
|
-
body: "body";
|
|
6655
6665
|
diagram: "diagram";
|
|
6656
6666
|
table: "table";
|
|
6657
6667
|
image: "image";
|
|
6658
6668
|
notes: "notes";
|
|
6669
|
+
body: "body";
|
|
6659
6670
|
}>>;
|
|
6660
6671
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6661
6672
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6734,10 +6745,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6734
6745
|
}>;
|
|
6735
6746
|
align: z.ZodEnum<{
|
|
6736
6747
|
left: "left";
|
|
6737
|
-
center: "center";
|
|
6738
6748
|
right: "right";
|
|
6739
6749
|
top: "top";
|
|
6740
6750
|
bottom: "bottom";
|
|
6751
|
+
center: "center";
|
|
6741
6752
|
inside: "inside";
|
|
6742
6753
|
outside: "outside";
|
|
6743
6754
|
}>;
|
|
@@ -6777,10 +6788,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6777
6788
|
}>;
|
|
6778
6789
|
align: z.ZodEnum<{
|
|
6779
6790
|
left: "left";
|
|
6780
|
-
center: "center";
|
|
6781
6791
|
right: "right";
|
|
6782
6792
|
top: "top";
|
|
6783
6793
|
bottom: "bottom";
|
|
6794
|
+
center: "center";
|
|
6784
6795
|
inside: "inside";
|
|
6785
6796
|
outside: "outside";
|
|
6786
6797
|
}>;
|
|
@@ -6823,11 +6834,11 @@ type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
|
|
|
6823
6834
|
declare const ContentSheetSchema: z.ZodObject<{
|
|
6824
6835
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6825
6836
|
chart: "chart";
|
|
6826
|
-
body: "body";
|
|
6827
6837
|
diagram: "diagram";
|
|
6828
6838
|
table: "table";
|
|
6829
6839
|
image: "image";
|
|
6830
6840
|
notes: "notes";
|
|
6841
|
+
body: "body";
|
|
6831
6842
|
}>>;
|
|
6832
6843
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6833
6844
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6852,11 +6863,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6852
6863
|
cells: z.ZodArray<z.ZodObject<{
|
|
6853
6864
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6854
6865
|
chart: "chart";
|
|
6855
|
-
body: "body";
|
|
6856
6866
|
diagram: "diagram";
|
|
6857
6867
|
table: "table";
|
|
6858
6868
|
image: "image";
|
|
6859
6869
|
notes: "notes";
|
|
6870
|
+
body: "body";
|
|
6860
6871
|
}>>;
|
|
6861
6872
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6862
6873
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -6932,11 +6943,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6932
6943
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6933
6944
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
6934
6945
|
chart: "chart";
|
|
6935
|
-
body: "body";
|
|
6936
6946
|
diagram: "diagram";
|
|
6937
6947
|
table: "table";
|
|
6938
6948
|
image: "image";
|
|
6939
6949
|
notes: "notes";
|
|
6950
|
+
body: "body";
|
|
6940
6951
|
}>>;
|
|
6941
6952
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6942
6953
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -7171,8 +7182,8 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7171
7182
|
}, z.core.$strip>>;
|
|
7172
7183
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
7173
7184
|
left: "left";
|
|
7174
|
-
center: "center";
|
|
7175
7185
|
right: "right";
|
|
7186
|
+
center: "center";
|
|
7176
7187
|
justify: "justify";
|
|
7177
7188
|
}>>;
|
|
7178
7189
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7231,11 +7242,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7231
7242
|
images: z.ZodArray<z.ZodObject<{
|
|
7232
7243
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
7233
7244
|
chart: "chart";
|
|
7234
|
-
body: "body";
|
|
7235
7245
|
diagram: "diagram";
|
|
7236
7246
|
table: "table";
|
|
7237
7247
|
image: "image";
|
|
7238
7248
|
notes: "notes";
|
|
7249
|
+
body: "body";
|
|
7239
7250
|
}>>;
|
|
7240
7251
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
7241
7252
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -7314,10 +7325,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7314
7325
|
}>;
|
|
7315
7326
|
align: z.ZodEnum<{
|
|
7316
7327
|
left: "left";
|
|
7317
|
-
center: "center";
|
|
7318
7328
|
right: "right";
|
|
7319
7329
|
top: "top";
|
|
7320
7330
|
bottom: "bottom";
|
|
7331
|
+
center: "center";
|
|
7321
7332
|
inside: "inside";
|
|
7322
7333
|
outside: "outside";
|
|
7323
7334
|
}>;
|
|
@@ -7357,10 +7368,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7357
7368
|
}>;
|
|
7358
7369
|
align: z.ZodEnum<{
|
|
7359
7370
|
left: "left";
|
|
7360
|
-
center: "center";
|
|
7361
7371
|
right: "right";
|
|
7362
7372
|
top: "top";
|
|
7363
7373
|
bottom: "bottom";
|
|
7374
|
+
center: "center";
|
|
7364
7375
|
inside: "inside";
|
|
7365
7376
|
outside: "outside";
|
|
7366
7377
|
}>;
|
|
@@ -7451,9 +7462,9 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7451
7462
|
type: z.ZodEnum<{
|
|
7452
7463
|
date: "date";
|
|
7453
7464
|
custom: "custom";
|
|
7454
|
-
time: "time";
|
|
7455
7465
|
decimal: "decimal";
|
|
7456
7466
|
list: "list";
|
|
7467
|
+
time: "time";
|
|
7457
7468
|
whole: "whole";
|
|
7458
7469
|
textLength: "textLength";
|
|
7459
7470
|
}>;
|
|
@@ -7925,10 +7936,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7925
7936
|
value: z.ZodObject<{
|
|
7926
7937
|
type: z.ZodEnum<{
|
|
7927
7938
|
formula: "formula";
|
|
7939
|
+
percent: "percent";
|
|
7928
7940
|
num: "num";
|
|
7929
|
-
min: "min";
|
|
7930
7941
|
max: "max";
|
|
7931
|
-
|
|
7942
|
+
min: "min";
|
|
7932
7943
|
percentile: "percentile";
|
|
7933
7944
|
}>;
|
|
7934
7945
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -7972,10 +7983,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7972
7983
|
min: z.ZodObject<{
|
|
7973
7984
|
type: z.ZodEnum<{
|
|
7974
7985
|
formula: "formula";
|
|
7986
|
+
percent: "percent";
|
|
7975
7987
|
num: "num";
|
|
7976
|
-
min: "min";
|
|
7977
7988
|
max: "max";
|
|
7978
|
-
|
|
7989
|
+
min: "min";
|
|
7979
7990
|
percentile: "percentile";
|
|
7980
7991
|
}>;
|
|
7981
7992
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -7983,10 +7994,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7983
7994
|
max: z.ZodObject<{
|
|
7984
7995
|
type: z.ZodEnum<{
|
|
7985
7996
|
formula: "formula";
|
|
7997
|
+
percent: "percent";
|
|
7986
7998
|
num: "num";
|
|
7987
|
-
min: "min";
|
|
7988
7999
|
max: "max";
|
|
7989
|
-
|
|
8000
|
+
min: "min";
|
|
7990
8001
|
percentile: "percentile";
|
|
7991
8002
|
}>;
|
|
7992
8003
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -8031,10 +8042,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
8031
8042
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
8032
8043
|
type: z.ZodEnum<{
|
|
8033
8044
|
formula: "formula";
|
|
8045
|
+
percent: "percent";
|
|
8034
8046
|
num: "num";
|
|
8035
|
-
min: "min";
|
|
8036
8047
|
max: "max";
|
|
8037
|
-
|
|
8048
|
+
min: "min";
|
|
8038
8049
|
percentile: "percentile";
|
|
8039
8050
|
}>;
|
|
8040
8051
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -8294,11 +8305,11 @@ type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
|
|
|
8294
8305
|
declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8295
8306
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8296
8307
|
chart: "chart";
|
|
8297
|
-
body: "body";
|
|
8298
8308
|
diagram: "diagram";
|
|
8299
8309
|
table: "table";
|
|
8300
8310
|
image: "image";
|
|
8301
8311
|
notes: "notes";
|
|
8312
|
+
body: "body";
|
|
8302
8313
|
}>>;
|
|
8303
8314
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8304
8315
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8432,11 +8443,11 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8432
8443
|
}, z.core.$strip>, z.ZodObject<{
|
|
8433
8444
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8434
8445
|
chart: "chart";
|
|
8435
|
-
body: "body";
|
|
8436
8446
|
diagram: "diagram";
|
|
8437
8447
|
table: "table";
|
|
8438
8448
|
image: "image";
|
|
8439
8449
|
notes: "notes";
|
|
8450
|
+
body: "body";
|
|
8440
8451
|
}>>;
|
|
8441
8452
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8442
8453
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8570,11 +8581,11 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8570
8581
|
}, z.core.$strip>, z.ZodObject<{
|
|
8571
8582
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8572
8583
|
chart: "chart";
|
|
8573
|
-
body: "body";
|
|
8574
8584
|
diagram: "diagram";
|
|
8575
8585
|
table: "table";
|
|
8576
8586
|
image: "image";
|
|
8577
8587
|
notes: "notes";
|
|
8588
|
+
body: "body";
|
|
8578
8589
|
}>>;
|
|
8579
8590
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8580
8591
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8658,11 +8669,11 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8658
8669
|
}, z.core.$strip>, z.ZodObject<{
|
|
8659
8670
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8660
8671
|
chart: "chart";
|
|
8661
|
-
body: "body";
|
|
8662
8672
|
diagram: "diagram";
|
|
8663
8673
|
table: "table";
|
|
8664
8674
|
image: "image";
|
|
8665
8675
|
notes: "notes";
|
|
8676
|
+
body: "body";
|
|
8666
8677
|
}>>;
|
|
8667
8678
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8668
8679
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8830,11 +8841,11 @@ type ContentVector = z.infer<typeof ContentVectorSchema>;
|
|
|
8830
8841
|
declare const ContentDrawPageSchema: z.ZodObject<{
|
|
8831
8842
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8832
8843
|
chart: "chart";
|
|
8833
|
-
body: "body";
|
|
8834
8844
|
diagram: "diagram";
|
|
8835
8845
|
table: "table";
|
|
8836
8846
|
image: "image";
|
|
8837
8847
|
notes: "notes";
|
|
8848
|
+
body: "body";
|
|
8838
8849
|
}>>;
|
|
8839
8850
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8840
8851
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8863,11 +8874,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8863
8874
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
8864
8875
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8865
8876
|
chart: "chart";
|
|
8866
|
-
body: "body";
|
|
8867
8877
|
diagram: "diagram";
|
|
8868
8878
|
table: "table";
|
|
8869
8879
|
image: "image";
|
|
8870
8880
|
notes: "notes";
|
|
8881
|
+
body: "body";
|
|
8871
8882
|
}>>;
|
|
8872
8883
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8873
8884
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -8936,11 +8947,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8936
8947
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8937
8948
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
8938
8949
|
chart: "chart";
|
|
8939
|
-
body: "body";
|
|
8940
8950
|
diagram: "diagram";
|
|
8941
8951
|
table: "table";
|
|
8942
8952
|
image: "image";
|
|
8943
8953
|
notes: "notes";
|
|
8954
|
+
body: "body";
|
|
8944
8955
|
}>>;
|
|
8945
8956
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8946
8957
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9074,11 +9085,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9074
9085
|
}, z.core.$strip>, z.ZodObject<{
|
|
9075
9086
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9076
9087
|
chart: "chart";
|
|
9077
|
-
body: "body";
|
|
9078
9088
|
diagram: "diagram";
|
|
9079
9089
|
table: "table";
|
|
9080
9090
|
image: "image";
|
|
9081
9091
|
notes: "notes";
|
|
9092
|
+
body: "body";
|
|
9082
9093
|
}>>;
|
|
9083
9094
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9084
9095
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9212,11 +9223,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9212
9223
|
}, z.core.$strip>, z.ZodObject<{
|
|
9213
9224
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9214
9225
|
chart: "chart";
|
|
9215
|
-
body: "body";
|
|
9216
9226
|
diagram: "diagram";
|
|
9217
9227
|
table: "table";
|
|
9218
9228
|
image: "image";
|
|
9219
9229
|
notes: "notes";
|
|
9230
|
+
body: "body";
|
|
9220
9231
|
}>>;
|
|
9221
9232
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9222
9233
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9300,11 +9311,11 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
9300
9311
|
}, z.core.$strip>, z.ZodObject<{
|
|
9301
9312
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9302
9313
|
chart: "chart";
|
|
9303
|
-
body: "body";
|
|
9304
9314
|
diagram: "diagram";
|
|
9305
9315
|
table: "table";
|
|
9306
9316
|
image: "image";
|
|
9307
9317
|
notes: "notes";
|
|
9318
|
+
body: "body";
|
|
9308
9319
|
}>>;
|
|
9309
9320
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9310
9321
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9493,11 +9504,11 @@ type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
|
|
|
9493
9504
|
declare const ContentFormulaSchema: z.ZodObject<{
|
|
9494
9505
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9495
9506
|
chart: "chart";
|
|
9496
|
-
body: "body";
|
|
9497
9507
|
diagram: "diagram";
|
|
9498
9508
|
table: "table";
|
|
9499
9509
|
image: "image";
|
|
9500
9510
|
notes: "notes";
|
|
9511
|
+
body: "body";
|
|
9501
9512
|
}>>;
|
|
9502
9513
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9503
9514
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9606,11 +9617,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9606
9617
|
sections: z.ZodArray<z.ZodObject<{
|
|
9607
9618
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9608
9619
|
chart: "chart";
|
|
9609
|
-
body: "body";
|
|
9610
9620
|
diagram: "diagram";
|
|
9611
9621
|
table: "table";
|
|
9612
9622
|
image: "image";
|
|
9613
9623
|
notes: "notes";
|
|
9624
|
+
body: "body";
|
|
9614
9625
|
}>>;
|
|
9615
9626
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9616
9627
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9755,11 +9766,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9755
9766
|
slides: z.ZodArray<z.ZodObject<{
|
|
9756
9767
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9757
9768
|
chart: "chart";
|
|
9758
|
-
body: "body";
|
|
9759
9769
|
diagram: "diagram";
|
|
9760
9770
|
table: "table";
|
|
9761
9771
|
image: "image";
|
|
9762
9772
|
notes: "notes";
|
|
9773
|
+
body: "body";
|
|
9763
9774
|
}>>;
|
|
9764
9775
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9765
9776
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9788,11 +9799,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9788
9799
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
9789
9800
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9790
9801
|
chart: "chart";
|
|
9791
|
-
body: "body";
|
|
9792
9802
|
diagram: "diagram";
|
|
9793
9803
|
table: "table";
|
|
9794
9804
|
image: "image";
|
|
9795
9805
|
notes: "notes";
|
|
9806
|
+
body: "body";
|
|
9796
9807
|
}>>;
|
|
9797
9808
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9798
9809
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9951,11 +9962,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9951
9962
|
sheets: z.ZodArray<z.ZodObject<{
|
|
9952
9963
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9953
9964
|
chart: "chart";
|
|
9954
|
-
body: "body";
|
|
9955
9965
|
diagram: "diagram";
|
|
9956
9966
|
table: "table";
|
|
9957
9967
|
image: "image";
|
|
9958
9968
|
notes: "notes";
|
|
9969
|
+
body: "body";
|
|
9959
9970
|
}>>;
|
|
9960
9971
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9961
9972
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -9980,11 +9991,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9980
9991
|
cells: z.ZodArray<z.ZodObject<{
|
|
9981
9992
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9982
9993
|
chart: "chart";
|
|
9983
|
-
body: "body";
|
|
9984
9994
|
diagram: "diagram";
|
|
9985
9995
|
table: "table";
|
|
9986
9996
|
image: "image";
|
|
9987
9997
|
notes: "notes";
|
|
9998
|
+
body: "body";
|
|
9988
9999
|
}>>;
|
|
9989
10000
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9990
10001
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10060,11 +10071,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10060
10071
|
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10061
10072
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
10062
10073
|
chart: "chart";
|
|
10063
|
-
body: "body";
|
|
10064
10074
|
diagram: "diagram";
|
|
10065
10075
|
table: "table";
|
|
10066
10076
|
image: "image";
|
|
10067
10077
|
notes: "notes";
|
|
10078
|
+
body: "body";
|
|
10068
10079
|
}>>;
|
|
10069
10080
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10070
10081
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10299,8 +10310,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10299
10310
|
}, z.core.$strip>>;
|
|
10300
10311
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
10301
10312
|
left: "left";
|
|
10302
|
-
center: "center";
|
|
10303
10313
|
right: "right";
|
|
10314
|
+
center: "center";
|
|
10304
10315
|
justify: "justify";
|
|
10305
10316
|
}>>;
|
|
10306
10317
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -10359,11 +10370,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10359
10370
|
images: z.ZodArray<z.ZodObject<{
|
|
10360
10371
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
10361
10372
|
chart: "chart";
|
|
10362
|
-
body: "body";
|
|
10363
10373
|
diagram: "diagram";
|
|
10364
10374
|
table: "table";
|
|
10365
10375
|
image: "image";
|
|
10366
10376
|
notes: "notes";
|
|
10377
|
+
body: "body";
|
|
10367
10378
|
}>>;
|
|
10368
10379
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10369
10380
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -10442,10 +10453,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10442
10453
|
}>;
|
|
10443
10454
|
align: z.ZodEnum<{
|
|
10444
10455
|
left: "left";
|
|
10445
|
-
center: "center";
|
|
10446
10456
|
right: "right";
|
|
10447
10457
|
top: "top";
|
|
10448
10458
|
bottom: "bottom";
|
|
10459
|
+
center: "center";
|
|
10449
10460
|
inside: "inside";
|
|
10450
10461
|
outside: "outside";
|
|
10451
10462
|
}>;
|
|
@@ -10485,10 +10496,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10485
10496
|
}>;
|
|
10486
10497
|
align: z.ZodEnum<{
|
|
10487
10498
|
left: "left";
|
|
10488
|
-
center: "center";
|
|
10489
10499
|
right: "right";
|
|
10490
10500
|
top: "top";
|
|
10491
10501
|
bottom: "bottom";
|
|
10502
|
+
center: "center";
|
|
10492
10503
|
inside: "inside";
|
|
10493
10504
|
outside: "outside";
|
|
10494
10505
|
}>;
|
|
@@ -10579,9 +10590,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10579
10590
|
type: z.ZodEnum<{
|
|
10580
10591
|
date: "date";
|
|
10581
10592
|
custom: "custom";
|
|
10582
|
-
time: "time";
|
|
10583
10593
|
decimal: "decimal";
|
|
10584
10594
|
list: "list";
|
|
10595
|
+
time: "time";
|
|
10585
10596
|
whole: "whole";
|
|
10586
10597
|
textLength: "textLength";
|
|
10587
10598
|
}>;
|
|
@@ -11053,10 +11064,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11053
11064
|
value: z.ZodObject<{
|
|
11054
11065
|
type: z.ZodEnum<{
|
|
11055
11066
|
formula: "formula";
|
|
11067
|
+
percent: "percent";
|
|
11056
11068
|
num: "num";
|
|
11057
|
-
min: "min";
|
|
11058
11069
|
max: "max";
|
|
11059
|
-
|
|
11070
|
+
min: "min";
|
|
11060
11071
|
percentile: "percentile";
|
|
11061
11072
|
}>;
|
|
11062
11073
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11100,10 +11111,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11100
11111
|
min: z.ZodObject<{
|
|
11101
11112
|
type: z.ZodEnum<{
|
|
11102
11113
|
formula: "formula";
|
|
11114
|
+
percent: "percent";
|
|
11103
11115
|
num: "num";
|
|
11104
|
-
min: "min";
|
|
11105
11116
|
max: "max";
|
|
11106
|
-
|
|
11117
|
+
min: "min";
|
|
11107
11118
|
percentile: "percentile";
|
|
11108
11119
|
}>;
|
|
11109
11120
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11111,10 +11122,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11111
11122
|
max: z.ZodObject<{
|
|
11112
11123
|
type: z.ZodEnum<{
|
|
11113
11124
|
formula: "formula";
|
|
11125
|
+
percent: "percent";
|
|
11114
11126
|
num: "num";
|
|
11115
|
-
min: "min";
|
|
11116
11127
|
max: "max";
|
|
11117
|
-
|
|
11128
|
+
min: "min";
|
|
11118
11129
|
percentile: "percentile";
|
|
11119
11130
|
}>;
|
|
11120
11131
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11159,10 +11170,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11159
11170
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
11160
11171
|
type: z.ZodEnum<{
|
|
11161
11172
|
formula: "formula";
|
|
11173
|
+
percent: "percent";
|
|
11162
11174
|
num: "num";
|
|
11163
|
-
min: "min";
|
|
11164
11175
|
max: "max";
|
|
11165
|
-
|
|
11176
|
+
min: "min";
|
|
11166
11177
|
percentile: "percentile";
|
|
11167
11178
|
}>;
|
|
11168
11179
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -11296,11 +11307,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11296
11307
|
pages: z.ZodArray<z.ZodObject<{
|
|
11297
11308
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11298
11309
|
chart: "chart";
|
|
11299
|
-
body: "body";
|
|
11300
11310
|
diagram: "diagram";
|
|
11301
11311
|
table: "table";
|
|
11302
11312
|
image: "image";
|
|
11303
11313
|
notes: "notes";
|
|
11314
|
+
body: "body";
|
|
11304
11315
|
}>>;
|
|
11305
11316
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11306
11317
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11329,11 +11340,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11329
11340
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
11330
11341
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11331
11342
|
chart: "chart";
|
|
11332
|
-
body: "body";
|
|
11333
11343
|
diagram: "diagram";
|
|
11334
11344
|
table: "table";
|
|
11335
11345
|
image: "image";
|
|
11336
11346
|
notes: "notes";
|
|
11347
|
+
body: "body";
|
|
11337
11348
|
}>>;
|
|
11338
11349
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11339
11350
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11402,11 +11413,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11402
11413
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11403
11414
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11404
11415
|
chart: "chart";
|
|
11405
|
-
body: "body";
|
|
11406
11416
|
diagram: "diagram";
|
|
11407
11417
|
table: "table";
|
|
11408
11418
|
image: "image";
|
|
11409
11419
|
notes: "notes";
|
|
11420
|
+
body: "body";
|
|
11410
11421
|
}>>;
|
|
11411
11422
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11412
11423
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11540,11 +11551,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11540
11551
|
}, z.core.$strip>, z.ZodObject<{
|
|
11541
11552
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11542
11553
|
chart: "chart";
|
|
11543
|
-
body: "body";
|
|
11544
11554
|
diagram: "diagram";
|
|
11545
11555
|
table: "table";
|
|
11546
11556
|
image: "image";
|
|
11547
11557
|
notes: "notes";
|
|
11558
|
+
body: "body";
|
|
11548
11559
|
}>>;
|
|
11549
11560
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11550
11561
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11678,11 +11689,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11678
11689
|
}, z.core.$strip>, z.ZodObject<{
|
|
11679
11690
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11680
11691
|
chart: "chart";
|
|
11681
|
-
body: "body";
|
|
11682
11692
|
diagram: "diagram";
|
|
11683
11693
|
table: "table";
|
|
11684
11694
|
image: "image";
|
|
11685
11695
|
notes: "notes";
|
|
11696
|
+
body: "body";
|
|
11686
11697
|
}>>;
|
|
11687
11698
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11688
11699
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -11766,11 +11777,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11766
11777
|
}, z.core.$strip>, z.ZodObject<{
|
|
11767
11778
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
11768
11779
|
chart: "chart";
|
|
11769
|
-
body: "body";
|
|
11770
11780
|
diagram: "diagram";
|
|
11771
11781
|
table: "table";
|
|
11772
11782
|
image: "image";
|
|
11773
11783
|
notes: "notes";
|
|
11784
|
+
body: "body";
|
|
11774
11785
|
}>>;
|
|
11775
11786
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11776
11787
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -12026,11 +12037,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12026
12037
|
formula: z.ZodObject<{
|
|
12027
12038
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
12028
12039
|
chart: "chart";
|
|
12029
|
-
body: "body";
|
|
12030
12040
|
diagram: "diagram";
|
|
12031
12041
|
table: "table";
|
|
12032
12042
|
image: "image";
|
|
12033
12043
|
notes: "notes";
|
|
12044
|
+
body: "body";
|
|
12034
12045
|
}>>;
|
|
12035
12046
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
12036
12047
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -12153,4 +12164,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12153
12164
|
}, z.core.$strip>], "kind">;
|
|
12154
12165
|
type ContentDocument = z.infer<typeof ContentDocumentSchema>;
|
|
12155
12166
|
//#endregion
|
|
12156
|
-
export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A,
|
|
12167
|
+
export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, ImageFormat as An, ContentSheetCellComment as At, ContentFloatPosition as B, findRunConstructFault as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentTranscriptSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, DecimalStringSchema as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, DecimalString as En, ContentShape as Et, ContentFloatAlignSchema as F, SheetRuleOperator as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, resolveCellFillColor as Gn, ContentSheetImage as Gt, ContentFont as H, isContentConstructEnd as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, SheetRuleOperatorSchema as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, unrecognizedFillKind as Kn, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, clampHeadingLevel as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructExtent as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, RunConstructExtentSchema as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, FusedNode as On, ContentSheet as Ot, ContentFloatAlign as P, RunConstructFault as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, contentDocumentSharedFields as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentTranscript as Sn, ContentRun as St, ContentDrawPage as T, ContentVectorSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, isContentConstructStart as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentBlock as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, isRunConstructExtent as Wn, ContentSheetDataValidationTypeSchema as Wt, ContentHatchFill as X, ContentSheetPrintSettingsSchema as Xt, ContentGradientStyleSchema as Y, ContentSheetPrintSettings as Yt, ContentHatchFillSchema as Z, ContentSheetRange as Zt, ContentConstructEnd as _, ContentTableColumn as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTableRowSchema as bn, ContentPathSegment as bt, ContentBorderSchema as c, ContentStrokeDashSchema as cn, ContentOrigin as ct, ContentCellFill as d, ContentStrokeStyleSchema as dn, ContentPageBreakSchema as dt, ContentSheetRepeatRangeSchema as en, ContentImageBlock as et, ContentCellFillSchema as f, ContentSubpath as fn, ContentPageFurniture as ft, ContentCellValueSchema as g, ContentTableCellSchema as gn, ContentParagraphBordersSchema as gt, ContentCellValue as h, ContentTableCell as hn, ContentParagraphBorders as ht, ContentBitmapFillSchema as i, ContentSlide as in, ContentInterpretation as it, ContentEmbeddedObjectSchema as j, RUN_FONT_PROPERTY_SHAPE as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, IMAGE_FORMATS as kn, ContentSheetCell as kt, ContentCellBorders as l, ContentStrokeSchema as ln, ContentOriginSchema as lt, ContentCellPatternTypeSchema as m, ContentTable as mn, ContentParagraph as mt, ConstructMarkerImbalance as n, ContentSheetRowSchema as nn, ContentImageOriginal as nt, ContentBlockSchema as o, ContentStroke as on, ContentListMembership as ot, ContentCellPatternType as p, ContentSubpathSchema as pn, ContentPageFurnitureSchema as pt, ContentGradientFillSchema as q, ContentSheetPrintRange as qt, ContentBitmapFill as r, ContentSheetSchema as rn, ContentImageOriginalSchema as rt, ContentBorder as s, ContentStrokeDash as sn, ContentListMembershipSchema as st, CONTENT_ANNOTATION_FIELDS as t, ContentSheetRow as tn, ContentImageBlockSchema as tt, ContentCellBordersSchema as u, ContentStrokeStyle as un, ContentPageBreak as ut, ContentConstructEndSchema as v, ContentTableColumnSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, ContentVector as wn, ContentSection as wt, ContentDefinedName as x, ContentTableSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableRow as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, findConstructMarkerImbalance as zn, ContentSheetConditionalFormatValue as zt };
|