@visus-io/notion-sdk-ts 3.0.2 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -6
- package/dist/api/asyncTasks.api.d.ts +70 -0
- package/dist/api/asyncTasks.api.js +68 -0
- package/dist/api/base.api.js +1 -0
- package/dist/api/blocks.api.d.ts +433 -73
- package/dist/api/blocks.api.js +39 -0
- package/dist/api/comments.api.d.ts +40 -5
- package/dist/api/comments.api.js +43 -1
- package/dist/api/customEmojis.api.d.ts +36 -0
- package/dist/api/customEmojis.api.js +36 -0
- package/dist/api/dataSources.api.d.ts +62 -11
- package/dist/api/dataSources.api.js +22 -0
- package/dist/api/databases.api.d.ts +40 -6
- package/dist/api/fileUploads.api.d.ts +1 -1
- package/dist/api/index.d.ts +3 -0
- package/dist/api/index.js +7 -1
- package/dist/api/pages.api.d.ts +142 -10
- package/dist/api/pages.api.js +64 -0
- package/dist/api/search.api.d.ts +10 -2
- package/dist/api/users.api.d.ts +1 -0
- package/dist/api/views.api.d.ts +284 -0
- package/dist/api/views.api.js +169 -0
- package/dist/client.js +3 -3
- package/dist/errors.d.ts +5 -1
- package/dist/errors.js +6 -0
- package/dist/helpers/block.helpers.d.ts +38 -1
- package/dist/helpers/block.helpers.js +45 -3
- package/dist/helpers/file.helpers.d.ts +36 -1
- package/dist/helpers/file.helpers.js +26 -4
- package/dist/helpers/filter.helpers.d.ts +6 -6
- package/dist/helpers/index.d.ts +3 -2
- package/dist/helpers/index.js +5 -1
- package/dist/helpers/pagination.helpers.d.ts +56 -0
- package/dist/helpers/pagination.helpers.js +86 -0
- package/dist/helpers/property.helpers.d.ts +29 -0
- package/dist/helpers/property.helpers.js +27 -0
- package/dist/helpers/webhook.helpers.d.ts +52 -0
- package/dist/helpers/webhook.helpers.js +81 -0
- package/dist/models/asyncTask.model.d.ts +59 -0
- package/dist/models/asyncTask.model.js +89 -0
- package/dist/models/block.model.js +4 -1
- package/dist/models/customEmoji.model.d.ts +28 -0
- package/dist/models/customEmoji.model.js +42 -0
- package/dist/models/dataSource.model.d.ts +3 -3
- package/dist/models/dataSource.model.js +1 -1
- package/dist/models/database.model.d.ts +7 -3
- package/dist/models/database.model.js +7 -1
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +7 -1
- package/dist/models/page.model.d.ts +2 -0
- package/dist/models/page.model.js +6 -0
- package/dist/models/view.model.d.ts +79 -0
- package/dist/models/view.model.js +119 -0
- package/dist/notion.d.ts +26 -7
- package/dist/notion.js +19 -3
- package/dist/schemas/asyncTask.schema.d.ts +42 -0
- package/dist/schemas/asyncTask.schema.js +83 -0
- package/dist/schemas/block.schema.d.ts +378 -72
- package/dist/schemas/block.schema.js +33 -7
- package/dist/schemas/comment.schema.d.ts +8 -3
- package/dist/schemas/customEmoji.schema.d.ts +13 -0
- package/dist/schemas/customEmoji.schema.js +48 -0
- package/dist/schemas/dataSource.schema.d.ts +68 -10
- package/dist/schemas/dataSource.schema.js +22 -4
- package/dist/schemas/database.schema.d.ts +38 -6
- package/dist/schemas/database.schema.js +3 -2
- package/dist/schemas/fileUpload.schema.d.ts +1 -1
- package/dist/schemas/icon.schema.d.ts +92 -0
- package/dist/schemas/icon.schema.js +88 -0
- package/dist/schemas/index.d.ts +6 -0
- package/dist/schemas/index.js +6 -0
- package/dist/schemas/meetingNotesQuery.schema.d.ts +4187 -0
- package/dist/schemas/meetingNotesQuery.schema.js +62 -0
- package/dist/schemas/page.schema.d.ts +46 -9
- package/dist/schemas/page.schema.js +4 -2
- package/dist/schemas/pageMarkdown.schema.d.ts +59 -0
- package/dist/schemas/pageMarkdown.schema.js +65 -0
- package/dist/schemas/pageProperties.schema.d.ts +30 -18
- package/dist/schemas/pageProperties.schema.js +2 -3
- package/dist/schemas/pagination.schema.d.ts +30 -3
- package/dist/schemas/pagination.schema.js +18 -1
- package/dist/schemas/parent.schema.d.ts +10 -1
- package/dist/schemas/parent.schema.js +9 -3
- package/dist/schemas/propertyObjects.schema.d.ts +12 -12
- package/dist/schemas/richText.schema.d.ts +8 -6
- package/dist/schemas/richText.schema.js +1 -1
- package/dist/schemas/user.schema.d.ts +2 -0
- package/dist/schemas/user.schema.js +2 -1
- package/dist/schemas/view.schema.d.ts +1077 -0
- package/dist/schemas/view.schema.js +115 -0
- package/package.json +2 -2
|
@@ -32,6 +32,9 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
32
32
|
}, z.core.$strip>, z.ZodObject<{
|
|
33
33
|
type: z.ZodLiteral<"block_id">;
|
|
34
34
|
block_id: z.ZodUUID;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
type: z.ZodLiteral<"agent_id">;
|
|
37
|
+
agent_id: z.ZodUUID;
|
|
35
38
|
}, z.core.$strip>], "type">;
|
|
36
39
|
type: z.ZodEnum<{
|
|
37
40
|
file: "file";
|
|
@@ -52,12 +55,14 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
52
55
|
heading_1: "heading_1";
|
|
53
56
|
heading_2: "heading_2";
|
|
54
57
|
heading_3: "heading_3";
|
|
58
|
+
heading_4: "heading_4";
|
|
55
59
|
image: "image";
|
|
56
60
|
numbered_list_item: "numbered_list_item";
|
|
57
61
|
paragraph: "paragraph";
|
|
58
62
|
pdf: "pdf";
|
|
59
63
|
quote: "quote";
|
|
60
64
|
synced_block: "synced_block";
|
|
65
|
+
tab: "tab";
|
|
61
66
|
table: "table";
|
|
62
67
|
table_of_contents: "table_of_contents";
|
|
63
68
|
table_row: "table_row";
|
|
@@ -77,6 +82,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
77
82
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
78
83
|
person: z.ZodObject<{
|
|
79
84
|
email: z.ZodEmail;
|
|
85
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
80
86
|
}, z.core.$strip>;
|
|
81
87
|
}, z.core.$strip>, z.ZodObject<{
|
|
82
88
|
object: z.ZodLiteral<"user">;
|
|
@@ -110,6 +116,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
110
116
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
111
117
|
person: z.ZodObject<{
|
|
112
118
|
email: z.ZodEmail;
|
|
119
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
113
120
|
}, z.core.$strip>;
|
|
114
121
|
}, z.core.$strip>, z.ZodObject<{
|
|
115
122
|
object: z.ZodLiteral<"user">;
|
|
@@ -169,11 +176,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
169
176
|
underline: z.ZodBoolean;
|
|
170
177
|
code: z.ZodBoolean;
|
|
171
178
|
color: z.ZodEnum<{
|
|
179
|
+
default: "default";
|
|
172
180
|
blue: "blue";
|
|
173
181
|
blue_background: "blue_background";
|
|
174
182
|
brown: "brown";
|
|
175
183
|
brown_background: "brown_background";
|
|
176
|
-
default: "default";
|
|
177
184
|
gray: "gray";
|
|
178
185
|
gray_background: "gray_background";
|
|
179
186
|
green: "green";
|
|
@@ -238,6 +245,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
238
245
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
239
246
|
person: z.ZodObject<{
|
|
240
247
|
email: z.ZodEmail;
|
|
248
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
241
249
|
}, z.core.$strip>;
|
|
242
250
|
}, z.core.$strip>, z.ZodObject<{
|
|
243
251
|
object: z.ZodLiteral<"user">;
|
|
@@ -270,11 +278,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
270
278
|
underline: z.ZodBoolean;
|
|
271
279
|
code: z.ZodBoolean;
|
|
272
280
|
color: z.ZodEnum<{
|
|
281
|
+
default: "default";
|
|
273
282
|
blue: "blue";
|
|
274
283
|
blue_background: "blue_background";
|
|
275
284
|
brown: "brown";
|
|
276
285
|
brown_background: "brown_background";
|
|
277
|
-
default: "default";
|
|
278
286
|
gray: "gray";
|
|
279
287
|
gray_background: "gray_background";
|
|
280
288
|
green: "green";
|
|
@@ -305,11 +313,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
305
313
|
underline: z.ZodBoolean;
|
|
306
314
|
code: z.ZodBoolean;
|
|
307
315
|
color: z.ZodEnum<{
|
|
316
|
+
default: "default";
|
|
308
317
|
blue: "blue";
|
|
309
318
|
blue_background: "blue_background";
|
|
310
319
|
brown: "brown";
|
|
311
320
|
brown_background: "brown_background";
|
|
312
|
-
default: "default";
|
|
313
321
|
gray: "gray";
|
|
314
322
|
gray_background: "gray_background";
|
|
315
323
|
green: "green";
|
|
@@ -348,11 +356,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
348
356
|
underline: z.ZodBoolean;
|
|
349
357
|
code: z.ZodBoolean;
|
|
350
358
|
color: z.ZodEnum<{
|
|
359
|
+
default: "default";
|
|
351
360
|
blue: "blue";
|
|
352
361
|
blue_background: "blue_background";
|
|
353
362
|
brown: "brown";
|
|
354
363
|
brown_background: "brown_background";
|
|
355
|
-
default: "default";
|
|
356
364
|
gray: "gray";
|
|
357
365
|
gray_background: "gray_background";
|
|
358
366
|
green: "green";
|
|
@@ -417,6 +425,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
417
425
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
418
426
|
person: z.ZodObject<{
|
|
419
427
|
email: z.ZodEmail;
|
|
428
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
420
429
|
}, z.core.$strip>;
|
|
421
430
|
}, z.core.$strip>, z.ZodObject<{
|
|
422
431
|
object: z.ZodLiteral<"user">;
|
|
@@ -449,11 +458,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
449
458
|
underline: z.ZodBoolean;
|
|
450
459
|
code: z.ZodBoolean;
|
|
451
460
|
color: z.ZodEnum<{
|
|
461
|
+
default: "default";
|
|
452
462
|
blue: "blue";
|
|
453
463
|
blue_background: "blue_background";
|
|
454
464
|
brown: "brown";
|
|
455
465
|
brown_background: "brown_background";
|
|
456
|
-
default: "default";
|
|
457
466
|
gray: "gray";
|
|
458
467
|
gray_background: "gray_background";
|
|
459
468
|
green: "green";
|
|
@@ -484,11 +493,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
484
493
|
underline: z.ZodBoolean;
|
|
485
494
|
code: z.ZodBoolean;
|
|
486
495
|
color: z.ZodEnum<{
|
|
496
|
+
default: "default";
|
|
487
497
|
blue: "blue";
|
|
488
498
|
blue_background: "blue_background";
|
|
489
499
|
brown: "brown";
|
|
490
500
|
brown_background: "brown_background";
|
|
491
|
-
default: "default";
|
|
492
501
|
gray: "gray";
|
|
493
502
|
gray_background: "gray_background";
|
|
494
503
|
green: "green";
|
|
@@ -509,11 +518,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
509
518
|
href: z.ZodNullable<z.ZodURL>;
|
|
510
519
|
}, z.core.$strip>], "type">>;
|
|
511
520
|
color: z.ZodEnum<{
|
|
521
|
+
default: "default";
|
|
512
522
|
blue: "blue";
|
|
513
523
|
blue_background: "blue_background";
|
|
514
524
|
brown: "brown";
|
|
515
525
|
brown_background: "brown_background";
|
|
516
|
-
default: "default";
|
|
517
526
|
gray: "gray";
|
|
518
527
|
gray_background: "gray_background";
|
|
519
528
|
green: "green";
|
|
@@ -547,11 +556,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
547
556
|
underline: z.ZodBoolean;
|
|
548
557
|
code: z.ZodBoolean;
|
|
549
558
|
color: z.ZodEnum<{
|
|
559
|
+
default: "default";
|
|
550
560
|
blue: "blue";
|
|
551
561
|
blue_background: "blue_background";
|
|
552
562
|
brown: "brown";
|
|
553
563
|
brown_background: "brown_background";
|
|
554
|
-
default: "default";
|
|
555
564
|
gray: "gray";
|
|
556
565
|
gray_background: "gray_background";
|
|
557
566
|
green: "green";
|
|
@@ -616,6 +625,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
616
625
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
617
626
|
person: z.ZodObject<{
|
|
618
627
|
email: z.ZodEmail;
|
|
628
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
619
629
|
}, z.core.$strip>;
|
|
620
630
|
}, z.core.$strip>, z.ZodObject<{
|
|
621
631
|
object: z.ZodLiteral<"user">;
|
|
@@ -648,11 +658,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
648
658
|
underline: z.ZodBoolean;
|
|
649
659
|
code: z.ZodBoolean;
|
|
650
660
|
color: z.ZodEnum<{
|
|
661
|
+
default: "default";
|
|
651
662
|
blue: "blue";
|
|
652
663
|
blue_background: "blue_background";
|
|
653
664
|
brown: "brown";
|
|
654
665
|
brown_background: "brown_background";
|
|
655
|
-
default: "default";
|
|
656
666
|
gray: "gray";
|
|
657
667
|
gray_background: "gray_background";
|
|
658
668
|
green: "green";
|
|
@@ -683,11 +693,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
683
693
|
underline: z.ZodBoolean;
|
|
684
694
|
code: z.ZodBoolean;
|
|
685
695
|
color: z.ZodEnum<{
|
|
696
|
+
default: "default";
|
|
686
697
|
blue: "blue";
|
|
687
698
|
blue_background: "blue_background";
|
|
688
699
|
brown: "brown";
|
|
689
700
|
brown_background: "brown_background";
|
|
690
|
-
default: "default";
|
|
691
701
|
gray: "gray";
|
|
692
702
|
gray_background: "gray_background";
|
|
693
703
|
green: "green";
|
|
@@ -707,10 +717,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
707
717
|
plain_text: z.ZodString;
|
|
708
718
|
href: z.ZodNullable<z.ZodURL>;
|
|
709
719
|
}, z.core.$strip>], "type">>;
|
|
710
|
-
icon: z.ZodUnion<readonly [z.ZodObject<{
|
|
711
|
-
type: z.ZodLiteral<"emoji">;
|
|
712
|
-
emoji: z.ZodString;
|
|
713
|
-
}, z.core.$strip>, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
720
|
+
icon: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
714
721
|
type: z.ZodLiteral<"file">;
|
|
715
722
|
file: z.ZodObject<{
|
|
716
723
|
url: z.ZodURL;
|
|
@@ -726,13 +733,40 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
726
733
|
external: z.ZodObject<{
|
|
727
734
|
url: z.ZodURL;
|
|
728
735
|
}, z.core.$strip>;
|
|
729
|
-
}, z.core.$strip>], "type"
|
|
736
|
+
}, z.core.$strip>], "type">, z.ZodObject<{
|
|
737
|
+
type: z.ZodLiteral<"emoji">;
|
|
738
|
+
emoji: z.ZodString;
|
|
739
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
740
|
+
type: z.ZodLiteral<"icon">;
|
|
741
|
+
icon: z.ZodObject<{
|
|
742
|
+
name: z.ZodString;
|
|
743
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
744
|
+
blue: "blue";
|
|
745
|
+
brown: "brown";
|
|
746
|
+
gray: "gray";
|
|
747
|
+
green: "green";
|
|
748
|
+
orange: "orange";
|
|
749
|
+
pink: "pink";
|
|
750
|
+
purple: "purple";
|
|
751
|
+
red: "red";
|
|
752
|
+
yellow: "yellow";
|
|
753
|
+
lightgray: "lightgray";
|
|
754
|
+
}>>;
|
|
755
|
+
}, z.core.$strip>;
|
|
756
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
757
|
+
type: z.ZodLiteral<"custom_emoji">;
|
|
758
|
+
custom_emoji: z.ZodObject<{
|
|
759
|
+
id: z.ZodUUID;
|
|
760
|
+
name: z.ZodOptional<z.ZodString>;
|
|
761
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
762
|
+
}, z.core.$strip>;
|
|
763
|
+
}, z.core.$strip>]>;
|
|
730
764
|
color: z.ZodEnum<{
|
|
765
|
+
default: "default";
|
|
731
766
|
blue: "blue";
|
|
732
767
|
blue_background: "blue_background";
|
|
733
768
|
brown: "brown";
|
|
734
769
|
brown_background: "brown_background";
|
|
735
|
-
default: "default";
|
|
736
770
|
gray: "gray";
|
|
737
771
|
gray_background: "gray_background";
|
|
738
772
|
green: "green";
|
|
@@ -772,11 +806,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
772
806
|
underline: z.ZodBoolean;
|
|
773
807
|
code: z.ZodBoolean;
|
|
774
808
|
color: z.ZodEnum<{
|
|
809
|
+
default: "default";
|
|
775
810
|
blue: "blue";
|
|
776
811
|
blue_background: "blue_background";
|
|
777
812
|
brown: "brown";
|
|
778
813
|
brown_background: "brown_background";
|
|
779
|
-
default: "default";
|
|
780
814
|
gray: "gray";
|
|
781
815
|
gray_background: "gray_background";
|
|
782
816
|
green: "green";
|
|
@@ -841,6 +875,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
841
875
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
842
876
|
person: z.ZodObject<{
|
|
843
877
|
email: z.ZodEmail;
|
|
878
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
844
879
|
}, z.core.$strip>;
|
|
845
880
|
}, z.core.$strip>, z.ZodObject<{
|
|
846
881
|
object: z.ZodLiteral<"user">;
|
|
@@ -873,11 +908,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
873
908
|
underline: z.ZodBoolean;
|
|
874
909
|
code: z.ZodBoolean;
|
|
875
910
|
color: z.ZodEnum<{
|
|
911
|
+
default: "default";
|
|
876
912
|
blue: "blue";
|
|
877
913
|
blue_background: "blue_background";
|
|
878
914
|
brown: "brown";
|
|
879
915
|
brown_background: "brown_background";
|
|
880
|
-
default: "default";
|
|
881
916
|
gray: "gray";
|
|
882
917
|
gray_background: "gray_background";
|
|
883
918
|
green: "green";
|
|
@@ -908,11 +943,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
908
943
|
underline: z.ZodBoolean;
|
|
909
944
|
code: z.ZodBoolean;
|
|
910
945
|
color: z.ZodEnum<{
|
|
946
|
+
default: "default";
|
|
911
947
|
blue: "blue";
|
|
912
948
|
blue_background: "blue_background";
|
|
913
949
|
brown: "brown";
|
|
914
950
|
brown_background: "brown_background";
|
|
915
|
-
default: "default";
|
|
916
951
|
gray: "gray";
|
|
917
952
|
gray_background: "gray_background";
|
|
918
953
|
green: "green";
|
|
@@ -947,11 +982,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
947
982
|
underline: z.ZodBoolean;
|
|
948
983
|
code: z.ZodBoolean;
|
|
949
984
|
color: z.ZodEnum<{
|
|
985
|
+
default: "default";
|
|
950
986
|
blue: "blue";
|
|
951
987
|
blue_background: "blue_background";
|
|
952
988
|
brown: "brown";
|
|
953
989
|
brown_background: "brown_background";
|
|
954
|
-
default: "default";
|
|
955
990
|
gray: "gray";
|
|
956
991
|
gray_background: "gray_background";
|
|
957
992
|
green: "green";
|
|
@@ -1016,6 +1051,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1016
1051
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
1017
1052
|
person: z.ZodObject<{
|
|
1018
1053
|
email: z.ZodEmail;
|
|
1054
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1019
1055
|
}, z.core.$strip>;
|
|
1020
1056
|
}, z.core.$strip>, z.ZodObject<{
|
|
1021
1057
|
object: z.ZodLiteral<"user">;
|
|
@@ -1048,11 +1084,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1048
1084
|
underline: z.ZodBoolean;
|
|
1049
1085
|
code: z.ZodBoolean;
|
|
1050
1086
|
color: z.ZodEnum<{
|
|
1087
|
+
default: "default";
|
|
1051
1088
|
blue: "blue";
|
|
1052
1089
|
blue_background: "blue_background";
|
|
1053
1090
|
brown: "brown";
|
|
1054
1091
|
brown_background: "brown_background";
|
|
1055
|
-
default: "default";
|
|
1056
1092
|
gray: "gray";
|
|
1057
1093
|
gray_background: "gray_background";
|
|
1058
1094
|
green: "green";
|
|
@@ -1083,11 +1119,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1083
1119
|
underline: z.ZodBoolean;
|
|
1084
1120
|
code: z.ZodBoolean;
|
|
1085
1121
|
color: z.ZodEnum<{
|
|
1122
|
+
default: "default";
|
|
1086
1123
|
blue: "blue";
|
|
1087
1124
|
blue_background: "blue_background";
|
|
1088
1125
|
brown: "brown";
|
|
1089
1126
|
brown_background: "brown_background";
|
|
1090
|
-
default: "default";
|
|
1091
1127
|
gray: "gray";
|
|
1092
1128
|
gray_background: "gray_background";
|
|
1093
1129
|
green: "green";
|
|
@@ -1182,7 +1218,9 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1182
1218
|
"java/c/c++/c#": "java/c/c++/c#";
|
|
1183
1219
|
}>;
|
|
1184
1220
|
}, z.core.$strip>>;
|
|
1185
|
-
column_list: z.ZodOptional<z.ZodObject<{
|
|
1221
|
+
column_list: z.ZodOptional<z.ZodObject<{
|
|
1222
|
+
children: z.ZodOptional<z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
1223
|
+
}, z.core.$strip>>;
|
|
1186
1224
|
column: z.ZodOptional<z.ZodObject<{
|
|
1187
1225
|
width_ratio: z.ZodOptional<z.ZodNumber>;
|
|
1188
1226
|
children: z.ZodOptional<z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
@@ -1210,11 +1248,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1210
1248
|
underline: z.ZodBoolean;
|
|
1211
1249
|
code: z.ZodBoolean;
|
|
1212
1250
|
color: z.ZodEnum<{
|
|
1251
|
+
default: "default";
|
|
1213
1252
|
blue: "blue";
|
|
1214
1253
|
blue_background: "blue_background";
|
|
1215
1254
|
brown: "brown";
|
|
1216
1255
|
brown_background: "brown_background";
|
|
1217
|
-
default: "default";
|
|
1218
1256
|
gray: "gray";
|
|
1219
1257
|
gray_background: "gray_background";
|
|
1220
1258
|
green: "green";
|
|
@@ -1279,6 +1317,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1279
1317
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
1280
1318
|
person: z.ZodObject<{
|
|
1281
1319
|
email: z.ZodEmail;
|
|
1320
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1282
1321
|
}, z.core.$strip>;
|
|
1283
1322
|
}, z.core.$strip>, z.ZodObject<{
|
|
1284
1323
|
object: z.ZodLiteral<"user">;
|
|
@@ -1311,11 +1350,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1311
1350
|
underline: z.ZodBoolean;
|
|
1312
1351
|
code: z.ZodBoolean;
|
|
1313
1352
|
color: z.ZodEnum<{
|
|
1353
|
+
default: "default";
|
|
1314
1354
|
blue: "blue";
|
|
1315
1355
|
blue_background: "blue_background";
|
|
1316
1356
|
brown: "brown";
|
|
1317
1357
|
brown_background: "brown_background";
|
|
1318
|
-
default: "default";
|
|
1319
1358
|
gray: "gray";
|
|
1320
1359
|
gray_background: "gray_background";
|
|
1321
1360
|
green: "green";
|
|
@@ -1346,11 +1385,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1346
1385
|
underline: z.ZodBoolean;
|
|
1347
1386
|
code: z.ZodBoolean;
|
|
1348
1387
|
color: z.ZodEnum<{
|
|
1388
|
+
default: "default";
|
|
1349
1389
|
blue: "blue";
|
|
1350
1390
|
blue_background: "blue_background";
|
|
1351
1391
|
brown: "brown";
|
|
1352
1392
|
brown_background: "brown_background";
|
|
1353
|
-
default: "default";
|
|
1354
1393
|
gray: "gray";
|
|
1355
1394
|
gray_background: "gray_background";
|
|
1356
1395
|
green: "green";
|
|
@@ -1444,11 +1483,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1444
1483
|
underline: z.ZodBoolean;
|
|
1445
1484
|
code: z.ZodBoolean;
|
|
1446
1485
|
color: z.ZodEnum<{
|
|
1486
|
+
default: "default";
|
|
1447
1487
|
blue: "blue";
|
|
1448
1488
|
blue_background: "blue_background";
|
|
1449
1489
|
brown: "brown";
|
|
1450
1490
|
brown_background: "brown_background";
|
|
1451
|
-
default: "default";
|
|
1452
1491
|
gray: "gray";
|
|
1453
1492
|
gray_background: "gray_background";
|
|
1454
1493
|
green: "green";
|
|
@@ -1513,6 +1552,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1513
1552
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
1514
1553
|
person: z.ZodObject<{
|
|
1515
1554
|
email: z.ZodEmail;
|
|
1555
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1516
1556
|
}, z.core.$strip>;
|
|
1517
1557
|
}, z.core.$strip>, z.ZodObject<{
|
|
1518
1558
|
object: z.ZodLiteral<"user">;
|
|
@@ -1545,11 +1585,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1545
1585
|
underline: z.ZodBoolean;
|
|
1546
1586
|
code: z.ZodBoolean;
|
|
1547
1587
|
color: z.ZodEnum<{
|
|
1588
|
+
default: "default";
|
|
1548
1589
|
blue: "blue";
|
|
1549
1590
|
blue_background: "blue_background";
|
|
1550
1591
|
brown: "brown";
|
|
1551
1592
|
brown_background: "brown_background";
|
|
1552
|
-
default: "default";
|
|
1553
1593
|
gray: "gray";
|
|
1554
1594
|
gray_background: "gray_background";
|
|
1555
1595
|
green: "green";
|
|
@@ -1580,11 +1620,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1580
1620
|
underline: z.ZodBoolean;
|
|
1581
1621
|
code: z.ZodBoolean;
|
|
1582
1622
|
color: z.ZodEnum<{
|
|
1623
|
+
default: "default";
|
|
1583
1624
|
blue: "blue";
|
|
1584
1625
|
blue_background: "blue_background";
|
|
1585
1626
|
brown: "brown";
|
|
1586
1627
|
brown_background: "brown_background";
|
|
1587
|
-
default: "default";
|
|
1588
1628
|
gray: "gray";
|
|
1589
1629
|
gray_background: "gray_background";
|
|
1590
1630
|
green: "green";
|
|
@@ -1605,11 +1645,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1605
1645
|
href: z.ZodNullable<z.ZodURL>;
|
|
1606
1646
|
}, z.core.$strip>], "type">>;
|
|
1607
1647
|
color: z.ZodEnum<{
|
|
1648
|
+
default: "default";
|
|
1608
1649
|
blue: "blue";
|
|
1609
1650
|
blue_background: "blue_background";
|
|
1610
1651
|
brown: "brown";
|
|
1611
1652
|
brown_background: "brown_background";
|
|
1612
|
-
default: "default";
|
|
1613
1653
|
gray: "gray";
|
|
1614
1654
|
gray_background: "gray_background";
|
|
1615
1655
|
green: "green";
|
|
@@ -1644,11 +1684,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1644
1684
|
underline: z.ZodBoolean;
|
|
1645
1685
|
code: z.ZodBoolean;
|
|
1646
1686
|
color: z.ZodEnum<{
|
|
1687
|
+
default: "default";
|
|
1647
1688
|
blue: "blue";
|
|
1648
1689
|
blue_background: "blue_background";
|
|
1649
1690
|
brown: "brown";
|
|
1650
1691
|
brown_background: "brown_background";
|
|
1651
|
-
default: "default";
|
|
1652
1692
|
gray: "gray";
|
|
1653
1693
|
gray_background: "gray_background";
|
|
1654
1694
|
green: "green";
|
|
@@ -1713,6 +1753,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1713
1753
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
1714
1754
|
person: z.ZodObject<{
|
|
1715
1755
|
email: z.ZodEmail;
|
|
1756
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1716
1757
|
}, z.core.$strip>;
|
|
1717
1758
|
}, z.core.$strip>, z.ZodObject<{
|
|
1718
1759
|
object: z.ZodLiteral<"user">;
|
|
@@ -1745,11 +1786,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1745
1786
|
underline: z.ZodBoolean;
|
|
1746
1787
|
code: z.ZodBoolean;
|
|
1747
1788
|
color: z.ZodEnum<{
|
|
1789
|
+
default: "default";
|
|
1748
1790
|
blue: "blue";
|
|
1749
1791
|
blue_background: "blue_background";
|
|
1750
1792
|
brown: "brown";
|
|
1751
1793
|
brown_background: "brown_background";
|
|
1752
|
-
default: "default";
|
|
1753
1794
|
gray: "gray";
|
|
1754
1795
|
gray_background: "gray_background";
|
|
1755
1796
|
green: "green";
|
|
@@ -1780,11 +1821,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1780
1821
|
underline: z.ZodBoolean;
|
|
1781
1822
|
code: z.ZodBoolean;
|
|
1782
1823
|
color: z.ZodEnum<{
|
|
1824
|
+
default: "default";
|
|
1783
1825
|
blue: "blue";
|
|
1784
1826
|
blue_background: "blue_background";
|
|
1785
1827
|
brown: "brown";
|
|
1786
1828
|
brown_background: "brown_background";
|
|
1787
|
-
default: "default";
|
|
1788
1829
|
gray: "gray";
|
|
1789
1830
|
gray_background: "gray_background";
|
|
1790
1831
|
green: "green";
|
|
@@ -1805,11 +1846,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1805
1846
|
href: z.ZodNullable<z.ZodURL>;
|
|
1806
1847
|
}, z.core.$strip>], "type">>;
|
|
1807
1848
|
color: z.ZodEnum<{
|
|
1849
|
+
default: "default";
|
|
1808
1850
|
blue: "blue";
|
|
1809
1851
|
blue_background: "blue_background";
|
|
1810
1852
|
brown: "brown";
|
|
1811
1853
|
brown_background: "brown_background";
|
|
1812
|
-
default: "default";
|
|
1813
1854
|
gray: "gray";
|
|
1814
1855
|
gray_background: "gray_background";
|
|
1815
1856
|
green: "green";
|
|
@@ -1844,11 +1885,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1844
1885
|
underline: z.ZodBoolean;
|
|
1845
1886
|
code: z.ZodBoolean;
|
|
1846
1887
|
color: z.ZodEnum<{
|
|
1888
|
+
default: "default";
|
|
1847
1889
|
blue: "blue";
|
|
1848
1890
|
blue_background: "blue_background";
|
|
1849
1891
|
brown: "brown";
|
|
1850
1892
|
brown_background: "brown_background";
|
|
1851
|
-
default: "default";
|
|
1852
1893
|
gray: "gray";
|
|
1853
1894
|
gray_background: "gray_background";
|
|
1854
1895
|
green: "green";
|
|
@@ -1913,6 +1954,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1913
1954
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
1914
1955
|
person: z.ZodObject<{
|
|
1915
1956
|
email: z.ZodEmail;
|
|
1957
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1916
1958
|
}, z.core.$strip>;
|
|
1917
1959
|
}, z.core.$strip>, z.ZodObject<{
|
|
1918
1960
|
object: z.ZodLiteral<"user">;
|
|
@@ -1945,11 +1987,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1945
1987
|
underline: z.ZodBoolean;
|
|
1946
1988
|
code: z.ZodBoolean;
|
|
1947
1989
|
color: z.ZodEnum<{
|
|
1990
|
+
default: "default";
|
|
1948
1991
|
blue: "blue";
|
|
1949
1992
|
blue_background: "blue_background";
|
|
1950
1993
|
brown: "brown";
|
|
1951
1994
|
brown_background: "brown_background";
|
|
1952
|
-
default: "default";
|
|
1953
1995
|
gray: "gray";
|
|
1954
1996
|
gray_background: "gray_background";
|
|
1955
1997
|
green: "green";
|
|
@@ -1980,11 +2022,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
1980
2022
|
underline: z.ZodBoolean;
|
|
1981
2023
|
code: z.ZodBoolean;
|
|
1982
2024
|
color: z.ZodEnum<{
|
|
2025
|
+
default: "default";
|
|
1983
2026
|
blue: "blue";
|
|
1984
2027
|
blue_background: "blue_background";
|
|
1985
2028
|
brown: "brown";
|
|
1986
2029
|
brown_background: "brown_background";
|
|
1987
|
-
default: "default";
|
|
1988
2030
|
gray: "gray";
|
|
1989
2031
|
gray_background: "gray_background";
|
|
1990
2032
|
green: "green";
|
|
@@ -2005,11 +2047,212 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2005
2047
|
href: z.ZodNullable<z.ZodURL>;
|
|
2006
2048
|
}, z.core.$strip>], "type">>;
|
|
2007
2049
|
color: z.ZodEnum<{
|
|
2050
|
+
default: "default";
|
|
2008
2051
|
blue: "blue";
|
|
2009
2052
|
blue_background: "blue_background";
|
|
2010
2053
|
brown: "brown";
|
|
2011
2054
|
brown_background: "brown_background";
|
|
2055
|
+
gray: "gray";
|
|
2056
|
+
gray_background: "gray_background";
|
|
2057
|
+
green: "green";
|
|
2058
|
+
green_background: "green_background";
|
|
2059
|
+
orange: "orange";
|
|
2060
|
+
orange_background: "orange_background";
|
|
2061
|
+
pink: "pink";
|
|
2062
|
+
pink_background: "pink_background";
|
|
2063
|
+
purple: "purple";
|
|
2064
|
+
purple_background: "purple_background";
|
|
2065
|
+
red: "red";
|
|
2066
|
+
red_background: "red_background";
|
|
2067
|
+
yellow: "yellow";
|
|
2068
|
+
yellow_background: "yellow_background";
|
|
2069
|
+
}>;
|
|
2070
|
+
is_toggleable: z.ZodBoolean;
|
|
2071
|
+
children: z.ZodOptional<z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
2072
|
+
}, z.core.$strip>>;
|
|
2073
|
+
heading_4: z.ZodOptional<z.ZodObject<{
|
|
2074
|
+
rich_text: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2075
|
+
type: z.ZodLiteral<"text">;
|
|
2076
|
+
text: z.ZodObject<{
|
|
2077
|
+
content: z.ZodString;
|
|
2078
|
+
link: z.ZodNullable<z.ZodObject<{
|
|
2079
|
+
url: z.ZodURL;
|
|
2080
|
+
}, z.core.$strip>>;
|
|
2081
|
+
}, z.core.$strip>;
|
|
2082
|
+
annotations: z.ZodObject<{
|
|
2083
|
+
bold: z.ZodBoolean;
|
|
2084
|
+
italic: z.ZodBoolean;
|
|
2085
|
+
strikethrough: z.ZodBoolean;
|
|
2086
|
+
underline: z.ZodBoolean;
|
|
2087
|
+
code: z.ZodBoolean;
|
|
2088
|
+
color: z.ZodEnum<{
|
|
2089
|
+
default: "default";
|
|
2090
|
+
blue: "blue";
|
|
2091
|
+
blue_background: "blue_background";
|
|
2092
|
+
brown: "brown";
|
|
2093
|
+
brown_background: "brown_background";
|
|
2094
|
+
gray: "gray";
|
|
2095
|
+
gray_background: "gray_background";
|
|
2096
|
+
green: "green";
|
|
2097
|
+
green_background: "green_background";
|
|
2098
|
+
orange: "orange";
|
|
2099
|
+
orange_background: "orange_background";
|
|
2100
|
+
pink: "pink";
|
|
2101
|
+
pink_background: "pink_background";
|
|
2102
|
+
purple: "purple";
|
|
2103
|
+
purple_background: "purple_background";
|
|
2104
|
+
red: "red";
|
|
2105
|
+
red_background: "red_background";
|
|
2106
|
+
yellow: "yellow";
|
|
2107
|
+
yellow_background: "yellow_background";
|
|
2108
|
+
}>;
|
|
2109
|
+
}, z.core.$strip>;
|
|
2110
|
+
plain_text: z.ZodString;
|
|
2111
|
+
href: z.ZodNullable<z.ZodURL>;
|
|
2112
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2113
|
+
type: z.ZodLiteral<"mention">;
|
|
2114
|
+
mention: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2115
|
+
type: z.ZodLiteral<"database">;
|
|
2116
|
+
database: z.ZodObject<{
|
|
2117
|
+
id: z.ZodUUID;
|
|
2118
|
+
}, z.core.$strip>;
|
|
2119
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2120
|
+
type: z.ZodLiteral<"date">;
|
|
2121
|
+
date: z.ZodObject<{
|
|
2122
|
+
start: z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate]>;
|
|
2123
|
+
end: z.ZodNullable<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate]>>;
|
|
2124
|
+
time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2125
|
+
}, z.core.$strip>;
|
|
2126
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2127
|
+
type: z.ZodLiteral<"link_preview">;
|
|
2128
|
+
link_preview: z.ZodObject<{
|
|
2129
|
+
url: z.ZodURL;
|
|
2130
|
+
}, z.core.$strip>;
|
|
2131
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2132
|
+
type: z.ZodLiteral<"page">;
|
|
2133
|
+
page: z.ZodObject<{
|
|
2134
|
+
id: z.ZodUUID;
|
|
2135
|
+
}, z.core.$strip>;
|
|
2136
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2137
|
+
type: z.ZodLiteral<"template_mention">;
|
|
2138
|
+
template_mention: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2139
|
+
type: z.ZodLiteral<"template_mention_date">;
|
|
2140
|
+
template_mention_date: z.ZodEnum<{
|
|
2141
|
+
today: "today";
|
|
2142
|
+
now: "now";
|
|
2143
|
+
}>;
|
|
2144
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2145
|
+
type: z.ZodLiteral<"template_mention_user">;
|
|
2146
|
+
template_mention_user: z.ZodLiteral<"me">;
|
|
2147
|
+
}, z.core.$strip>], "type">;
|
|
2148
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2149
|
+
type: z.ZodLiteral<"user">;
|
|
2150
|
+
user: z.ZodUnion<readonly [z.ZodObject<{
|
|
2151
|
+
object: z.ZodLiteral<"user">;
|
|
2152
|
+
id: z.ZodUUID;
|
|
2153
|
+
type: z.ZodLiteral<"person">;
|
|
2154
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2155
|
+
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
2156
|
+
person: z.ZodObject<{
|
|
2157
|
+
email: z.ZodEmail;
|
|
2158
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
2159
|
+
}, z.core.$strip>;
|
|
2160
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2161
|
+
object: z.ZodLiteral<"user">;
|
|
2162
|
+
id: z.ZodUUID;
|
|
2163
|
+
type: z.ZodLiteral<"bot">;
|
|
2164
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2165
|
+
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
2166
|
+
bot: z.ZodObject<{
|
|
2167
|
+
owner: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2168
|
+
type: z.ZodLiteral<"workspace">;
|
|
2169
|
+
workspace: z.ZodLiteral<true>;
|
|
2170
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2171
|
+
type: z.ZodLiteral<"user">;
|
|
2172
|
+
}, z.core.$strip>], "type">;
|
|
2173
|
+
workspace_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2174
|
+
workspace_id: z.ZodOptional<z.ZodString>;
|
|
2175
|
+
workspace_limits: z.ZodOptional<z.ZodObject<{
|
|
2176
|
+
max_file_upload_size_in_bytes: z.ZodInt;
|
|
2177
|
+
}, z.core.$strip>>;
|
|
2178
|
+
}, z.core.$strip>;
|
|
2179
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2180
|
+
object: z.ZodLiteral<"user">;
|
|
2181
|
+
id: z.ZodUUID;
|
|
2182
|
+
}, z.core.$strip>]>;
|
|
2183
|
+
}, z.core.$strip>], "type">;
|
|
2184
|
+
annotations: z.ZodObject<{
|
|
2185
|
+
bold: z.ZodBoolean;
|
|
2186
|
+
italic: z.ZodBoolean;
|
|
2187
|
+
strikethrough: z.ZodBoolean;
|
|
2188
|
+
underline: z.ZodBoolean;
|
|
2189
|
+
code: z.ZodBoolean;
|
|
2190
|
+
color: z.ZodEnum<{
|
|
2191
|
+
default: "default";
|
|
2192
|
+
blue: "blue";
|
|
2193
|
+
blue_background: "blue_background";
|
|
2194
|
+
brown: "brown";
|
|
2195
|
+
brown_background: "brown_background";
|
|
2196
|
+
gray: "gray";
|
|
2197
|
+
gray_background: "gray_background";
|
|
2198
|
+
green: "green";
|
|
2199
|
+
green_background: "green_background";
|
|
2200
|
+
orange: "orange";
|
|
2201
|
+
orange_background: "orange_background";
|
|
2202
|
+
pink: "pink";
|
|
2203
|
+
pink_background: "pink_background";
|
|
2204
|
+
purple: "purple";
|
|
2205
|
+
purple_background: "purple_background";
|
|
2206
|
+
red: "red";
|
|
2207
|
+
red_background: "red_background";
|
|
2208
|
+
yellow: "yellow";
|
|
2209
|
+
yellow_background: "yellow_background";
|
|
2210
|
+
}>;
|
|
2211
|
+
}, z.core.$strip>;
|
|
2212
|
+
plain_text: z.ZodString;
|
|
2213
|
+
href: z.ZodNullable<z.ZodURL>;
|
|
2214
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2215
|
+
type: z.ZodLiteral<"equation">;
|
|
2216
|
+
equation: z.ZodObject<{
|
|
2217
|
+
expression: z.ZodString;
|
|
2218
|
+
}, z.core.$strip>;
|
|
2219
|
+
annotations: z.ZodObject<{
|
|
2220
|
+
bold: z.ZodBoolean;
|
|
2221
|
+
italic: z.ZodBoolean;
|
|
2222
|
+
strikethrough: z.ZodBoolean;
|
|
2223
|
+
underline: z.ZodBoolean;
|
|
2224
|
+
code: z.ZodBoolean;
|
|
2225
|
+
color: z.ZodEnum<{
|
|
2226
|
+
default: "default";
|
|
2227
|
+
blue: "blue";
|
|
2228
|
+
blue_background: "blue_background";
|
|
2229
|
+
brown: "brown";
|
|
2230
|
+
brown_background: "brown_background";
|
|
2231
|
+
gray: "gray";
|
|
2232
|
+
gray_background: "gray_background";
|
|
2233
|
+
green: "green";
|
|
2234
|
+
green_background: "green_background";
|
|
2235
|
+
orange: "orange";
|
|
2236
|
+
orange_background: "orange_background";
|
|
2237
|
+
pink: "pink";
|
|
2238
|
+
pink_background: "pink_background";
|
|
2239
|
+
purple: "purple";
|
|
2240
|
+
purple_background: "purple_background";
|
|
2241
|
+
red: "red";
|
|
2242
|
+
red_background: "red_background";
|
|
2243
|
+
yellow: "yellow";
|
|
2244
|
+
yellow_background: "yellow_background";
|
|
2245
|
+
}>;
|
|
2246
|
+
}, z.core.$strip>;
|
|
2247
|
+
plain_text: z.ZodString;
|
|
2248
|
+
href: z.ZodNullable<z.ZodURL>;
|
|
2249
|
+
}, z.core.$strip>], "type">>;
|
|
2250
|
+
color: z.ZodEnum<{
|
|
2012
2251
|
default: "default";
|
|
2252
|
+
blue: "blue";
|
|
2253
|
+
blue_background: "blue_background";
|
|
2254
|
+
brown: "brown";
|
|
2255
|
+
brown_background: "brown_background";
|
|
2013
2256
|
gray: "gray";
|
|
2014
2257
|
gray_background: "gray_background";
|
|
2015
2258
|
green: "green";
|
|
@@ -2064,11 +2307,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2064
2307
|
underline: z.ZodBoolean;
|
|
2065
2308
|
code: z.ZodBoolean;
|
|
2066
2309
|
color: z.ZodEnum<{
|
|
2310
|
+
default: "default";
|
|
2067
2311
|
blue: "blue";
|
|
2068
2312
|
blue_background: "blue_background";
|
|
2069
2313
|
brown: "brown";
|
|
2070
2314
|
brown_background: "brown_background";
|
|
2071
|
-
default: "default";
|
|
2072
2315
|
gray: "gray";
|
|
2073
2316
|
gray_background: "gray_background";
|
|
2074
2317
|
green: "green";
|
|
@@ -2133,6 +2376,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2133
2376
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
2134
2377
|
person: z.ZodObject<{
|
|
2135
2378
|
email: z.ZodEmail;
|
|
2379
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
2136
2380
|
}, z.core.$strip>;
|
|
2137
2381
|
}, z.core.$strip>, z.ZodObject<{
|
|
2138
2382
|
object: z.ZodLiteral<"user">;
|
|
@@ -2165,11 +2409,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2165
2409
|
underline: z.ZodBoolean;
|
|
2166
2410
|
code: z.ZodBoolean;
|
|
2167
2411
|
color: z.ZodEnum<{
|
|
2412
|
+
default: "default";
|
|
2168
2413
|
blue: "blue";
|
|
2169
2414
|
blue_background: "blue_background";
|
|
2170
2415
|
brown: "brown";
|
|
2171
2416
|
brown_background: "brown_background";
|
|
2172
|
-
default: "default";
|
|
2173
2417
|
gray: "gray";
|
|
2174
2418
|
gray_background: "gray_background";
|
|
2175
2419
|
green: "green";
|
|
@@ -2200,11 +2444,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2200
2444
|
underline: z.ZodBoolean;
|
|
2201
2445
|
code: z.ZodBoolean;
|
|
2202
2446
|
color: z.ZodEnum<{
|
|
2447
|
+
default: "default";
|
|
2203
2448
|
blue: "blue";
|
|
2204
2449
|
blue_background: "blue_background";
|
|
2205
2450
|
brown: "brown";
|
|
2206
2451
|
brown_background: "brown_background";
|
|
2207
|
-
default: "default";
|
|
2208
2452
|
gray: "gray";
|
|
2209
2453
|
gray_background: "gray_background";
|
|
2210
2454
|
green: "green";
|
|
@@ -2225,11 +2469,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2225
2469
|
href: z.ZodNullable<z.ZodURL>;
|
|
2226
2470
|
}, z.core.$strip>], "type">>;
|
|
2227
2471
|
color: z.ZodEnum<{
|
|
2472
|
+
default: "default";
|
|
2228
2473
|
blue: "blue";
|
|
2229
2474
|
blue_background: "blue_background";
|
|
2230
2475
|
brown: "brown";
|
|
2231
2476
|
brown_background: "brown_background";
|
|
2232
|
-
default: "default";
|
|
2233
2477
|
gray: "gray";
|
|
2234
2478
|
gray_background: "gray_background";
|
|
2235
2479
|
green: "green";
|
|
@@ -2269,11 +2513,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2269
2513
|
underline: z.ZodBoolean;
|
|
2270
2514
|
code: z.ZodBoolean;
|
|
2271
2515
|
color: z.ZodEnum<{
|
|
2516
|
+
default: "default";
|
|
2272
2517
|
blue: "blue";
|
|
2273
2518
|
blue_background: "blue_background";
|
|
2274
2519
|
brown: "brown";
|
|
2275
2520
|
brown_background: "brown_background";
|
|
2276
|
-
default: "default";
|
|
2277
2521
|
gray: "gray";
|
|
2278
2522
|
gray_background: "gray_background";
|
|
2279
2523
|
green: "green";
|
|
@@ -2338,6 +2582,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2338
2582
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
2339
2583
|
person: z.ZodObject<{
|
|
2340
2584
|
email: z.ZodEmail;
|
|
2585
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
2341
2586
|
}, z.core.$strip>;
|
|
2342
2587
|
}, z.core.$strip>, z.ZodObject<{
|
|
2343
2588
|
object: z.ZodLiteral<"user">;
|
|
@@ -2370,11 +2615,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2370
2615
|
underline: z.ZodBoolean;
|
|
2371
2616
|
code: z.ZodBoolean;
|
|
2372
2617
|
color: z.ZodEnum<{
|
|
2618
|
+
default: "default";
|
|
2373
2619
|
blue: "blue";
|
|
2374
2620
|
blue_background: "blue_background";
|
|
2375
2621
|
brown: "brown";
|
|
2376
2622
|
brown_background: "brown_background";
|
|
2377
|
-
default: "default";
|
|
2378
2623
|
gray: "gray";
|
|
2379
2624
|
gray_background: "gray_background";
|
|
2380
2625
|
green: "green";
|
|
@@ -2405,11 +2650,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2405
2650
|
underline: z.ZodBoolean;
|
|
2406
2651
|
code: z.ZodBoolean;
|
|
2407
2652
|
color: z.ZodEnum<{
|
|
2653
|
+
default: "default";
|
|
2408
2654
|
blue: "blue";
|
|
2409
2655
|
blue_background: "blue_background";
|
|
2410
2656
|
brown: "brown";
|
|
2411
2657
|
brown_background: "brown_background";
|
|
2412
|
-
default: "default";
|
|
2413
2658
|
gray: "gray";
|
|
2414
2659
|
gray_background: "gray_background";
|
|
2415
2660
|
green: "green";
|
|
@@ -2430,11 +2675,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2430
2675
|
href: z.ZodNullable<z.ZodURL>;
|
|
2431
2676
|
}, z.core.$strip>], "type">>;
|
|
2432
2677
|
color: z.ZodEnum<{
|
|
2678
|
+
default: "default";
|
|
2433
2679
|
blue: "blue";
|
|
2434
2680
|
blue_background: "blue_background";
|
|
2435
2681
|
brown: "brown";
|
|
2436
2682
|
brown_background: "brown_background";
|
|
2437
|
-
default: "default";
|
|
2438
2683
|
gray: "gray";
|
|
2439
2684
|
gray_background: "gray_background";
|
|
2440
2685
|
green: "green";
|
|
@@ -2450,6 +2695,50 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2450
2695
|
yellow: "yellow";
|
|
2451
2696
|
yellow_background: "yellow_background";
|
|
2452
2697
|
}>;
|
|
2698
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2699
|
+
type: z.ZodLiteral<"file">;
|
|
2700
|
+
file: z.ZodObject<{
|
|
2701
|
+
url: z.ZodURL;
|
|
2702
|
+
expiry_time: z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate]>;
|
|
2703
|
+
}, z.core.$strip>;
|
|
2704
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2705
|
+
type: z.ZodLiteral<"file_upload">;
|
|
2706
|
+
file_upload: z.ZodObject<{
|
|
2707
|
+
id: z.ZodUUID;
|
|
2708
|
+
}, z.core.$strip>;
|
|
2709
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2710
|
+
type: z.ZodLiteral<"external">;
|
|
2711
|
+
external: z.ZodObject<{
|
|
2712
|
+
url: z.ZodURL;
|
|
2713
|
+
}, z.core.$strip>;
|
|
2714
|
+
}, z.core.$strip>], "type">, z.ZodObject<{
|
|
2715
|
+
type: z.ZodLiteral<"emoji">;
|
|
2716
|
+
emoji: z.ZodString;
|
|
2717
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2718
|
+
type: z.ZodLiteral<"icon">;
|
|
2719
|
+
icon: z.ZodObject<{
|
|
2720
|
+
name: z.ZodString;
|
|
2721
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2722
|
+
blue: "blue";
|
|
2723
|
+
brown: "brown";
|
|
2724
|
+
gray: "gray";
|
|
2725
|
+
green: "green";
|
|
2726
|
+
orange: "orange";
|
|
2727
|
+
pink: "pink";
|
|
2728
|
+
purple: "purple";
|
|
2729
|
+
red: "red";
|
|
2730
|
+
yellow: "yellow";
|
|
2731
|
+
lightgray: "lightgray";
|
|
2732
|
+
}>>;
|
|
2733
|
+
}, z.core.$strip>;
|
|
2734
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2735
|
+
type: z.ZodLiteral<"custom_emoji">;
|
|
2736
|
+
custom_emoji: z.ZodObject<{
|
|
2737
|
+
id: z.ZodUUID;
|
|
2738
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2739
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
2740
|
+
}, z.core.$strip>;
|
|
2741
|
+
}, z.core.$strip>]>>;
|
|
2453
2742
|
children: z.ZodOptional<z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
2454
2743
|
}, z.core.$strip>>;
|
|
2455
2744
|
pdf: z.ZodOptional<z.ZodObject<{
|
|
@@ -2468,11 +2757,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2468
2757
|
underline: z.ZodBoolean;
|
|
2469
2758
|
code: z.ZodBoolean;
|
|
2470
2759
|
color: z.ZodEnum<{
|
|
2760
|
+
default: "default";
|
|
2471
2761
|
blue: "blue";
|
|
2472
2762
|
blue_background: "blue_background";
|
|
2473
2763
|
brown: "brown";
|
|
2474
2764
|
brown_background: "brown_background";
|
|
2475
|
-
default: "default";
|
|
2476
2765
|
gray: "gray";
|
|
2477
2766
|
gray_background: "gray_background";
|
|
2478
2767
|
green: "green";
|
|
@@ -2537,6 +2826,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2537
2826
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
2538
2827
|
person: z.ZodObject<{
|
|
2539
2828
|
email: z.ZodEmail;
|
|
2829
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
2540
2830
|
}, z.core.$strip>;
|
|
2541
2831
|
}, z.core.$strip>, z.ZodObject<{
|
|
2542
2832
|
object: z.ZodLiteral<"user">;
|
|
@@ -2569,11 +2859,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2569
2859
|
underline: z.ZodBoolean;
|
|
2570
2860
|
code: z.ZodBoolean;
|
|
2571
2861
|
color: z.ZodEnum<{
|
|
2862
|
+
default: "default";
|
|
2572
2863
|
blue: "blue";
|
|
2573
2864
|
blue_background: "blue_background";
|
|
2574
2865
|
brown: "brown";
|
|
2575
2866
|
brown_background: "brown_background";
|
|
2576
|
-
default: "default";
|
|
2577
2867
|
gray: "gray";
|
|
2578
2868
|
gray_background: "gray_background";
|
|
2579
2869
|
green: "green";
|
|
@@ -2604,11 +2894,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2604
2894
|
underline: z.ZodBoolean;
|
|
2605
2895
|
code: z.ZodBoolean;
|
|
2606
2896
|
color: z.ZodEnum<{
|
|
2897
|
+
default: "default";
|
|
2607
2898
|
blue: "blue";
|
|
2608
2899
|
blue_background: "blue_background";
|
|
2609
2900
|
brown: "brown";
|
|
2610
2901
|
brown_background: "brown_background";
|
|
2611
|
-
default: "default";
|
|
2612
2902
|
gray: "gray";
|
|
2613
2903
|
gray_background: "gray_background";
|
|
2614
2904
|
green: "green";
|
|
@@ -2702,11 +2992,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2702
2992
|
underline: z.ZodBoolean;
|
|
2703
2993
|
code: z.ZodBoolean;
|
|
2704
2994
|
color: z.ZodEnum<{
|
|
2995
|
+
default: "default";
|
|
2705
2996
|
blue: "blue";
|
|
2706
2997
|
blue_background: "blue_background";
|
|
2707
2998
|
brown: "brown";
|
|
2708
2999
|
brown_background: "brown_background";
|
|
2709
|
-
default: "default";
|
|
2710
3000
|
gray: "gray";
|
|
2711
3001
|
gray_background: "gray_background";
|
|
2712
3002
|
green: "green";
|
|
@@ -2771,6 +3061,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2771
3061
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
2772
3062
|
person: z.ZodObject<{
|
|
2773
3063
|
email: z.ZodEmail;
|
|
3064
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
2774
3065
|
}, z.core.$strip>;
|
|
2775
3066
|
}, z.core.$strip>, z.ZodObject<{
|
|
2776
3067
|
object: z.ZodLiteral<"user">;
|
|
@@ -2803,11 +3094,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2803
3094
|
underline: z.ZodBoolean;
|
|
2804
3095
|
code: z.ZodBoolean;
|
|
2805
3096
|
color: z.ZodEnum<{
|
|
3097
|
+
default: "default";
|
|
2806
3098
|
blue: "blue";
|
|
2807
3099
|
blue_background: "blue_background";
|
|
2808
3100
|
brown: "brown";
|
|
2809
3101
|
brown_background: "brown_background";
|
|
2810
|
-
default: "default";
|
|
2811
3102
|
gray: "gray";
|
|
2812
3103
|
gray_background: "gray_background";
|
|
2813
3104
|
green: "green";
|
|
@@ -2838,11 +3129,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2838
3129
|
underline: z.ZodBoolean;
|
|
2839
3130
|
code: z.ZodBoolean;
|
|
2840
3131
|
color: z.ZodEnum<{
|
|
3132
|
+
default: "default";
|
|
2841
3133
|
blue: "blue";
|
|
2842
3134
|
blue_background: "blue_background";
|
|
2843
3135
|
brown: "brown";
|
|
2844
3136
|
brown_background: "brown_background";
|
|
2845
|
-
default: "default";
|
|
2846
3137
|
gray: "gray";
|
|
2847
3138
|
gray_background: "gray_background";
|
|
2848
3139
|
green: "green";
|
|
@@ -2863,11 +3154,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2863
3154
|
href: z.ZodNullable<z.ZodURL>;
|
|
2864
3155
|
}, z.core.$strip>], "type">>;
|
|
2865
3156
|
color: z.ZodEnum<{
|
|
3157
|
+
default: "default";
|
|
2866
3158
|
blue: "blue";
|
|
2867
3159
|
blue_background: "blue_background";
|
|
2868
3160
|
brown: "brown";
|
|
2869
3161
|
brown_background: "brown_background";
|
|
2870
|
-
default: "default";
|
|
2871
3162
|
gray: "gray";
|
|
2872
3163
|
gray_background: "gray_background";
|
|
2873
3164
|
green: "green";
|
|
@@ -2892,6 +3183,9 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2892
3183
|
}, z.core.$strip>>;
|
|
2893
3184
|
children: z.ZodOptional<z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
2894
3185
|
}, z.core.$strip>>;
|
|
3186
|
+
tab: z.ZodOptional<z.ZodObject<{
|
|
3187
|
+
children: z.ZodOptional<z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3188
|
+
}, z.core.$strip>>;
|
|
2895
3189
|
table: z.ZodOptional<z.ZodObject<{
|
|
2896
3190
|
table_width: z.ZodInt;
|
|
2897
3191
|
has_column_header: z.ZodBoolean;
|
|
@@ -2899,11 +3193,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2899
3193
|
}, z.core.$strip>>;
|
|
2900
3194
|
table_of_contents: z.ZodOptional<z.ZodObject<{
|
|
2901
3195
|
color: z.ZodEnum<{
|
|
3196
|
+
default: "default";
|
|
2902
3197
|
blue: "blue";
|
|
2903
3198
|
blue_background: "blue_background";
|
|
2904
3199
|
brown: "brown";
|
|
2905
3200
|
brown_background: "brown_background";
|
|
2906
|
-
default: "default";
|
|
2907
3201
|
gray: "gray";
|
|
2908
3202
|
gray_background: "gray_background";
|
|
2909
3203
|
green: "green";
|
|
@@ -2936,11 +3230,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
2936
3230
|
underline: z.ZodBoolean;
|
|
2937
3231
|
code: z.ZodBoolean;
|
|
2938
3232
|
color: z.ZodEnum<{
|
|
3233
|
+
default: "default";
|
|
2939
3234
|
blue: "blue";
|
|
2940
3235
|
blue_background: "blue_background";
|
|
2941
3236
|
brown: "brown";
|
|
2942
3237
|
brown_background: "brown_background";
|
|
2943
|
-
default: "default";
|
|
2944
3238
|
gray: "gray";
|
|
2945
3239
|
gray_background: "gray_background";
|
|
2946
3240
|
green: "green";
|
|
@@ -3005,6 +3299,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3005
3299
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
3006
3300
|
person: z.ZodObject<{
|
|
3007
3301
|
email: z.ZodEmail;
|
|
3302
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
3008
3303
|
}, z.core.$strip>;
|
|
3009
3304
|
}, z.core.$strip>, z.ZodObject<{
|
|
3010
3305
|
object: z.ZodLiteral<"user">;
|
|
@@ -3037,11 +3332,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3037
3332
|
underline: z.ZodBoolean;
|
|
3038
3333
|
code: z.ZodBoolean;
|
|
3039
3334
|
color: z.ZodEnum<{
|
|
3335
|
+
default: "default";
|
|
3040
3336
|
blue: "blue";
|
|
3041
3337
|
blue_background: "blue_background";
|
|
3042
3338
|
brown: "brown";
|
|
3043
3339
|
brown_background: "brown_background";
|
|
3044
|
-
default: "default";
|
|
3045
3340
|
gray: "gray";
|
|
3046
3341
|
gray_background: "gray_background";
|
|
3047
3342
|
green: "green";
|
|
@@ -3072,11 +3367,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3072
3367
|
underline: z.ZodBoolean;
|
|
3073
3368
|
code: z.ZodBoolean;
|
|
3074
3369
|
color: z.ZodEnum<{
|
|
3370
|
+
default: "default";
|
|
3075
3371
|
blue: "blue";
|
|
3076
3372
|
blue_background: "blue_background";
|
|
3077
3373
|
brown: "brown";
|
|
3078
3374
|
brown_background: "brown_background";
|
|
3079
|
-
default: "default";
|
|
3080
3375
|
gray: "gray";
|
|
3081
3376
|
gray_background: "gray_background";
|
|
3082
3377
|
green: "green";
|
|
@@ -3113,11 +3408,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3113
3408
|
underline: z.ZodBoolean;
|
|
3114
3409
|
code: z.ZodBoolean;
|
|
3115
3410
|
color: z.ZodEnum<{
|
|
3411
|
+
default: "default";
|
|
3116
3412
|
blue: "blue";
|
|
3117
3413
|
blue_background: "blue_background";
|
|
3118
3414
|
brown: "brown";
|
|
3119
3415
|
brown_background: "brown_background";
|
|
3120
|
-
default: "default";
|
|
3121
3416
|
gray: "gray";
|
|
3122
3417
|
gray_background: "gray_background";
|
|
3123
3418
|
green: "green";
|
|
@@ -3182,6 +3477,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3182
3477
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
3183
3478
|
person: z.ZodObject<{
|
|
3184
3479
|
email: z.ZodEmail;
|
|
3480
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
3185
3481
|
}, z.core.$strip>;
|
|
3186
3482
|
}, z.core.$strip>, z.ZodObject<{
|
|
3187
3483
|
object: z.ZodLiteral<"user">;
|
|
@@ -3214,11 +3510,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3214
3510
|
underline: z.ZodBoolean;
|
|
3215
3511
|
code: z.ZodBoolean;
|
|
3216
3512
|
color: z.ZodEnum<{
|
|
3513
|
+
default: "default";
|
|
3217
3514
|
blue: "blue";
|
|
3218
3515
|
blue_background: "blue_background";
|
|
3219
3516
|
brown: "brown";
|
|
3220
3517
|
brown_background: "brown_background";
|
|
3221
|
-
default: "default";
|
|
3222
3518
|
gray: "gray";
|
|
3223
3519
|
gray_background: "gray_background";
|
|
3224
3520
|
green: "green";
|
|
@@ -3249,11 +3545,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3249
3545
|
underline: z.ZodBoolean;
|
|
3250
3546
|
code: z.ZodBoolean;
|
|
3251
3547
|
color: z.ZodEnum<{
|
|
3548
|
+
default: "default";
|
|
3252
3549
|
blue: "blue";
|
|
3253
3550
|
blue_background: "blue_background";
|
|
3254
3551
|
brown: "brown";
|
|
3255
3552
|
brown_background: "brown_background";
|
|
3256
|
-
default: "default";
|
|
3257
3553
|
gray: "gray";
|
|
3258
3554
|
gray_background: "gray_background";
|
|
3259
3555
|
green: "green";
|
|
@@ -3291,11 +3587,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3291
3587
|
underline: z.ZodBoolean;
|
|
3292
3588
|
code: z.ZodBoolean;
|
|
3293
3589
|
color: z.ZodEnum<{
|
|
3590
|
+
default: "default";
|
|
3294
3591
|
blue: "blue";
|
|
3295
3592
|
blue_background: "blue_background";
|
|
3296
3593
|
brown: "brown";
|
|
3297
3594
|
brown_background: "brown_background";
|
|
3298
|
-
default: "default";
|
|
3299
3595
|
gray: "gray";
|
|
3300
3596
|
gray_background: "gray_background";
|
|
3301
3597
|
green: "green";
|
|
@@ -3360,6 +3656,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3360
3656
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
3361
3657
|
person: z.ZodObject<{
|
|
3362
3658
|
email: z.ZodEmail;
|
|
3659
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
3363
3660
|
}, z.core.$strip>;
|
|
3364
3661
|
}, z.core.$strip>, z.ZodObject<{
|
|
3365
3662
|
object: z.ZodLiteral<"user">;
|
|
@@ -3392,11 +3689,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3392
3689
|
underline: z.ZodBoolean;
|
|
3393
3690
|
code: z.ZodBoolean;
|
|
3394
3691
|
color: z.ZodEnum<{
|
|
3692
|
+
default: "default";
|
|
3395
3693
|
blue: "blue";
|
|
3396
3694
|
blue_background: "blue_background";
|
|
3397
3695
|
brown: "brown";
|
|
3398
3696
|
brown_background: "brown_background";
|
|
3399
|
-
default: "default";
|
|
3400
3697
|
gray: "gray";
|
|
3401
3698
|
gray_background: "gray_background";
|
|
3402
3699
|
green: "green";
|
|
@@ -3427,11 +3724,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3427
3724
|
underline: z.ZodBoolean;
|
|
3428
3725
|
code: z.ZodBoolean;
|
|
3429
3726
|
color: z.ZodEnum<{
|
|
3727
|
+
default: "default";
|
|
3430
3728
|
blue: "blue";
|
|
3431
3729
|
blue_background: "blue_background";
|
|
3432
3730
|
brown: "brown";
|
|
3433
3731
|
brown_background: "brown_background";
|
|
3434
|
-
default: "default";
|
|
3435
3732
|
gray: "gray";
|
|
3436
3733
|
gray_background: "gray_background";
|
|
3437
3734
|
green: "green";
|
|
@@ -3453,11 +3750,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3453
3750
|
}, z.core.$strip>], "type">>;
|
|
3454
3751
|
checked: z.ZodOptional<z.ZodBoolean>;
|
|
3455
3752
|
color: z.ZodEnum<{
|
|
3753
|
+
default: "default";
|
|
3456
3754
|
blue: "blue";
|
|
3457
3755
|
blue_background: "blue_background";
|
|
3458
3756
|
brown: "brown";
|
|
3459
3757
|
brown_background: "brown_background";
|
|
3460
|
-
default: "default";
|
|
3461
3758
|
gray: "gray";
|
|
3462
3759
|
gray_background: "gray_background";
|
|
3463
3760
|
green: "green";
|
|
@@ -3491,11 +3788,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3491
3788
|
underline: z.ZodBoolean;
|
|
3492
3789
|
code: z.ZodBoolean;
|
|
3493
3790
|
color: z.ZodEnum<{
|
|
3791
|
+
default: "default";
|
|
3494
3792
|
blue: "blue";
|
|
3495
3793
|
blue_background: "blue_background";
|
|
3496
3794
|
brown: "brown";
|
|
3497
3795
|
brown_background: "brown_background";
|
|
3498
|
-
default: "default";
|
|
3499
3796
|
gray: "gray";
|
|
3500
3797
|
gray_background: "gray_background";
|
|
3501
3798
|
green: "green";
|
|
@@ -3560,6 +3857,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3560
3857
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
3561
3858
|
person: z.ZodObject<{
|
|
3562
3859
|
email: z.ZodEmail;
|
|
3860
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
3563
3861
|
}, z.core.$strip>;
|
|
3564
3862
|
}, z.core.$strip>, z.ZodObject<{
|
|
3565
3863
|
object: z.ZodLiteral<"user">;
|
|
@@ -3592,11 +3890,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3592
3890
|
underline: z.ZodBoolean;
|
|
3593
3891
|
code: z.ZodBoolean;
|
|
3594
3892
|
color: z.ZodEnum<{
|
|
3893
|
+
default: "default";
|
|
3595
3894
|
blue: "blue";
|
|
3596
3895
|
blue_background: "blue_background";
|
|
3597
3896
|
brown: "brown";
|
|
3598
3897
|
brown_background: "brown_background";
|
|
3599
|
-
default: "default";
|
|
3600
3898
|
gray: "gray";
|
|
3601
3899
|
gray_background: "gray_background";
|
|
3602
3900
|
green: "green";
|
|
@@ -3627,11 +3925,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3627
3925
|
underline: z.ZodBoolean;
|
|
3628
3926
|
code: z.ZodBoolean;
|
|
3629
3927
|
color: z.ZodEnum<{
|
|
3928
|
+
default: "default";
|
|
3630
3929
|
blue: "blue";
|
|
3631
3930
|
blue_background: "blue_background";
|
|
3632
3931
|
brown: "brown";
|
|
3633
3932
|
brown_background: "brown_background";
|
|
3634
|
-
default: "default";
|
|
3635
3933
|
gray: "gray";
|
|
3636
3934
|
gray_background: "gray_background";
|
|
3637
3935
|
green: "green";
|
|
@@ -3652,11 +3950,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3652
3950
|
href: z.ZodNullable<z.ZodURL>;
|
|
3653
3951
|
}, z.core.$strip>], "type">>;
|
|
3654
3952
|
color: z.ZodEnum<{
|
|
3953
|
+
default: "default";
|
|
3655
3954
|
blue: "blue";
|
|
3656
3955
|
blue_background: "blue_background";
|
|
3657
3956
|
brown: "brown";
|
|
3658
3957
|
brown_background: "brown_background";
|
|
3659
|
-
default: "default";
|
|
3660
3958
|
gray: "gray";
|
|
3661
3959
|
gray_background: "gray_background";
|
|
3662
3960
|
green: "green";
|
|
@@ -3675,7 +3973,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3675
3973
|
children: z.ZodOptional<z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3676
3974
|
}, z.core.$strip>>;
|
|
3677
3975
|
meeting_notes: z.ZodOptional<z.ZodObject<{
|
|
3678
|
-
|
|
3976
|
+
title: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3679
3977
|
type: z.ZodLiteral<"text">;
|
|
3680
3978
|
text: z.ZodObject<{
|
|
3681
3979
|
content: z.ZodString;
|
|
@@ -3690,11 +3988,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3690
3988
|
underline: z.ZodBoolean;
|
|
3691
3989
|
code: z.ZodBoolean;
|
|
3692
3990
|
color: z.ZodEnum<{
|
|
3991
|
+
default: "default";
|
|
3693
3992
|
blue: "blue";
|
|
3694
3993
|
blue_background: "blue_background";
|
|
3695
3994
|
brown: "brown";
|
|
3696
3995
|
brown_background: "brown_background";
|
|
3697
|
-
default: "default";
|
|
3698
3996
|
gray: "gray";
|
|
3699
3997
|
gray_background: "gray_background";
|
|
3700
3998
|
green: "green";
|
|
@@ -3759,6 +4057,7 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3759
4057
|
avatar_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodNull]>>;
|
|
3760
4058
|
person: z.ZodObject<{
|
|
3761
4059
|
email: z.ZodEmail;
|
|
4060
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
3762
4061
|
}, z.core.$strip>;
|
|
3763
4062
|
}, z.core.$strip>, z.ZodObject<{
|
|
3764
4063
|
object: z.ZodLiteral<"user">;
|
|
@@ -3791,11 +4090,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3791
4090
|
underline: z.ZodBoolean;
|
|
3792
4091
|
code: z.ZodBoolean;
|
|
3793
4092
|
color: z.ZodEnum<{
|
|
4093
|
+
default: "default";
|
|
3794
4094
|
blue: "blue";
|
|
3795
4095
|
blue_background: "blue_background";
|
|
3796
4096
|
brown: "brown";
|
|
3797
4097
|
brown_background: "brown_background";
|
|
3798
|
-
default: "default";
|
|
3799
4098
|
gray: "gray";
|
|
3800
4099
|
gray_background: "gray_background";
|
|
3801
4100
|
green: "green";
|
|
@@ -3826,11 +4125,11 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3826
4125
|
underline: z.ZodBoolean;
|
|
3827
4126
|
code: z.ZodBoolean;
|
|
3828
4127
|
color: z.ZodEnum<{
|
|
4128
|
+
default: "default";
|
|
3829
4129
|
blue: "blue";
|
|
3830
4130
|
blue_background: "blue_background";
|
|
3831
4131
|
brown: "brown";
|
|
3832
4132
|
brown_background: "brown_background";
|
|
3833
|
-
default: "default";
|
|
3834
4133
|
gray: "gray";
|
|
3835
4134
|
gray_background: "gray_background";
|
|
3836
4135
|
green: "green";
|
|
@@ -3850,7 +4149,14 @@ export declare const blockSchema: z.ZodObject<{
|
|
|
3850
4149
|
plain_text: z.ZodString;
|
|
3851
4150
|
href: z.ZodNullable<z.ZodURL>;
|
|
3852
4151
|
}, z.core.$strip>], "type">>;
|
|
3853
|
-
|
|
4152
|
+
status: z.ZodString;
|
|
4153
|
+
children: z.ZodObject<{
|
|
4154
|
+
summary_block_id: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
|
|
4155
|
+
notes_block_id: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
|
|
4156
|
+
transcript_block_id: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
|
|
4157
|
+
}, z.core.$strip>;
|
|
4158
|
+
calendar_event: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
|
|
4159
|
+
recording: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
|
|
3854
4160
|
}, z.core.$strip>>;
|
|
3855
4161
|
unsupported: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
3856
4162
|
video: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|