document-schema 7.11.4 → 7.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{construct-C9cYkjnd.d.cts → construct-C4XiF8OW.d.cts} +6 -6
- package/dist/{construct-C9cYkjnd.d.ts → construct-C4XiF8OW.d.ts} +6 -6
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-oJmrSCr6.d.cts → content-DnNAXdH_.d.cts} +126 -126
- package/dist/{content-DJYlkhmk.d.ts → content-vx3Mbnjy.d.ts} +126 -126
- 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 +1 -1
- package/dist/definitions.d.ts +1 -1
- 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 +7 -0
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +2 -1
- package/dist/{package-node-DkOfPGtb.d.ts → package-node-CjEahULr.d.ts} +47 -47
- package/dist/{package-node-BaeLuQNH.d.cts → package-node-DMS4Zrfi.d.cts} +47 -47
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.d.cts +2 -2
- package/dist/package.d.ts +2 -2
- 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/table-grid.cjs +119 -0
- package/dist/table-grid.d.cts +66 -0
- package/dist/table-grid.d.ts +66 -0
- package/dist/table-grid.js +113 -0
- package/package.json +1 -1
- package/schemas/content-document.schema.json +16 -16
- package/schemas/document-tree.schema.json +3 -3
|
@@ -10,12 +10,12 @@ type FusedNode<T> = T & {
|
|
|
10
10
|
frames?: LayoutFrame[];
|
|
11
11
|
};
|
|
12
12
|
declare const ContentOriginSchema: z.ZodEnum<{
|
|
13
|
+
body: "body";
|
|
13
14
|
chart: "chart";
|
|
14
15
|
diagram: "diagram";
|
|
15
16
|
table: "table";
|
|
16
17
|
image: "image";
|
|
17
18
|
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";
|
|
56
57
|
chart: "chart";
|
|
57
58
|
diagram: "diagram";
|
|
58
59
|
table: "table";
|
|
59
60
|
image: "image";
|
|
60
61
|
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";
|
|
112
113
|
chart: "chart";
|
|
113
114
|
diagram: "diagram";
|
|
114
115
|
table: "table";
|
|
115
116
|
image: "image";
|
|
116
117
|
notes: "notes";
|
|
117
|
-
body: "body";
|
|
118
118
|
}>>;
|
|
119
119
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
120
120
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -205,12 +205,12 @@ declare const RunConstructExtentSchema: z.ZodObject<{
|
|
|
205
205
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
206
206
|
kind: z.ZodLiteral<"contentControl">;
|
|
207
207
|
controlType: z.ZodEnum<{
|
|
208
|
+
date: "date";
|
|
208
209
|
richText: "richText";
|
|
209
210
|
plainText: "plainText";
|
|
210
211
|
checkbox: "checkbox";
|
|
211
212
|
dropDown: "dropDown";
|
|
212
213
|
comboBox: "comboBox";
|
|
213
|
-
date: "date";
|
|
214
214
|
picture: "picture";
|
|
215
215
|
repeatingSection: "repeatingSection";
|
|
216
216
|
button: "button";
|
|
@@ -274,10 +274,10 @@ declare const RunConstructExtentSchema: z.ZodObject<{
|
|
|
274
274
|
}, z.core.$strict>, z.ZodObject<{
|
|
275
275
|
kind: z.ZodLiteral<"anchor">;
|
|
276
276
|
anchorType: z.ZodEnum<{
|
|
277
|
+
comment: "comment";
|
|
277
278
|
bookmark: "bookmark";
|
|
278
279
|
footnote: "footnote";
|
|
279
280
|
endnote: "endnote";
|
|
280
|
-
comment: "comment";
|
|
281
281
|
}>;
|
|
282
282
|
name: z.ZodString;
|
|
283
283
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -479,12 +479,12 @@ declare const ContentParagraphBordersSchema: z.ZodObject<{
|
|
|
479
479
|
type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
|
|
480
480
|
declare const ContentParagraphSchema: z.ZodObject<{
|
|
481
481
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
482
|
+
body: "body";
|
|
482
483
|
chart: "chart";
|
|
483
484
|
diagram: "diagram";
|
|
484
485
|
table: "table";
|
|
485
486
|
image: "image";
|
|
486
487
|
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";
|
|
511
512
|
chart: "chart";
|
|
512
513
|
diagram: "diagram";
|
|
513
514
|
table: "table";
|
|
514
515
|
image: "image";
|
|
515
516
|
notes: "notes";
|
|
516
|
-
body: "body";
|
|
517
517
|
}>>;
|
|
518
518
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
519
519
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -588,12 +588,12 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
588
588
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
589
589
|
kind: z.ZodLiteral<"contentControl">;
|
|
590
590
|
controlType: z.ZodEnum<{
|
|
591
|
+
date: "date";
|
|
591
592
|
richText: "richText";
|
|
592
593
|
plainText: "plainText";
|
|
593
594
|
checkbox: "checkbox";
|
|
594
595
|
dropDown: "dropDown";
|
|
595
596
|
comboBox: "comboBox";
|
|
596
|
-
date: "date";
|
|
597
597
|
picture: "picture";
|
|
598
598
|
repeatingSection: "repeatingSection";
|
|
599
599
|
button: "button";
|
|
@@ -657,10 +657,10 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
657
657
|
}, z.core.$strict>, z.ZodObject<{
|
|
658
658
|
kind: z.ZodLiteral<"anchor">;
|
|
659
659
|
anchorType: z.ZodEnum<{
|
|
660
|
+
comment: "comment";
|
|
660
661
|
bookmark: "bookmark";
|
|
661
662
|
footnote: "footnote";
|
|
662
663
|
endnote: "endnote";
|
|
663
|
-
comment: "comment";
|
|
664
664
|
}>;
|
|
665
665
|
name: z.ZodString;
|
|
666
666
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -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";
|
|
1078
1079
|
chart: "chart";
|
|
1079
1080
|
diagram: "diagram";
|
|
1080
1081
|
table: "table";
|
|
1081
1082
|
image: "image";
|
|
1082
1083
|
notes: "notes";
|
|
1083
|
-
body: "body";
|
|
1084
1084
|
}>>;
|
|
1085
1085
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1086
1086
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
1246
1247
|
chart: "chart";
|
|
1247
1248
|
diagram: "diagram";
|
|
1248
1249
|
table: "table";
|
|
1249
1250
|
image: "image";
|
|
1250
1251
|
notes: "notes";
|
|
1251
|
-
body: "body";
|
|
1252
1252
|
}>>;
|
|
1253
1253
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1254
1254
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1305,12 +1305,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
|
|
|
1305
1305
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1306
1306
|
kind: z.ZodLiteral<"contentControl">;
|
|
1307
1307
|
controlType: z.ZodEnum<{
|
|
1308
|
+
date: "date";
|
|
1308
1309
|
richText: "richText";
|
|
1309
1310
|
plainText: "plainText";
|
|
1310
1311
|
checkbox: "checkbox";
|
|
1311
1312
|
dropDown: "dropDown";
|
|
1312
1313
|
comboBox: "comboBox";
|
|
1313
|
-
date: "date";
|
|
1314
1314
|
picture: "picture";
|
|
1315
1315
|
repeatingSection: "repeatingSection";
|
|
1316
1316
|
button: "button";
|
|
@@ -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";
|
|
1377
1378
|
bookmark: "bookmark";
|
|
1378
1379
|
footnote: "footnote";
|
|
1379
1380
|
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";
|
|
1564
1565
|
chart: "chart";
|
|
1565
1566
|
diagram: "diagram";
|
|
1566
1567
|
table: "table";
|
|
1567
1568
|
image: "image";
|
|
1568
1569
|
notes: "notes";
|
|
1569
|
-
body: "body";
|
|
1570
1570
|
}>>;
|
|
1571
1571
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1572
1572
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -1588,22 +1588,22 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1588
1588
|
}, z.core.$strip>>;
|
|
1589
1589
|
}, z.core.$strip>>;
|
|
1590
1590
|
objectKind: z.ZodEnum<{
|
|
1591
|
+
chart: "chart";
|
|
1591
1592
|
formula: "formula";
|
|
1592
|
-
wordprocessing: "wordprocessing";
|
|
1593
1593
|
presentation: "presentation";
|
|
1594
|
+
wordprocessing: "wordprocessing";
|
|
1594
1595
|
spreadsheet: "spreadsheet";
|
|
1595
1596
|
drawing: "drawing";
|
|
1596
|
-
chart: "chart";
|
|
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";
|
|
1601
1602
|
chart: "chart";
|
|
1602
1603
|
diagram: "diagram";
|
|
1603
1604
|
table: "table";
|
|
1604
1605
|
image: "image";
|
|
1605
1606
|
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";
|
|
1750
1751
|
chart: "chart";
|
|
1751
1752
|
diagram: "diagram";
|
|
1752
1753
|
table: "table";
|
|
1753
1754
|
image: "image";
|
|
1754
1755
|
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";
|
|
1783
1784
|
chart: "chart";
|
|
1784
1785
|
diagram: "diagram";
|
|
1785
1786
|
table: "table";
|
|
1786
1787
|
image: "image";
|
|
1787
1788
|
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";
|
|
1946
1947
|
chart: "chart";
|
|
1947
1948
|
diagram: "diagram";
|
|
1948
1949
|
table: "table";
|
|
1949
1950
|
image: "image";
|
|
1950
1951
|
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";
|
|
1975
1976
|
chart: "chart";
|
|
1976
1977
|
diagram: "diagram";
|
|
1977
1978
|
table: "table";
|
|
1978
1979
|
image: "image";
|
|
1979
1980
|
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";
|
|
2055
2056
|
chart: "chart";
|
|
2056
2057
|
diagram: "diagram";
|
|
2057
2058
|
table: "table";
|
|
2058
2059
|
image: "image";
|
|
2059
2060
|
notes: "notes";
|
|
2060
|
-
body: "body";
|
|
2061
2061
|
}>>;
|
|
2062
2062
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2063
2063
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
2354
2355
|
chart: "chart";
|
|
2355
2356
|
diagram: "diagram";
|
|
2356
2357
|
table: "table";
|
|
2357
2358
|
image: "image";
|
|
2358
2359
|
notes: "notes";
|
|
2359
|
-
body: "body";
|
|
2360
2360
|
}>>;
|
|
2361
2361
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2362
2362
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
2573
2574
|
date: "date";
|
|
2574
2575
|
custom: "custom";
|
|
2575
2576
|
decimal: "decimal";
|
|
2576
2577
|
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
|
-
formula: "formula";
|
|
3049
|
-
percent: "percent";
|
|
3050
3048
|
num: "num";
|
|
3051
|
-
max: "max";
|
|
3052
3049
|
min: "min";
|
|
3050
|
+
max: "max";
|
|
3051
|
+
formula: "formula";
|
|
3052
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
3096
|
-
percent: "percent";
|
|
3097
3095
|
num: "num";
|
|
3098
|
-
max: "max";
|
|
3099
3096
|
min: "min";
|
|
3097
|
+
max: "max";
|
|
3098
|
+
formula: "formula";
|
|
3099
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
3107
|
-
percent: "percent";
|
|
3108
3106
|
num: "num";
|
|
3109
|
-
max: "max";
|
|
3110
3107
|
min: "min";
|
|
3108
|
+
max: "max";
|
|
3109
|
+
formula: "formula";
|
|
3110
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
3155
|
-
percent: "percent";
|
|
3156
3154
|
num: "num";
|
|
3157
|
-
max: "max";
|
|
3158
3155
|
min: "min";
|
|
3156
|
+
max: "max";
|
|
3157
|
+
formula: "formula";
|
|
3158
|
+
percent: "percent";
|
|
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";
|
|
3291
3292
|
chart: "chart";
|
|
3292
3293
|
diagram: "diagram";
|
|
3293
3294
|
table: "table";
|
|
3294
3295
|
image: "image";
|
|
3295
3296
|
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";
|
|
3324
3325
|
chart: "chart";
|
|
3325
3326
|
diagram: "diagram";
|
|
3326
3327
|
table: "table";
|
|
3327
3328
|
image: "image";
|
|
3328
3329
|
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";
|
|
3397
3398
|
chart: "chart";
|
|
3398
3399
|
diagram: "diagram";
|
|
3399
3400
|
table: "table";
|
|
3400
3401
|
image: "image";
|
|
3401
3402
|
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";
|
|
3535
3536
|
chart: "chart";
|
|
3536
3537
|
diagram: "diagram";
|
|
3537
3538
|
table: "table";
|
|
3538
3539
|
image: "image";
|
|
3539
3540
|
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";
|
|
3673
3674
|
chart: "chart";
|
|
3674
3675
|
diagram: "diagram";
|
|
3675
3676
|
table: "table";
|
|
3676
3677
|
image: "image";
|
|
3677
3678
|
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";
|
|
3761
3762
|
chart: "chart";
|
|
3762
3763
|
diagram: "diagram";
|
|
3763
3764
|
table: "table";
|
|
3764
3765
|
image: "image";
|
|
3765
3766
|
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";
|
|
4021
4022
|
chart: "chart";
|
|
4022
4023
|
diagram: "diagram";
|
|
4023
4024
|
table: "table";
|
|
4024
4025
|
image: "image";
|
|
4025
4026
|
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";
|
|
4418
4419
|
chart: "chart";
|
|
4419
4420
|
diagram: "diagram";
|
|
4420
4421
|
table: "table";
|
|
4421
4422
|
image: "image";
|
|
4422
4423
|
notes: "notes";
|
|
4423
|
-
body: "body";
|
|
4424
4424
|
}>>;
|
|
4425
4425
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4426
4426
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
4645
4646
|
chart: "chart";
|
|
4646
4647
|
diagram: "diagram";
|
|
4647
4648
|
table: "table";
|
|
4648
4649
|
image: "image";
|
|
4649
4650
|
notes: "notes";
|
|
4650
|
-
body: "body";
|
|
4651
4651
|
}>>;
|
|
4652
4652
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4653
4653
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
4877
4878
|
chart: "chart";
|
|
4878
4879
|
diagram: "diagram";
|
|
4879
4880
|
table: "table";
|
|
4880
4881
|
image: "image";
|
|
4881
4882
|
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";
|
|
4907
4908
|
chart: "chart";
|
|
4908
4909
|
diagram: "diagram";
|
|
4909
4910
|
table: "table";
|
|
4910
4911
|
image: "image";
|
|
4911
4912
|
notes: "notes";
|
|
4912
|
-
body: "body";
|
|
4913
4913
|
}>>;
|
|
4914
4914
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4915
4915
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
5176
5177
|
chart: "chart";
|
|
5177
5178
|
diagram: "diagram";
|
|
5178
5179
|
table: "table";
|
|
5179
5180
|
image: "image";
|
|
5180
5181
|
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";
|
|
5259
5260
|
chart: "chart";
|
|
5260
5261
|
diagram: "diagram";
|
|
5261
5262
|
table: "table";
|
|
5262
5263
|
image: "image";
|
|
5263
5264
|
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";
|
|
5333
5334
|
chart: "chart";
|
|
5334
5335
|
diagram: "diagram";
|
|
5335
5336
|
table: "table";
|
|
5336
5337
|
image: "image";
|
|
5337
5338
|
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";
|
|
5366
5367
|
chart: "chart";
|
|
5367
5368
|
diagram: "diagram";
|
|
5368
5369
|
table: "table";
|
|
5369
5370
|
image: "image";
|
|
5370
5371
|
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";
|
|
5509
5510
|
chart: "chart";
|
|
5510
5511
|
diagram: "diagram";
|
|
5511
5512
|
table: "table";
|
|
5512
5513
|
image: "image";
|
|
5513
5514
|
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";
|
|
5589
5590
|
chart: "chart";
|
|
5590
5591
|
diagram: "diagram";
|
|
5591
5592
|
table: "table";
|
|
5592
5593
|
image: "image";
|
|
5593
5594
|
notes: "notes";
|
|
5594
|
-
body: "body";
|
|
5595
5595
|
}>>;
|
|
5596
5596
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5597
5597
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
5962
5963
|
date: "date";
|
|
5963
5964
|
custom: "custom";
|
|
5964
5965
|
decimal: "decimal";
|
|
5965
5966
|
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";
|
|
5979
5980
|
date: "date";
|
|
5980
5981
|
custom: "custom";
|
|
5981
5982
|
decimal: "decimal";
|
|
5982
5983
|
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
|
-
formula: "formula";
|
|
6069
|
-
percent: "percent";
|
|
6070
6068
|
num: "num";
|
|
6071
|
-
max: "max";
|
|
6072
6069
|
min: "min";
|
|
6070
|
+
max: "max";
|
|
6071
|
+
formula: "formula";
|
|
6072
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
6501
|
-
percent: "percent";
|
|
6502
6500
|
num: "num";
|
|
6503
|
-
max: "max";
|
|
6504
6501
|
min: "min";
|
|
6502
|
+
max: "max";
|
|
6503
|
+
formula: "formula";
|
|
6504
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
6548
|
-
percent: "percent";
|
|
6549
6547
|
num: "num";
|
|
6550
|
-
max: "max";
|
|
6551
6548
|
min: "min";
|
|
6549
|
+
max: "max";
|
|
6550
|
+
formula: "formula";
|
|
6551
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
6559
|
-
percent: "percent";
|
|
6560
6558
|
num: "num";
|
|
6561
|
-
max: "max";
|
|
6562
6559
|
min: "min";
|
|
6560
|
+
max: "max";
|
|
6561
|
+
formula: "formula";
|
|
6562
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
6607
|
-
percent: "percent";
|
|
6608
6606
|
num: "num";
|
|
6609
|
-
max: "max";
|
|
6610
6607
|
min: "min";
|
|
6608
|
+
max: "max";
|
|
6609
|
+
formula: "formula";
|
|
6610
|
+
percent: "percent";
|
|
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";
|
|
6650
6651
|
chart: "chart";
|
|
6651
6652
|
diagram: "diagram";
|
|
6652
6653
|
table: "table";
|
|
6653
6654
|
image: "image";
|
|
6654
6655
|
notes: "notes";
|
|
6655
|
-
body: "body";
|
|
6656
6656
|
}>>;
|
|
6657
6657
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6658
6658
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
6822
6823
|
chart: "chart";
|
|
6823
6824
|
diagram: "diagram";
|
|
6824
6825
|
table: "table";
|
|
6825
6826
|
image: "image";
|
|
6826
6827
|
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";
|
|
6851
6852
|
chart: "chart";
|
|
6852
6853
|
diagram: "diagram";
|
|
6853
6854
|
table: "table";
|
|
6854
6855
|
image: "image";
|
|
6855
6856
|
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";
|
|
6931
6932
|
chart: "chart";
|
|
6932
6933
|
diagram: "diagram";
|
|
6933
6934
|
table: "table";
|
|
6934
6935
|
image: "image";
|
|
6935
6936
|
notes: "notes";
|
|
6936
|
-
body: "body";
|
|
6937
6937
|
}>>;
|
|
6938
6938
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6939
6939
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
7230
7231
|
chart: "chart";
|
|
7231
7232
|
diagram: "diagram";
|
|
7232
7233
|
table: "table";
|
|
7233
7234
|
image: "image";
|
|
7234
7235
|
notes: "notes";
|
|
7235
|
-
body: "body";
|
|
7236
7236
|
}>>;
|
|
7237
7237
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
7238
7238
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
7449
7450
|
date: "date";
|
|
7450
7451
|
custom: "custom";
|
|
7451
7452
|
decimal: "decimal";
|
|
7452
7453
|
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
|
-
formula: "formula";
|
|
7925
|
-
percent: "percent";
|
|
7926
7924
|
num: "num";
|
|
7927
|
-
max: "max";
|
|
7928
7925
|
min: "min";
|
|
7926
|
+
max: "max";
|
|
7927
|
+
formula: "formula";
|
|
7928
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
7972
|
-
percent: "percent";
|
|
7973
7971
|
num: "num";
|
|
7974
|
-
max: "max";
|
|
7975
7972
|
min: "min";
|
|
7973
|
+
max: "max";
|
|
7974
|
+
formula: "formula";
|
|
7975
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
7983
|
-
percent: "percent";
|
|
7984
7982
|
num: "num";
|
|
7985
|
-
max: "max";
|
|
7986
7983
|
min: "min";
|
|
7984
|
+
max: "max";
|
|
7985
|
+
formula: "formula";
|
|
7986
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
8031
|
-
percent: "percent";
|
|
8032
8030
|
num: "num";
|
|
8033
|
-
max: "max";
|
|
8034
8031
|
min: "min";
|
|
8032
|
+
max: "max";
|
|
8033
|
+
formula: "formula";
|
|
8034
|
+
percent: "percent";
|
|
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";
|
|
8293
8294
|
chart: "chart";
|
|
8294
8295
|
diagram: "diagram";
|
|
8295
8296
|
table: "table";
|
|
8296
8297
|
image: "image";
|
|
8297
8298
|
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";
|
|
8431
8432
|
chart: "chart";
|
|
8432
8433
|
diagram: "diagram";
|
|
8433
8434
|
table: "table";
|
|
8434
8435
|
image: "image";
|
|
8435
8436
|
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";
|
|
8569
8570
|
chart: "chart";
|
|
8570
8571
|
diagram: "diagram";
|
|
8571
8572
|
table: "table";
|
|
8572
8573
|
image: "image";
|
|
8573
8574
|
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";
|
|
8657
8658
|
chart: "chart";
|
|
8658
8659
|
diagram: "diagram";
|
|
8659
8660
|
table: "table";
|
|
8660
8661
|
image: "image";
|
|
8661
8662
|
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";
|
|
8829
8830
|
chart: "chart";
|
|
8830
8831
|
diagram: "diagram";
|
|
8831
8832
|
table: "table";
|
|
8832
8833
|
image: "image";
|
|
8833
8834
|
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";
|
|
8862
8863
|
chart: "chart";
|
|
8863
8864
|
diagram: "diagram";
|
|
8864
8865
|
table: "table";
|
|
8865
8866
|
image: "image";
|
|
8866
8867
|
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";
|
|
8935
8936
|
chart: "chart";
|
|
8936
8937
|
diagram: "diagram";
|
|
8937
8938
|
table: "table";
|
|
8938
8939
|
image: "image";
|
|
8939
8940
|
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";
|
|
9073
9074
|
chart: "chart";
|
|
9074
9075
|
diagram: "diagram";
|
|
9075
9076
|
table: "table";
|
|
9076
9077
|
image: "image";
|
|
9077
9078
|
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";
|
|
9211
9212
|
chart: "chart";
|
|
9212
9213
|
diagram: "diagram";
|
|
9213
9214
|
table: "table";
|
|
9214
9215
|
image: "image";
|
|
9215
9216
|
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";
|
|
9299
9300
|
chart: "chart";
|
|
9300
9301
|
diagram: "diagram";
|
|
9301
9302
|
table: "table";
|
|
9302
9303
|
image: "image";
|
|
9303
9304
|
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";
|
|
9492
9493
|
chart: "chart";
|
|
9493
9494
|
diagram: "diagram";
|
|
9494
9495
|
table: "table";
|
|
9495
9496
|
image: "image";
|
|
9496
9497
|
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";
|
|
9605
9606
|
chart: "chart";
|
|
9606
9607
|
diagram: "diagram";
|
|
9607
9608
|
table: "table";
|
|
9608
9609
|
image: "image";
|
|
9609
9610
|
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";
|
|
9754
9755
|
chart: "chart";
|
|
9755
9756
|
diagram: "diagram";
|
|
9756
9757
|
table: "table";
|
|
9757
9758
|
image: "image";
|
|
9758
9759
|
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";
|
|
9787
9788
|
chart: "chart";
|
|
9788
9789
|
diagram: "diagram";
|
|
9789
9790
|
table: "table";
|
|
9790
9791
|
image: "image";
|
|
9791
9792
|
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";
|
|
9950
9951
|
chart: "chart";
|
|
9951
9952
|
diagram: "diagram";
|
|
9952
9953
|
table: "table";
|
|
9953
9954
|
image: "image";
|
|
9954
9955
|
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";
|
|
9979
9980
|
chart: "chart";
|
|
9980
9981
|
diagram: "diagram";
|
|
9981
9982
|
table: "table";
|
|
9982
9983
|
image: "image";
|
|
9983
9984
|
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";
|
|
10059
10060
|
chart: "chart";
|
|
10060
10061
|
diagram: "diagram";
|
|
10061
10062
|
table: "table";
|
|
10062
10063
|
image: "image";
|
|
10063
10064
|
notes: "notes";
|
|
10064
|
-
body: "body";
|
|
10065
10065
|
}>>;
|
|
10066
10066
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10067
10067
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
10358
10359
|
chart: "chart";
|
|
10359
10360
|
diagram: "diagram";
|
|
10360
10361
|
table: "table";
|
|
10361
10362
|
image: "image";
|
|
10362
10363
|
notes: "notes";
|
|
10363
|
-
body: "body";
|
|
10364
10364
|
}>>;
|
|
10365
10365
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10366
10366
|
transcript: z.ZodOptional<z.ZodObject<{
|
|
@@ -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";
|
|
10577
10578
|
date: "date";
|
|
10578
10579
|
custom: "custom";
|
|
10579
10580
|
decimal: "decimal";
|
|
10580
10581
|
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
|
-
formula: "formula";
|
|
11053
|
-
percent: "percent";
|
|
11054
11052
|
num: "num";
|
|
11055
|
-
max: "max";
|
|
11056
11053
|
min: "min";
|
|
11054
|
+
max: "max";
|
|
11055
|
+
formula: "formula";
|
|
11056
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
11100
|
-
percent: "percent";
|
|
11101
11099
|
num: "num";
|
|
11102
|
-
max: "max";
|
|
11103
11100
|
min: "min";
|
|
11101
|
+
max: "max";
|
|
11102
|
+
formula: "formula";
|
|
11103
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
11111
|
-
percent: "percent";
|
|
11112
11110
|
num: "num";
|
|
11113
|
-
max: "max";
|
|
11114
11111
|
min: "min";
|
|
11112
|
+
max: "max";
|
|
11113
|
+
formula: "formula";
|
|
11114
|
+
percent: "percent";
|
|
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
|
-
formula: "formula";
|
|
11159
|
-
percent: "percent";
|
|
11160
11158
|
num: "num";
|
|
11161
|
-
max: "max";
|
|
11162
11159
|
min: "min";
|
|
11160
|
+
max: "max";
|
|
11161
|
+
formula: "formula";
|
|
11162
|
+
percent: "percent";
|
|
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";
|
|
11295
11296
|
chart: "chart";
|
|
11296
11297
|
diagram: "diagram";
|
|
11297
11298
|
table: "table";
|
|
11298
11299
|
image: "image";
|
|
11299
11300
|
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";
|
|
11328
11329
|
chart: "chart";
|
|
11329
11330
|
diagram: "diagram";
|
|
11330
11331
|
table: "table";
|
|
11331
11332
|
image: "image";
|
|
11332
11333
|
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";
|
|
11401
11402
|
chart: "chart";
|
|
11402
11403
|
diagram: "diagram";
|
|
11403
11404
|
table: "table";
|
|
11404
11405
|
image: "image";
|
|
11405
11406
|
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";
|
|
11539
11540
|
chart: "chart";
|
|
11540
11541
|
diagram: "diagram";
|
|
11541
11542
|
table: "table";
|
|
11542
11543
|
image: "image";
|
|
11543
11544
|
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";
|
|
11677
11678
|
chart: "chart";
|
|
11678
11679
|
diagram: "diagram";
|
|
11679
11680
|
table: "table";
|
|
11680
11681
|
image: "image";
|
|
11681
11682
|
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";
|
|
11765
11766
|
chart: "chart";
|
|
11766
11767
|
diagram: "diagram";
|
|
11767
11768
|
table: "table";
|
|
11768
11769
|
image: "image";
|
|
11769
11770
|
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";
|
|
12025
12026
|
chart: "chart";
|
|
12026
12027
|
diagram: "diagram";
|
|
12027
12028
|
table: "table";
|
|
12028
12029
|
image: "image";
|
|
12029
12030
|
notes: "notes";
|
|
12030
|
-
body: "body";
|
|
12031
12031
|
}>>;
|
|
12032
12032
|
interpretation: z.ZodOptional<z.ZodObject<{
|
|
12033
12033
|
transcript: z.ZodOptional<z.ZodObject<{
|