document-content-model 7.6.1 → 7.8.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-GVdTKrE7.d.cts} +3 -3
- package/dist/{construct-C9cYkjnd.d.ts → construct-GVdTKrE7.d.ts} +3 -3
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-PPcQWl8e.d.ts → content-DAc4O272.d.ts} +1934 -87
- package/dist/{content-JIKLIrji.d.cts → content-SgKmas45.d.cts} +1934 -87
- package/dist/content-json-schema-defs.cjs +158 -15
- package/dist/content-json-schema-defs.js +158 -15
- package/dist/content.cjs +106 -27
- package/dist/content.d.cts +2 -2
- package/dist/content.d.ts +2 -2
- package/dist/content.js +98 -28
- package/dist/decompose.d.cts +2 -2
- package/dist/decompose.d.ts +2 -2
- package/dist/definitions.cjs +1 -10
- package/dist/definitions.d.cts +1 -1
- package/dist/definitions.d.ts +1 -1
- package/dist/definitions.js +2 -11
- package/dist/factor-styles.cjs +1 -0
- package/dist/factor-styles.d.cts +1 -1
- package/dist/factor-styles.d.ts +1 -1
- package/dist/factor-styles.js +1 -0
- package/dist/flatten.cjs +1 -0
- package/dist/flatten.d.cts +1 -1
- package/dist/flatten.d.ts +1 -1
- package/dist/flatten.js +1 -0
- package/dist/index.cjs +9 -0
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2 -2
- package/dist/{package-node-B4CHgiVQ.d.ts → package-node-BnFUnaa0.d.ts} +359 -49
- package/dist/{package-node-duDMdOvH.d.cts → package-node-DnUyGT61.d.cts} +359 -49
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.cjs +1 -0
- package/dist/package.d.cts +33 -1
- package/dist/package.d.ts +33 -1
- package/dist/package.js +2 -1
- 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/package.json +1 -1
- package/schemas/content-document.schema.json +1296 -13
- package/schemas/document-tree.schema.json +292 -3
|
@@ -9,8 +9,91 @@ import { z } from "zod";
|
|
|
9
9
|
type FusedNode<T> = T & {
|
|
10
10
|
frames?: LayoutFrame[];
|
|
11
11
|
};
|
|
12
|
-
declare const
|
|
12
|
+
declare const ContentOriginSchema: z.ZodEnum<{
|
|
13
|
+
body: "body";
|
|
14
|
+
chart: "chart";
|
|
15
|
+
diagram: "diagram";
|
|
16
|
+
table: "table";
|
|
17
|
+
image: "image";
|
|
18
|
+
notes: "notes";
|
|
19
|
+
}>;
|
|
20
|
+
type ContentOrigin = z.infer<typeof ContentOriginSchema>;
|
|
21
|
+
declare const ContentTranscriptSchema: z.ZodObject<{
|
|
13
22
|
text: z.ZodString;
|
|
23
|
+
confidence: z.ZodEnum<{
|
|
24
|
+
high: "high";
|
|
25
|
+
medium: "medium";
|
|
26
|
+
low: "low";
|
|
27
|
+
}>;
|
|
28
|
+
mechanism: z.ZodEnum<{
|
|
29
|
+
deterministic: "deterministic";
|
|
30
|
+
model: "model";
|
|
31
|
+
}>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
type ContentTranscript = z.infer<typeof ContentTranscriptSchema>;
|
|
34
|
+
declare const ContentInterpretationSchema: z.ZodObject<{
|
|
35
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
36
|
+
text: z.ZodString;
|
|
37
|
+
confidence: z.ZodEnum<{
|
|
38
|
+
high: "high";
|
|
39
|
+
medium: "medium";
|
|
40
|
+
low: "low";
|
|
41
|
+
}>;
|
|
42
|
+
mechanism: z.ZodEnum<{
|
|
43
|
+
deterministic: "deterministic";
|
|
44
|
+
model: "model";
|
|
45
|
+
}>;
|
|
46
|
+
}, z.core.$strip>>;
|
|
47
|
+
description: z.ZodOptional<z.ZodString>;
|
|
48
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
49
|
+
model: z.ZodString;
|
|
50
|
+
at: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>;
|
|
52
|
+
}, z.core.$strip>;
|
|
53
|
+
type ContentInterpretation = z.infer<typeof ContentInterpretationSchema>;
|
|
54
|
+
declare const CONTENT_ANNOTATION_FIELDS: {
|
|
55
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
56
|
+
body: "body";
|
|
57
|
+
chart: "chart";
|
|
58
|
+
diagram: "diagram";
|
|
59
|
+
table: "table";
|
|
60
|
+
image: "image";
|
|
61
|
+
notes: "notes";
|
|
62
|
+
}>>;
|
|
63
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
64
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
65
|
+
text: z.ZodString;
|
|
66
|
+
confidence: z.ZodEnum<{
|
|
67
|
+
high: "high";
|
|
68
|
+
medium: "medium";
|
|
69
|
+
low: "low";
|
|
70
|
+
}>;
|
|
71
|
+
mechanism: z.ZodEnum<{
|
|
72
|
+
deterministic: "deterministic";
|
|
73
|
+
model: "model";
|
|
74
|
+
}>;
|
|
75
|
+
}, z.core.$strip>>;
|
|
76
|
+
description: z.ZodOptional<z.ZodString>;
|
|
77
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
78
|
+
model: z.ZodString;
|
|
79
|
+
at: z.ZodString;
|
|
80
|
+
}, z.core.$strip>>;
|
|
81
|
+
}, z.core.$strip>>;
|
|
82
|
+
};
|
|
83
|
+
declare const RUN_FONT_PROPERTY_SHAPE: {
|
|
84
|
+
readonly bold: z.ZodOptional<z.ZodBoolean>;
|
|
85
|
+
readonly italic: z.ZodOptional<z.ZodBoolean>;
|
|
86
|
+
readonly underline: z.ZodOptional<z.ZodBoolean>;
|
|
87
|
+
readonly strike: z.ZodOptional<z.ZodBoolean>;
|
|
88
|
+
readonly fontFamily: z.ZodOptional<z.ZodString>;
|
|
89
|
+
readonly sizePt: z.ZodOptional<z.ZodNumber>;
|
|
90
|
+
readonly color: z.ZodOptional<z.ZodObject<{
|
|
91
|
+
r: z.ZodNumber;
|
|
92
|
+
g: z.ZodNumber;
|
|
93
|
+
b: z.ZodNumber;
|
|
94
|
+
}, z.core.$strip>>;
|
|
95
|
+
};
|
|
96
|
+
declare const ContentFontSchema: z.ZodObject<{
|
|
14
97
|
bold: z.ZodOptional<z.ZodBoolean>;
|
|
15
98
|
italic: z.ZodOptional<z.ZodBoolean>;
|
|
16
99
|
underline: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22,6 +105,36 @@ declare const ContentRunSchema: z.ZodObject<{
|
|
|
22
105
|
g: z.ZodNumber;
|
|
23
106
|
b: z.ZodNumber;
|
|
24
107
|
}, z.core.$strip>>;
|
|
108
|
+
}, z.core.$strip>;
|
|
109
|
+
type ContentFont = z.infer<typeof ContentFontSchema>;
|
|
110
|
+
declare const ContentRunSchema: z.ZodObject<{
|
|
111
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
112
|
+
body: "body";
|
|
113
|
+
chart: "chart";
|
|
114
|
+
diagram: "diagram";
|
|
115
|
+
table: "table";
|
|
116
|
+
image: "image";
|
|
117
|
+
notes: "notes";
|
|
118
|
+
}>>;
|
|
119
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
120
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
121
|
+
text: z.ZodString;
|
|
122
|
+
confidence: z.ZodEnum<{
|
|
123
|
+
high: "high";
|
|
124
|
+
medium: "medium";
|
|
125
|
+
low: "low";
|
|
126
|
+
}>;
|
|
127
|
+
mechanism: z.ZodEnum<{
|
|
128
|
+
deterministic: "deterministic";
|
|
129
|
+
model: "model";
|
|
130
|
+
}>;
|
|
131
|
+
}, z.core.$strip>>;
|
|
132
|
+
description: z.ZodOptional<z.ZodString>;
|
|
133
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
134
|
+
model: z.ZodString;
|
|
135
|
+
at: z.ZodString;
|
|
136
|
+
}, z.core.$strip>>;
|
|
137
|
+
}, z.core.$strip>>;
|
|
25
138
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
26
139
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
27
140
|
superscript: "superscript";
|
|
@@ -59,6 +172,18 @@ declare const ContentRunSchema: z.ZodObject<{
|
|
|
59
172
|
widthPt: z.ZodNumber;
|
|
60
173
|
heightPt: z.ZodNumber;
|
|
61
174
|
}, z.core.$strip>>>;
|
|
175
|
+
bold: z.ZodOptional<z.ZodBoolean>;
|
|
176
|
+
italic: z.ZodOptional<z.ZodBoolean>;
|
|
177
|
+
underline: z.ZodOptional<z.ZodBoolean>;
|
|
178
|
+
strike: z.ZodOptional<z.ZodBoolean>;
|
|
179
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
180
|
+
sizePt: z.ZodOptional<z.ZodNumber>;
|
|
181
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
182
|
+
r: z.ZodNumber;
|
|
183
|
+
g: z.ZodNumber;
|
|
184
|
+
b: z.ZodNumber;
|
|
185
|
+
}, z.core.$strip>>;
|
|
186
|
+
text: z.ZodString;
|
|
62
187
|
}, z.core.$strip>;
|
|
63
188
|
type ContentRun = z.infer<typeof ContentRunSchema>;
|
|
64
189
|
declare const ContentListMembershipSchema: z.ZodObject<{
|
|
@@ -80,12 +205,12 @@ declare const RunConstructExtentSchema: z.ZodObject<{
|
|
|
80
205
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
81
206
|
kind: z.ZodLiteral<"contentControl">;
|
|
82
207
|
controlType: z.ZodEnum<{
|
|
208
|
+
date: "date";
|
|
83
209
|
richText: "richText";
|
|
84
210
|
plainText: "plainText";
|
|
85
211
|
checkbox: "checkbox";
|
|
86
212
|
dropDown: "dropDown";
|
|
87
213
|
comboBox: "comboBox";
|
|
88
|
-
date: "date";
|
|
89
214
|
picture: "picture";
|
|
90
215
|
repeatingSection: "repeatingSection";
|
|
91
216
|
button: "button";
|
|
@@ -353,19 +478,61 @@ declare const ContentParagraphBordersSchema: z.ZodObject<{
|
|
|
353
478
|
}, z.core.$strip>;
|
|
354
479
|
type ContentParagraphBorders = z.infer<typeof ContentParagraphBordersSchema>;
|
|
355
480
|
declare const ContentParagraphSchema: z.ZodObject<{
|
|
481
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
482
|
+
body: "body";
|
|
483
|
+
chart: "chart";
|
|
484
|
+
diagram: "diagram";
|
|
485
|
+
table: "table";
|
|
486
|
+
image: "image";
|
|
487
|
+
notes: "notes";
|
|
488
|
+
}>>;
|
|
489
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
490
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
491
|
+
text: z.ZodString;
|
|
492
|
+
confidence: z.ZodEnum<{
|
|
493
|
+
high: "high";
|
|
494
|
+
medium: "medium";
|
|
495
|
+
low: "low";
|
|
496
|
+
}>;
|
|
497
|
+
mechanism: z.ZodEnum<{
|
|
498
|
+
deterministic: "deterministic";
|
|
499
|
+
model: "model";
|
|
500
|
+
}>;
|
|
501
|
+
}, z.core.$strip>>;
|
|
502
|
+
description: z.ZodOptional<z.ZodString>;
|
|
503
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
504
|
+
model: z.ZodString;
|
|
505
|
+
at: z.ZodString;
|
|
506
|
+
}, z.core.$strip>>;
|
|
507
|
+
}, z.core.$strip>>;
|
|
356
508
|
kind: z.ZodLiteral<"paragraph">;
|
|
357
509
|
runs: z.ZodArray<z.ZodObject<{
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
510
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
511
|
+
body: "body";
|
|
512
|
+
chart: "chart";
|
|
513
|
+
diagram: "diagram";
|
|
514
|
+
table: "table";
|
|
515
|
+
image: "image";
|
|
516
|
+
notes: "notes";
|
|
517
|
+
}>>;
|
|
518
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
519
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
520
|
+
text: z.ZodString;
|
|
521
|
+
confidence: z.ZodEnum<{
|
|
522
|
+
high: "high";
|
|
523
|
+
medium: "medium";
|
|
524
|
+
low: "low";
|
|
525
|
+
}>;
|
|
526
|
+
mechanism: z.ZodEnum<{
|
|
527
|
+
deterministic: "deterministic";
|
|
528
|
+
model: "model";
|
|
529
|
+
}>;
|
|
530
|
+
}, z.core.$strip>>;
|
|
531
|
+
description: z.ZodOptional<z.ZodString>;
|
|
532
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
533
|
+
model: z.ZodString;
|
|
534
|
+
at: z.ZodString;
|
|
535
|
+
}, z.core.$strip>>;
|
|
369
536
|
}, z.core.$strip>>;
|
|
370
537
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
371
538
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
@@ -404,17 +571,29 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
404
571
|
widthPt: z.ZodNumber;
|
|
405
572
|
heightPt: z.ZodNumber;
|
|
406
573
|
}, z.core.$strip>>>;
|
|
574
|
+
bold: z.ZodOptional<z.ZodBoolean>;
|
|
575
|
+
italic: z.ZodOptional<z.ZodBoolean>;
|
|
576
|
+
underline: z.ZodOptional<z.ZodBoolean>;
|
|
577
|
+
strike: z.ZodOptional<z.ZodBoolean>;
|
|
578
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
579
|
+
sizePt: z.ZodOptional<z.ZodNumber>;
|
|
580
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
581
|
+
r: z.ZodNumber;
|
|
582
|
+
g: z.ZodNumber;
|
|
583
|
+
b: z.ZodNumber;
|
|
584
|
+
}, z.core.$strip>>;
|
|
585
|
+
text: z.ZodString;
|
|
407
586
|
}, z.core.$strip>>;
|
|
408
587
|
constructs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
409
588
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
410
589
|
kind: z.ZodLiteral<"contentControl">;
|
|
411
590
|
controlType: z.ZodEnum<{
|
|
591
|
+
date: "date";
|
|
412
592
|
richText: "richText";
|
|
413
593
|
plainText: "plainText";
|
|
414
594
|
checkbox: "checkbox";
|
|
415
595
|
dropDown: "dropDown";
|
|
416
596
|
comboBox: "comboBox";
|
|
417
|
-
date: "date";
|
|
418
597
|
picture: "picture";
|
|
419
598
|
repeatingSection: "repeatingSection";
|
|
420
599
|
button: "button";
|
|
@@ -883,7 +1062,45 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
|
|
|
883
1062
|
}, z.core.$strict>]>;
|
|
884
1063
|
}, z.core.$strip>;
|
|
885
1064
|
type ContentFloatPosition = z.infer<typeof ContentFloatPositionSchema>;
|
|
1065
|
+
declare const IMAGE_FORMATS: readonly ["png", "jpeg", "svg", "gif"];
|
|
1066
|
+
type ImageFormat = (typeof IMAGE_FORMATS)[number];
|
|
1067
|
+
declare const ContentImageOriginalSchema: z.ZodObject<{
|
|
1068
|
+
filter: z.ZodEnum<{
|
|
1069
|
+
jbig2: "jbig2";
|
|
1070
|
+
jpeg2000: "jpeg2000";
|
|
1071
|
+
}>;
|
|
1072
|
+
base64: z.ZodString;
|
|
1073
|
+
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
1074
|
+
}, z.core.$strip>;
|
|
1075
|
+
type ContentImageOriginal = z.infer<typeof ContentImageOriginalSchema>;
|
|
886
1076
|
declare const ContentImageBlockSchema: z.ZodObject<{
|
|
1077
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1078
|
+
body: "body";
|
|
1079
|
+
chart: "chart";
|
|
1080
|
+
diagram: "diagram";
|
|
1081
|
+
table: "table";
|
|
1082
|
+
image: "image";
|
|
1083
|
+
notes: "notes";
|
|
1084
|
+
}>>;
|
|
1085
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1086
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1087
|
+
text: z.ZodString;
|
|
1088
|
+
confidence: z.ZodEnum<{
|
|
1089
|
+
high: "high";
|
|
1090
|
+
medium: "medium";
|
|
1091
|
+
low: "low";
|
|
1092
|
+
}>;
|
|
1093
|
+
mechanism: z.ZodEnum<{
|
|
1094
|
+
deterministic: "deterministic";
|
|
1095
|
+
model: "model";
|
|
1096
|
+
}>;
|
|
1097
|
+
}, z.core.$strip>>;
|
|
1098
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1099
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1100
|
+
model: z.ZodString;
|
|
1101
|
+
at: z.ZodString;
|
|
1102
|
+
}, z.core.$strip>>;
|
|
1103
|
+
}, z.core.$strip>>;
|
|
887
1104
|
kind: z.ZodLiteral<"image">;
|
|
888
1105
|
format: z.ZodEnum<{
|
|
889
1106
|
png: "png";
|
|
@@ -895,6 +1112,16 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
895
1112
|
widthPt: z.ZodNumber;
|
|
896
1113
|
heightPt: z.ZodNumber;
|
|
897
1114
|
altText: z.ZodOptional<z.ZodString>;
|
|
1115
|
+
original: z.ZodOptional<z.ZodObject<{
|
|
1116
|
+
filter: z.ZodEnum<{
|
|
1117
|
+
jbig2: "jbig2";
|
|
1118
|
+
jpeg2000: "jpeg2000";
|
|
1119
|
+
}>;
|
|
1120
|
+
base64: z.ZodString;
|
|
1121
|
+
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
1122
|
+
}, z.core.$strip>>;
|
|
1123
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
1124
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
898
1125
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
899
1126
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
900
1127
|
relativeTo: z.ZodEnum<{
|
|
@@ -1014,6 +1241,33 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
1014
1241
|
}, z.core.$strip>;
|
|
1015
1242
|
type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
|
|
1016
1243
|
declare const ContentPageBreakSchema: z.ZodObject<{
|
|
1244
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1245
|
+
body: "body";
|
|
1246
|
+
chart: "chart";
|
|
1247
|
+
diagram: "diagram";
|
|
1248
|
+
table: "table";
|
|
1249
|
+
image: "image";
|
|
1250
|
+
notes: "notes";
|
|
1251
|
+
}>>;
|
|
1252
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1253
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1254
|
+
text: z.ZodString;
|
|
1255
|
+
confidence: z.ZodEnum<{
|
|
1256
|
+
high: "high";
|
|
1257
|
+
medium: "medium";
|
|
1258
|
+
low: "low";
|
|
1259
|
+
}>;
|
|
1260
|
+
mechanism: z.ZodEnum<{
|
|
1261
|
+
deterministic: "deterministic";
|
|
1262
|
+
model: "model";
|
|
1263
|
+
}>;
|
|
1264
|
+
}, z.core.$strip>>;
|
|
1265
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1266
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1267
|
+
model: z.ZodString;
|
|
1268
|
+
at: z.ZodString;
|
|
1269
|
+
}, z.core.$strip>>;
|
|
1270
|
+
}, z.core.$strip>>;
|
|
1017
1271
|
kind: z.ZodLiteral<"pageBreak">;
|
|
1018
1272
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
1019
1273
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -1050,12 +1304,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
|
|
|
1050
1304
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1051
1305
|
kind: z.ZodLiteral<"contentControl">;
|
|
1052
1306
|
controlType: z.ZodEnum<{
|
|
1307
|
+
date: "date";
|
|
1053
1308
|
richText: "richText";
|
|
1054
1309
|
plainText: "plainText";
|
|
1055
1310
|
checkbox: "checkbox";
|
|
1056
1311
|
dropDown: "dropDown";
|
|
1057
1312
|
comboBox: "comboBox";
|
|
1058
|
-
date: "date";
|
|
1059
1313
|
picture: "picture";
|
|
1060
1314
|
repeatingSection: "repeatingSection";
|
|
1061
1315
|
button: "button";
|
|
@@ -1299,6 +1553,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1299
1553
|
widthPt: z.ZodNumber;
|
|
1300
1554
|
heightPt: z.ZodNumber;
|
|
1301
1555
|
}, z.core.$strip>>>;
|
|
1556
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1557
|
+
body: "body";
|
|
1558
|
+
chart: "chart";
|
|
1559
|
+
diagram: "diagram";
|
|
1560
|
+
table: "table";
|
|
1561
|
+
image: "image";
|
|
1562
|
+
notes: "notes";
|
|
1563
|
+
}>>;
|
|
1564
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1565
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1566
|
+
text: z.ZodString;
|
|
1567
|
+
confidence: z.ZodEnum<{
|
|
1568
|
+
high: "high";
|
|
1569
|
+
medium: "medium";
|
|
1570
|
+
low: "low";
|
|
1571
|
+
}>;
|
|
1572
|
+
mechanism: z.ZodEnum<{
|
|
1573
|
+
deterministic: "deterministic";
|
|
1574
|
+
model: "model";
|
|
1575
|
+
}>;
|
|
1576
|
+
}, z.core.$strip>>;
|
|
1577
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1578
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1579
|
+
model: z.ZodString;
|
|
1580
|
+
at: z.ZodString;
|
|
1581
|
+
}, z.core.$strip>>;
|
|
1582
|
+
}, z.core.$strip>>;
|
|
1302
1583
|
objectKind: z.ZodEnum<{
|
|
1303
1584
|
formula: "formula";
|
|
1304
1585
|
wordprocessing: "wordprocessing";
|
|
@@ -1309,6 +1590,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1309
1590
|
}>;
|
|
1310
1591
|
document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1311
1592
|
sections: z.ZodArray<z.ZodObject<{
|
|
1593
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1594
|
+
body: "body";
|
|
1595
|
+
chart: "chart";
|
|
1596
|
+
diagram: "diagram";
|
|
1597
|
+
table: "table";
|
|
1598
|
+
image: "image";
|
|
1599
|
+
notes: "notes";
|
|
1600
|
+
}>>;
|
|
1601
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1602
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1603
|
+
text: z.ZodString;
|
|
1604
|
+
confidence: z.ZodEnum<{
|
|
1605
|
+
high: "high";
|
|
1606
|
+
medium: "medium";
|
|
1607
|
+
low: "low";
|
|
1608
|
+
}>;
|
|
1609
|
+
mechanism: z.ZodEnum<{
|
|
1610
|
+
deterministic: "deterministic";
|
|
1611
|
+
model: "model";
|
|
1612
|
+
}>;
|
|
1613
|
+
}, z.core.$strip>>;
|
|
1614
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1615
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1616
|
+
model: z.ZodString;
|
|
1617
|
+
at: z.ZodString;
|
|
1618
|
+
}, z.core.$strip>>;
|
|
1619
|
+
}, z.core.$strip>>;
|
|
1312
1620
|
pageSize: z.ZodObject<{
|
|
1313
1621
|
widthPt: z.ZodNumber;
|
|
1314
1622
|
heightPt: z.ZodNumber;
|
|
@@ -1426,11 +1734,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1426
1734
|
}, z.core.$strip>;
|
|
1427
1735
|
}, z.core.$strip>, z.ZodObject<{
|
|
1428
1736
|
slides: z.ZodArray<z.ZodObject<{
|
|
1737
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1738
|
+
body: "body";
|
|
1739
|
+
chart: "chart";
|
|
1740
|
+
diagram: "diagram";
|
|
1741
|
+
table: "table";
|
|
1742
|
+
image: "image";
|
|
1743
|
+
notes: "notes";
|
|
1744
|
+
}>>;
|
|
1745
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1746
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1747
|
+
text: z.ZodString;
|
|
1748
|
+
confidence: z.ZodEnum<{
|
|
1749
|
+
high: "high";
|
|
1750
|
+
medium: "medium";
|
|
1751
|
+
low: "low";
|
|
1752
|
+
}>;
|
|
1753
|
+
mechanism: z.ZodEnum<{
|
|
1754
|
+
deterministic: "deterministic";
|
|
1755
|
+
model: "model";
|
|
1756
|
+
}>;
|
|
1757
|
+
}, z.core.$strip>>;
|
|
1758
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1759
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1760
|
+
model: z.ZodString;
|
|
1761
|
+
at: z.ZodString;
|
|
1762
|
+
}, z.core.$strip>>;
|
|
1763
|
+
}, z.core.$strip>>;
|
|
1429
1764
|
size: z.ZodObject<{
|
|
1430
1765
|
widthPt: z.ZodNumber;
|
|
1431
1766
|
heightPt: z.ZodNumber;
|
|
1432
1767
|
}, z.core.$strip>;
|
|
1433
1768
|
shapes: z.ZodArray<z.ZodObject<{
|
|
1769
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
1770
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1771
|
+
body: "body";
|
|
1772
|
+
chart: "chart";
|
|
1773
|
+
diagram: "diagram";
|
|
1774
|
+
table: "table";
|
|
1775
|
+
image: "image";
|
|
1776
|
+
notes: "notes";
|
|
1777
|
+
}>>;
|
|
1778
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1779
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1780
|
+
text: z.ZodString;
|
|
1781
|
+
confidence: z.ZodEnum<{
|
|
1782
|
+
high: "high";
|
|
1783
|
+
medium: "medium";
|
|
1784
|
+
low: "low";
|
|
1785
|
+
}>;
|
|
1786
|
+
mechanism: z.ZodEnum<{
|
|
1787
|
+
deterministic: "deterministic";
|
|
1788
|
+
model: "model";
|
|
1789
|
+
}>;
|
|
1790
|
+
}, z.core.$strip>>;
|
|
1791
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1793
|
+
model: z.ZodString;
|
|
1794
|
+
at: z.ZodString;
|
|
1795
|
+
}, z.core.$strip>>;
|
|
1796
|
+
}, z.core.$strip>>;
|
|
1434
1797
|
name: z.ZodOptional<z.ZodString>;
|
|
1435
1798
|
frame: z.ZodObject<{
|
|
1436
1799
|
xPt: z.ZodNumber;
|
|
@@ -1474,7 +1837,6 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1474
1837
|
widthPt: z.ZodNumber;
|
|
1475
1838
|
heightPt: z.ZodNumber;
|
|
1476
1839
|
}, z.core.$strip>>>;
|
|
1477
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
1478
1840
|
}, z.core.$strip>>;
|
|
1479
1841
|
notes: z.ZodString;
|
|
1480
1842
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -1567,8 +1929,62 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1567
1929
|
}, z.core.$strip>;
|
|
1568
1930
|
}, z.core.$strip>, z.ZodObject<{
|
|
1569
1931
|
sheets: z.ZodArray<z.ZodObject<{
|
|
1932
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1933
|
+
body: "body";
|
|
1934
|
+
chart: "chart";
|
|
1935
|
+
diagram: "diagram";
|
|
1936
|
+
table: "table";
|
|
1937
|
+
image: "image";
|
|
1938
|
+
notes: "notes";
|
|
1939
|
+
}>>;
|
|
1940
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1941
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1942
|
+
text: z.ZodString;
|
|
1943
|
+
confidence: z.ZodEnum<{
|
|
1944
|
+
high: "high";
|
|
1945
|
+
medium: "medium";
|
|
1946
|
+
low: "low";
|
|
1947
|
+
}>;
|
|
1948
|
+
mechanism: z.ZodEnum<{
|
|
1949
|
+
deterministic: "deterministic";
|
|
1950
|
+
model: "model";
|
|
1951
|
+
}>;
|
|
1952
|
+
}, z.core.$strip>>;
|
|
1953
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1955
|
+
model: z.ZodString;
|
|
1956
|
+
at: z.ZodString;
|
|
1957
|
+
}, z.core.$strip>>;
|
|
1958
|
+
}, z.core.$strip>>;
|
|
1570
1959
|
name: z.ZodString;
|
|
1571
1960
|
cells: z.ZodArray<z.ZodObject<{
|
|
1961
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
1962
|
+
body: "body";
|
|
1963
|
+
chart: "chart";
|
|
1964
|
+
diagram: "diagram";
|
|
1965
|
+
table: "table";
|
|
1966
|
+
image: "image";
|
|
1967
|
+
notes: "notes";
|
|
1968
|
+
}>>;
|
|
1969
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
1970
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
1971
|
+
text: z.ZodString;
|
|
1972
|
+
confidence: z.ZodEnum<{
|
|
1973
|
+
high: "high";
|
|
1974
|
+
medium: "medium";
|
|
1975
|
+
low: "low";
|
|
1976
|
+
}>;
|
|
1977
|
+
mechanism: z.ZodEnum<{
|
|
1978
|
+
deterministic: "deterministic";
|
|
1979
|
+
model: "model";
|
|
1980
|
+
}>;
|
|
1981
|
+
}, z.core.$strip>>;
|
|
1982
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1983
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
1984
|
+
model: z.ZodString;
|
|
1985
|
+
at: z.ZodString;
|
|
1986
|
+
}, z.core.$strip>>;
|
|
1987
|
+
}, z.core.$strip>>;
|
|
1572
1988
|
row: z.ZodNumber;
|
|
1573
1989
|
column: z.ZodNumber;
|
|
1574
1990
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -1608,8 +2024,7 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1608
2024
|
formula: z.ZodOptional<z.ZodString>;
|
|
1609
2025
|
displayText: z.ZodString;
|
|
1610
2026
|
numberFormatCode: z.ZodOptional<z.ZodString>;
|
|
1611
|
-
|
|
1612
|
-
text: z.ZodString;
|
|
2027
|
+
font: z.ZodOptional<z.ZodObject<{
|
|
1613
2028
|
bold: z.ZodOptional<z.ZodBoolean>;
|
|
1614
2029
|
italic: z.ZodOptional<z.ZodBoolean>;
|
|
1615
2030
|
underline: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1621,6 +2036,35 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1621
2036
|
g: z.ZodNumber;
|
|
1622
2037
|
b: z.ZodNumber;
|
|
1623
2038
|
}, z.core.$strip>>;
|
|
2039
|
+
}, z.core.$strip>>;
|
|
2040
|
+
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2041
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
2042
|
+
body: "body";
|
|
2043
|
+
chart: "chart";
|
|
2044
|
+
diagram: "diagram";
|
|
2045
|
+
table: "table";
|
|
2046
|
+
image: "image";
|
|
2047
|
+
notes: "notes";
|
|
2048
|
+
}>>;
|
|
2049
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2050
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
text: z.ZodString;
|
|
2052
|
+
confidence: z.ZodEnum<{
|
|
2053
|
+
high: "high";
|
|
2054
|
+
medium: "medium";
|
|
2055
|
+
low: "low";
|
|
2056
|
+
}>;
|
|
2057
|
+
mechanism: z.ZodEnum<{
|
|
2058
|
+
deterministic: "deterministic";
|
|
2059
|
+
model: "model";
|
|
2060
|
+
}>;
|
|
2061
|
+
}, z.core.$strip>>;
|
|
2062
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2063
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2064
|
+
model: z.ZodString;
|
|
2065
|
+
at: z.ZodString;
|
|
2066
|
+
}, z.core.$strip>>;
|
|
2067
|
+
}, z.core.$strip>>;
|
|
1624
2068
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
1625
2069
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
1626
2070
|
superscript: "superscript";
|
|
@@ -1658,6 +2102,18 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1658
2102
|
widthPt: z.ZodNumber;
|
|
1659
2103
|
heightPt: z.ZodNumber;
|
|
1660
2104
|
}, z.core.$strip>>>;
|
|
2105
|
+
bold: z.ZodOptional<z.ZodBoolean>;
|
|
2106
|
+
italic: z.ZodOptional<z.ZodBoolean>;
|
|
2107
|
+
underline: z.ZodOptional<z.ZodBoolean>;
|
|
2108
|
+
strike: z.ZodOptional<z.ZodBoolean>;
|
|
2109
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
2110
|
+
sizePt: z.ZodOptional<z.ZodNumber>;
|
|
2111
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
2112
|
+
r: z.ZodNumber;
|
|
2113
|
+
g: z.ZodNumber;
|
|
2114
|
+
b: z.ZodNumber;
|
|
2115
|
+
}, z.core.$strip>>;
|
|
2116
|
+
text: z.ZodString;
|
|
1661
2117
|
}, z.core.$strip>>>;
|
|
1662
2118
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
1663
2119
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1881,6 +2337,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1881
2337
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1882
2338
|
}, z.core.$strip>>;
|
|
1883
2339
|
images: z.ZodArray<z.ZodObject<{
|
|
2340
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
2341
|
+
body: "body";
|
|
2342
|
+
chart: "chart";
|
|
2343
|
+
diagram: "diagram";
|
|
2344
|
+
table: "table";
|
|
2345
|
+
image: "image";
|
|
2346
|
+
notes: "notes";
|
|
2347
|
+
}>>;
|
|
2348
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
2349
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
2350
|
+
text: z.ZodString;
|
|
2351
|
+
confidence: z.ZodEnum<{
|
|
2352
|
+
high: "high";
|
|
2353
|
+
medium: "medium";
|
|
2354
|
+
low: "low";
|
|
2355
|
+
}>;
|
|
2356
|
+
mechanism: z.ZodEnum<{
|
|
2357
|
+
deterministic: "deterministic";
|
|
2358
|
+
model: "model";
|
|
2359
|
+
}>;
|
|
2360
|
+
}, z.core.$strip>>;
|
|
2361
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2362
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2363
|
+
model: z.ZodString;
|
|
2364
|
+
at: z.ZodString;
|
|
2365
|
+
}, z.core.$strip>>;
|
|
2366
|
+
}, z.core.$strip>>;
|
|
1884
2367
|
kind: z.ZodLiteral<"image">;
|
|
1885
2368
|
format: z.ZodEnum<{
|
|
1886
2369
|
png: "png";
|
|
@@ -1892,6 +2375,16 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1892
2375
|
widthPt: z.ZodNumber;
|
|
1893
2376
|
heightPt: z.ZodNumber;
|
|
1894
2377
|
altText: z.ZodOptional<z.ZodString>;
|
|
2378
|
+
original: z.ZodOptional<z.ZodObject<{
|
|
2379
|
+
filter: z.ZodEnum<{
|
|
2380
|
+
jbig2: "jbig2";
|
|
2381
|
+
jpeg2000: "jpeg2000";
|
|
2382
|
+
}>;
|
|
2383
|
+
base64: z.ZodString;
|
|
2384
|
+
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
2385
|
+
}, z.core.$strip>>;
|
|
2386
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
2387
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
1895
2388
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
1896
2389
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
1897
2390
|
relativeTo: z.ZodEnum<{
|
|
@@ -2065,9 +2558,9 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2065
2558
|
type: z.ZodEnum<{
|
|
2066
2559
|
date: "date";
|
|
2067
2560
|
custom: "custom";
|
|
2561
|
+
time: "time";
|
|
2068
2562
|
decimal: "decimal";
|
|
2069
2563
|
list: "list";
|
|
2070
|
-
time: "time";
|
|
2071
2564
|
whole: "whole";
|
|
2072
2565
|
textLength: "textLength";
|
|
2073
2566
|
}>;
|
|
@@ -2538,11 +3031,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2538
3031
|
stops: z.ZodArray<z.ZodObject<{
|
|
2539
3032
|
value: z.ZodObject<{
|
|
2540
3033
|
type: z.ZodEnum<{
|
|
2541
|
-
formula: "formula";
|
|
2542
|
-
percent: "percent";
|
|
2543
3034
|
num: "num";
|
|
2544
|
-
max: "max";
|
|
2545
3035
|
min: "min";
|
|
3036
|
+
max: "max";
|
|
3037
|
+
formula: "formula";
|
|
3038
|
+
percent: "percent";
|
|
2546
3039
|
percentile: "percentile";
|
|
2547
3040
|
}>;
|
|
2548
3041
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -2585,22 +3078,22 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2585
3078
|
}, z.core.$strip>, z.ZodObject<{
|
|
2586
3079
|
min: z.ZodObject<{
|
|
2587
3080
|
type: z.ZodEnum<{
|
|
2588
|
-
formula: "formula";
|
|
2589
|
-
percent: "percent";
|
|
2590
3081
|
num: "num";
|
|
2591
|
-
max: "max";
|
|
2592
3082
|
min: "min";
|
|
3083
|
+
max: "max";
|
|
3084
|
+
formula: "formula";
|
|
3085
|
+
percent: "percent";
|
|
2593
3086
|
percentile: "percentile";
|
|
2594
3087
|
}>;
|
|
2595
3088
|
value: z.ZodOptional<z.ZodString>;
|
|
2596
3089
|
}, z.core.$strip>;
|
|
2597
3090
|
max: z.ZodObject<{
|
|
2598
3091
|
type: z.ZodEnum<{
|
|
2599
|
-
formula: "formula";
|
|
2600
|
-
percent: "percent";
|
|
2601
3092
|
num: "num";
|
|
2602
|
-
max: "max";
|
|
2603
3093
|
min: "min";
|
|
3094
|
+
max: "max";
|
|
3095
|
+
formula: "formula";
|
|
3096
|
+
percent: "percent";
|
|
2604
3097
|
percentile: "percentile";
|
|
2605
3098
|
}>;
|
|
2606
3099
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -2644,11 +3137,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2644
3137
|
iconSetType: z.ZodString;
|
|
2645
3138
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
2646
3139
|
type: z.ZodEnum<{
|
|
2647
|
-
formula: "formula";
|
|
2648
|
-
percent: "percent";
|
|
2649
3140
|
num: "num";
|
|
2650
|
-
max: "max";
|
|
2651
3141
|
min: "min";
|
|
3142
|
+
max: "max";
|
|
3143
|
+
formula: "formula";
|
|
3144
|
+
percent: "percent";
|
|
2652
3145
|
percentile: "percentile";
|
|
2653
3146
|
}>;
|
|
2654
3147
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -2706,6 +3199,11 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2706
3199
|
xml: z.ZodString;
|
|
2707
3200
|
}, z.core.$strict>>;
|
|
2708
3201
|
}, z.core.$strip>>;
|
|
3202
|
+
names: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3203
|
+
name: z.ZodString;
|
|
3204
|
+
refersTo: z.ZodString;
|
|
3205
|
+
scopeSheetIndex: z.ZodOptional<z.ZodNumber>;
|
|
3206
|
+
}, z.core.$strip>>>;
|
|
2709
3207
|
symbolTable: z.ZodOptional<z.ZodObject<{
|
|
2710
3208
|
symbols: z.ZodArray<z.ZodObject<{
|
|
2711
3209
|
glyph: z.ZodString;
|
|
@@ -2775,11 +3273,66 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2775
3273
|
}, z.core.$strip>;
|
|
2776
3274
|
}, z.core.$strip>, z.ZodObject<{
|
|
2777
3275
|
pages: z.ZodArray<z.ZodObject<{
|
|
3276
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3277
|
+
body: "body";
|
|
3278
|
+
chart: "chart";
|
|
3279
|
+
diagram: "diagram";
|
|
3280
|
+
table: "table";
|
|
3281
|
+
image: "image";
|
|
3282
|
+
notes: "notes";
|
|
3283
|
+
}>>;
|
|
3284
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3285
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3286
|
+
text: z.ZodString;
|
|
3287
|
+
confidence: z.ZodEnum<{
|
|
3288
|
+
high: "high";
|
|
3289
|
+
medium: "medium";
|
|
3290
|
+
low: "low";
|
|
3291
|
+
}>;
|
|
3292
|
+
mechanism: z.ZodEnum<{
|
|
3293
|
+
deterministic: "deterministic";
|
|
3294
|
+
model: "model";
|
|
3295
|
+
}>;
|
|
3296
|
+
}, z.core.$strip>>;
|
|
3297
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3298
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3299
|
+
model: z.ZodString;
|
|
3300
|
+
at: z.ZodString;
|
|
3301
|
+
}, z.core.$strip>>;
|
|
3302
|
+
}, z.core.$strip>>;
|
|
2778
3303
|
size: z.ZodObject<{
|
|
2779
3304
|
widthPt: z.ZodNumber;
|
|
2780
3305
|
heightPt: z.ZodNumber;
|
|
2781
3306
|
}, z.core.$strip>;
|
|
2782
3307
|
shapes: z.ZodArray<z.ZodObject<{
|
|
3308
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3309
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3310
|
+
body: "body";
|
|
3311
|
+
chart: "chart";
|
|
3312
|
+
diagram: "diagram";
|
|
3313
|
+
table: "table";
|
|
3314
|
+
image: "image";
|
|
3315
|
+
notes: "notes";
|
|
3316
|
+
}>>;
|
|
3317
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3318
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3319
|
+
text: z.ZodString;
|
|
3320
|
+
confidence: z.ZodEnum<{
|
|
3321
|
+
high: "high";
|
|
3322
|
+
medium: "medium";
|
|
3323
|
+
low: "low";
|
|
3324
|
+
}>;
|
|
3325
|
+
mechanism: z.ZodEnum<{
|
|
3326
|
+
deterministic: "deterministic";
|
|
3327
|
+
model: "model";
|
|
3328
|
+
}>;
|
|
3329
|
+
}, z.core.$strip>>;
|
|
3330
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3331
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3332
|
+
model: z.ZodString;
|
|
3333
|
+
at: z.ZodString;
|
|
3334
|
+
}, z.core.$strip>>;
|
|
3335
|
+
}, z.core.$strip>>;
|
|
2783
3336
|
name: z.ZodOptional<z.ZodString>;
|
|
2784
3337
|
frame: z.ZodObject<{
|
|
2785
3338
|
xPt: z.ZodNumber;
|
|
@@ -2823,9 +3376,35 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2823
3376
|
widthPt: z.ZodNumber;
|
|
2824
3377
|
heightPt: z.ZodNumber;
|
|
2825
3378
|
}, z.core.$strip>>>;
|
|
2826
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
2827
3379
|
}, z.core.$strip>>;
|
|
2828
3380
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3381
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3382
|
+
body: "body";
|
|
3383
|
+
chart: "chart";
|
|
3384
|
+
diagram: "diagram";
|
|
3385
|
+
table: "table";
|
|
3386
|
+
image: "image";
|
|
3387
|
+
notes: "notes";
|
|
3388
|
+
}>>;
|
|
3389
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3390
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3391
|
+
text: z.ZodString;
|
|
3392
|
+
confidence: z.ZodEnum<{
|
|
3393
|
+
high: "high";
|
|
3394
|
+
medium: "medium";
|
|
3395
|
+
low: "low";
|
|
3396
|
+
}>;
|
|
3397
|
+
mechanism: z.ZodEnum<{
|
|
3398
|
+
deterministic: "deterministic";
|
|
3399
|
+
model: "model";
|
|
3400
|
+
}>;
|
|
3401
|
+
}, z.core.$strip>>;
|
|
3402
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3403
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3404
|
+
model: z.ZodString;
|
|
3405
|
+
at: z.ZodString;
|
|
3406
|
+
}, z.core.$strip>>;
|
|
3407
|
+
}, z.core.$strip>>;
|
|
2829
3408
|
kind: z.ZodLiteral<"rect">;
|
|
2830
3409
|
frame: z.ZodObject<{
|
|
2831
3410
|
xPt: z.ZodNumber;
|
|
@@ -2937,6 +3516,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2937
3516
|
heightPt: z.ZodNumber;
|
|
2938
3517
|
}, z.core.$strip>>>;
|
|
2939
3518
|
}, z.core.$strip>, z.ZodObject<{
|
|
3519
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3520
|
+
body: "body";
|
|
3521
|
+
chart: "chart";
|
|
3522
|
+
diagram: "diagram";
|
|
3523
|
+
table: "table";
|
|
3524
|
+
image: "image";
|
|
3525
|
+
notes: "notes";
|
|
3526
|
+
}>>;
|
|
3527
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3528
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3529
|
+
text: z.ZodString;
|
|
3530
|
+
confidence: z.ZodEnum<{
|
|
3531
|
+
high: "high";
|
|
3532
|
+
medium: "medium";
|
|
3533
|
+
low: "low";
|
|
3534
|
+
}>;
|
|
3535
|
+
mechanism: z.ZodEnum<{
|
|
3536
|
+
deterministic: "deterministic";
|
|
3537
|
+
model: "model";
|
|
3538
|
+
}>;
|
|
3539
|
+
}, z.core.$strip>>;
|
|
3540
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3541
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3542
|
+
model: z.ZodString;
|
|
3543
|
+
at: z.ZodString;
|
|
3544
|
+
}, z.core.$strip>>;
|
|
3545
|
+
}, z.core.$strip>>;
|
|
2940
3546
|
kind: z.ZodLiteral<"ellipse">;
|
|
2941
3547
|
frame: z.ZodObject<{
|
|
2942
3548
|
xPt: z.ZodNumber;
|
|
@@ -3048,6 +3654,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3048
3654
|
heightPt: z.ZodNumber;
|
|
3049
3655
|
}, z.core.$strip>>>;
|
|
3050
3656
|
}, z.core.$strip>, z.ZodObject<{
|
|
3657
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3658
|
+
body: "body";
|
|
3659
|
+
chart: "chart";
|
|
3660
|
+
diagram: "diagram";
|
|
3661
|
+
table: "table";
|
|
3662
|
+
image: "image";
|
|
3663
|
+
notes: "notes";
|
|
3664
|
+
}>>;
|
|
3665
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3666
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3667
|
+
text: z.ZodString;
|
|
3668
|
+
confidence: z.ZodEnum<{
|
|
3669
|
+
high: "high";
|
|
3670
|
+
medium: "medium";
|
|
3671
|
+
low: "low";
|
|
3672
|
+
}>;
|
|
3673
|
+
mechanism: z.ZodEnum<{
|
|
3674
|
+
deterministic: "deterministic";
|
|
3675
|
+
model: "model";
|
|
3676
|
+
}>;
|
|
3677
|
+
}, z.core.$strip>>;
|
|
3678
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3679
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3680
|
+
model: z.ZodString;
|
|
3681
|
+
at: z.ZodString;
|
|
3682
|
+
}, z.core.$strip>>;
|
|
3683
|
+
}, z.core.$strip>>;
|
|
3051
3684
|
kind: z.ZodLiteral<"line">;
|
|
3052
3685
|
from: z.ZodObject<{
|
|
3053
3686
|
xPt: z.ZodNumber;
|
|
@@ -3109,6 +3742,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3109
3742
|
heightPt: z.ZodNumber;
|
|
3110
3743
|
}, z.core.$strip>>>;
|
|
3111
3744
|
}, z.core.$strip>, z.ZodObject<{
|
|
3745
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
3746
|
+
body: "body";
|
|
3747
|
+
chart: "chart";
|
|
3748
|
+
diagram: "diagram";
|
|
3749
|
+
table: "table";
|
|
3750
|
+
image: "image";
|
|
3751
|
+
notes: "notes";
|
|
3752
|
+
}>>;
|
|
3753
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
3754
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
3755
|
+
text: z.ZodString;
|
|
3756
|
+
confidence: z.ZodEnum<{
|
|
3757
|
+
high: "high";
|
|
3758
|
+
medium: "medium";
|
|
3759
|
+
low: "low";
|
|
3760
|
+
}>;
|
|
3761
|
+
mechanism: z.ZodEnum<{
|
|
3762
|
+
deterministic: "deterministic";
|
|
3763
|
+
model: "model";
|
|
3764
|
+
}>;
|
|
3765
|
+
}, z.core.$strip>>;
|
|
3766
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3767
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
3768
|
+
model: z.ZodString;
|
|
3769
|
+
at: z.ZodString;
|
|
3770
|
+
}, z.core.$strip>>;
|
|
3771
|
+
}, z.core.$strip>>;
|
|
3112
3772
|
kind: z.ZodLiteral<"path">;
|
|
3113
3773
|
frame: z.ZodObject<{
|
|
3114
3774
|
xPt: z.ZodNumber;
|
|
@@ -3342,6 +4002,33 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
3342
4002
|
}, z.core.$strip>;
|
|
3343
4003
|
}, z.core.$strip>, z.ZodObject<{
|
|
3344
4004
|
formula: z.ZodObject<{
|
|
4005
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4006
|
+
body: "body";
|
|
4007
|
+
chart: "chart";
|
|
4008
|
+
diagram: "diagram";
|
|
4009
|
+
table: "table";
|
|
4010
|
+
image: "image";
|
|
4011
|
+
notes: "notes";
|
|
4012
|
+
}>>;
|
|
4013
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4014
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4015
|
+
text: z.ZodString;
|
|
4016
|
+
confidence: z.ZodEnum<{
|
|
4017
|
+
high: "high";
|
|
4018
|
+
medium: "medium";
|
|
4019
|
+
low: "low";
|
|
4020
|
+
}>;
|
|
4021
|
+
mechanism: z.ZodEnum<{
|
|
4022
|
+
deterministic: "deterministic";
|
|
4023
|
+
model: "model";
|
|
4024
|
+
}>;
|
|
4025
|
+
}, z.core.$strip>>;
|
|
4026
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4027
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4028
|
+
model: z.ZodString;
|
|
4029
|
+
at: z.ZodString;
|
|
4030
|
+
}, z.core.$strip>>;
|
|
4031
|
+
}, z.core.$strip>>;
|
|
3345
4032
|
mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
|
|
3346
4033
|
starMath: z.ZodOptional<z.ZodString>;
|
|
3347
4034
|
presentation: z.ZodOptional<z.ZodObject<{
|
|
@@ -3712,6 +4399,33 @@ declare function unrecognizedFillKind(fill: {
|
|
|
3712
4399
|
kind?: unknown;
|
|
3713
4400
|
}): string;
|
|
3714
4401
|
declare const ContentTableCellSchema: z.ZodObject<{
|
|
4402
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4403
|
+
body: "body";
|
|
4404
|
+
chart: "chart";
|
|
4405
|
+
diagram: "diagram";
|
|
4406
|
+
table: "table";
|
|
4407
|
+
image: "image";
|
|
4408
|
+
notes: "notes";
|
|
4409
|
+
}>>;
|
|
4410
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4411
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4412
|
+
text: z.ZodString;
|
|
4413
|
+
confidence: z.ZodEnum<{
|
|
4414
|
+
high: "high";
|
|
4415
|
+
medium: "medium";
|
|
4416
|
+
low: "low";
|
|
4417
|
+
}>;
|
|
4418
|
+
mechanism: z.ZodEnum<{
|
|
4419
|
+
deterministic: "deterministic";
|
|
4420
|
+
model: "model";
|
|
4421
|
+
}>;
|
|
4422
|
+
}, z.core.$strip>>;
|
|
4423
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4424
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4425
|
+
model: z.ZodString;
|
|
4426
|
+
at: z.ZodString;
|
|
4427
|
+
}, z.core.$strip>>;
|
|
4428
|
+
}, z.core.$strip>>;
|
|
3715
4429
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3716
4430
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
3717
4431
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3912,6 +4626,33 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
3912
4626
|
}, z.core.$strip>;
|
|
3913
4627
|
declare const ContentTableRowSchema: z.ZodObject<{
|
|
3914
4628
|
cells: z.ZodArray<z.ZodObject<{
|
|
4629
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4630
|
+
body: "body";
|
|
4631
|
+
chart: "chart";
|
|
4632
|
+
diagram: "diagram";
|
|
4633
|
+
table: "table";
|
|
4634
|
+
image: "image";
|
|
4635
|
+
notes: "notes";
|
|
4636
|
+
}>>;
|
|
4637
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4638
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4639
|
+
text: z.ZodString;
|
|
4640
|
+
confidence: z.ZodEnum<{
|
|
4641
|
+
high: "high";
|
|
4642
|
+
medium: "medium";
|
|
4643
|
+
low: "low";
|
|
4644
|
+
}>;
|
|
4645
|
+
mechanism: z.ZodEnum<{
|
|
4646
|
+
deterministic: "deterministic";
|
|
4647
|
+
model: "model";
|
|
4648
|
+
}>;
|
|
4649
|
+
}, z.core.$strip>>;
|
|
4650
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4651
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4652
|
+
model: z.ZodString;
|
|
4653
|
+
at: z.ZodString;
|
|
4654
|
+
}, z.core.$strip>>;
|
|
4655
|
+
}, z.core.$strip>>;
|
|
3915
4656
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
3916
4657
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
3917
4658
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4117,9 +4858,63 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4117
4858
|
}>>;
|
|
4118
4859
|
}, z.core.$strip>;
|
|
4119
4860
|
declare const ContentTableSchema: z.ZodObject<{
|
|
4861
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4862
|
+
body: "body";
|
|
4863
|
+
chart: "chart";
|
|
4864
|
+
diagram: "diagram";
|
|
4865
|
+
table: "table";
|
|
4866
|
+
image: "image";
|
|
4867
|
+
notes: "notes";
|
|
4868
|
+
}>>;
|
|
4869
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4870
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4871
|
+
text: z.ZodString;
|
|
4872
|
+
confidence: z.ZodEnum<{
|
|
4873
|
+
high: "high";
|
|
4874
|
+
medium: "medium";
|
|
4875
|
+
low: "low";
|
|
4876
|
+
}>;
|
|
4877
|
+
mechanism: z.ZodEnum<{
|
|
4878
|
+
deterministic: "deterministic";
|
|
4879
|
+
model: "model";
|
|
4880
|
+
}>;
|
|
4881
|
+
}, z.core.$strip>>;
|
|
4882
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4883
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4884
|
+
model: z.ZodString;
|
|
4885
|
+
at: z.ZodString;
|
|
4886
|
+
}, z.core.$strip>>;
|
|
4887
|
+
}, z.core.$strip>>;
|
|
4120
4888
|
kind: z.ZodLiteral<"table">;
|
|
4121
4889
|
rows: z.ZodArray<z.ZodObject<{
|
|
4122
4890
|
cells: z.ZodArray<z.ZodObject<{
|
|
4891
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
4892
|
+
body: "body";
|
|
4893
|
+
chart: "chart";
|
|
4894
|
+
diagram: "diagram";
|
|
4895
|
+
table: "table";
|
|
4896
|
+
image: "image";
|
|
4897
|
+
notes: "notes";
|
|
4898
|
+
}>>;
|
|
4899
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
4900
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
4901
|
+
text: z.ZodString;
|
|
4902
|
+
confidence: z.ZodEnum<{
|
|
4903
|
+
high: "high";
|
|
4904
|
+
medium: "medium";
|
|
4905
|
+
low: "low";
|
|
4906
|
+
}>;
|
|
4907
|
+
mechanism: z.ZodEnum<{
|
|
4908
|
+
deterministic: "deterministic";
|
|
4909
|
+
model: "model";
|
|
4910
|
+
}>;
|
|
4911
|
+
}, z.core.$strip>>;
|
|
4912
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4913
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
4914
|
+
model: z.ZodString;
|
|
4915
|
+
at: z.ZodString;
|
|
4916
|
+
}, z.core.$strip>>;
|
|
4917
|
+
}, z.core.$strip>>;
|
|
4123
4918
|
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
4124
4919
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
4125
4920
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4362,6 +5157,33 @@ declare const ContentPageFurnitureSchema: z.ZodObject<{
|
|
|
4362
5157
|
}, z.core.$strip>;
|
|
4363
5158
|
type ContentPageFurniture = z.infer<typeof ContentPageFurnitureSchema>;
|
|
4364
5159
|
declare const ContentSectionSchema: z.ZodObject<{
|
|
5160
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5161
|
+
body: "body";
|
|
5162
|
+
chart: "chart";
|
|
5163
|
+
diagram: "diagram";
|
|
5164
|
+
table: "table";
|
|
5165
|
+
image: "image";
|
|
5166
|
+
notes: "notes";
|
|
5167
|
+
}>>;
|
|
5168
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5169
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5170
|
+
text: z.ZodString;
|
|
5171
|
+
confidence: z.ZodEnum<{
|
|
5172
|
+
high: "high";
|
|
5173
|
+
medium: "medium";
|
|
5174
|
+
low: "low";
|
|
5175
|
+
}>;
|
|
5176
|
+
mechanism: z.ZodEnum<{
|
|
5177
|
+
deterministic: "deterministic";
|
|
5178
|
+
model: "model";
|
|
5179
|
+
}>;
|
|
5180
|
+
}, z.core.$strip>>;
|
|
5181
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5183
|
+
model: z.ZodString;
|
|
5184
|
+
at: z.ZodString;
|
|
5185
|
+
}, z.core.$strip>>;
|
|
5186
|
+
}, z.core.$strip>>;
|
|
4365
5187
|
pageSize: z.ZodObject<{
|
|
4366
5188
|
widthPt: z.ZodNumber;
|
|
4367
5189
|
heightPt: z.ZodNumber;
|
|
@@ -4412,6 +5234,34 @@ declare const ContentSectionSchema: z.ZodObject<{
|
|
|
4412
5234
|
}, z.core.$strip>;
|
|
4413
5235
|
type ContentSection = z.infer<typeof ContentSectionSchema>;
|
|
4414
5236
|
declare const ContentShapeSchema: z.ZodObject<{
|
|
5237
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5238
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5239
|
+
body: "body";
|
|
5240
|
+
chart: "chart";
|
|
5241
|
+
diagram: "diagram";
|
|
5242
|
+
table: "table";
|
|
5243
|
+
image: "image";
|
|
5244
|
+
notes: "notes";
|
|
5245
|
+
}>>;
|
|
5246
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5247
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5248
|
+
text: z.ZodString;
|
|
5249
|
+
confidence: z.ZodEnum<{
|
|
5250
|
+
high: "high";
|
|
5251
|
+
medium: "medium";
|
|
5252
|
+
low: "low";
|
|
5253
|
+
}>;
|
|
5254
|
+
mechanism: z.ZodEnum<{
|
|
5255
|
+
deterministic: "deterministic";
|
|
5256
|
+
model: "model";
|
|
5257
|
+
}>;
|
|
5258
|
+
}, z.core.$strip>>;
|
|
5259
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5260
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5261
|
+
model: z.ZodString;
|
|
5262
|
+
at: z.ZodString;
|
|
5263
|
+
}, z.core.$strip>>;
|
|
5264
|
+
}, z.core.$strip>>;
|
|
4415
5265
|
name: z.ZodOptional<z.ZodString>;
|
|
4416
5266
|
frame: z.ZodObject<{
|
|
4417
5267
|
xPt: z.ZodNumber;
|
|
@@ -4455,15 +5305,69 @@ declare const ContentShapeSchema: z.ZodObject<{
|
|
|
4455
5305
|
widthPt: z.ZodNumber;
|
|
4456
5306
|
heightPt: z.ZodNumber;
|
|
4457
5307
|
}, z.core.$strip>>>;
|
|
4458
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
4459
5308
|
}, z.core.$strip>;
|
|
4460
5309
|
type ContentShape = z.infer<typeof ContentShapeSchema>;
|
|
4461
5310
|
declare const ContentSlideSchema: z.ZodObject<{
|
|
5311
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5312
|
+
body: "body";
|
|
5313
|
+
chart: "chart";
|
|
5314
|
+
diagram: "diagram";
|
|
5315
|
+
table: "table";
|
|
5316
|
+
image: "image";
|
|
5317
|
+
notes: "notes";
|
|
5318
|
+
}>>;
|
|
5319
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5320
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5321
|
+
text: z.ZodString;
|
|
5322
|
+
confidence: z.ZodEnum<{
|
|
5323
|
+
high: "high";
|
|
5324
|
+
medium: "medium";
|
|
5325
|
+
low: "low";
|
|
5326
|
+
}>;
|
|
5327
|
+
mechanism: z.ZodEnum<{
|
|
5328
|
+
deterministic: "deterministic";
|
|
5329
|
+
model: "model";
|
|
5330
|
+
}>;
|
|
5331
|
+
}, z.core.$strip>>;
|
|
5332
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5333
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5334
|
+
model: z.ZodString;
|
|
5335
|
+
at: z.ZodString;
|
|
5336
|
+
}, z.core.$strip>>;
|
|
5337
|
+
}, z.core.$strip>>;
|
|
4462
5338
|
size: z.ZodObject<{
|
|
4463
5339
|
widthPt: z.ZodNumber;
|
|
4464
5340
|
heightPt: z.ZodNumber;
|
|
4465
5341
|
}, z.core.$strip>;
|
|
4466
5342
|
shapes: z.ZodArray<z.ZodObject<{
|
|
5343
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
5344
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5345
|
+
body: "body";
|
|
5346
|
+
chart: "chart";
|
|
5347
|
+
diagram: "diagram";
|
|
5348
|
+
table: "table";
|
|
5349
|
+
image: "image";
|
|
5350
|
+
notes: "notes";
|
|
5351
|
+
}>>;
|
|
5352
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5353
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5354
|
+
text: z.ZodString;
|
|
5355
|
+
confidence: z.ZodEnum<{
|
|
5356
|
+
high: "high";
|
|
5357
|
+
medium: "medium";
|
|
5358
|
+
low: "low";
|
|
5359
|
+
}>;
|
|
5360
|
+
mechanism: z.ZodEnum<{
|
|
5361
|
+
deterministic: "deterministic";
|
|
5362
|
+
model: "model";
|
|
5363
|
+
}>;
|
|
5364
|
+
}, z.core.$strip>>;
|
|
5365
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5366
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5367
|
+
model: z.ZodString;
|
|
5368
|
+
at: z.ZodString;
|
|
5369
|
+
}, z.core.$strip>>;
|
|
5370
|
+
}, z.core.$strip>>;
|
|
4467
5371
|
name: z.ZodOptional<z.ZodString>;
|
|
4468
5372
|
frame: z.ZodObject<{
|
|
4469
5373
|
xPt: z.ZodNumber;
|
|
@@ -4507,7 +5411,6 @@ declare const ContentSlideSchema: z.ZodObject<{
|
|
|
4507
5411
|
widthPt: z.ZodNumber;
|
|
4508
5412
|
heightPt: z.ZodNumber;
|
|
4509
5413
|
}, z.core.$strip>>>;
|
|
4510
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
4511
5414
|
}, z.core.$strip>>;
|
|
4512
5415
|
notes: z.ZodString;
|
|
4513
5416
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -4580,6 +5483,33 @@ declare const ContentSheetCellCommentSchema: z.ZodObject<{
|
|
|
4580
5483
|
}, z.core.$strip>;
|
|
4581
5484
|
type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
|
|
4582
5485
|
declare const ContentSheetCellSchema: z.ZodObject<{
|
|
5486
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5487
|
+
body: "body";
|
|
5488
|
+
chart: "chart";
|
|
5489
|
+
diagram: "diagram";
|
|
5490
|
+
table: "table";
|
|
5491
|
+
image: "image";
|
|
5492
|
+
notes: "notes";
|
|
5493
|
+
}>>;
|
|
5494
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5495
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5496
|
+
text: z.ZodString;
|
|
5497
|
+
confidence: z.ZodEnum<{
|
|
5498
|
+
high: "high";
|
|
5499
|
+
medium: "medium";
|
|
5500
|
+
low: "low";
|
|
5501
|
+
}>;
|
|
5502
|
+
mechanism: z.ZodEnum<{
|
|
5503
|
+
deterministic: "deterministic";
|
|
5504
|
+
model: "model";
|
|
5505
|
+
}>;
|
|
5506
|
+
}, z.core.$strip>>;
|
|
5507
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5508
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5509
|
+
model: z.ZodString;
|
|
5510
|
+
at: z.ZodString;
|
|
5511
|
+
}, z.core.$strip>>;
|
|
5512
|
+
}, z.core.$strip>>;
|
|
4583
5513
|
row: z.ZodNumber;
|
|
4584
5514
|
column: z.ZodNumber;
|
|
4585
5515
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -4619,8 +5549,7 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
4619
5549
|
formula: z.ZodOptional<z.ZodString>;
|
|
4620
5550
|
displayText: z.ZodString;
|
|
4621
5551
|
numberFormatCode: z.ZodOptional<z.ZodString>;
|
|
4622
|
-
|
|
4623
|
-
text: z.ZodString;
|
|
5552
|
+
font: z.ZodOptional<z.ZodObject<{
|
|
4624
5553
|
bold: z.ZodOptional<z.ZodBoolean>;
|
|
4625
5554
|
italic: z.ZodOptional<z.ZodBoolean>;
|
|
4626
5555
|
underline: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4632,6 +5561,35 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
4632
5561
|
g: z.ZodNumber;
|
|
4633
5562
|
b: z.ZodNumber;
|
|
4634
5563
|
}, z.core.$strip>>;
|
|
5564
|
+
}, z.core.$strip>>;
|
|
5565
|
+
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5566
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
5567
|
+
body: "body";
|
|
5568
|
+
chart: "chart";
|
|
5569
|
+
diagram: "diagram";
|
|
5570
|
+
table: "table";
|
|
5571
|
+
image: "image";
|
|
5572
|
+
notes: "notes";
|
|
5573
|
+
}>>;
|
|
5574
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
5575
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
5576
|
+
text: z.ZodString;
|
|
5577
|
+
confidence: z.ZodEnum<{
|
|
5578
|
+
high: "high";
|
|
5579
|
+
medium: "medium";
|
|
5580
|
+
low: "low";
|
|
5581
|
+
}>;
|
|
5582
|
+
mechanism: z.ZodEnum<{
|
|
5583
|
+
deterministic: "deterministic";
|
|
5584
|
+
model: "model";
|
|
5585
|
+
}>;
|
|
5586
|
+
}, z.core.$strip>>;
|
|
5587
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5588
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
5589
|
+
model: z.ZodString;
|
|
5590
|
+
at: z.ZodString;
|
|
5591
|
+
}, z.core.$strip>>;
|
|
5592
|
+
}, z.core.$strip>>;
|
|
4635
5593
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
4636
5594
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4637
5595
|
superscript: "superscript";
|
|
@@ -4669,6 +5627,18 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
4669
5627
|
widthPt: z.ZodNumber;
|
|
4670
5628
|
heightPt: z.ZodNumber;
|
|
4671
5629
|
}, z.core.$strip>>>;
|
|
5630
|
+
bold: z.ZodOptional<z.ZodBoolean>;
|
|
5631
|
+
italic: z.ZodOptional<z.ZodBoolean>;
|
|
5632
|
+
underline: z.ZodOptional<z.ZodBoolean>;
|
|
5633
|
+
strike: z.ZodOptional<z.ZodBoolean>;
|
|
5634
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
5635
|
+
sizePt: z.ZodOptional<z.ZodNumber>;
|
|
5636
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
5637
|
+
r: z.ZodNumber;
|
|
5638
|
+
g: z.ZodNumber;
|
|
5639
|
+
b: z.ZodNumber;
|
|
5640
|
+
}, z.core.$strip>>;
|
|
5641
|
+
text: z.ZodString;
|
|
4672
5642
|
}, z.core.$strip>>>;
|
|
4673
5643
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
4674
5644
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4969,9 +5939,9 @@ type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
|
|
|
4969
5939
|
declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
|
|
4970
5940
|
date: "date";
|
|
4971
5941
|
custom: "custom";
|
|
5942
|
+
time: "time";
|
|
4972
5943
|
decimal: "decimal";
|
|
4973
5944
|
list: "list";
|
|
4974
|
-
time: "time";
|
|
4975
5945
|
whole: "whole";
|
|
4976
5946
|
textLength: "textLength";
|
|
4977
5947
|
}>;
|
|
@@ -4986,9 +5956,9 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
|
|
|
4986
5956
|
type: z.ZodEnum<{
|
|
4987
5957
|
date: "date";
|
|
4988
5958
|
custom: "custom";
|
|
5959
|
+
time: "time";
|
|
4989
5960
|
decimal: "decimal";
|
|
4990
5961
|
list: "list";
|
|
4991
|
-
time: "time";
|
|
4992
5962
|
whole: "whole";
|
|
4993
5963
|
textLength: "textLength";
|
|
4994
5964
|
}>;
|
|
@@ -5073,11 +6043,11 @@ declare const ContentSheetConditionalFormatStyleSchema: z.ZodObject<{
|
|
|
5073
6043
|
type ContentSheetConditionalFormatStyle = z.infer<typeof ContentSheetConditionalFormatStyleSchema>;
|
|
5074
6044
|
declare const ContentSheetConditionalFormatValueSchema: z.ZodObject<{
|
|
5075
6045
|
type: z.ZodEnum<{
|
|
5076
|
-
formula: "formula";
|
|
5077
|
-
percent: "percent";
|
|
5078
6046
|
num: "num";
|
|
5079
|
-
max: "max";
|
|
5080
6047
|
min: "min";
|
|
6048
|
+
max: "max";
|
|
6049
|
+
formula: "formula";
|
|
6050
|
+
percent: "percent";
|
|
5081
6051
|
percentile: "percentile";
|
|
5082
6052
|
}>;
|
|
5083
6053
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5505,11 +6475,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5505
6475
|
stops: z.ZodArray<z.ZodObject<{
|
|
5506
6476
|
value: z.ZodObject<{
|
|
5507
6477
|
type: z.ZodEnum<{
|
|
5508
|
-
formula: "formula";
|
|
5509
|
-
percent: "percent";
|
|
5510
6478
|
num: "num";
|
|
5511
|
-
max: "max";
|
|
5512
6479
|
min: "min";
|
|
6480
|
+
max: "max";
|
|
6481
|
+
formula: "formula";
|
|
6482
|
+
percent: "percent";
|
|
5513
6483
|
percentile: "percentile";
|
|
5514
6484
|
}>;
|
|
5515
6485
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5552,22 +6522,22 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5552
6522
|
}, z.core.$strip>, z.ZodObject<{
|
|
5553
6523
|
min: z.ZodObject<{
|
|
5554
6524
|
type: z.ZodEnum<{
|
|
5555
|
-
formula: "formula";
|
|
5556
|
-
percent: "percent";
|
|
5557
6525
|
num: "num";
|
|
5558
|
-
max: "max";
|
|
5559
6526
|
min: "min";
|
|
6527
|
+
max: "max";
|
|
6528
|
+
formula: "formula";
|
|
6529
|
+
percent: "percent";
|
|
5560
6530
|
percentile: "percentile";
|
|
5561
6531
|
}>;
|
|
5562
6532
|
value: z.ZodOptional<z.ZodString>;
|
|
5563
6533
|
}, z.core.$strip>;
|
|
5564
6534
|
max: z.ZodObject<{
|
|
5565
6535
|
type: z.ZodEnum<{
|
|
5566
|
-
formula: "formula";
|
|
5567
|
-
percent: "percent";
|
|
5568
6536
|
num: "num";
|
|
5569
|
-
max: "max";
|
|
5570
6537
|
min: "min";
|
|
6538
|
+
max: "max";
|
|
6539
|
+
formula: "formula";
|
|
6540
|
+
percent: "percent";
|
|
5571
6541
|
percentile: "percentile";
|
|
5572
6542
|
}>;
|
|
5573
6543
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5611,11 +6581,11 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5611
6581
|
iconSetType: z.ZodString;
|
|
5612
6582
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
5613
6583
|
type: z.ZodEnum<{
|
|
5614
|
-
formula: "formula";
|
|
5615
|
-
percent: "percent";
|
|
5616
6584
|
num: "num";
|
|
5617
|
-
max: "max";
|
|
5618
6585
|
min: "min";
|
|
6586
|
+
max: "max";
|
|
6587
|
+
formula: "formula";
|
|
6588
|
+
percent: "percent";
|
|
5619
6589
|
percentile: "percentile";
|
|
5620
6590
|
}>;
|
|
5621
6591
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5654,6 +6624,33 @@ declare const ContentSheetConditionalFormatSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
5654
6624
|
}, z.core.$strip>], "type">;
|
|
5655
6625
|
type ContentSheetConditionalFormat = z.infer<typeof ContentSheetConditionalFormatSchema>;
|
|
5656
6626
|
declare const ContentSheetImageSchema: z.ZodObject<{
|
|
6627
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6628
|
+
body: "body";
|
|
6629
|
+
chart: "chart";
|
|
6630
|
+
diagram: "diagram";
|
|
6631
|
+
table: "table";
|
|
6632
|
+
image: "image";
|
|
6633
|
+
notes: "notes";
|
|
6634
|
+
}>>;
|
|
6635
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6636
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6637
|
+
text: z.ZodString;
|
|
6638
|
+
confidence: z.ZodEnum<{
|
|
6639
|
+
high: "high";
|
|
6640
|
+
medium: "medium";
|
|
6641
|
+
low: "low";
|
|
6642
|
+
}>;
|
|
6643
|
+
mechanism: z.ZodEnum<{
|
|
6644
|
+
deterministic: "deterministic";
|
|
6645
|
+
model: "model";
|
|
6646
|
+
}>;
|
|
6647
|
+
}, z.core.$strip>>;
|
|
6648
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6649
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6650
|
+
model: z.ZodString;
|
|
6651
|
+
at: z.ZodString;
|
|
6652
|
+
}, z.core.$strip>>;
|
|
6653
|
+
}, z.core.$strip>>;
|
|
5657
6654
|
kind: z.ZodLiteral<"image">;
|
|
5658
6655
|
format: z.ZodEnum<{
|
|
5659
6656
|
png: "png";
|
|
@@ -5665,6 +6662,16 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5665
6662
|
widthPt: z.ZodNumber;
|
|
5666
6663
|
heightPt: z.ZodNumber;
|
|
5667
6664
|
altText: z.ZodOptional<z.ZodString>;
|
|
6665
|
+
original: z.ZodOptional<z.ZodObject<{
|
|
6666
|
+
filter: z.ZodEnum<{
|
|
6667
|
+
jbig2: "jbig2";
|
|
6668
|
+
jpeg2000: "jpeg2000";
|
|
6669
|
+
}>;
|
|
6670
|
+
base64: z.ZodString;
|
|
6671
|
+
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
6672
|
+
}, z.core.$strip>>;
|
|
6673
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
6674
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
5668
6675
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
5669
6676
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
5670
6677
|
relativeTo: z.ZodEnum<{
|
|
@@ -5788,8 +6795,62 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5788
6795
|
}, z.core.$strip>;
|
|
5789
6796
|
type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
|
|
5790
6797
|
declare const ContentSheetSchema: z.ZodObject<{
|
|
6798
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6799
|
+
body: "body";
|
|
6800
|
+
chart: "chart";
|
|
6801
|
+
diagram: "diagram";
|
|
6802
|
+
table: "table";
|
|
6803
|
+
image: "image";
|
|
6804
|
+
notes: "notes";
|
|
6805
|
+
}>>;
|
|
6806
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6807
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6808
|
+
text: z.ZodString;
|
|
6809
|
+
confidence: z.ZodEnum<{
|
|
6810
|
+
high: "high";
|
|
6811
|
+
medium: "medium";
|
|
6812
|
+
low: "low";
|
|
6813
|
+
}>;
|
|
6814
|
+
mechanism: z.ZodEnum<{
|
|
6815
|
+
deterministic: "deterministic";
|
|
6816
|
+
model: "model";
|
|
6817
|
+
}>;
|
|
6818
|
+
}, z.core.$strip>>;
|
|
6819
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6820
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6821
|
+
model: z.ZodString;
|
|
6822
|
+
at: z.ZodString;
|
|
6823
|
+
}, z.core.$strip>>;
|
|
6824
|
+
}, z.core.$strip>>;
|
|
5791
6825
|
name: z.ZodString;
|
|
5792
6826
|
cells: z.ZodArray<z.ZodObject<{
|
|
6827
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6828
|
+
body: "body";
|
|
6829
|
+
chart: "chart";
|
|
6830
|
+
diagram: "diagram";
|
|
6831
|
+
table: "table";
|
|
6832
|
+
image: "image";
|
|
6833
|
+
notes: "notes";
|
|
6834
|
+
}>>;
|
|
6835
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6836
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6837
|
+
text: z.ZodString;
|
|
6838
|
+
confidence: z.ZodEnum<{
|
|
6839
|
+
high: "high";
|
|
6840
|
+
medium: "medium";
|
|
6841
|
+
low: "low";
|
|
6842
|
+
}>;
|
|
6843
|
+
mechanism: z.ZodEnum<{
|
|
6844
|
+
deterministic: "deterministic";
|
|
6845
|
+
model: "model";
|
|
6846
|
+
}>;
|
|
6847
|
+
}, z.core.$strip>>;
|
|
6848
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6849
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6850
|
+
model: z.ZodString;
|
|
6851
|
+
at: z.ZodString;
|
|
6852
|
+
}, z.core.$strip>>;
|
|
6853
|
+
}, z.core.$strip>>;
|
|
5793
6854
|
row: z.ZodNumber;
|
|
5794
6855
|
column: z.ZodNumber;
|
|
5795
6856
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -5829,8 +6890,7 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
5829
6890
|
formula: z.ZodOptional<z.ZodString>;
|
|
5830
6891
|
displayText: z.ZodString;
|
|
5831
6892
|
numberFormatCode: z.ZodOptional<z.ZodString>;
|
|
5832
|
-
|
|
5833
|
-
text: z.ZodString;
|
|
6893
|
+
font: z.ZodOptional<z.ZodObject<{
|
|
5834
6894
|
bold: z.ZodOptional<z.ZodBoolean>;
|
|
5835
6895
|
italic: z.ZodOptional<z.ZodBoolean>;
|
|
5836
6896
|
underline: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5842,6 +6902,35 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
5842
6902
|
g: z.ZodNumber;
|
|
5843
6903
|
b: z.ZodNumber;
|
|
5844
6904
|
}, z.core.$strip>>;
|
|
6905
|
+
}, z.core.$strip>>;
|
|
6906
|
+
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6907
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
6908
|
+
body: "body";
|
|
6909
|
+
chart: "chart";
|
|
6910
|
+
diagram: "diagram";
|
|
6911
|
+
table: "table";
|
|
6912
|
+
image: "image";
|
|
6913
|
+
notes: "notes";
|
|
6914
|
+
}>>;
|
|
6915
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
6916
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
6917
|
+
text: z.ZodString;
|
|
6918
|
+
confidence: z.ZodEnum<{
|
|
6919
|
+
high: "high";
|
|
6920
|
+
medium: "medium";
|
|
6921
|
+
low: "low";
|
|
6922
|
+
}>;
|
|
6923
|
+
mechanism: z.ZodEnum<{
|
|
6924
|
+
deterministic: "deterministic";
|
|
6925
|
+
model: "model";
|
|
6926
|
+
}>;
|
|
6927
|
+
}, z.core.$strip>>;
|
|
6928
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6929
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
6930
|
+
model: z.ZodString;
|
|
6931
|
+
at: z.ZodString;
|
|
6932
|
+
}, z.core.$strip>>;
|
|
6933
|
+
}, z.core.$strip>>;
|
|
5845
6934
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
5846
6935
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
5847
6936
|
superscript: "superscript";
|
|
@@ -5879,6 +6968,18 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
5879
6968
|
widthPt: z.ZodNumber;
|
|
5880
6969
|
heightPt: z.ZodNumber;
|
|
5881
6970
|
}, z.core.$strip>>>;
|
|
6971
|
+
bold: z.ZodOptional<z.ZodBoolean>;
|
|
6972
|
+
italic: z.ZodOptional<z.ZodBoolean>;
|
|
6973
|
+
underline: z.ZodOptional<z.ZodBoolean>;
|
|
6974
|
+
strike: z.ZodOptional<z.ZodBoolean>;
|
|
6975
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
6976
|
+
sizePt: z.ZodOptional<z.ZodNumber>;
|
|
6977
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
6978
|
+
r: z.ZodNumber;
|
|
6979
|
+
g: z.ZodNumber;
|
|
6980
|
+
b: z.ZodNumber;
|
|
6981
|
+
}, z.core.$strip>>;
|
|
6982
|
+
text: z.ZodString;
|
|
5882
6983
|
}, z.core.$strip>>>;
|
|
5883
6984
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
5884
6985
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6102,6 +7203,33 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6102
7203
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6103
7204
|
}, z.core.$strip>>;
|
|
6104
7205
|
images: z.ZodArray<z.ZodObject<{
|
|
7206
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
7207
|
+
body: "body";
|
|
7208
|
+
chart: "chart";
|
|
7209
|
+
diagram: "diagram";
|
|
7210
|
+
table: "table";
|
|
7211
|
+
image: "image";
|
|
7212
|
+
notes: "notes";
|
|
7213
|
+
}>>;
|
|
7214
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
7215
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
7216
|
+
text: z.ZodString;
|
|
7217
|
+
confidence: z.ZodEnum<{
|
|
7218
|
+
high: "high";
|
|
7219
|
+
medium: "medium";
|
|
7220
|
+
low: "low";
|
|
7221
|
+
}>;
|
|
7222
|
+
mechanism: z.ZodEnum<{
|
|
7223
|
+
deterministic: "deterministic";
|
|
7224
|
+
model: "model";
|
|
7225
|
+
}>;
|
|
7226
|
+
}, z.core.$strip>>;
|
|
7227
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7228
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
7229
|
+
model: z.ZodString;
|
|
7230
|
+
at: z.ZodString;
|
|
7231
|
+
}, z.core.$strip>>;
|
|
7232
|
+
}, z.core.$strip>>;
|
|
6105
7233
|
kind: z.ZodLiteral<"image">;
|
|
6106
7234
|
format: z.ZodEnum<{
|
|
6107
7235
|
png: "png";
|
|
@@ -6113,6 +7241,16 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6113
7241
|
widthPt: z.ZodNumber;
|
|
6114
7242
|
heightPt: z.ZodNumber;
|
|
6115
7243
|
altText: z.ZodOptional<z.ZodString>;
|
|
7244
|
+
original: z.ZodOptional<z.ZodObject<{
|
|
7245
|
+
filter: z.ZodEnum<{
|
|
7246
|
+
jbig2: "jbig2";
|
|
7247
|
+
jpeg2000: "jpeg2000";
|
|
7248
|
+
}>;
|
|
7249
|
+
base64: z.ZodString;
|
|
7250
|
+
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
7251
|
+
}, z.core.$strip>>;
|
|
7252
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
7253
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
6116
7254
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
6117
7255
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
6118
7256
|
relativeTo: z.ZodEnum<{
|
|
@@ -6286,9 +7424,9 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6286
7424
|
type: z.ZodEnum<{
|
|
6287
7425
|
date: "date";
|
|
6288
7426
|
custom: "custom";
|
|
7427
|
+
time: "time";
|
|
6289
7428
|
decimal: "decimal";
|
|
6290
7429
|
list: "list";
|
|
6291
|
-
time: "time";
|
|
6292
7430
|
whole: "whole";
|
|
6293
7431
|
textLength: "textLength";
|
|
6294
7432
|
}>;
|
|
@@ -6759,11 +7897,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6759
7897
|
stops: z.ZodArray<z.ZodObject<{
|
|
6760
7898
|
value: z.ZodObject<{
|
|
6761
7899
|
type: z.ZodEnum<{
|
|
6762
|
-
formula: "formula";
|
|
6763
|
-
percent: "percent";
|
|
6764
7900
|
num: "num";
|
|
6765
|
-
max: "max";
|
|
6766
7901
|
min: "min";
|
|
7902
|
+
max: "max";
|
|
7903
|
+
formula: "formula";
|
|
7904
|
+
percent: "percent";
|
|
6767
7905
|
percentile: "percentile";
|
|
6768
7906
|
}>;
|
|
6769
7907
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6806,22 +7944,22 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6806
7944
|
}, z.core.$strip>, z.ZodObject<{
|
|
6807
7945
|
min: z.ZodObject<{
|
|
6808
7946
|
type: z.ZodEnum<{
|
|
6809
|
-
formula: "formula";
|
|
6810
|
-
percent: "percent";
|
|
6811
7947
|
num: "num";
|
|
6812
|
-
max: "max";
|
|
6813
7948
|
min: "min";
|
|
7949
|
+
max: "max";
|
|
7950
|
+
formula: "formula";
|
|
7951
|
+
percent: "percent";
|
|
6814
7952
|
percentile: "percentile";
|
|
6815
7953
|
}>;
|
|
6816
7954
|
value: z.ZodOptional<z.ZodString>;
|
|
6817
7955
|
}, z.core.$strip>;
|
|
6818
7956
|
max: z.ZodObject<{
|
|
6819
7957
|
type: z.ZodEnum<{
|
|
6820
|
-
formula: "formula";
|
|
6821
|
-
percent: "percent";
|
|
6822
7958
|
num: "num";
|
|
6823
|
-
max: "max";
|
|
6824
7959
|
min: "min";
|
|
7960
|
+
max: "max";
|
|
7961
|
+
formula: "formula";
|
|
7962
|
+
percent: "percent";
|
|
6825
7963
|
percentile: "percentile";
|
|
6826
7964
|
}>;
|
|
6827
7965
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -6865,11 +8003,11 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6865
8003
|
iconSetType: z.ZodString;
|
|
6866
8004
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
6867
8005
|
type: z.ZodEnum<{
|
|
6868
|
-
formula: "formula";
|
|
6869
|
-
percent: "percent";
|
|
6870
8006
|
num: "num";
|
|
6871
|
-
max: "max";
|
|
6872
8007
|
min: "min";
|
|
8008
|
+
max: "max";
|
|
8009
|
+
formula: "formula";
|
|
8010
|
+
percent: "percent";
|
|
6873
8011
|
percentile: "percentile";
|
|
6874
8012
|
}>;
|
|
6875
8013
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -7127,6 +8265,33 @@ declare const ContentSubpathSchema: z.ZodObject<{
|
|
|
7127
8265
|
}, z.core.$strip>;
|
|
7128
8266
|
type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
|
|
7129
8267
|
declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8268
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8269
|
+
body: "body";
|
|
8270
|
+
chart: "chart";
|
|
8271
|
+
diagram: "diagram";
|
|
8272
|
+
table: "table";
|
|
8273
|
+
image: "image";
|
|
8274
|
+
notes: "notes";
|
|
8275
|
+
}>>;
|
|
8276
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8277
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8278
|
+
text: z.ZodString;
|
|
8279
|
+
confidence: z.ZodEnum<{
|
|
8280
|
+
high: "high";
|
|
8281
|
+
medium: "medium";
|
|
8282
|
+
low: "low";
|
|
8283
|
+
}>;
|
|
8284
|
+
mechanism: z.ZodEnum<{
|
|
8285
|
+
deterministic: "deterministic";
|
|
8286
|
+
model: "model";
|
|
8287
|
+
}>;
|
|
8288
|
+
}, z.core.$strip>>;
|
|
8289
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8290
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8291
|
+
model: z.ZodString;
|
|
8292
|
+
at: z.ZodString;
|
|
8293
|
+
}, z.core.$strip>>;
|
|
8294
|
+
}, z.core.$strip>>;
|
|
7130
8295
|
kind: z.ZodLiteral<"rect">;
|
|
7131
8296
|
frame: z.ZodObject<{
|
|
7132
8297
|
xPt: z.ZodNumber;
|
|
@@ -7238,6 +8403,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7238
8403
|
heightPt: z.ZodNumber;
|
|
7239
8404
|
}, z.core.$strip>>>;
|
|
7240
8405
|
}, z.core.$strip>, z.ZodObject<{
|
|
8406
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8407
|
+
body: "body";
|
|
8408
|
+
chart: "chart";
|
|
8409
|
+
diagram: "diagram";
|
|
8410
|
+
table: "table";
|
|
8411
|
+
image: "image";
|
|
8412
|
+
notes: "notes";
|
|
8413
|
+
}>>;
|
|
8414
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8415
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8416
|
+
text: z.ZodString;
|
|
8417
|
+
confidence: z.ZodEnum<{
|
|
8418
|
+
high: "high";
|
|
8419
|
+
medium: "medium";
|
|
8420
|
+
low: "low";
|
|
8421
|
+
}>;
|
|
8422
|
+
mechanism: z.ZodEnum<{
|
|
8423
|
+
deterministic: "deterministic";
|
|
8424
|
+
model: "model";
|
|
8425
|
+
}>;
|
|
8426
|
+
}, z.core.$strip>>;
|
|
8427
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8428
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8429
|
+
model: z.ZodString;
|
|
8430
|
+
at: z.ZodString;
|
|
8431
|
+
}, z.core.$strip>>;
|
|
8432
|
+
}, z.core.$strip>>;
|
|
7241
8433
|
kind: z.ZodLiteral<"ellipse">;
|
|
7242
8434
|
frame: z.ZodObject<{
|
|
7243
8435
|
xPt: z.ZodNumber;
|
|
@@ -7349,6 +8541,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7349
8541
|
heightPt: z.ZodNumber;
|
|
7350
8542
|
}, z.core.$strip>>>;
|
|
7351
8543
|
}, z.core.$strip>, z.ZodObject<{
|
|
8544
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8545
|
+
body: "body";
|
|
8546
|
+
chart: "chart";
|
|
8547
|
+
diagram: "diagram";
|
|
8548
|
+
table: "table";
|
|
8549
|
+
image: "image";
|
|
8550
|
+
notes: "notes";
|
|
8551
|
+
}>>;
|
|
8552
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8553
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8554
|
+
text: z.ZodString;
|
|
8555
|
+
confidence: z.ZodEnum<{
|
|
8556
|
+
high: "high";
|
|
8557
|
+
medium: "medium";
|
|
8558
|
+
low: "low";
|
|
8559
|
+
}>;
|
|
8560
|
+
mechanism: z.ZodEnum<{
|
|
8561
|
+
deterministic: "deterministic";
|
|
8562
|
+
model: "model";
|
|
8563
|
+
}>;
|
|
8564
|
+
}, z.core.$strip>>;
|
|
8565
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8566
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8567
|
+
model: z.ZodString;
|
|
8568
|
+
at: z.ZodString;
|
|
8569
|
+
}, z.core.$strip>>;
|
|
8570
|
+
}, z.core.$strip>>;
|
|
7352
8571
|
kind: z.ZodLiteral<"line">;
|
|
7353
8572
|
from: z.ZodObject<{
|
|
7354
8573
|
xPt: z.ZodNumber;
|
|
@@ -7410,6 +8629,33 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7410
8629
|
heightPt: z.ZodNumber;
|
|
7411
8630
|
}, z.core.$strip>>>;
|
|
7412
8631
|
}, z.core.$strip>, z.ZodObject<{
|
|
8632
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8633
|
+
body: "body";
|
|
8634
|
+
chart: "chart";
|
|
8635
|
+
diagram: "diagram";
|
|
8636
|
+
table: "table";
|
|
8637
|
+
image: "image";
|
|
8638
|
+
notes: "notes";
|
|
8639
|
+
}>>;
|
|
8640
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8641
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8642
|
+
text: z.ZodString;
|
|
8643
|
+
confidence: z.ZodEnum<{
|
|
8644
|
+
high: "high";
|
|
8645
|
+
medium: "medium";
|
|
8646
|
+
low: "low";
|
|
8647
|
+
}>;
|
|
8648
|
+
mechanism: z.ZodEnum<{
|
|
8649
|
+
deterministic: "deterministic";
|
|
8650
|
+
model: "model";
|
|
8651
|
+
}>;
|
|
8652
|
+
}, z.core.$strip>>;
|
|
8653
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8654
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8655
|
+
model: z.ZodString;
|
|
8656
|
+
at: z.ZodString;
|
|
8657
|
+
}, z.core.$strip>>;
|
|
8658
|
+
}, z.core.$strip>>;
|
|
7413
8659
|
kind: z.ZodLiteral<"path">;
|
|
7414
8660
|
frame: z.ZodObject<{
|
|
7415
8661
|
xPt: z.ZodNumber;
|
|
@@ -7555,11 +8801,66 @@ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7555
8801
|
}, z.core.$strip>], "kind">;
|
|
7556
8802
|
type ContentVector = z.infer<typeof ContentVectorSchema>;
|
|
7557
8803
|
declare const ContentDrawPageSchema: z.ZodObject<{
|
|
8804
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8805
|
+
body: "body";
|
|
8806
|
+
chart: "chart";
|
|
8807
|
+
diagram: "diagram";
|
|
8808
|
+
table: "table";
|
|
8809
|
+
image: "image";
|
|
8810
|
+
notes: "notes";
|
|
8811
|
+
}>>;
|
|
8812
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8813
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8814
|
+
text: z.ZodString;
|
|
8815
|
+
confidence: z.ZodEnum<{
|
|
8816
|
+
high: "high";
|
|
8817
|
+
medium: "medium";
|
|
8818
|
+
low: "low";
|
|
8819
|
+
}>;
|
|
8820
|
+
mechanism: z.ZodEnum<{
|
|
8821
|
+
deterministic: "deterministic";
|
|
8822
|
+
model: "model";
|
|
8823
|
+
}>;
|
|
8824
|
+
}, z.core.$strip>>;
|
|
8825
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8826
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8827
|
+
model: z.ZodString;
|
|
8828
|
+
at: z.ZodString;
|
|
8829
|
+
}, z.core.$strip>>;
|
|
8830
|
+
}, z.core.$strip>>;
|
|
7558
8831
|
size: z.ZodObject<{
|
|
7559
8832
|
widthPt: z.ZodNumber;
|
|
7560
8833
|
heightPt: z.ZodNumber;
|
|
7561
8834
|
}, z.core.$strip>;
|
|
7562
8835
|
shapes: z.ZodArray<z.ZodObject<{
|
|
8836
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
8837
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8838
|
+
body: "body";
|
|
8839
|
+
chart: "chart";
|
|
8840
|
+
diagram: "diagram";
|
|
8841
|
+
table: "table";
|
|
8842
|
+
image: "image";
|
|
8843
|
+
notes: "notes";
|
|
8844
|
+
}>>;
|
|
8845
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8846
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8847
|
+
text: z.ZodString;
|
|
8848
|
+
confidence: z.ZodEnum<{
|
|
8849
|
+
high: "high";
|
|
8850
|
+
medium: "medium";
|
|
8851
|
+
low: "low";
|
|
8852
|
+
}>;
|
|
8853
|
+
mechanism: z.ZodEnum<{
|
|
8854
|
+
deterministic: "deterministic";
|
|
8855
|
+
model: "model";
|
|
8856
|
+
}>;
|
|
8857
|
+
}, z.core.$strip>>;
|
|
8858
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8859
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8860
|
+
model: z.ZodString;
|
|
8861
|
+
at: z.ZodString;
|
|
8862
|
+
}, z.core.$strip>>;
|
|
8863
|
+
}, z.core.$strip>>;
|
|
7563
8864
|
name: z.ZodOptional<z.ZodString>;
|
|
7564
8865
|
frame: z.ZodObject<{
|
|
7565
8866
|
xPt: z.ZodNumber;
|
|
@@ -7603,9 +8904,35 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
7603
8904
|
widthPt: z.ZodNumber;
|
|
7604
8905
|
heightPt: z.ZodNumber;
|
|
7605
8906
|
}, z.core.$strip>>>;
|
|
7606
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
7607
8907
|
}, z.core.$strip>>;
|
|
7608
8908
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8909
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
8910
|
+
body: "body";
|
|
8911
|
+
chart: "chart";
|
|
8912
|
+
diagram: "diagram";
|
|
8913
|
+
table: "table";
|
|
8914
|
+
image: "image";
|
|
8915
|
+
notes: "notes";
|
|
8916
|
+
}>>;
|
|
8917
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
8918
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
8919
|
+
text: z.ZodString;
|
|
8920
|
+
confidence: z.ZodEnum<{
|
|
8921
|
+
high: "high";
|
|
8922
|
+
medium: "medium";
|
|
8923
|
+
low: "low";
|
|
8924
|
+
}>;
|
|
8925
|
+
mechanism: z.ZodEnum<{
|
|
8926
|
+
deterministic: "deterministic";
|
|
8927
|
+
model: "model";
|
|
8928
|
+
}>;
|
|
8929
|
+
}, z.core.$strip>>;
|
|
8930
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8931
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
8932
|
+
model: z.ZodString;
|
|
8933
|
+
at: z.ZodString;
|
|
8934
|
+
}, z.core.$strip>>;
|
|
8935
|
+
}, z.core.$strip>>;
|
|
7609
8936
|
kind: z.ZodLiteral<"rect">;
|
|
7610
8937
|
frame: z.ZodObject<{
|
|
7611
8938
|
xPt: z.ZodNumber;
|
|
@@ -7717,6 +9044,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
7717
9044
|
heightPt: z.ZodNumber;
|
|
7718
9045
|
}, z.core.$strip>>>;
|
|
7719
9046
|
}, z.core.$strip>, z.ZodObject<{
|
|
9047
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9048
|
+
body: "body";
|
|
9049
|
+
chart: "chart";
|
|
9050
|
+
diagram: "diagram";
|
|
9051
|
+
table: "table";
|
|
9052
|
+
image: "image";
|
|
9053
|
+
notes: "notes";
|
|
9054
|
+
}>>;
|
|
9055
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9056
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9057
|
+
text: z.ZodString;
|
|
9058
|
+
confidence: z.ZodEnum<{
|
|
9059
|
+
high: "high";
|
|
9060
|
+
medium: "medium";
|
|
9061
|
+
low: "low";
|
|
9062
|
+
}>;
|
|
9063
|
+
mechanism: z.ZodEnum<{
|
|
9064
|
+
deterministic: "deterministic";
|
|
9065
|
+
model: "model";
|
|
9066
|
+
}>;
|
|
9067
|
+
}, z.core.$strip>>;
|
|
9068
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9069
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9070
|
+
model: z.ZodString;
|
|
9071
|
+
at: z.ZodString;
|
|
9072
|
+
}, z.core.$strip>>;
|
|
9073
|
+
}, z.core.$strip>>;
|
|
7720
9074
|
kind: z.ZodLiteral<"ellipse">;
|
|
7721
9075
|
frame: z.ZodObject<{
|
|
7722
9076
|
xPt: z.ZodNumber;
|
|
@@ -7828,6 +9182,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
7828
9182
|
heightPt: z.ZodNumber;
|
|
7829
9183
|
}, z.core.$strip>>>;
|
|
7830
9184
|
}, z.core.$strip>, z.ZodObject<{
|
|
9185
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9186
|
+
body: "body";
|
|
9187
|
+
chart: "chart";
|
|
9188
|
+
diagram: "diagram";
|
|
9189
|
+
table: "table";
|
|
9190
|
+
image: "image";
|
|
9191
|
+
notes: "notes";
|
|
9192
|
+
}>>;
|
|
9193
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9194
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9195
|
+
text: z.ZodString;
|
|
9196
|
+
confidence: z.ZodEnum<{
|
|
9197
|
+
high: "high";
|
|
9198
|
+
medium: "medium";
|
|
9199
|
+
low: "low";
|
|
9200
|
+
}>;
|
|
9201
|
+
mechanism: z.ZodEnum<{
|
|
9202
|
+
deterministic: "deterministic";
|
|
9203
|
+
model: "model";
|
|
9204
|
+
}>;
|
|
9205
|
+
}, z.core.$strip>>;
|
|
9206
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9207
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9208
|
+
model: z.ZodString;
|
|
9209
|
+
at: z.ZodString;
|
|
9210
|
+
}, z.core.$strip>>;
|
|
9211
|
+
}, z.core.$strip>>;
|
|
7831
9212
|
kind: z.ZodLiteral<"line">;
|
|
7832
9213
|
from: z.ZodObject<{
|
|
7833
9214
|
xPt: z.ZodNumber;
|
|
@@ -7889,6 +9270,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
7889
9270
|
heightPt: z.ZodNumber;
|
|
7890
9271
|
}, z.core.$strip>>>;
|
|
7891
9272
|
}, z.core.$strip>, z.ZodObject<{
|
|
9273
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9274
|
+
body: "body";
|
|
9275
|
+
chart: "chart";
|
|
9276
|
+
diagram: "diagram";
|
|
9277
|
+
table: "table";
|
|
9278
|
+
image: "image";
|
|
9279
|
+
notes: "notes";
|
|
9280
|
+
}>>;
|
|
9281
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9282
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9283
|
+
text: z.ZodString;
|
|
9284
|
+
confidence: z.ZodEnum<{
|
|
9285
|
+
high: "high";
|
|
9286
|
+
medium: "medium";
|
|
9287
|
+
low: "low";
|
|
9288
|
+
}>;
|
|
9289
|
+
mechanism: z.ZodEnum<{
|
|
9290
|
+
deterministic: "deterministic";
|
|
9291
|
+
model: "model";
|
|
9292
|
+
}>;
|
|
9293
|
+
}, z.core.$strip>>;
|
|
9294
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9295
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9296
|
+
model: z.ZodString;
|
|
9297
|
+
at: z.ZodString;
|
|
9298
|
+
}, z.core.$strip>>;
|
|
9299
|
+
}, z.core.$strip>>;
|
|
7892
9300
|
kind: z.ZodLiteral<"path">;
|
|
7893
9301
|
frame: z.ZodObject<{
|
|
7894
9302
|
xPt: z.ZodNumber;
|
|
@@ -8055,6 +9463,33 @@ declare const ContentDrawPageSchema: z.ZodObject<{
|
|
|
8055
9463
|
}, z.core.$strip>;
|
|
8056
9464
|
type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
|
|
8057
9465
|
declare const ContentFormulaSchema: z.ZodObject<{
|
|
9466
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9467
|
+
body: "body";
|
|
9468
|
+
chart: "chart";
|
|
9469
|
+
diagram: "diagram";
|
|
9470
|
+
table: "table";
|
|
9471
|
+
image: "image";
|
|
9472
|
+
notes: "notes";
|
|
9473
|
+
}>>;
|
|
9474
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9475
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9476
|
+
text: z.ZodString;
|
|
9477
|
+
confidence: z.ZodEnum<{
|
|
9478
|
+
high: "high";
|
|
9479
|
+
medium: "medium";
|
|
9480
|
+
low: "low";
|
|
9481
|
+
}>;
|
|
9482
|
+
mechanism: z.ZodEnum<{
|
|
9483
|
+
deterministic: "deterministic";
|
|
9484
|
+
model: "model";
|
|
9485
|
+
}>;
|
|
9486
|
+
}, z.core.$strip>>;
|
|
9487
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9488
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9489
|
+
model: z.ZodString;
|
|
9490
|
+
at: z.ZodString;
|
|
9491
|
+
}, z.core.$strip>>;
|
|
9492
|
+
}, z.core.$strip>>;
|
|
8058
9493
|
mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
|
|
8059
9494
|
starMath: z.ZodOptional<z.ZodString>;
|
|
8060
9495
|
presentation: z.ZodOptional<z.ZodObject<{
|
|
@@ -8133,8 +9568,41 @@ declare const contentDocumentSharedFields: {
|
|
|
8133
9568
|
}, z.core.$strip>>>;
|
|
8134
9569
|
}, z.core.$strip>>;
|
|
8135
9570
|
};
|
|
9571
|
+
declare const ContentDefinedNameSchema: z.ZodObject<{
|
|
9572
|
+
name: z.ZodString;
|
|
9573
|
+
refersTo: z.ZodString;
|
|
9574
|
+
scopeSheetIndex: z.ZodOptional<z.ZodNumber>;
|
|
9575
|
+
}, z.core.$strip>;
|
|
9576
|
+
type ContentDefinedName = z.infer<typeof ContentDefinedNameSchema>;
|
|
8136
9577
|
declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8137
9578
|
sections: z.ZodArray<z.ZodObject<{
|
|
9579
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9580
|
+
body: "body";
|
|
9581
|
+
chart: "chart";
|
|
9582
|
+
diagram: "diagram";
|
|
9583
|
+
table: "table";
|
|
9584
|
+
image: "image";
|
|
9585
|
+
notes: "notes";
|
|
9586
|
+
}>>;
|
|
9587
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9588
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9589
|
+
text: z.ZodString;
|
|
9590
|
+
confidence: z.ZodEnum<{
|
|
9591
|
+
high: "high";
|
|
9592
|
+
medium: "medium";
|
|
9593
|
+
low: "low";
|
|
9594
|
+
}>;
|
|
9595
|
+
mechanism: z.ZodEnum<{
|
|
9596
|
+
deterministic: "deterministic";
|
|
9597
|
+
model: "model";
|
|
9598
|
+
}>;
|
|
9599
|
+
}, z.core.$strip>>;
|
|
9600
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9601
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9602
|
+
model: z.ZodString;
|
|
9603
|
+
at: z.ZodString;
|
|
9604
|
+
}, z.core.$strip>>;
|
|
9605
|
+
}, z.core.$strip>>;
|
|
8138
9606
|
pageSize: z.ZodObject<{
|
|
8139
9607
|
widthPt: z.ZodNumber;
|
|
8140
9608
|
heightPt: z.ZodNumber;
|
|
@@ -8252,11 +9720,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8252
9720
|
}, z.core.$strip>;
|
|
8253
9721
|
}, z.core.$strip>, z.ZodObject<{
|
|
8254
9722
|
slides: z.ZodArray<z.ZodObject<{
|
|
9723
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9724
|
+
body: "body";
|
|
9725
|
+
chart: "chart";
|
|
9726
|
+
diagram: "diagram";
|
|
9727
|
+
table: "table";
|
|
9728
|
+
image: "image";
|
|
9729
|
+
notes: "notes";
|
|
9730
|
+
}>>;
|
|
9731
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9732
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9733
|
+
text: z.ZodString;
|
|
9734
|
+
confidence: z.ZodEnum<{
|
|
9735
|
+
high: "high";
|
|
9736
|
+
medium: "medium";
|
|
9737
|
+
low: "low";
|
|
9738
|
+
}>;
|
|
9739
|
+
mechanism: z.ZodEnum<{
|
|
9740
|
+
deterministic: "deterministic";
|
|
9741
|
+
model: "model";
|
|
9742
|
+
}>;
|
|
9743
|
+
}, z.core.$strip>>;
|
|
9744
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9745
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9746
|
+
model: z.ZodString;
|
|
9747
|
+
at: z.ZodString;
|
|
9748
|
+
}, z.core.$strip>>;
|
|
9749
|
+
}, z.core.$strip>>;
|
|
8255
9750
|
size: z.ZodObject<{
|
|
8256
9751
|
widthPt: z.ZodNumber;
|
|
8257
9752
|
heightPt: z.ZodNumber;
|
|
8258
9753
|
}, z.core.$strip>;
|
|
8259
9754
|
shapes: z.ZodArray<z.ZodObject<{
|
|
9755
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
9756
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9757
|
+
body: "body";
|
|
9758
|
+
chart: "chart";
|
|
9759
|
+
diagram: "diagram";
|
|
9760
|
+
table: "table";
|
|
9761
|
+
image: "image";
|
|
9762
|
+
notes: "notes";
|
|
9763
|
+
}>>;
|
|
9764
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9765
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9766
|
+
text: z.ZodString;
|
|
9767
|
+
confidence: z.ZodEnum<{
|
|
9768
|
+
high: "high";
|
|
9769
|
+
medium: "medium";
|
|
9770
|
+
low: "low";
|
|
9771
|
+
}>;
|
|
9772
|
+
mechanism: z.ZodEnum<{
|
|
9773
|
+
deterministic: "deterministic";
|
|
9774
|
+
model: "model";
|
|
9775
|
+
}>;
|
|
9776
|
+
}, z.core.$strip>>;
|
|
9777
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9778
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9779
|
+
model: z.ZodString;
|
|
9780
|
+
at: z.ZodString;
|
|
9781
|
+
}, z.core.$strip>>;
|
|
9782
|
+
}, z.core.$strip>>;
|
|
8260
9783
|
name: z.ZodOptional<z.ZodString>;
|
|
8261
9784
|
frame: z.ZodObject<{
|
|
8262
9785
|
xPt: z.ZodNumber;
|
|
@@ -8300,7 +9823,6 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8300
9823
|
widthPt: z.ZodNumber;
|
|
8301
9824
|
heightPt: z.ZodNumber;
|
|
8302
9825
|
}, z.core.$strip>>>;
|
|
8303
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
8304
9826
|
}, z.core.$strip>>;
|
|
8305
9827
|
notes: z.ZodString;
|
|
8306
9828
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -8393,8 +9915,62 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8393
9915
|
}, z.core.$strip>;
|
|
8394
9916
|
}, z.core.$strip>, z.ZodObject<{
|
|
8395
9917
|
sheets: z.ZodArray<z.ZodObject<{
|
|
9918
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9919
|
+
body: "body";
|
|
9920
|
+
chart: "chart";
|
|
9921
|
+
diagram: "diagram";
|
|
9922
|
+
table: "table";
|
|
9923
|
+
image: "image";
|
|
9924
|
+
notes: "notes";
|
|
9925
|
+
}>>;
|
|
9926
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9927
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9928
|
+
text: z.ZodString;
|
|
9929
|
+
confidence: z.ZodEnum<{
|
|
9930
|
+
high: "high";
|
|
9931
|
+
medium: "medium";
|
|
9932
|
+
low: "low";
|
|
9933
|
+
}>;
|
|
9934
|
+
mechanism: z.ZodEnum<{
|
|
9935
|
+
deterministic: "deterministic";
|
|
9936
|
+
model: "model";
|
|
9937
|
+
}>;
|
|
9938
|
+
}, z.core.$strip>>;
|
|
9939
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9940
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9941
|
+
model: z.ZodString;
|
|
9942
|
+
at: z.ZodString;
|
|
9943
|
+
}, z.core.$strip>>;
|
|
9944
|
+
}, z.core.$strip>>;
|
|
8396
9945
|
name: z.ZodString;
|
|
8397
9946
|
cells: z.ZodArray<z.ZodObject<{
|
|
9947
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
9948
|
+
body: "body";
|
|
9949
|
+
chart: "chart";
|
|
9950
|
+
diagram: "diagram";
|
|
9951
|
+
table: "table";
|
|
9952
|
+
image: "image";
|
|
9953
|
+
notes: "notes";
|
|
9954
|
+
}>>;
|
|
9955
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
9956
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
9957
|
+
text: z.ZodString;
|
|
9958
|
+
confidence: z.ZodEnum<{
|
|
9959
|
+
high: "high";
|
|
9960
|
+
medium: "medium";
|
|
9961
|
+
low: "low";
|
|
9962
|
+
}>;
|
|
9963
|
+
mechanism: z.ZodEnum<{
|
|
9964
|
+
deterministic: "deterministic";
|
|
9965
|
+
model: "model";
|
|
9966
|
+
}>;
|
|
9967
|
+
}, z.core.$strip>>;
|
|
9968
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9969
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
9970
|
+
model: z.ZodString;
|
|
9971
|
+
at: z.ZodString;
|
|
9972
|
+
}, z.core.$strip>>;
|
|
9973
|
+
}, z.core.$strip>>;
|
|
8398
9974
|
row: z.ZodNumber;
|
|
8399
9975
|
column: z.ZodNumber;
|
|
8400
9976
|
value: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -8434,8 +10010,7 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8434
10010
|
formula: z.ZodOptional<z.ZodString>;
|
|
8435
10011
|
displayText: z.ZodString;
|
|
8436
10012
|
numberFormatCode: z.ZodOptional<z.ZodString>;
|
|
8437
|
-
|
|
8438
|
-
text: z.ZodString;
|
|
10013
|
+
font: z.ZodOptional<z.ZodObject<{
|
|
8439
10014
|
bold: z.ZodOptional<z.ZodBoolean>;
|
|
8440
10015
|
italic: z.ZodOptional<z.ZodBoolean>;
|
|
8441
10016
|
underline: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8447,6 +10022,35 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8447
10022
|
g: z.ZodNumber;
|
|
8448
10023
|
b: z.ZodNumber;
|
|
8449
10024
|
}, z.core.$strip>>;
|
|
10025
|
+
}, z.core.$strip>>;
|
|
10026
|
+
runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10027
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
10028
|
+
body: "body";
|
|
10029
|
+
chart: "chart";
|
|
10030
|
+
diagram: "diagram";
|
|
10031
|
+
table: "table";
|
|
10032
|
+
image: "image";
|
|
10033
|
+
notes: "notes";
|
|
10034
|
+
}>>;
|
|
10035
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10036
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
10037
|
+
text: z.ZodString;
|
|
10038
|
+
confidence: z.ZodEnum<{
|
|
10039
|
+
high: "high";
|
|
10040
|
+
medium: "medium";
|
|
10041
|
+
low: "low";
|
|
10042
|
+
}>;
|
|
10043
|
+
mechanism: z.ZodEnum<{
|
|
10044
|
+
deterministic: "deterministic";
|
|
10045
|
+
model: "model";
|
|
10046
|
+
}>;
|
|
10047
|
+
}, z.core.$strip>>;
|
|
10048
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10049
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
10050
|
+
model: z.ZodString;
|
|
10051
|
+
at: z.ZodString;
|
|
10052
|
+
}, z.core.$strip>>;
|
|
10053
|
+
}, z.core.$strip>>;
|
|
8450
10054
|
hyperlink: z.ZodOptional<z.ZodString>;
|
|
8451
10055
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
8452
10056
|
superscript: "superscript";
|
|
@@ -8484,6 +10088,18 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8484
10088
|
widthPt: z.ZodNumber;
|
|
8485
10089
|
heightPt: z.ZodNumber;
|
|
8486
10090
|
}, z.core.$strip>>>;
|
|
10091
|
+
bold: z.ZodOptional<z.ZodBoolean>;
|
|
10092
|
+
italic: z.ZodOptional<z.ZodBoolean>;
|
|
10093
|
+
underline: z.ZodOptional<z.ZodBoolean>;
|
|
10094
|
+
strike: z.ZodOptional<z.ZodBoolean>;
|
|
10095
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
10096
|
+
sizePt: z.ZodOptional<z.ZodNumber>;
|
|
10097
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
10098
|
+
r: z.ZodNumber;
|
|
10099
|
+
g: z.ZodNumber;
|
|
10100
|
+
b: z.ZodNumber;
|
|
10101
|
+
}, z.core.$strip>>;
|
|
10102
|
+
text: z.ZodString;
|
|
8487
10103
|
}, z.core.$strip>>>;
|
|
8488
10104
|
colSpan: z.ZodOptional<z.ZodNumber>;
|
|
8489
10105
|
rowSpan: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8707,6 +10323,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8707
10323
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8708
10324
|
}, z.core.$strip>>;
|
|
8709
10325
|
images: z.ZodArray<z.ZodObject<{
|
|
10326
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
10327
|
+
body: "body";
|
|
10328
|
+
chart: "chart";
|
|
10329
|
+
diagram: "diagram";
|
|
10330
|
+
table: "table";
|
|
10331
|
+
image: "image";
|
|
10332
|
+
notes: "notes";
|
|
10333
|
+
}>>;
|
|
10334
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
10335
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
10336
|
+
text: z.ZodString;
|
|
10337
|
+
confidence: z.ZodEnum<{
|
|
10338
|
+
high: "high";
|
|
10339
|
+
medium: "medium";
|
|
10340
|
+
low: "low";
|
|
10341
|
+
}>;
|
|
10342
|
+
mechanism: z.ZodEnum<{
|
|
10343
|
+
deterministic: "deterministic";
|
|
10344
|
+
model: "model";
|
|
10345
|
+
}>;
|
|
10346
|
+
}, z.core.$strip>>;
|
|
10347
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10348
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
10349
|
+
model: z.ZodString;
|
|
10350
|
+
at: z.ZodString;
|
|
10351
|
+
}, z.core.$strip>>;
|
|
10352
|
+
}, z.core.$strip>>;
|
|
8710
10353
|
kind: z.ZodLiteral<"image">;
|
|
8711
10354
|
format: z.ZodEnum<{
|
|
8712
10355
|
png: "png";
|
|
@@ -8718,6 +10361,16 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8718
10361
|
widthPt: z.ZodNumber;
|
|
8719
10362
|
heightPt: z.ZodNumber;
|
|
8720
10363
|
altText: z.ZodOptional<z.ZodString>;
|
|
10364
|
+
original: z.ZodOptional<z.ZodObject<{
|
|
10365
|
+
filter: z.ZodEnum<{
|
|
10366
|
+
jbig2: "jbig2";
|
|
10367
|
+
jpeg2000: "jpeg2000";
|
|
10368
|
+
}>;
|
|
10369
|
+
base64: z.ZodString;
|
|
10370
|
+
jbig2GlobalsBase64: z.ZodOptional<z.ZodString>;
|
|
10371
|
+
}, z.core.$strip>>;
|
|
10372
|
+
anchorRunIndex: z.ZodOptional<z.ZodNumber>;
|
|
10373
|
+
anchorOffset: z.ZodOptional<z.ZodNumber>;
|
|
8721
10374
|
floatPosition: z.ZodOptional<z.ZodObject<{
|
|
8722
10375
|
horizontal: z.ZodUnion<readonly [z.ZodObject<{
|
|
8723
10376
|
relativeTo: z.ZodEnum<{
|
|
@@ -8891,9 +10544,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8891
10544
|
type: z.ZodEnum<{
|
|
8892
10545
|
date: "date";
|
|
8893
10546
|
custom: "custom";
|
|
10547
|
+
time: "time";
|
|
8894
10548
|
decimal: "decimal";
|
|
8895
10549
|
list: "list";
|
|
8896
|
-
time: "time";
|
|
8897
10550
|
whole: "whole";
|
|
8898
10551
|
textLength: "textLength";
|
|
8899
10552
|
}>;
|
|
@@ -9364,11 +11017,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9364
11017
|
stops: z.ZodArray<z.ZodObject<{
|
|
9365
11018
|
value: z.ZodObject<{
|
|
9366
11019
|
type: z.ZodEnum<{
|
|
9367
|
-
formula: "formula";
|
|
9368
|
-
percent: "percent";
|
|
9369
11020
|
num: "num";
|
|
9370
|
-
max: "max";
|
|
9371
11021
|
min: "min";
|
|
11022
|
+
max: "max";
|
|
11023
|
+
formula: "formula";
|
|
11024
|
+
percent: "percent";
|
|
9372
11025
|
percentile: "percentile";
|
|
9373
11026
|
}>;
|
|
9374
11027
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -9411,22 +11064,22 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9411
11064
|
}, z.core.$strip>, z.ZodObject<{
|
|
9412
11065
|
min: z.ZodObject<{
|
|
9413
11066
|
type: z.ZodEnum<{
|
|
9414
|
-
formula: "formula";
|
|
9415
|
-
percent: "percent";
|
|
9416
11067
|
num: "num";
|
|
9417
|
-
max: "max";
|
|
9418
11068
|
min: "min";
|
|
11069
|
+
max: "max";
|
|
11070
|
+
formula: "formula";
|
|
11071
|
+
percent: "percent";
|
|
9419
11072
|
percentile: "percentile";
|
|
9420
11073
|
}>;
|
|
9421
11074
|
value: z.ZodOptional<z.ZodString>;
|
|
9422
11075
|
}, z.core.$strip>;
|
|
9423
11076
|
max: z.ZodObject<{
|
|
9424
11077
|
type: z.ZodEnum<{
|
|
9425
|
-
formula: "formula";
|
|
9426
|
-
percent: "percent";
|
|
9427
11078
|
num: "num";
|
|
9428
|
-
max: "max";
|
|
9429
11079
|
min: "min";
|
|
11080
|
+
max: "max";
|
|
11081
|
+
formula: "formula";
|
|
11082
|
+
percent: "percent";
|
|
9430
11083
|
percentile: "percentile";
|
|
9431
11084
|
}>;
|
|
9432
11085
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -9470,11 +11123,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9470
11123
|
iconSetType: z.ZodString;
|
|
9471
11124
|
thresholds: z.ZodArray<z.ZodObject<{
|
|
9472
11125
|
type: z.ZodEnum<{
|
|
9473
|
-
formula: "formula";
|
|
9474
|
-
percent: "percent";
|
|
9475
11126
|
num: "num";
|
|
9476
|
-
max: "max";
|
|
9477
11127
|
min: "min";
|
|
11128
|
+
max: "max";
|
|
11129
|
+
formula: "formula";
|
|
11130
|
+
percent: "percent";
|
|
9478
11131
|
percentile: "percentile";
|
|
9479
11132
|
}>;
|
|
9480
11133
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -9532,6 +11185,11 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9532
11185
|
xml: z.ZodString;
|
|
9533
11186
|
}, z.core.$strict>>;
|
|
9534
11187
|
}, z.core.$strip>>;
|
|
11188
|
+
names: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11189
|
+
name: z.ZodString;
|
|
11190
|
+
refersTo: z.ZodString;
|
|
11191
|
+
scopeSheetIndex: z.ZodOptional<z.ZodNumber>;
|
|
11192
|
+
}, z.core.$strip>>>;
|
|
9535
11193
|
symbolTable: z.ZodOptional<z.ZodObject<{
|
|
9536
11194
|
symbols: z.ZodArray<z.ZodObject<{
|
|
9537
11195
|
glyph: z.ZodString;
|
|
@@ -9601,11 +11259,66 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9601
11259
|
}, z.core.$strip>;
|
|
9602
11260
|
}, z.core.$strip>, z.ZodObject<{
|
|
9603
11261
|
pages: z.ZodArray<z.ZodObject<{
|
|
11262
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11263
|
+
body: "body";
|
|
11264
|
+
chart: "chart";
|
|
11265
|
+
diagram: "diagram";
|
|
11266
|
+
table: "table";
|
|
11267
|
+
image: "image";
|
|
11268
|
+
notes: "notes";
|
|
11269
|
+
}>>;
|
|
11270
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11271
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11272
|
+
text: z.ZodString;
|
|
11273
|
+
confidence: z.ZodEnum<{
|
|
11274
|
+
high: "high";
|
|
11275
|
+
medium: "medium";
|
|
11276
|
+
low: "low";
|
|
11277
|
+
}>;
|
|
11278
|
+
mechanism: z.ZodEnum<{
|
|
11279
|
+
deterministic: "deterministic";
|
|
11280
|
+
model: "model";
|
|
11281
|
+
}>;
|
|
11282
|
+
}, z.core.$strip>>;
|
|
11283
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11284
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11285
|
+
model: z.ZodString;
|
|
11286
|
+
at: z.ZodString;
|
|
11287
|
+
}, z.core.$strip>>;
|
|
11288
|
+
}, z.core.$strip>>;
|
|
9604
11289
|
size: z.ZodObject<{
|
|
9605
11290
|
widthPt: z.ZodNumber;
|
|
9606
11291
|
heightPt: z.ZodNumber;
|
|
9607
11292
|
}, z.core.$strip>;
|
|
9608
11293
|
shapes: z.ZodArray<z.ZodObject<{
|
|
11294
|
+
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
11295
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11296
|
+
body: "body";
|
|
11297
|
+
chart: "chart";
|
|
11298
|
+
diagram: "diagram";
|
|
11299
|
+
table: "table";
|
|
11300
|
+
image: "image";
|
|
11301
|
+
notes: "notes";
|
|
11302
|
+
}>>;
|
|
11303
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11304
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11305
|
+
text: z.ZodString;
|
|
11306
|
+
confidence: z.ZodEnum<{
|
|
11307
|
+
high: "high";
|
|
11308
|
+
medium: "medium";
|
|
11309
|
+
low: "low";
|
|
11310
|
+
}>;
|
|
11311
|
+
mechanism: z.ZodEnum<{
|
|
11312
|
+
deterministic: "deterministic";
|
|
11313
|
+
model: "model";
|
|
11314
|
+
}>;
|
|
11315
|
+
}, z.core.$strip>>;
|
|
11316
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11317
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11318
|
+
model: z.ZodString;
|
|
11319
|
+
at: z.ZodString;
|
|
11320
|
+
}, z.core.$strip>>;
|
|
11321
|
+
}, z.core.$strip>>;
|
|
9609
11322
|
name: z.ZodOptional<z.ZodString>;
|
|
9610
11323
|
frame: z.ZodObject<{
|
|
9611
11324
|
xPt: z.ZodNumber;
|
|
@@ -9649,9 +11362,35 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9649
11362
|
widthPt: z.ZodNumber;
|
|
9650
11363
|
heightPt: z.ZodNumber;
|
|
9651
11364
|
}, z.core.$strip>>>;
|
|
9652
|
-
blocks: z.ZodLazy<z.ZodArray<z.ZodType<ContentBlock, ContentBlock, z.core.$ZodTypeInternals<ContentBlock, ContentBlock>>>>;
|
|
9653
11365
|
}, z.core.$strip>>;
|
|
9654
11366
|
vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11367
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11368
|
+
body: "body";
|
|
11369
|
+
chart: "chart";
|
|
11370
|
+
diagram: "diagram";
|
|
11371
|
+
table: "table";
|
|
11372
|
+
image: "image";
|
|
11373
|
+
notes: "notes";
|
|
11374
|
+
}>>;
|
|
11375
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11376
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11377
|
+
text: z.ZodString;
|
|
11378
|
+
confidence: z.ZodEnum<{
|
|
11379
|
+
high: "high";
|
|
11380
|
+
medium: "medium";
|
|
11381
|
+
low: "low";
|
|
11382
|
+
}>;
|
|
11383
|
+
mechanism: z.ZodEnum<{
|
|
11384
|
+
deterministic: "deterministic";
|
|
11385
|
+
model: "model";
|
|
11386
|
+
}>;
|
|
11387
|
+
}, z.core.$strip>>;
|
|
11388
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11389
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11390
|
+
model: z.ZodString;
|
|
11391
|
+
at: z.ZodString;
|
|
11392
|
+
}, z.core.$strip>>;
|
|
11393
|
+
}, z.core.$strip>>;
|
|
9655
11394
|
kind: z.ZodLiteral<"rect">;
|
|
9656
11395
|
frame: z.ZodObject<{
|
|
9657
11396
|
xPt: z.ZodNumber;
|
|
@@ -9763,6 +11502,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9763
11502
|
heightPt: z.ZodNumber;
|
|
9764
11503
|
}, z.core.$strip>>>;
|
|
9765
11504
|
}, z.core.$strip>, z.ZodObject<{
|
|
11505
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11506
|
+
body: "body";
|
|
11507
|
+
chart: "chart";
|
|
11508
|
+
diagram: "diagram";
|
|
11509
|
+
table: "table";
|
|
11510
|
+
image: "image";
|
|
11511
|
+
notes: "notes";
|
|
11512
|
+
}>>;
|
|
11513
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11514
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11515
|
+
text: z.ZodString;
|
|
11516
|
+
confidence: z.ZodEnum<{
|
|
11517
|
+
high: "high";
|
|
11518
|
+
medium: "medium";
|
|
11519
|
+
low: "low";
|
|
11520
|
+
}>;
|
|
11521
|
+
mechanism: z.ZodEnum<{
|
|
11522
|
+
deterministic: "deterministic";
|
|
11523
|
+
model: "model";
|
|
11524
|
+
}>;
|
|
11525
|
+
}, z.core.$strip>>;
|
|
11526
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11527
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11528
|
+
model: z.ZodString;
|
|
11529
|
+
at: z.ZodString;
|
|
11530
|
+
}, z.core.$strip>>;
|
|
11531
|
+
}, z.core.$strip>>;
|
|
9766
11532
|
kind: z.ZodLiteral<"ellipse">;
|
|
9767
11533
|
frame: z.ZodObject<{
|
|
9768
11534
|
xPt: z.ZodNumber;
|
|
@@ -9874,6 +11640,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9874
11640
|
heightPt: z.ZodNumber;
|
|
9875
11641
|
}, z.core.$strip>>>;
|
|
9876
11642
|
}, z.core.$strip>, z.ZodObject<{
|
|
11643
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11644
|
+
body: "body";
|
|
11645
|
+
chart: "chart";
|
|
11646
|
+
diagram: "diagram";
|
|
11647
|
+
table: "table";
|
|
11648
|
+
image: "image";
|
|
11649
|
+
notes: "notes";
|
|
11650
|
+
}>>;
|
|
11651
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11652
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11653
|
+
text: z.ZodString;
|
|
11654
|
+
confidence: z.ZodEnum<{
|
|
11655
|
+
high: "high";
|
|
11656
|
+
medium: "medium";
|
|
11657
|
+
low: "low";
|
|
11658
|
+
}>;
|
|
11659
|
+
mechanism: z.ZodEnum<{
|
|
11660
|
+
deterministic: "deterministic";
|
|
11661
|
+
model: "model";
|
|
11662
|
+
}>;
|
|
11663
|
+
}, z.core.$strip>>;
|
|
11664
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11665
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11666
|
+
model: z.ZodString;
|
|
11667
|
+
at: z.ZodString;
|
|
11668
|
+
}, z.core.$strip>>;
|
|
11669
|
+
}, z.core.$strip>>;
|
|
9877
11670
|
kind: z.ZodLiteral<"line">;
|
|
9878
11671
|
from: z.ZodObject<{
|
|
9879
11672
|
xPt: z.ZodNumber;
|
|
@@ -9935,6 +11728,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9935
11728
|
heightPt: z.ZodNumber;
|
|
9936
11729
|
}, z.core.$strip>>>;
|
|
9937
11730
|
}, z.core.$strip>, z.ZodObject<{
|
|
11731
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11732
|
+
body: "body";
|
|
11733
|
+
chart: "chart";
|
|
11734
|
+
diagram: "diagram";
|
|
11735
|
+
table: "table";
|
|
11736
|
+
image: "image";
|
|
11737
|
+
notes: "notes";
|
|
11738
|
+
}>>;
|
|
11739
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
11740
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
11741
|
+
text: z.ZodString;
|
|
11742
|
+
confidence: z.ZodEnum<{
|
|
11743
|
+
high: "high";
|
|
11744
|
+
medium: "medium";
|
|
11745
|
+
low: "low";
|
|
11746
|
+
}>;
|
|
11747
|
+
mechanism: z.ZodEnum<{
|
|
11748
|
+
deterministic: "deterministic";
|
|
11749
|
+
model: "model";
|
|
11750
|
+
}>;
|
|
11751
|
+
}, z.core.$strip>>;
|
|
11752
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11753
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
11754
|
+
model: z.ZodString;
|
|
11755
|
+
at: z.ZodString;
|
|
11756
|
+
}, z.core.$strip>>;
|
|
11757
|
+
}, z.core.$strip>>;
|
|
9938
11758
|
kind: z.ZodLiteral<"path">;
|
|
9939
11759
|
frame: z.ZodObject<{
|
|
9940
11760
|
xPt: z.ZodNumber;
|
|
@@ -10168,6 +11988,33 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10168
11988
|
}, z.core.$strip>;
|
|
10169
11989
|
}, z.core.$strip>, z.ZodObject<{
|
|
10170
11990
|
formula: z.ZodObject<{
|
|
11991
|
+
origin: z.ZodOptional<z.ZodEnum<{
|
|
11992
|
+
body: "body";
|
|
11993
|
+
chart: "chart";
|
|
11994
|
+
diagram: "diagram";
|
|
11995
|
+
table: "table";
|
|
11996
|
+
image: "image";
|
|
11997
|
+
notes: "notes";
|
|
11998
|
+
}>>;
|
|
11999
|
+
interpretation: z.ZodOptional<z.ZodObject<{
|
|
12000
|
+
transcript: z.ZodOptional<z.ZodObject<{
|
|
12001
|
+
text: z.ZodString;
|
|
12002
|
+
confidence: z.ZodEnum<{
|
|
12003
|
+
high: "high";
|
|
12004
|
+
medium: "medium";
|
|
12005
|
+
low: "low";
|
|
12006
|
+
}>;
|
|
12007
|
+
mechanism: z.ZodEnum<{
|
|
12008
|
+
deterministic: "deterministic";
|
|
12009
|
+
model: "model";
|
|
12010
|
+
}>;
|
|
12011
|
+
}, z.core.$strip>>;
|
|
12012
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12013
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
12014
|
+
model: z.ZodString;
|
|
12015
|
+
at: z.ZodString;
|
|
12016
|
+
}, z.core.$strip>>;
|
|
12017
|
+
}, z.core.$strip>>;
|
|
10171
12018
|
mathml: z.ZodArray<z.ZodType<MathMlNode, MathMlNode, z.core.$ZodTypeInternals<MathMlNode, MathMlNode>>>;
|
|
10172
12019
|
starMath: z.ZodOptional<z.ZodString>;
|
|
10173
12020
|
presentation: z.ZodOptional<z.ZodObject<{
|
|
@@ -10270,4 +12117,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10270
12117
|
}, z.core.$strip>], "kind">;
|
|
10271
12118
|
type ContentDocument = z.infer<typeof ContentDocumentSchema>;
|
|
10272
12119
|
//#endregion
|
|
10273
|
-
export {
|
|
12120
|
+
export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, RunConstructExtent as An, ContentSheetCellComment as At, ContentFloatPosition as B, isContentConstructEnd as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentVectorSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, IMAGE_FORMATS as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, FusedNode as En, ContentShape as Et, ContentFloatAlignSchema as F, clampHeadingLevel as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, ContentSheetImage as Gt, ContentFont as H, isRunConstructExtent as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, contentDocumentSharedFields as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, findConstructMarkerImbalance as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructFault as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, SheetRuleOperator as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, ImageFormat as On, ContentSheet as Ot, ContentFloatAlign as P, SheetRuleOperatorSchema as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, findRunConstructFault as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentVector as Sn, ContentRun as St, ContentDrawPage as T, DecimalStringSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, resolveCellFillColor as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentConstructStart as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, unrecognizedFillKind 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 _, ContentTableRow as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTranscript 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, RunConstructExtentSchema as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, RUN_FONT_PROPERTY_SHAPE 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, ContentTableRowSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, DecimalString as wn, ContentSection as wt, ContentDefinedName as x, ContentTranscriptSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableSchema as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, isContentBlock as zn, ContentSheetConditionalFormatValue as zt };
|