@bubblelab/bubble-core 0.1.76 → 0.1.77

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.
Files changed (48) hide show
  1. package/dist/bubble-bundle.d.ts +54 -54
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +38 -38
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +1 -0
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +42 -42
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +318 -318
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  14. package/dist/bubbles/service-bubble/gmail.d.ts +208 -208
  15. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  16. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  17. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
  20. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  21. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/slack/slack.d.ts +400 -400
  23. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +13 -13
  24. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  25. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  26. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
  27. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +289 -289
  29. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
  30. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  31. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
  33. package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
  34. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +106 -106
  35. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  39. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
  40. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
  41. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
  42. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
  43. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +118 -118
  44. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts.map +1 -1
  45. package/dist/bubbles/workflow-bubble/slack-formatter-agent.js +11 -1
  46. package/dist/bubbles/workflow-bubble/slack-formatter-agent.js.map +1 -1
  47. package/dist/bubbles.json +4 -3
  48. package/package.json +2 -2
@@ -660,13 +660,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
660
660
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
661
661
  }, "strip", z.ZodTypeAny, {
662
662
  type: "text" | "mention" | "equation";
663
+ plain_text?: string | undefined;
663
664
  text?: {
664
665
  content: string;
665
666
  link?: {
666
667
  url: string;
667
668
  } | null | undefined;
668
669
  } | undefined;
669
- plain_text?: string | undefined;
670
670
  annotations?: {
671
671
  code: boolean;
672
672
  bold: boolean;
@@ -678,13 +678,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
678
678
  href?: string | null | undefined;
679
679
  }, {
680
680
  type: "text" | "mention" | "equation";
681
+ plain_text?: string | undefined;
681
682
  text?: {
682
683
  content: string;
683
684
  link?: {
684
685
  url: string;
685
686
  } | null | undefined;
686
687
  } | undefined;
687
- plain_text?: string | undefined;
688
688
  annotations?: {
689
689
  code?: boolean | undefined;
690
690
  bold?: boolean | undefined;
@@ -777,13 +777,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
777
777
  operation: "create_data_source";
778
778
  title?: {
779
779
  type: "text" | "mention" | "equation";
780
+ plain_text?: string | undefined;
780
781
  text?: {
781
782
  content: string;
782
783
  link?: {
783
784
  url: string;
784
785
  } | null | undefined;
785
786
  } | undefined;
786
- plain_text?: string | undefined;
787
787
  annotations?: {
788
788
  code: boolean;
789
789
  bold: boolean;
@@ -824,13 +824,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
824
824
  operation: "create_data_source";
825
825
  title?: {
826
826
  type: "text" | "mention" | "equation";
827
+ plain_text?: string | undefined;
827
828
  text?: {
828
829
  content: string;
829
830
  link?: {
830
831
  url: string;
831
832
  } | null | undefined;
832
833
  } | undefined;
833
- plain_text?: string | undefined;
834
834
  annotations?: {
835
835
  code?: boolean | undefined;
836
836
  bold?: boolean | undefined;
@@ -914,13 +914,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
914
914
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
915
915
  }, "strip", z.ZodTypeAny, {
916
916
  type: "text" | "mention" | "equation";
917
+ plain_text?: string | undefined;
917
918
  text?: {
918
919
  content: string;
919
920
  link?: {
920
921
  url: string;
921
922
  } | null | undefined;
922
923
  } | undefined;
923
- plain_text?: string | undefined;
924
924
  annotations?: {
925
925
  code: boolean;
926
926
  bold: boolean;
@@ -932,13 +932,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
932
932
  href?: string | null | undefined;
933
933
  }, {
934
934
  type: "text" | "mention" | "equation";
935
+ plain_text?: string | undefined;
935
936
  text?: {
936
937
  content: string;
937
938
  link?: {
938
939
  url: string;
939
940
  } | null | undefined;
940
941
  } | undefined;
941
- plain_text?: string | undefined;
942
942
  annotations?: {
943
943
  code?: boolean | undefined;
944
944
  bold?: boolean | undefined;
@@ -997,13 +997,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
997
997
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
998
998
  }, "strip", z.ZodTypeAny, {
999
999
  type: "text" | "mention" | "equation";
1000
+ plain_text?: string | undefined;
1000
1001
  text?: {
1001
1002
  content: string;
1002
1003
  link?: {
1003
1004
  url: string;
1004
1005
  } | null | undefined;
1005
1006
  } | undefined;
1006
- plain_text?: string | undefined;
1007
1007
  annotations?: {
1008
1008
  code: boolean;
1009
1009
  bold: boolean;
@@ -1015,13 +1015,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1015
1015
  href?: string | null | undefined;
1016
1016
  }, {
1017
1017
  type: "text" | "mention" | "equation";
1018
+ plain_text?: string | undefined;
1018
1019
  text?: {
1019
1020
  content: string;
1020
1021
  link?: {
1021
1022
  url: string;
1022
1023
  } | null | undefined;
1023
1024
  } | undefined;
1024
- plain_text?: string | undefined;
1025
1025
  annotations?: {
1026
1026
  code?: boolean | undefined;
1027
1027
  bold?: boolean | undefined;
@@ -1122,13 +1122,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1122
1122
  properties?: Record<string, unknown> | undefined;
1123
1123
  description?: {
1124
1124
  type: "text" | "mention" | "equation";
1125
+ plain_text?: string | undefined;
1125
1126
  text?: {
1126
1127
  content: string;
1127
1128
  link?: {
1128
1129
  url: string;
1129
1130
  } | null | undefined;
1130
1131
  } | undefined;
1131
- plain_text?: string | undefined;
1132
1132
  annotations?: {
1133
1133
  code: boolean;
1134
1134
  bold: boolean;
@@ -1141,13 +1141,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1141
1141
  }[] | undefined;
1142
1142
  title?: {
1143
1143
  type: "text" | "mention" | "equation";
1144
+ plain_text?: string | undefined;
1144
1145
  text?: {
1145
1146
  content: string;
1146
1147
  link?: {
1147
1148
  url: string;
1148
1149
  } | null | undefined;
1149
1150
  } | undefined;
1150
- plain_text?: string | undefined;
1151
1151
  annotations?: {
1152
1152
  code: boolean;
1153
1153
  bold: boolean;
@@ -1190,13 +1190,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1190
1190
  properties?: Record<string, unknown> | undefined;
1191
1191
  description?: {
1192
1192
  type: "text" | "mention" | "equation";
1193
+ plain_text?: string | undefined;
1193
1194
  text?: {
1194
1195
  content: string;
1195
1196
  link?: {
1196
1197
  url: string;
1197
1198
  } | null | undefined;
1198
1199
  } | undefined;
1199
- plain_text?: string | undefined;
1200
1200
  annotations?: {
1201
1201
  code?: boolean | undefined;
1202
1202
  bold?: boolean | undefined;
@@ -1209,13 +1209,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1209
1209
  }[] | undefined;
1210
1210
  title?: {
1211
1211
  type: "text" | "mention" | "equation";
1212
+ plain_text?: string | undefined;
1212
1213
  text?: {
1213
1214
  content: string;
1214
1215
  link?: {
1215
1216
  url: string;
1216
1217
  } | null | undefined;
1217
1218
  } | undefined;
1218
- plain_text?: string | undefined;
1219
1219
  annotations?: {
1220
1220
  code?: boolean | undefined;
1221
1221
  bold?: boolean | undefined;
@@ -1342,13 +1342,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1342
1342
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1343
1343
  }, "strip", z.ZodTypeAny, {
1344
1344
  type: "text" | "mention" | "equation";
1345
+ plain_text?: string | undefined;
1345
1346
  text?: {
1346
1347
  content: string;
1347
1348
  link?: {
1348
1349
  url: string;
1349
1350
  } | null | undefined;
1350
1351
  } | undefined;
1351
- plain_text?: string | undefined;
1352
1352
  annotations?: {
1353
1353
  code: boolean;
1354
1354
  bold: boolean;
@@ -1360,13 +1360,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1360
1360
  href?: string | null | undefined;
1361
1361
  }, {
1362
1362
  type: "text" | "mention" | "equation";
1363
+ plain_text?: string | undefined;
1363
1364
  text?: {
1364
1365
  content: string;
1365
1366
  link?: {
1366
1367
  url: string;
1367
1368
  } | null | undefined;
1368
1369
  } | undefined;
1369
- plain_text?: string | undefined;
1370
1370
  annotations?: {
1371
1371
  code?: boolean | undefined;
1372
1372
  bold?: boolean | undefined;
@@ -1425,13 +1425,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1425
1425
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1426
1426
  }, "strip", z.ZodTypeAny, {
1427
1427
  type: "text" | "mention" | "equation";
1428
+ plain_text?: string | undefined;
1428
1429
  text?: {
1429
1430
  content: string;
1430
1431
  link?: {
1431
1432
  url: string;
1432
1433
  } | null | undefined;
1433
1434
  } | undefined;
1434
- plain_text?: string | undefined;
1435
1435
  annotations?: {
1436
1436
  code: boolean;
1437
1437
  bold: boolean;
@@ -1443,13 +1443,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1443
1443
  href?: string | null | undefined;
1444
1444
  }, {
1445
1445
  type: "text" | "mention" | "equation";
1446
+ plain_text?: string | undefined;
1446
1447
  text?: {
1447
1448
  content: string;
1448
1449
  link?: {
1449
1450
  url: string;
1450
1451
  } | null | undefined;
1451
1452
  } | undefined;
1452
- plain_text?: string | undefined;
1453
1453
  annotations?: {
1454
1454
  code?: boolean | undefined;
1455
1455
  bold?: boolean | undefined;
@@ -1612,13 +1612,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1612
1612
  };
1613
1613
  description?: {
1614
1614
  type: "text" | "mention" | "equation";
1615
+ plain_text?: string | undefined;
1615
1616
  text?: {
1616
1617
  content: string;
1617
1618
  link?: {
1618
1619
  url: string;
1619
1620
  } | null | undefined;
1620
1621
  } | undefined;
1621
- plain_text?: string | undefined;
1622
1622
  annotations?: {
1623
1623
  code: boolean;
1624
1624
  bold: boolean;
@@ -1631,13 +1631,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1631
1631
  }[] | undefined;
1632
1632
  title?: {
1633
1633
  type: "text" | "mention" | "equation";
1634
+ plain_text?: string | undefined;
1634
1635
  text?: {
1635
1636
  content: string;
1636
1637
  link?: {
1637
1638
  url: string;
1638
1639
  } | null | undefined;
1639
1640
  } | undefined;
1640
- plain_text?: string | undefined;
1641
1641
  annotations?: {
1642
1642
  code: boolean;
1643
1643
  bold: boolean;
@@ -1698,13 +1698,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1698
1698
  };
1699
1699
  description?: {
1700
1700
  type: "text" | "mention" | "equation";
1701
+ plain_text?: string | undefined;
1701
1702
  text?: {
1702
1703
  content: string;
1703
1704
  link?: {
1704
1705
  url: string;
1705
1706
  } | null | undefined;
1706
1707
  } | undefined;
1707
- plain_text?: string | undefined;
1708
1708
  annotations?: {
1709
1709
  code?: boolean | undefined;
1710
1710
  bold?: boolean | undefined;
@@ -1717,13 +1717,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1717
1717
  }[] | undefined;
1718
1718
  title?: {
1719
1719
  type: "text" | "mention" | "equation";
1720
+ plain_text?: string | undefined;
1720
1721
  text?: {
1721
1722
  content: string;
1722
1723
  link?: {
1723
1724
  url: string;
1724
1725
  } | null | undefined;
1725
1726
  } | undefined;
1726
- plain_text?: string | undefined;
1727
1727
  annotations?: {
1728
1728
  code?: boolean | undefined;
1729
1729
  bold?: boolean | undefined;
@@ -1823,13 +1823,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1823
1823
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1824
1824
  }, "strip", z.ZodTypeAny, {
1825
1825
  type: "text" | "mention" | "equation";
1826
+ plain_text?: string | undefined;
1826
1827
  text?: {
1827
1828
  content: string;
1828
1829
  link?: {
1829
1830
  url: string;
1830
1831
  } | null | undefined;
1831
1832
  } | undefined;
1832
- plain_text?: string | undefined;
1833
1833
  annotations?: {
1834
1834
  code: boolean;
1835
1835
  bold: boolean;
@@ -1841,13 +1841,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1841
1841
  href?: string | null | undefined;
1842
1842
  }, {
1843
1843
  type: "text" | "mention" | "equation";
1844
+ plain_text?: string | undefined;
1844
1845
  text?: {
1845
1846
  content: string;
1846
1847
  link?: {
1847
1848
  url: string;
1848
1849
  } | null | undefined;
1849
1850
  } | undefined;
1850
- plain_text?: string | undefined;
1851
1851
  annotations?: {
1852
1852
  code?: boolean | undefined;
1853
1853
  bold?: boolean | undefined;
@@ -1906,13 +1906,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1906
1906
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1907
1907
  }, "strip", z.ZodTypeAny, {
1908
1908
  type: "text" | "mention" | "equation";
1909
+ plain_text?: string | undefined;
1909
1910
  text?: {
1910
1911
  content: string;
1911
1912
  link?: {
1912
1913
  url: string;
1913
1914
  } | null | undefined;
1914
1915
  } | undefined;
1915
- plain_text?: string | undefined;
1916
1916
  annotations?: {
1917
1917
  code: boolean;
1918
1918
  bold: boolean;
@@ -1924,13 +1924,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1924
1924
  href?: string | null | undefined;
1925
1925
  }, {
1926
1926
  type: "text" | "mention" | "equation";
1927
+ plain_text?: string | undefined;
1927
1928
  text?: {
1928
1929
  content: string;
1929
1930
  link?: {
1930
1931
  url: string;
1931
1932
  } | null | undefined;
1932
1933
  } | undefined;
1933
- plain_text?: string | undefined;
1934
1934
  annotations?: {
1935
1935
  code?: boolean | undefined;
1936
1936
  bold?: boolean | undefined;
@@ -2134,13 +2134,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2134
2134
  database_id: string;
2135
2135
  description?: {
2136
2136
  type: "text" | "mention" | "equation";
2137
+ plain_text?: string | undefined;
2137
2138
  text?: {
2138
2139
  content: string;
2139
2140
  link?: {
2140
2141
  url: string;
2141
2142
  } | null | undefined;
2142
2143
  } | undefined;
2143
- plain_text?: string | undefined;
2144
2144
  annotations?: {
2145
2145
  code: boolean;
2146
2146
  bold: boolean;
@@ -2153,13 +2153,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2153
2153
  }[] | undefined;
2154
2154
  title?: {
2155
2155
  type: "text" | "mention" | "equation";
2156
+ plain_text?: string | undefined;
2156
2157
  text?: {
2157
2158
  content: string;
2158
2159
  link?: {
2159
2160
  url: string;
2160
2161
  } | null | undefined;
2161
2162
  } | undefined;
2162
- plain_text?: string | undefined;
2163
2163
  annotations?: {
2164
2164
  code: boolean;
2165
2165
  bold: boolean;
@@ -2233,13 +2233,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2233
2233
  database_id: string;
2234
2234
  description?: {
2235
2235
  type: "text" | "mention" | "equation";
2236
+ plain_text?: string | undefined;
2236
2237
  text?: {
2237
2238
  content: string;
2238
2239
  link?: {
2239
2240
  url: string;
2240
2241
  } | null | undefined;
2241
2242
  } | undefined;
2242
- plain_text?: string | undefined;
2243
2243
  annotations?: {
2244
2244
  code?: boolean | undefined;
2245
2245
  bold?: boolean | undefined;
@@ -2252,13 +2252,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2252
2252
  }[] | undefined;
2253
2253
  title?: {
2254
2254
  type: "text" | "mention" | "equation";
2255
+ plain_text?: string | undefined;
2255
2256
  text?: {
2256
2257
  content: string;
2257
2258
  link?: {
2258
2259
  url: string;
2259
2260
  } | null | undefined;
2260
2261
  } | undefined;
2261
- plain_text?: string | undefined;
2262
2262
  annotations?: {
2263
2263
  code?: boolean | undefined;
2264
2264
  bold?: boolean | undefined;
@@ -2334,14 +2334,14 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2334
2334
  after: z.ZodOptional<z.ZodString>;
2335
2335
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2336
2336
  }, "strip", z.ZodTypeAny, {
2337
- operation: "append_block_children";
2338
2337
  block_id: string;
2338
+ operation: "append_block_children";
2339
2339
  children: unknown[];
2340
2340
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2341
2341
  after?: string | undefined;
2342
2342
  }, {
2343
- operation: "append_block_children";
2344
2343
  block_id: string;
2344
+ operation: "append_block_children";
2345
2345
  children: unknown[];
2346
2346
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2347
2347
  after?: string | undefined;
@@ -2352,14 +2352,14 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2352
2352
  page_size: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2353
2353
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2354
2354
  }, "strip", z.ZodTypeAny, {
2355
- operation: "retrieve_block_children";
2356
2355
  block_id: string;
2356
+ operation: "retrieve_block_children";
2357
2357
  page_size: number;
2358
2358
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2359
2359
  start_cursor?: string | undefined;
2360
2360
  }, {
2361
- operation: "retrieve_block_children";
2362
2361
  block_id: string;
2362
+ operation: "retrieve_block_children";
2363
2363
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2364
2364
  page_size?: number | undefined;
2365
2365
  start_cursor?: string | undefined;
@@ -2368,12 +2368,12 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2368
2368
  block_id: z.ZodString;
2369
2369
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2370
2370
  }, "strip", z.ZodTypeAny, {
2371
- operation: "retrieve_block";
2372
2371
  block_id: string;
2372
+ operation: "retrieve_block";
2373
2373
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2374
2374
  }, {
2375
- operation: "retrieve_block";
2376
2375
  block_id: string;
2376
+ operation: "retrieve_block";
2377
2377
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2378
2378
  }>, z.ZodObject<{
2379
2379
  operation: z.ZodLiteral<"update_block">;
@@ -2381,13 +2381,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2381
2381
  archived: z.ZodOptional<z.ZodBoolean>;
2382
2382
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2383
2383
  }, "strip", z.ZodTypeAny, {
2384
- operation: "update_block";
2385
2384
  block_id: string;
2385
+ operation: "update_block";
2386
2386
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2387
2387
  archived?: boolean | undefined;
2388
2388
  }, {
2389
- operation: "update_block";
2390
2389
  block_id: string;
2390
+ operation: "update_block";
2391
2391
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2392
2392
  archived?: boolean | undefined;
2393
2393
  }>, z.ZodObject<{
@@ -2450,13 +2450,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2450
2450
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2451
2451
  }, "strip", z.ZodTypeAny, {
2452
2452
  type: "text" | "mention" | "equation";
2453
+ plain_text?: string | undefined;
2453
2454
  text?: {
2454
2455
  content: string;
2455
2456
  link?: {
2456
2457
  url: string;
2457
2458
  } | null | undefined;
2458
2459
  } | undefined;
2459
- plain_text?: string | undefined;
2460
2460
  annotations?: {
2461
2461
  code: boolean;
2462
2462
  bold: boolean;
@@ -2468,13 +2468,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2468
2468
  href?: string | null | undefined;
2469
2469
  }, {
2470
2470
  type: "text" | "mention" | "equation";
2471
+ plain_text?: string | undefined;
2471
2472
  text?: {
2472
2473
  content: string;
2473
2474
  link?: {
2474
2475
  url: string;
2475
2476
  } | null | undefined;
2476
2477
  } | undefined;
2477
- plain_text?: string | undefined;
2478
2478
  annotations?: {
2479
2479
  code?: boolean | undefined;
2480
2480
  bold?: boolean | undefined;
@@ -2524,13 +2524,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2524
2524
  operation: "create_comment";
2525
2525
  rich_text: {
2526
2526
  type: "text" | "mention" | "equation";
2527
+ plain_text?: string | undefined;
2527
2528
  text?: {
2528
2529
  content: string;
2529
2530
  link?: {
2530
2531
  url: string;
2531
2532
  } | null | undefined;
2532
2533
  } | undefined;
2533
- plain_text?: string | undefined;
2534
2534
  annotations?: {
2535
2535
  code: boolean;
2536
2536
  bold: boolean;
@@ -2560,13 +2560,13 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2560
2560
  operation: "create_comment";
2561
2561
  rich_text: {
2562
2562
  type: "text" | "mention" | "equation";
2563
+ plain_text?: string | undefined;
2563
2564
  text?: {
2564
2565
  content: string;
2565
2566
  link?: {
2566
2567
  url: string;
2567
2568
  } | null | undefined;
2568
2569
  } | undefined;
2569
- plain_text?: string | undefined;
2570
2570
  annotations?: {
2571
2571
  code?: boolean | undefined;
2572
2572
  bold?: boolean | undefined;
@@ -2995,7 +2995,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
2995
2995
  object: "page";
2996
2996
  properties: Record<string, unknown>;
2997
2997
  url: string;
2998
- id: string;
2999
2998
  parent: {
3000
2999
  type: "page_id";
3001
3000
  page_id: string;
@@ -3013,6 +3012,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3013
3012
  type: "workspace";
3014
3013
  workspace: true;
3015
3014
  };
3015
+ id: string;
3016
3016
  created_time: string;
3017
3017
  last_edited_time: string;
3018
3018
  created_by: {
@@ -3088,7 +3088,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3088
3088
  object: "page";
3089
3089
  properties: Record<string, unknown>;
3090
3090
  url: string;
3091
- id: string;
3092
3091
  parent: {
3093
3092
  type: "page_id";
3094
3093
  page_id: string;
@@ -3106,6 +3105,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3106
3105
  type: "workspace";
3107
3106
  workspace: true;
3108
3107
  };
3108
+ id: string;
3109
3109
  created_time: string;
3110
3110
  last_edited_time: string;
3111
3111
  created_by: {
@@ -3186,7 +3186,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3186
3186
  object: "page";
3187
3187
  properties: Record<string, unknown>;
3188
3188
  url: string;
3189
- id: string;
3190
3189
  parent: {
3191
3190
  type: "page_id";
3192
3191
  page_id: string;
@@ -3204,6 +3203,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3204
3203
  type: "workspace";
3205
3204
  workspace: true;
3206
3205
  };
3206
+ id: string;
3207
3207
  created_time: string;
3208
3208
  last_edited_time: string;
3209
3209
  created_by: {
@@ -3284,7 +3284,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3284
3284
  object: "page";
3285
3285
  properties: Record<string, unknown>;
3286
3286
  url: string;
3287
- id: string;
3288
3287
  parent: {
3289
3288
  type: "page_id";
3290
3289
  page_id: string;
@@ -3302,6 +3301,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3302
3301
  type: "workspace";
3303
3302
  workspace: true;
3304
3303
  };
3304
+ id: string;
3305
3305
  created_time: string;
3306
3306
  last_edited_time: string;
3307
3307
  created_by: {
@@ -3699,7 +3699,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3699
3699
  object: "page";
3700
3700
  properties: Record<string, unknown>;
3701
3701
  url: string;
3702
- id: string;
3703
3702
  parent: {
3704
3703
  type: "page_id";
3705
3704
  page_id: string;
@@ -3717,6 +3716,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3717
3716
  type: "workspace";
3718
3717
  workspace: true;
3719
3718
  };
3719
+ id: string;
3720
3720
  created_time: string;
3721
3721
  last_edited_time: string;
3722
3722
  created_by: {
@@ -3792,7 +3792,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3792
3792
  object: "page";
3793
3793
  properties: Record<string, unknown>;
3794
3794
  url: string;
3795
- id: string;
3796
3795
  parent: {
3797
3796
  type: "page_id";
3798
3797
  page_id: string;
@@ -3810,6 +3809,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3810
3809
  type: "workspace";
3811
3810
  workspace: true;
3812
3811
  };
3812
+ id: string;
3813
3813
  created_time: string;
3814
3814
  last_edited_time: string;
3815
3815
  created_by: {
@@ -3890,7 +3890,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3890
3890
  object: "page";
3891
3891
  properties: Record<string, unknown>;
3892
3892
  url: string;
3893
- id: string;
3894
3893
  parent: {
3895
3894
  type: "page_id";
3896
3895
  page_id: string;
@@ -3908,6 +3907,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3908
3907
  type: "workspace";
3909
3908
  workspace: true;
3910
3909
  };
3910
+ id: string;
3911
3911
  created_time: string;
3912
3912
  last_edited_time: string;
3913
3913
  created_by: {
@@ -3988,7 +3988,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
3988
3988
  object: "page";
3989
3989
  properties: Record<string, unknown>;
3990
3990
  url: string;
3991
- id: string;
3992
3991
  parent: {
3993
3992
  type: "page_id";
3994
3993
  page_id: string;
@@ -4006,6 +4005,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4006
4005
  type: "workspace";
4007
4006
  workspace: true;
4008
4007
  };
4008
+ id: string;
4009
4009
  created_time: string;
4010
4010
  last_edited_time: string;
4011
4011
  created_by: {
@@ -4403,7 +4403,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4403
4403
  object: "page";
4404
4404
  properties: Record<string, unknown>;
4405
4405
  url: string;
4406
- id: string;
4407
4406
  parent: {
4408
4407
  type: "page_id";
4409
4408
  page_id: string;
@@ -4421,6 +4420,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4421
4420
  type: "workspace";
4422
4421
  workspace: true;
4423
4422
  };
4423
+ id: string;
4424
4424
  created_time: string;
4425
4425
  last_edited_time: string;
4426
4426
  created_by: {
@@ -4496,7 +4496,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4496
4496
  object: "page";
4497
4497
  properties: Record<string, unknown>;
4498
4498
  url: string;
4499
- id: string;
4500
4499
  parent: {
4501
4500
  type: "page_id";
4502
4501
  page_id: string;
@@ -4514,6 +4513,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4514
4513
  type: "workspace";
4515
4514
  workspace: true;
4516
4515
  };
4516
+ id: string;
4517
4517
  created_time: string;
4518
4518
  last_edited_time: string;
4519
4519
  created_by: {
@@ -4594,7 +4594,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4594
4594
  object: "page";
4595
4595
  properties: Record<string, unknown>;
4596
4596
  url: string;
4597
- id: string;
4598
4597
  parent: {
4599
4598
  type: "page_id";
4600
4599
  page_id: string;
@@ -4612,6 +4611,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4612
4611
  type: "workspace";
4613
4612
  workspace: true;
4614
4613
  };
4614
+ id: string;
4615
4615
  created_time: string;
4616
4616
  last_edited_time: string;
4617
4617
  created_by: {
@@ -4692,7 +4692,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4692
4692
  object: "page";
4693
4693
  properties: Record<string, unknown>;
4694
4694
  url: string;
4695
- id: string;
4696
4695
  parent: {
4697
4696
  type: "page_id";
4698
4697
  page_id: string;
@@ -4710,6 +4709,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4710
4709
  type: "workspace";
4711
4710
  workspace: true;
4712
4711
  };
4712
+ id: string;
4713
4713
  created_time: string;
4714
4714
  last_edited_time: string;
4715
4715
  created_by: {
@@ -4839,13 +4839,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4839
4839
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4840
4840
  }, "strip", z.ZodTypeAny, {
4841
4841
  type: "text" | "mention" | "equation";
4842
+ plain_text?: string | undefined;
4842
4843
  text?: {
4843
4844
  content: string;
4844
4845
  link?: {
4845
4846
  url: string;
4846
4847
  } | null | undefined;
4847
4848
  } | undefined;
4848
- plain_text?: string | undefined;
4849
4849
  annotations?: {
4850
4850
  code: boolean;
4851
4851
  bold: boolean;
@@ -4857,13 +4857,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4857
4857
  href?: string | null | undefined;
4858
4858
  }, {
4859
4859
  type: "text" | "mention" | "equation";
4860
+ plain_text?: string | undefined;
4860
4861
  text?: {
4861
4862
  content: string;
4862
4863
  link?: {
4863
4864
  url: string;
4864
4865
  } | null | undefined;
4865
4866
  } | undefined;
4866
- plain_text?: string | undefined;
4867
4867
  annotations?: {
4868
4868
  code?: boolean | undefined;
4869
4869
  bold?: boolean | undefined;
@@ -4922,13 +4922,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4922
4922
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4923
4923
  }, "strip", z.ZodTypeAny, {
4924
4924
  type: "text" | "mention" | "equation";
4925
+ plain_text?: string | undefined;
4925
4926
  text?: {
4926
4927
  content: string;
4927
4928
  link?: {
4928
4929
  url: string;
4929
4930
  } | null | undefined;
4930
4931
  } | undefined;
4931
- plain_text?: string | undefined;
4932
4932
  annotations?: {
4933
4933
  code: boolean;
4934
4934
  bold: boolean;
@@ -4940,13 +4940,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
4940
4940
  href?: string | null | undefined;
4941
4941
  }, {
4942
4942
  type: "text" | "mention" | "equation";
4943
+ plain_text?: string | undefined;
4943
4944
  text?: {
4944
4945
  content: string;
4945
4946
  link?: {
4946
4947
  url: string;
4947
4948
  } | null | undefined;
4948
4949
  } | undefined;
4949
- plain_text?: string | undefined;
4950
4950
  annotations?: {
4951
4951
  code?: boolean | undefined;
4952
4952
  bold?: boolean | undefined;
@@ -5321,13 +5321,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5321
5321
  object: "database";
5322
5322
  title: {
5323
5323
  type: "text" | "mention" | "equation";
5324
+ plain_text?: string | undefined;
5324
5325
  text?: {
5325
5326
  content: string;
5326
5327
  link?: {
5327
5328
  url: string;
5328
5329
  } | null | undefined;
5329
5330
  } | undefined;
5330
- plain_text?: string | undefined;
5331
5331
  annotations?: {
5332
5332
  code: boolean;
5333
5333
  bold: boolean;
@@ -5338,7 +5338,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5338
5338
  } | undefined;
5339
5339
  href?: string | null | undefined;
5340
5340
  }[];
5341
- id: string;
5342
5341
  parent: {
5343
5342
  type: "page_id";
5344
5343
  page_id: string;
@@ -5356,6 +5355,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5356
5355
  type: "workspace";
5357
5356
  workspace: true;
5358
5357
  };
5358
+ id: string;
5359
5359
  created_time: string;
5360
5360
  last_edited_time: string;
5361
5361
  data_sources: {
@@ -5396,13 +5396,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5396
5396
  }[];
5397
5397
  description?: {
5398
5398
  type: "text" | "mention" | "equation";
5399
+ plain_text?: string | undefined;
5399
5400
  text?: {
5400
5401
  content: string;
5401
5402
  link?: {
5402
5403
  url: string;
5403
5404
  } | null | undefined;
5404
5405
  } | undefined;
5405
- plain_text?: string | undefined;
5406
5406
  annotations?: {
5407
5407
  code: boolean;
5408
5408
  bold: boolean;
@@ -5454,88 +5454,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5454
5454
  object: "database";
5455
5455
  title: {
5456
5456
  type: "text" | "mention" | "equation";
5457
- text?: {
5458
- content: string;
5459
- link?: {
5460
- url: string;
5461
- } | null | undefined;
5462
- } | undefined;
5463
5457
  plain_text?: string | undefined;
5464
- annotations?: {
5465
- code?: boolean | undefined;
5466
- bold?: boolean | undefined;
5467
- color?: "default" | "gray" | "brown" | "orange" | "yellow" | "green" | "blue" | "purple" | "pink" | "red" | undefined;
5468
- italic?: boolean | undefined;
5469
- strikethrough?: boolean | undefined;
5470
- underline?: boolean | undefined;
5471
- } | undefined;
5472
- href?: string | null | undefined;
5473
- }[];
5474
- id: string;
5475
- parent: {
5476
- type: "page_id";
5477
- page_id: string;
5478
- } | {
5479
- type: "database_id";
5480
- database_id: string;
5481
- } | {
5482
- type: "data_source_id";
5483
- data_source_id: string;
5484
- database_id?: string | undefined;
5485
- } | {
5486
- type: "block_id";
5487
- block_id: string;
5488
- } | {
5489
- type: "workspace";
5490
- workspace: true;
5491
- };
5492
- created_time: string;
5493
- last_edited_time: string;
5494
- data_sources: {
5495
- name: string;
5496
- id: string;
5497
- icon?: {
5498
- type: "emoji";
5499
- emoji: string;
5500
- } | {
5501
- type: "external";
5502
- external: {
5503
- url: string;
5504
- };
5505
- } | {
5506
- type: "file";
5507
- file: {
5508
- url: string;
5509
- expiry_time: string;
5510
- };
5511
- } | null | undefined;
5512
- cover?: {
5513
- type: "file";
5514
- file: {
5515
- url: string;
5516
- expiry_time: string;
5517
- };
5518
- } | {
5519
- type: "file_upload";
5520
- file_upload: {
5521
- id: string;
5522
- };
5523
- } | {
5524
- type: "external";
5525
- external: {
5526
- url: string;
5527
- };
5528
- } | null | undefined;
5529
- }[];
5530
- description?: {
5531
- type: "text" | "mention" | "equation";
5532
5458
  text?: {
5533
5459
  content: string;
5534
5460
  link?: {
5535
5461
  url: string;
5536
5462
  } | null | undefined;
5537
5463
  } | undefined;
5538
- plain_text?: string | undefined;
5539
5464
  annotations?: {
5540
5465
  code?: boolean | undefined;
5541
5466
  bold?: boolean | undefined;
@@ -5545,71 +5470,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5545
5470
  underline?: boolean | undefined;
5546
5471
  } | undefined;
5547
5472
  href?: string | null | undefined;
5548
- }[] | undefined;
5549
- url?: string | undefined;
5550
- is_locked?: boolean | undefined;
5551
- icon?: {
5552
- type: "emoji";
5553
- emoji: string;
5554
- } | {
5555
- type: "external";
5556
- external: {
5557
- url: string;
5558
- };
5559
- } | {
5560
- type: "file";
5561
- file: {
5562
- url: string;
5563
- expiry_time: string;
5564
- };
5565
- } | null | undefined;
5566
- cover?: {
5567
- type: "file";
5568
- file: {
5569
- url: string;
5570
- expiry_time: string;
5571
- };
5572
- } | {
5573
- type: "file_upload";
5574
- file_upload: {
5575
- id: string;
5576
- };
5577
- } | {
5578
- type: "external";
5579
- external: {
5580
- url: string;
5581
- };
5582
- } | null | undefined;
5583
- in_trash?: boolean | undefined;
5584
- public_url?: string | null | undefined;
5585
- is_inline?: boolean | undefined;
5586
- }>>;
5587
- }, "strip", z.ZodTypeAny, {
5588
- error: string;
5589
- success: boolean;
5590
- operation: "retrieve_database";
5591
- database?: {
5592
- object: "database";
5593
- title: {
5594
- type: "text" | "mention" | "equation";
5595
- text?: {
5596
- content: string;
5597
- link?: {
5598
- url: string;
5599
- } | null | undefined;
5600
- } | undefined;
5601
- plain_text?: string | undefined;
5602
- annotations?: {
5603
- code: boolean;
5604
- bold: boolean;
5605
- color: "default" | "gray" | "brown" | "orange" | "yellow" | "green" | "blue" | "purple" | "pink" | "red";
5606
- italic: boolean;
5607
- strikethrough: boolean;
5608
- underline: boolean;
5609
- } | undefined;
5610
- href?: string | null | undefined;
5611
5473
  }[];
5612
- id: string;
5613
5474
  parent: {
5614
5475
  type: "page_id";
5615
5476
  page_id: string;
@@ -5627,6 +5488,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5627
5488
  type: "workspace";
5628
5489
  workspace: true;
5629
5490
  };
5491
+ id: string;
5630
5492
  created_time: string;
5631
5493
  last_edited_time: string;
5632
5494
  data_sources: {
@@ -5667,13 +5529,151 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5667
5529
  }[];
5668
5530
  description?: {
5669
5531
  type: "text" | "mention" | "equation";
5532
+ plain_text?: string | undefined;
5670
5533
  text?: {
5671
5534
  content: string;
5672
5535
  link?: {
5673
5536
  url: string;
5674
5537
  } | null | undefined;
5675
5538
  } | undefined;
5539
+ annotations?: {
5540
+ code?: boolean | undefined;
5541
+ bold?: boolean | undefined;
5542
+ color?: "default" | "gray" | "brown" | "orange" | "yellow" | "green" | "blue" | "purple" | "pink" | "red" | undefined;
5543
+ italic?: boolean | undefined;
5544
+ strikethrough?: boolean | undefined;
5545
+ underline?: boolean | undefined;
5546
+ } | undefined;
5547
+ href?: string | null | undefined;
5548
+ }[] | undefined;
5549
+ url?: string | undefined;
5550
+ is_locked?: boolean | undefined;
5551
+ icon?: {
5552
+ type: "emoji";
5553
+ emoji: string;
5554
+ } | {
5555
+ type: "external";
5556
+ external: {
5557
+ url: string;
5558
+ };
5559
+ } | {
5560
+ type: "file";
5561
+ file: {
5562
+ url: string;
5563
+ expiry_time: string;
5564
+ };
5565
+ } | null | undefined;
5566
+ cover?: {
5567
+ type: "file";
5568
+ file: {
5569
+ url: string;
5570
+ expiry_time: string;
5571
+ };
5572
+ } | {
5573
+ type: "file_upload";
5574
+ file_upload: {
5575
+ id: string;
5576
+ };
5577
+ } | {
5578
+ type: "external";
5579
+ external: {
5580
+ url: string;
5581
+ };
5582
+ } | null | undefined;
5583
+ in_trash?: boolean | undefined;
5584
+ public_url?: string | null | undefined;
5585
+ is_inline?: boolean | undefined;
5586
+ }>>;
5587
+ }, "strip", z.ZodTypeAny, {
5588
+ error: string;
5589
+ success: boolean;
5590
+ operation: "retrieve_database";
5591
+ database?: {
5592
+ object: "database";
5593
+ title: {
5594
+ type: "text" | "mention" | "equation";
5595
+ plain_text?: string | undefined;
5596
+ text?: {
5597
+ content: string;
5598
+ link?: {
5599
+ url: string;
5600
+ } | null | undefined;
5601
+ } | undefined;
5602
+ annotations?: {
5603
+ code: boolean;
5604
+ bold: boolean;
5605
+ color: "default" | "gray" | "brown" | "orange" | "yellow" | "green" | "blue" | "purple" | "pink" | "red";
5606
+ italic: boolean;
5607
+ strikethrough: boolean;
5608
+ underline: boolean;
5609
+ } | undefined;
5610
+ href?: string | null | undefined;
5611
+ }[];
5612
+ parent: {
5613
+ type: "page_id";
5614
+ page_id: string;
5615
+ } | {
5616
+ type: "database_id";
5617
+ database_id: string;
5618
+ } | {
5619
+ type: "data_source_id";
5620
+ data_source_id: string;
5621
+ database_id?: string | undefined;
5622
+ } | {
5623
+ type: "block_id";
5624
+ block_id: string;
5625
+ } | {
5626
+ type: "workspace";
5627
+ workspace: true;
5628
+ };
5629
+ id: string;
5630
+ created_time: string;
5631
+ last_edited_time: string;
5632
+ data_sources: {
5633
+ name: string;
5634
+ id: string;
5635
+ icon?: {
5636
+ type: "emoji";
5637
+ emoji: string;
5638
+ } | {
5639
+ type: "external";
5640
+ external: {
5641
+ url: string;
5642
+ };
5643
+ } | {
5644
+ type: "file";
5645
+ file: {
5646
+ url: string;
5647
+ expiry_time: string;
5648
+ };
5649
+ } | null | undefined;
5650
+ cover?: {
5651
+ type: "file";
5652
+ file: {
5653
+ url: string;
5654
+ expiry_time: string;
5655
+ };
5656
+ } | {
5657
+ type: "file_upload";
5658
+ file_upload: {
5659
+ id: string;
5660
+ };
5661
+ } | {
5662
+ type: "external";
5663
+ external: {
5664
+ url: string;
5665
+ };
5666
+ } | null | undefined;
5667
+ }[];
5668
+ description?: {
5669
+ type: "text" | "mention" | "equation";
5676
5670
  plain_text?: string | undefined;
5671
+ text?: {
5672
+ content: string;
5673
+ link?: {
5674
+ url: string;
5675
+ } | null | undefined;
5676
+ } | undefined;
5677
5677
  annotations?: {
5678
5678
  code: boolean;
5679
5679
  bold: boolean;
@@ -5730,13 +5730,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5730
5730
  object: "database";
5731
5731
  title: {
5732
5732
  type: "text" | "mention" | "equation";
5733
+ plain_text?: string | undefined;
5733
5734
  text?: {
5734
5735
  content: string;
5735
5736
  link?: {
5736
5737
  url: string;
5737
5738
  } | null | undefined;
5738
5739
  } | undefined;
5739
- plain_text?: string | undefined;
5740
5740
  annotations?: {
5741
5741
  code?: boolean | undefined;
5742
5742
  bold?: boolean | undefined;
@@ -5747,7 +5747,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5747
5747
  } | undefined;
5748
5748
  href?: string | null | undefined;
5749
5749
  }[];
5750
- id: string;
5751
5750
  parent: {
5752
5751
  type: "page_id";
5753
5752
  page_id: string;
@@ -5765,6 +5764,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5765
5764
  type: "workspace";
5766
5765
  workspace: true;
5767
5766
  };
5767
+ id: string;
5768
5768
  created_time: string;
5769
5769
  last_edited_time: string;
5770
5770
  data_sources: {
@@ -5805,13 +5805,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
5805
5805
  }[];
5806
5806
  description?: {
5807
5807
  type: "text" | "mention" | "equation";
5808
+ plain_text?: string | undefined;
5808
5809
  text?: {
5809
5810
  content: string;
5810
5811
  link?: {
5811
5812
  url: string;
5812
5813
  } | null | undefined;
5813
5814
  } | undefined;
5814
- plain_text?: string | undefined;
5815
5815
  annotations?: {
5816
5816
  code?: boolean | undefined;
5817
5817
  bold?: boolean | undefined;
@@ -6296,13 +6296,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6296
6296
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6297
6297
  }, "strip", z.ZodTypeAny, {
6298
6298
  type: "text" | "mention" | "equation";
6299
+ plain_text?: string | undefined;
6299
6300
  text?: {
6300
6301
  content: string;
6301
6302
  link?: {
6302
6303
  url: string;
6303
6304
  } | null | undefined;
6304
6305
  } | undefined;
6305
- plain_text?: string | undefined;
6306
6306
  annotations?: {
6307
6307
  code: boolean;
6308
6308
  bold: boolean;
@@ -6314,13 +6314,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6314
6314
  href?: string | null | undefined;
6315
6315
  }, {
6316
6316
  type: "text" | "mention" | "equation";
6317
+ plain_text?: string | undefined;
6317
6318
  text?: {
6318
6319
  content: string;
6319
6320
  link?: {
6320
6321
  url: string;
6321
6322
  } | null | undefined;
6322
6323
  } | undefined;
6323
- plain_text?: string | undefined;
6324
6324
  annotations?: {
6325
6325
  code?: boolean | undefined;
6326
6326
  bold?: boolean | undefined;
@@ -6379,13 +6379,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6379
6379
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6380
6380
  }, "strip", z.ZodTypeAny, {
6381
6381
  type: "text" | "mention" | "equation";
6382
+ plain_text?: string | undefined;
6382
6383
  text?: {
6383
6384
  content: string;
6384
6385
  link?: {
6385
6386
  url: string;
6386
6387
  } | null | undefined;
6387
6388
  } | undefined;
6388
- plain_text?: string | undefined;
6389
6389
  annotations?: {
6390
6390
  code: boolean;
6391
6391
  bold: boolean;
@@ -6397,13 +6397,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6397
6397
  href?: string | null | undefined;
6398
6398
  }, {
6399
6399
  type: "text" | "mention" | "equation";
6400
+ plain_text?: string | undefined;
6400
6401
  text?: {
6401
6402
  content: string;
6402
6403
  link?: {
6403
6404
  url: string;
6404
6405
  } | null | undefined;
6405
6406
  } | undefined;
6406
- plain_text?: string | undefined;
6407
6407
  annotations?: {
6408
6408
  code?: boolean | undefined;
6409
6409
  bold?: boolean | undefined;
@@ -6742,13 +6742,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6742
6742
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6743
6743
  }, "strip", z.ZodTypeAny, {
6744
6744
  type: "text" | "mention" | "equation";
6745
+ plain_text?: string | undefined;
6745
6746
  text?: {
6746
6747
  content: string;
6747
6748
  link?: {
6748
6749
  url: string;
6749
6750
  } | null | undefined;
6750
6751
  } | undefined;
6751
- plain_text?: string | undefined;
6752
6752
  annotations?: {
6753
6753
  code: boolean;
6754
6754
  bold: boolean;
@@ -6760,13 +6760,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6760
6760
  href?: string | null | undefined;
6761
6761
  }, {
6762
6762
  type: "text" | "mention" | "equation";
6763
+ plain_text?: string | undefined;
6763
6764
  text?: {
6764
6765
  content: string;
6765
6766
  link?: {
6766
6767
  url: string;
6767
6768
  } | null | undefined;
6768
6769
  } | undefined;
6769
- plain_text?: string | undefined;
6770
6770
  annotations?: {
6771
6771
  code?: boolean | undefined;
6772
6772
  bold?: boolean | undefined;
@@ -6825,13 +6825,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6825
6825
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6826
6826
  }, "strip", z.ZodTypeAny, {
6827
6827
  type: "text" | "mention" | "equation";
6828
+ plain_text?: string | undefined;
6828
6829
  text?: {
6829
6830
  content: string;
6830
6831
  link?: {
6831
6832
  url: string;
6832
6833
  } | null | undefined;
6833
6834
  } | undefined;
6834
- plain_text?: string | undefined;
6835
6835
  annotations?: {
6836
6836
  code: boolean;
6837
6837
  bold: boolean;
@@ -6843,13 +6843,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
6843
6843
  href?: string | null | undefined;
6844
6844
  }, {
6845
6845
  type: "text" | "mention" | "equation";
6846
+ plain_text?: string | undefined;
6846
6847
  text?: {
6847
6848
  content: string;
6848
6849
  link?: {
6849
6850
  url: string;
6850
6851
  } | null | undefined;
6851
6852
  } | undefined;
6852
- plain_text?: string | undefined;
6853
6853
  annotations?: {
6854
6854
  code?: boolean | undefined;
6855
6855
  bold?: boolean | undefined;
@@ -7188,13 +7188,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7188
7188
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7189
7189
  }, "strip", z.ZodTypeAny, {
7190
7190
  type: "text" | "mention" | "equation";
7191
+ plain_text?: string | undefined;
7191
7192
  text?: {
7192
7193
  content: string;
7193
7194
  link?: {
7194
7195
  url: string;
7195
7196
  } | null | undefined;
7196
7197
  } | undefined;
7197
- plain_text?: string | undefined;
7198
7198
  annotations?: {
7199
7199
  code: boolean;
7200
7200
  bold: boolean;
@@ -7206,13 +7206,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7206
7206
  href?: string | null | undefined;
7207
7207
  }, {
7208
7208
  type: "text" | "mention" | "equation";
7209
+ plain_text?: string | undefined;
7209
7210
  text?: {
7210
7211
  content: string;
7211
7212
  link?: {
7212
7213
  url: string;
7213
7214
  } | null | undefined;
7214
7215
  } | undefined;
7215
- plain_text?: string | undefined;
7216
7216
  annotations?: {
7217
7217
  code?: boolean | undefined;
7218
7218
  bold?: boolean | undefined;
@@ -7271,13 +7271,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7271
7271
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7272
7272
  }, "strip", z.ZodTypeAny, {
7273
7273
  type: "text" | "mention" | "equation";
7274
+ plain_text?: string | undefined;
7274
7275
  text?: {
7275
7276
  content: string;
7276
7277
  link?: {
7277
7278
  url: string;
7278
7279
  } | null | undefined;
7279
7280
  } | undefined;
7280
- plain_text?: string | undefined;
7281
7281
  annotations?: {
7282
7282
  code: boolean;
7283
7283
  bold: boolean;
@@ -7289,13 +7289,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7289
7289
  href?: string | null | undefined;
7290
7290
  }, {
7291
7291
  type: "text" | "mention" | "equation";
7292
+ plain_text?: string | undefined;
7292
7293
  text?: {
7293
7294
  content: string;
7294
7295
  link?: {
7295
7296
  url: string;
7296
7297
  } | null | undefined;
7297
7298
  } | undefined;
7298
- plain_text?: string | undefined;
7299
7299
  annotations?: {
7300
7300
  code?: boolean | undefined;
7301
7301
  bold?: boolean | undefined;
@@ -7639,13 +7639,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7639
7639
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7640
7640
  }, "strip", z.ZodTypeAny, {
7641
7641
  type: "text" | "mention" | "equation";
7642
+ plain_text?: string | undefined;
7642
7643
  text?: {
7643
7644
  content: string;
7644
7645
  link?: {
7645
7646
  url: string;
7646
7647
  } | null | undefined;
7647
7648
  } | undefined;
7648
- plain_text?: string | undefined;
7649
7649
  annotations?: {
7650
7650
  code: boolean;
7651
7651
  bold: boolean;
@@ -7657,13 +7657,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7657
7657
  href?: string | null | undefined;
7658
7658
  }, {
7659
7659
  type: "text" | "mention" | "equation";
7660
+ plain_text?: string | undefined;
7660
7661
  text?: {
7661
7662
  content: string;
7662
7663
  link?: {
7663
7664
  url: string;
7664
7665
  } | null | undefined;
7665
7666
  } | undefined;
7666
- plain_text?: string | undefined;
7667
7667
  annotations?: {
7668
7668
  code?: boolean | undefined;
7669
7669
  bold?: boolean | undefined;
@@ -7722,13 +7722,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7722
7722
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7723
7723
  }, "strip", z.ZodTypeAny, {
7724
7724
  type: "text" | "mention" | "equation";
7725
+ plain_text?: string | undefined;
7725
7726
  text?: {
7726
7727
  content: string;
7727
7728
  link?: {
7728
7729
  url: string;
7729
7730
  } | null | undefined;
7730
7731
  } | undefined;
7731
- plain_text?: string | undefined;
7732
7732
  annotations?: {
7733
7733
  code: boolean;
7734
7734
  bold: boolean;
@@ -7740,13 +7740,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
7740
7740
  href?: string | null | undefined;
7741
7741
  }, {
7742
7742
  type: "text" | "mention" | "equation";
7743
+ plain_text?: string | undefined;
7743
7744
  text?: {
7744
7745
  content: string;
7745
7746
  link?: {
7746
7747
  url: string;
7747
7748
  } | null | undefined;
7748
7749
  } | undefined;
7749
- plain_text?: string | undefined;
7750
7750
  annotations?: {
7751
7751
  code?: boolean | undefined;
7752
7752
  bold?: boolean | undefined;
@@ -8090,13 +8090,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8090
8090
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8091
8091
  }, "strip", z.ZodTypeAny, {
8092
8092
  type: "text" | "mention" | "equation";
8093
+ plain_text?: string | undefined;
8093
8094
  text?: {
8094
8095
  content: string;
8095
8096
  link?: {
8096
8097
  url: string;
8097
8098
  } | null | undefined;
8098
8099
  } | undefined;
8099
- plain_text?: string | undefined;
8100
8100
  annotations?: {
8101
8101
  code: boolean;
8102
8102
  bold: boolean;
@@ -8108,13 +8108,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8108
8108
  href?: string | null | undefined;
8109
8109
  }, {
8110
8110
  type: "text" | "mention" | "equation";
8111
+ plain_text?: string | undefined;
8111
8112
  text?: {
8112
8113
  content: string;
8113
8114
  link?: {
8114
8115
  url: string;
8115
8116
  } | null | undefined;
8116
8117
  } | undefined;
8117
- plain_text?: string | undefined;
8118
8118
  annotations?: {
8119
8119
  code?: boolean | undefined;
8120
8120
  bold?: boolean | undefined;
@@ -8173,13 +8173,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8173
8173
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8174
8174
  }, "strip", z.ZodTypeAny, {
8175
8175
  type: "text" | "mention" | "equation";
8176
+ plain_text?: string | undefined;
8176
8177
  text?: {
8177
8178
  content: string;
8178
8179
  link?: {
8179
8180
  url: string;
8180
8181
  } | null | undefined;
8181
8182
  } | undefined;
8182
- plain_text?: string | undefined;
8183
8183
  annotations?: {
8184
8184
  code: boolean;
8185
8185
  bold: boolean;
@@ -8191,13 +8191,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8191
8191
  href?: string | null | undefined;
8192
8192
  }, {
8193
8193
  type: "text" | "mention" | "equation";
8194
+ plain_text?: string | undefined;
8194
8195
  text?: {
8195
8196
  content: string;
8196
8197
  link?: {
8197
8198
  url: string;
8198
8199
  } | null | undefined;
8199
8200
  } | undefined;
8200
- plain_text?: string | undefined;
8201
8201
  annotations?: {
8202
8202
  code?: boolean | undefined;
8203
8203
  bold?: boolean | undefined;
@@ -8541,13 +8541,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8541
8541
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8542
8542
  }, "strip", z.ZodTypeAny, {
8543
8543
  type: "text" | "mention" | "equation";
8544
+ plain_text?: string | undefined;
8544
8545
  text?: {
8545
8546
  content: string;
8546
8547
  link?: {
8547
8548
  url: string;
8548
8549
  } | null | undefined;
8549
8550
  } | undefined;
8550
- plain_text?: string | undefined;
8551
8551
  annotations?: {
8552
8552
  code: boolean;
8553
8553
  bold: boolean;
@@ -8559,13 +8559,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8559
8559
  href?: string | null | undefined;
8560
8560
  }, {
8561
8561
  type: "text" | "mention" | "equation";
8562
+ plain_text?: string | undefined;
8562
8563
  text?: {
8563
8564
  content: string;
8564
8565
  link?: {
8565
8566
  url: string;
8566
8567
  } | null | undefined;
8567
8568
  } | undefined;
8568
- plain_text?: string | undefined;
8569
8569
  annotations?: {
8570
8570
  code?: boolean | undefined;
8571
8571
  bold?: boolean | undefined;
@@ -8624,13 +8624,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8624
8624
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8625
8625
  }, "strip", z.ZodTypeAny, {
8626
8626
  type: "text" | "mention" | "equation";
8627
+ plain_text?: string | undefined;
8627
8628
  text?: {
8628
8629
  content: string;
8629
8630
  link?: {
8630
8631
  url: string;
8631
8632
  } | null | undefined;
8632
8633
  } | undefined;
8633
- plain_text?: string | undefined;
8634
8634
  annotations?: {
8635
8635
  code: boolean;
8636
8636
  bold: boolean;
@@ -8642,13 +8642,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8642
8642
  href?: string | null | undefined;
8643
8643
  }, {
8644
8644
  type: "text" | "mention" | "equation";
8645
+ plain_text?: string | undefined;
8645
8646
  text?: {
8646
8647
  content: string;
8647
8648
  link?: {
8648
8649
  url: string;
8649
8650
  } | null | undefined;
8650
8651
  } | undefined;
8651
- plain_text?: string | undefined;
8652
8652
  annotations?: {
8653
8653
  code?: boolean | undefined;
8654
8654
  bold?: boolean | undefined;
@@ -8987,13 +8987,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
8987
8987
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8988
8988
  }, "strip", z.ZodTypeAny, {
8989
8989
  type: "text" | "mention" | "equation";
8990
+ plain_text?: string | undefined;
8990
8991
  text?: {
8991
8992
  content: string;
8992
8993
  link?: {
8993
8994
  url: string;
8994
8995
  } | null | undefined;
8995
8996
  } | undefined;
8996
- plain_text?: string | undefined;
8997
8997
  annotations?: {
8998
8998
  code: boolean;
8999
8999
  bold: boolean;
@@ -9005,13 +9005,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9005
9005
  href?: string | null | undefined;
9006
9006
  }, {
9007
9007
  type: "text" | "mention" | "equation";
9008
+ plain_text?: string | undefined;
9008
9009
  text?: {
9009
9010
  content: string;
9010
9011
  link?: {
9011
9012
  url: string;
9012
9013
  } | null | undefined;
9013
9014
  } | undefined;
9014
- plain_text?: string | undefined;
9015
9015
  annotations?: {
9016
9016
  code?: boolean | undefined;
9017
9017
  bold?: boolean | undefined;
@@ -9070,13 +9070,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9070
9070
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9071
9071
  }, "strip", z.ZodTypeAny, {
9072
9072
  type: "text" | "mention" | "equation";
9073
+ plain_text?: string | undefined;
9073
9074
  text?: {
9074
9075
  content: string;
9075
9076
  link?: {
9076
9077
  url: string;
9077
9078
  } | null | undefined;
9078
9079
  } | undefined;
9079
- plain_text?: string | undefined;
9080
9080
  annotations?: {
9081
9081
  code: boolean;
9082
9082
  bold: boolean;
@@ -9088,13 +9088,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9088
9088
  href?: string | null | undefined;
9089
9089
  }, {
9090
9090
  type: "text" | "mention" | "equation";
9091
+ plain_text?: string | undefined;
9091
9092
  text?: {
9092
9093
  content: string;
9093
9094
  link?: {
9094
9095
  url: string;
9095
9096
  } | null | undefined;
9096
9097
  } | undefined;
9097
- plain_text?: string | undefined;
9098
9098
  annotations?: {
9099
9099
  code?: boolean | undefined;
9100
9100
  bold?: boolean | undefined;
@@ -9433,13 +9433,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9433
9433
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9434
9434
  }, "strip", z.ZodTypeAny, {
9435
9435
  type: "text" | "mention" | "equation";
9436
+ plain_text?: string | undefined;
9436
9437
  text?: {
9437
9438
  content: string;
9438
9439
  link?: {
9439
9440
  url: string;
9440
9441
  } | null | undefined;
9441
9442
  } | undefined;
9442
- plain_text?: string | undefined;
9443
9443
  annotations?: {
9444
9444
  code: boolean;
9445
9445
  bold: boolean;
@@ -9451,13 +9451,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9451
9451
  href?: string | null | undefined;
9452
9452
  }, {
9453
9453
  type: "text" | "mention" | "equation";
9454
+ plain_text?: string | undefined;
9454
9455
  text?: {
9455
9456
  content: string;
9456
9457
  link?: {
9457
9458
  url: string;
9458
9459
  } | null | undefined;
9459
9460
  } | undefined;
9460
- plain_text?: string | undefined;
9461
9461
  annotations?: {
9462
9462
  code?: boolean | undefined;
9463
9463
  bold?: boolean | undefined;
@@ -9516,13 +9516,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9516
9516
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9517
9517
  }, "strip", z.ZodTypeAny, {
9518
9518
  type: "text" | "mention" | "equation";
9519
+ plain_text?: string | undefined;
9519
9520
  text?: {
9520
9521
  content: string;
9521
9522
  link?: {
9522
9523
  url: string;
9523
9524
  } | null | undefined;
9524
9525
  } | undefined;
9525
- plain_text?: string | undefined;
9526
9526
  annotations?: {
9527
9527
  code: boolean;
9528
9528
  bold: boolean;
@@ -9534,13 +9534,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9534
9534
  href?: string | null | undefined;
9535
9535
  }, {
9536
9536
  type: "text" | "mention" | "equation";
9537
+ plain_text?: string | undefined;
9537
9538
  text?: {
9538
9539
  content: string;
9539
9540
  link?: {
9540
9541
  url: string;
9541
9542
  } | null | undefined;
9542
9543
  } | undefined;
9543
- plain_text?: string | undefined;
9544
9544
  annotations?: {
9545
9545
  code?: boolean | undefined;
9546
9546
  bold?: boolean | undefined;
@@ -9884,13 +9884,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9884
9884
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9885
9885
  }, "strip", z.ZodTypeAny, {
9886
9886
  type: "text" | "mention" | "equation";
9887
+ plain_text?: string | undefined;
9887
9888
  text?: {
9888
9889
  content: string;
9889
9890
  link?: {
9890
9891
  url: string;
9891
9892
  } | null | undefined;
9892
9893
  } | undefined;
9893
- plain_text?: string | undefined;
9894
9894
  annotations?: {
9895
9895
  code: boolean;
9896
9896
  bold: boolean;
@@ -9902,13 +9902,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9902
9902
  href?: string | null | undefined;
9903
9903
  }, {
9904
9904
  type: "text" | "mention" | "equation";
9905
+ plain_text?: string | undefined;
9905
9906
  text?: {
9906
9907
  content: string;
9907
9908
  link?: {
9908
9909
  url: string;
9909
9910
  } | null | undefined;
9910
9911
  } | undefined;
9911
- plain_text?: string | undefined;
9912
9912
  annotations?: {
9913
9913
  code?: boolean | undefined;
9914
9914
  bold?: boolean | undefined;
@@ -9967,13 +9967,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9967
9967
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9968
9968
  }, "strip", z.ZodTypeAny, {
9969
9969
  type: "text" | "mention" | "equation";
9970
+ plain_text?: string | undefined;
9970
9971
  text?: {
9971
9972
  content: string;
9972
9973
  link?: {
9973
9974
  url: string;
9974
9975
  } | null | undefined;
9975
9976
  } | undefined;
9976
- plain_text?: string | undefined;
9977
9977
  annotations?: {
9978
9978
  code: boolean;
9979
9979
  bold: boolean;
@@ -9985,13 +9985,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
9985
9985
  href?: string | null | undefined;
9986
9986
  }, {
9987
9987
  type: "text" | "mention" | "equation";
9988
+ plain_text?: string | undefined;
9988
9989
  text?: {
9989
9990
  content: string;
9990
9991
  link?: {
9991
9992
  url: string;
9992
9993
  } | null | undefined;
9993
9994
  } | undefined;
9994
- plain_text?: string | undefined;
9995
9995
  annotations?: {
9996
9996
  code?: boolean | undefined;
9997
9997
  bold?: boolean | undefined;
@@ -10335,13 +10335,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10335
10335
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10336
10336
  }, "strip", z.ZodTypeAny, {
10337
10337
  type: "text" | "mention" | "equation";
10338
+ plain_text?: string | undefined;
10338
10339
  text?: {
10339
10340
  content: string;
10340
10341
  link?: {
10341
10342
  url: string;
10342
10343
  } | null | undefined;
10343
10344
  } | undefined;
10344
- plain_text?: string | undefined;
10345
10345
  annotations?: {
10346
10346
  code: boolean;
10347
10347
  bold: boolean;
@@ -10353,13 +10353,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10353
10353
  href?: string | null | undefined;
10354
10354
  }, {
10355
10355
  type: "text" | "mention" | "equation";
10356
+ plain_text?: string | undefined;
10356
10357
  text?: {
10357
10358
  content: string;
10358
10359
  link?: {
10359
10360
  url: string;
10360
10361
  } | null | undefined;
10361
10362
  } | undefined;
10362
- plain_text?: string | undefined;
10363
10363
  annotations?: {
10364
10364
  code?: boolean | undefined;
10365
10365
  bold?: boolean | undefined;
@@ -10418,13 +10418,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10418
10418
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10419
10419
  }, "strip", z.ZodTypeAny, {
10420
10420
  type: "text" | "mention" | "equation";
10421
+ plain_text?: string | undefined;
10421
10422
  text?: {
10422
10423
  content: string;
10423
10424
  link?: {
10424
10425
  url: string;
10425
10426
  } | null | undefined;
10426
10427
  } | undefined;
10427
- plain_text?: string | undefined;
10428
10428
  annotations?: {
10429
10429
  code: boolean;
10430
10430
  bold: boolean;
@@ -10436,13 +10436,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10436
10436
  href?: string | null | undefined;
10437
10437
  }, {
10438
10438
  type: "text" | "mention" | "equation";
10439
+ plain_text?: string | undefined;
10439
10440
  text?: {
10440
10441
  content: string;
10441
10442
  link?: {
10442
10443
  url: string;
10443
10444
  } | null | undefined;
10444
10445
  } | undefined;
10445
- plain_text?: string | undefined;
10446
10446
  annotations?: {
10447
10447
  code?: boolean | undefined;
10448
10448
  bold?: boolean | undefined;
@@ -10513,13 +10513,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10513
10513
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10514
10514
  }, "strip", z.ZodTypeAny, {
10515
10515
  type: "text" | "mention" | "equation";
10516
+ plain_text?: string | undefined;
10516
10517
  text?: {
10517
10518
  content: string;
10518
10519
  link?: {
10519
10520
  url: string;
10520
10521
  } | null | undefined;
10521
10522
  } | undefined;
10522
- plain_text?: string | undefined;
10523
10523
  annotations?: {
10524
10524
  code: boolean;
10525
10525
  bold: boolean;
@@ -10531,13 +10531,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10531
10531
  href?: string | null | undefined;
10532
10532
  }, {
10533
10533
  type: "text" | "mention" | "equation";
10534
+ plain_text?: string | undefined;
10534
10535
  text?: {
10535
10536
  content: string;
10536
10537
  link?: {
10537
10538
  url: string;
10538
10539
  } | null | undefined;
10539
10540
  } | undefined;
10540
- plain_text?: string | undefined;
10541
10541
  annotations?: {
10542
10542
  code?: boolean | undefined;
10543
10543
  bold?: boolean | undefined;
@@ -10596,13 +10596,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10596
10596
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10597
10597
  }, "strip", z.ZodTypeAny, {
10598
10598
  type: "text" | "mention" | "equation";
10599
+ plain_text?: string | undefined;
10599
10600
  text?: {
10600
10601
  content: string;
10601
10602
  link?: {
10602
10603
  url: string;
10603
10604
  } | null | undefined;
10604
10605
  } | undefined;
10605
- plain_text?: string | undefined;
10606
10606
  annotations?: {
10607
10607
  code: boolean;
10608
10608
  bold: boolean;
@@ -10614,13 +10614,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10614
10614
  href?: string | null | undefined;
10615
10615
  }, {
10616
10616
  type: "text" | "mention" | "equation";
10617
+ plain_text?: string | undefined;
10617
10618
  text?: {
10618
10619
  content: string;
10619
10620
  link?: {
10620
10621
  url: string;
10621
10622
  } | null | undefined;
10622
10623
  } | undefined;
10623
- plain_text?: string | undefined;
10624
10624
  annotations?: {
10625
10625
  code?: boolean | undefined;
10626
10626
  bold?: boolean | undefined;
@@ -10995,13 +10995,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10995
10995
  object: "database";
10996
10996
  title: {
10997
10997
  type: "text" | "mention" | "equation";
10998
+ plain_text?: string | undefined;
10998
10999
  text?: {
10999
11000
  content: string;
11000
11001
  link?: {
11001
11002
  url: string;
11002
11003
  } | null | undefined;
11003
11004
  } | undefined;
11004
- plain_text?: string | undefined;
11005
11005
  annotations?: {
11006
11006
  code: boolean;
11007
11007
  bold: boolean;
@@ -11012,7 +11012,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11012
11012
  } | undefined;
11013
11013
  href?: string | null | undefined;
11014
11014
  }[];
11015
- id: string;
11016
11015
  parent: {
11017
11016
  type: "page_id";
11018
11017
  page_id: string;
@@ -11030,6 +11029,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11030
11029
  type: "workspace";
11031
11030
  workspace: true;
11032
11031
  };
11032
+ id: string;
11033
11033
  created_time: string;
11034
11034
  last_edited_time: string;
11035
11035
  data_sources: {
@@ -11070,13 +11070,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11070
11070
  }[];
11071
11071
  description?: {
11072
11072
  type: "text" | "mention" | "equation";
11073
+ plain_text?: string | undefined;
11073
11074
  text?: {
11074
11075
  content: string;
11075
11076
  link?: {
11076
11077
  url: string;
11077
11078
  } | null | undefined;
11078
11079
  } | undefined;
11079
- plain_text?: string | undefined;
11080
11080
  annotations?: {
11081
11081
  code: boolean;
11082
11082
  bold: boolean;
@@ -11128,13 +11128,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11128
11128
  object: "database";
11129
11129
  title: {
11130
11130
  type: "text" | "mention" | "equation";
11131
+ plain_text?: string | undefined;
11131
11132
  text?: {
11132
11133
  content: string;
11133
11134
  link?: {
11134
11135
  url: string;
11135
11136
  } | null | undefined;
11136
11137
  } | undefined;
11137
- plain_text?: string | undefined;
11138
11138
  annotations?: {
11139
11139
  code?: boolean | undefined;
11140
11140
  bold?: boolean | undefined;
@@ -11145,7 +11145,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11145
11145
  } | undefined;
11146
11146
  href?: string | null | undefined;
11147
11147
  }[];
11148
- id: string;
11149
11148
  parent: {
11150
11149
  type: "page_id";
11151
11150
  page_id: string;
@@ -11163,6 +11162,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11163
11162
  type: "workspace";
11164
11163
  workspace: true;
11165
11164
  };
11165
+ id: string;
11166
11166
  created_time: string;
11167
11167
  last_edited_time: string;
11168
11168
  data_sources: {
@@ -11203,13 +11203,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11203
11203
  }[];
11204
11204
  description?: {
11205
11205
  type: "text" | "mention" | "equation";
11206
+ plain_text?: string | undefined;
11206
11207
  text?: {
11207
11208
  content: string;
11208
11209
  link?: {
11209
11210
  url: string;
11210
11211
  } | null | undefined;
11211
11212
  } | undefined;
11212
- plain_text?: string | undefined;
11213
11213
  annotations?: {
11214
11214
  code?: boolean | undefined;
11215
11215
  bold?: boolean | undefined;
@@ -11266,13 +11266,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11266
11266
  object: "database";
11267
11267
  title: {
11268
11268
  type: "text" | "mention" | "equation";
11269
+ plain_text?: string | undefined;
11269
11270
  text?: {
11270
11271
  content: string;
11271
11272
  link?: {
11272
11273
  url: string;
11273
11274
  } | null | undefined;
11274
11275
  } | undefined;
11275
- plain_text?: string | undefined;
11276
11276
  annotations?: {
11277
11277
  code: boolean;
11278
11278
  bold: boolean;
@@ -11283,7 +11283,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11283
11283
  } | undefined;
11284
11284
  href?: string | null | undefined;
11285
11285
  }[];
11286
- id: string;
11287
11286
  parent: {
11288
11287
  type: "page_id";
11289
11288
  page_id: string;
@@ -11301,6 +11300,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11301
11300
  type: "workspace";
11302
11301
  workspace: true;
11303
11302
  };
11303
+ id: string;
11304
11304
  created_time: string;
11305
11305
  last_edited_time: string;
11306
11306
  data_sources: {
@@ -11341,13 +11341,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11341
11341
  }[];
11342
11342
  description?: {
11343
11343
  type: "text" | "mention" | "equation";
11344
+ plain_text?: string | undefined;
11344
11345
  text?: {
11345
11346
  content: string;
11346
11347
  link?: {
11347
11348
  url: string;
11348
11349
  } | null | undefined;
11349
11350
  } | undefined;
11350
- plain_text?: string | undefined;
11351
11351
  annotations?: {
11352
11352
  code: boolean;
11353
11353
  bold: boolean;
@@ -11404,13 +11404,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11404
11404
  object: "database";
11405
11405
  title: {
11406
11406
  type: "text" | "mention" | "equation";
11407
+ plain_text?: string | undefined;
11407
11408
  text?: {
11408
11409
  content: string;
11409
11410
  link?: {
11410
11411
  url: string;
11411
11412
  } | null | undefined;
11412
11413
  } | undefined;
11413
- plain_text?: string | undefined;
11414
11414
  annotations?: {
11415
11415
  code?: boolean | undefined;
11416
11416
  bold?: boolean | undefined;
@@ -11421,7 +11421,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11421
11421
  } | undefined;
11422
11422
  href?: string | null | undefined;
11423
11423
  }[];
11424
- id: string;
11425
11424
  parent: {
11426
11425
  type: "page_id";
11427
11426
  page_id: string;
@@ -11439,6 +11438,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11439
11438
  type: "workspace";
11440
11439
  workspace: true;
11441
11440
  };
11441
+ id: string;
11442
11442
  created_time: string;
11443
11443
  last_edited_time: string;
11444
11444
  data_sources: {
@@ -11479,13 +11479,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11479
11479
  }[];
11480
11480
  description?: {
11481
11481
  type: "text" | "mention" | "equation";
11482
+ plain_text?: string | undefined;
11482
11483
  text?: {
11483
11484
  content: string;
11484
11485
  link?: {
11485
11486
  url: string;
11486
11487
  } | null | undefined;
11487
11488
  } | undefined;
11488
- plain_text?: string | undefined;
11489
11489
  annotations?: {
11490
11490
  code?: boolean | undefined;
11491
11491
  bold?: boolean | undefined;
@@ -11591,13 +11591,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11591
11591
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11592
11592
  }, "strip", z.ZodTypeAny, {
11593
11593
  type: "text" | "mention" | "equation";
11594
+ plain_text?: string | undefined;
11594
11595
  text?: {
11595
11596
  content: string;
11596
11597
  link?: {
11597
11598
  url: string;
11598
11599
  } | null | undefined;
11599
11600
  } | undefined;
11600
- plain_text?: string | undefined;
11601
11601
  annotations?: {
11602
11602
  code: boolean;
11603
11603
  bold: boolean;
@@ -11609,13 +11609,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11609
11609
  href?: string | null | undefined;
11610
11610
  }, {
11611
11611
  type: "text" | "mention" | "equation";
11612
+ plain_text?: string | undefined;
11612
11613
  text?: {
11613
11614
  content: string;
11614
11615
  link?: {
11615
11616
  url: string;
11616
11617
  } | null | undefined;
11617
11618
  } | undefined;
11618
- plain_text?: string | undefined;
11619
11619
  annotations?: {
11620
11620
  code?: boolean | undefined;
11621
11621
  bold?: boolean | undefined;
@@ -11674,13 +11674,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11674
11674
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11675
11675
  }, "strip", z.ZodTypeAny, {
11676
11676
  type: "text" | "mention" | "equation";
11677
+ plain_text?: string | undefined;
11677
11678
  text?: {
11678
11679
  content: string;
11679
11680
  link?: {
11680
11681
  url: string;
11681
11682
  } | null | undefined;
11682
11683
  } | undefined;
11683
- plain_text?: string | undefined;
11684
11684
  annotations?: {
11685
11685
  code: boolean;
11686
11686
  bold: boolean;
@@ -11692,13 +11692,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
11692
11692
  href?: string | null | undefined;
11693
11693
  }, {
11694
11694
  type: "text" | "mention" | "equation";
11695
+ plain_text?: string | undefined;
11695
11696
  text?: {
11696
11697
  content: string;
11697
11698
  link?: {
11698
11699
  url: string;
11699
11700
  } | null | undefined;
11700
11701
  } | undefined;
11701
- plain_text?: string | undefined;
11702
11702
  annotations?: {
11703
11703
  code?: boolean | undefined;
11704
11704
  bold?: boolean | undefined;
@@ -12073,13 +12073,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12073
12073
  object: "database";
12074
12074
  title: {
12075
12075
  type: "text" | "mention" | "equation";
12076
+ plain_text?: string | undefined;
12076
12077
  text?: {
12077
12078
  content: string;
12078
12079
  link?: {
12079
12080
  url: string;
12080
12081
  } | null | undefined;
12081
12082
  } | undefined;
12082
- plain_text?: string | undefined;
12083
12083
  annotations?: {
12084
12084
  code: boolean;
12085
12085
  bold: boolean;
@@ -12090,7 +12090,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12090
12090
  } | undefined;
12091
12091
  href?: string | null | undefined;
12092
12092
  }[];
12093
- id: string;
12094
12093
  parent: {
12095
12094
  type: "page_id";
12096
12095
  page_id: string;
@@ -12108,6 +12107,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12108
12107
  type: "workspace";
12109
12108
  workspace: true;
12110
12109
  };
12110
+ id: string;
12111
12111
  created_time: string;
12112
12112
  last_edited_time: string;
12113
12113
  data_sources: {
@@ -12148,13 +12148,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12148
12148
  }[];
12149
12149
  description?: {
12150
12150
  type: "text" | "mention" | "equation";
12151
+ plain_text?: string | undefined;
12151
12152
  text?: {
12152
12153
  content: string;
12153
12154
  link?: {
12154
12155
  url: string;
12155
12156
  } | null | undefined;
12156
12157
  } | undefined;
12157
- plain_text?: string | undefined;
12158
12158
  annotations?: {
12159
12159
  code: boolean;
12160
12160
  bold: boolean;
@@ -12206,13 +12206,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12206
12206
  object: "database";
12207
12207
  title: {
12208
12208
  type: "text" | "mention" | "equation";
12209
+ plain_text?: string | undefined;
12209
12210
  text?: {
12210
12211
  content: string;
12211
12212
  link?: {
12212
12213
  url: string;
12213
12214
  } | null | undefined;
12214
12215
  } | undefined;
12215
- plain_text?: string | undefined;
12216
12216
  annotations?: {
12217
12217
  code?: boolean | undefined;
12218
12218
  bold?: boolean | undefined;
@@ -12223,7 +12223,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12223
12223
  } | undefined;
12224
12224
  href?: string | null | undefined;
12225
12225
  }[];
12226
- id: string;
12227
12226
  parent: {
12228
12227
  type: "page_id";
12229
12228
  page_id: string;
@@ -12241,6 +12240,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12241
12240
  type: "workspace";
12242
12241
  workspace: true;
12243
12242
  };
12243
+ id: string;
12244
12244
  created_time: string;
12245
12245
  last_edited_time: string;
12246
12246
  data_sources: {
@@ -12281,13 +12281,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12281
12281
  }[];
12282
12282
  description?: {
12283
12283
  type: "text" | "mention" | "equation";
12284
+ plain_text?: string | undefined;
12284
12285
  text?: {
12285
12286
  content: string;
12286
12287
  link?: {
12287
12288
  url: string;
12288
12289
  } | null | undefined;
12289
12290
  } | undefined;
12290
- plain_text?: string | undefined;
12291
12291
  annotations?: {
12292
12292
  code?: boolean | undefined;
12293
12293
  bold?: boolean | undefined;
@@ -12344,13 +12344,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12344
12344
  object: "database";
12345
12345
  title: {
12346
12346
  type: "text" | "mention" | "equation";
12347
+ plain_text?: string | undefined;
12347
12348
  text?: {
12348
12349
  content: string;
12349
12350
  link?: {
12350
12351
  url: string;
12351
12352
  } | null | undefined;
12352
12353
  } | undefined;
12353
- plain_text?: string | undefined;
12354
12354
  annotations?: {
12355
12355
  code: boolean;
12356
12356
  bold: boolean;
@@ -12361,7 +12361,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12361
12361
  } | undefined;
12362
12362
  href?: string | null | undefined;
12363
12363
  }[];
12364
- id: string;
12365
12364
  parent: {
12366
12365
  type: "page_id";
12367
12366
  page_id: string;
@@ -12379,6 +12378,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12379
12378
  type: "workspace";
12380
12379
  workspace: true;
12381
12380
  };
12381
+ id: string;
12382
12382
  created_time: string;
12383
12383
  last_edited_time: string;
12384
12384
  data_sources: {
@@ -12419,13 +12419,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12419
12419
  }[];
12420
12420
  description?: {
12421
12421
  type: "text" | "mention" | "equation";
12422
+ plain_text?: string | undefined;
12422
12423
  text?: {
12423
12424
  content: string;
12424
12425
  link?: {
12425
12426
  url: string;
12426
12427
  } | null | undefined;
12427
12428
  } | undefined;
12428
- plain_text?: string | undefined;
12429
12429
  annotations?: {
12430
12430
  code: boolean;
12431
12431
  bold: boolean;
@@ -12482,13 +12482,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12482
12482
  object: "database";
12483
12483
  title: {
12484
12484
  type: "text" | "mention" | "equation";
12485
+ plain_text?: string | undefined;
12485
12486
  text?: {
12486
12487
  content: string;
12487
12488
  link?: {
12488
12489
  url: string;
12489
12490
  } | null | undefined;
12490
12491
  } | undefined;
12491
- plain_text?: string | undefined;
12492
12492
  annotations?: {
12493
12493
  code?: boolean | undefined;
12494
12494
  bold?: boolean | undefined;
@@ -12499,7 +12499,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12499
12499
  } | undefined;
12500
12500
  href?: string | null | undefined;
12501
12501
  }[];
12502
- id: string;
12503
12502
  parent: {
12504
12503
  type: "page_id";
12505
12504
  page_id: string;
@@ -12517,6 +12516,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12517
12516
  type: "workspace";
12518
12517
  workspace: true;
12519
12518
  };
12519
+ id: string;
12520
12520
  created_time: string;
12521
12521
  last_edited_time: string;
12522
12522
  data_sources: {
@@ -12557,13 +12557,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
12557
12557
  }[];
12558
12558
  description?: {
12559
12559
  type: "text" | "mention" | "equation";
12560
+ plain_text?: string | undefined;
12560
12561
  text?: {
12561
12562
  content: string;
12562
12563
  link?: {
12563
12564
  url: string;
12564
12565
  } | null | undefined;
12565
12566
  } | undefined;
12566
- plain_text?: string | undefined;
12567
12567
  annotations?: {
12568
12568
  code?: boolean | undefined;
12569
12569
  bold?: boolean | undefined;
@@ -16826,13 +16826,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16826
16826
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16827
16827
  }, "strip", z.ZodTypeAny, {
16828
16828
  type: "text" | "mention" | "equation";
16829
+ plain_text?: string | undefined;
16829
16830
  text?: {
16830
16831
  content: string;
16831
16832
  link?: {
16832
16833
  url: string;
16833
16834
  } | null | undefined;
16834
16835
  } | undefined;
16835
- plain_text?: string | undefined;
16836
16836
  annotations?: {
16837
16837
  code: boolean;
16838
16838
  bold: boolean;
@@ -16844,13 +16844,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16844
16844
  href?: string | null | undefined;
16845
16845
  }, {
16846
16846
  type: "text" | "mention" | "equation";
16847
+ plain_text?: string | undefined;
16847
16848
  text?: {
16848
16849
  content: string;
16849
16850
  link?: {
16850
16851
  url: string;
16851
16852
  } | null | undefined;
16852
16853
  } | undefined;
16853
- plain_text?: string | undefined;
16854
16854
  annotations?: {
16855
16855
  code?: boolean | undefined;
16856
16856
  bold?: boolean | undefined;
@@ -16863,7 +16863,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16863
16863
  }>, "many">;
16864
16864
  }, "strip", z.ZodTypeAny, {
16865
16865
  object: "comment";
16866
- id: string;
16867
16866
  parent: {
16868
16867
  type: "block_id" | "page_id";
16869
16868
  block_id?: string | undefined;
@@ -16871,6 +16870,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16871
16870
  } & {
16872
16871
  [k: string]: unknown;
16873
16872
  };
16873
+ id: string;
16874
16874
  created_time: string;
16875
16875
  last_edited_time: string;
16876
16876
  created_by: {
@@ -16893,13 +16893,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16893
16893
  discussion_id: string;
16894
16894
  rich_text: {
16895
16895
  type: "text" | "mention" | "equation";
16896
+ plain_text?: string | undefined;
16896
16897
  text?: {
16897
16898
  content: string;
16898
16899
  link?: {
16899
16900
  url: string;
16900
16901
  } | null | undefined;
16901
16902
  } | undefined;
16902
- plain_text?: string | undefined;
16903
16903
  annotations?: {
16904
16904
  code: boolean;
16905
16905
  bold: boolean;
@@ -16912,7 +16912,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16912
16912
  }[];
16913
16913
  }, {
16914
16914
  object: "comment";
16915
- id: string;
16916
16915
  parent: {
16917
16916
  type: "block_id" | "page_id";
16918
16917
  block_id?: string | undefined;
@@ -16920,6 +16919,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16920
16919
  } & {
16921
16920
  [k: string]: unknown;
16922
16921
  };
16922
+ id: string;
16923
16923
  created_time: string;
16924
16924
  last_edited_time: string;
16925
16925
  created_by: {
@@ -16942,13 +16942,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16942
16942
  discussion_id: string;
16943
16943
  rich_text: {
16944
16944
  type: "text" | "mention" | "equation";
16945
+ plain_text?: string | undefined;
16945
16946
  text?: {
16946
16947
  content: string;
16947
16948
  link?: {
16948
16949
  url: string;
16949
16950
  } | null | undefined;
16950
16951
  } | undefined;
16951
- plain_text?: string | undefined;
16952
16952
  annotations?: {
16953
16953
  code?: boolean | undefined;
16954
16954
  bold?: boolean | undefined;
@@ -16966,7 +16966,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16966
16966
  operation: "create_comment";
16967
16967
  comment?: {
16968
16968
  object: "comment";
16969
- id: string;
16970
16969
  parent: {
16971
16970
  type: "block_id" | "page_id";
16972
16971
  block_id?: string | undefined;
@@ -16974,6 +16973,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16974
16973
  } & {
16975
16974
  [k: string]: unknown;
16976
16975
  };
16976
+ id: string;
16977
16977
  created_time: string;
16978
16978
  last_edited_time: string;
16979
16979
  created_by: {
@@ -16996,13 +16996,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
16996
16996
  discussion_id: string;
16997
16997
  rich_text: {
16998
16998
  type: "text" | "mention" | "equation";
16999
+ plain_text?: string | undefined;
16999
17000
  text?: {
17000
17001
  content: string;
17001
17002
  link?: {
17002
17003
  url: string;
17003
17004
  } | null | undefined;
17004
17005
  } | undefined;
17005
- plain_text?: string | undefined;
17006
17006
  annotations?: {
17007
17007
  code: boolean;
17008
17008
  bold: boolean;
@@ -17020,7 +17020,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17020
17020
  operation: "create_comment";
17021
17021
  comment?: {
17022
17022
  object: "comment";
17023
- id: string;
17024
17023
  parent: {
17025
17024
  type: "block_id" | "page_id";
17026
17025
  block_id?: string | undefined;
@@ -17028,6 +17027,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17028
17027
  } & {
17029
17028
  [k: string]: unknown;
17030
17029
  };
17030
+ id: string;
17031
17031
  created_time: string;
17032
17032
  last_edited_time: string;
17033
17033
  created_by: {
@@ -17050,13 +17050,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17050
17050
  discussion_id: string;
17051
17051
  rich_text: {
17052
17052
  type: "text" | "mention" | "equation";
17053
+ plain_text?: string | undefined;
17053
17054
  text?: {
17054
17055
  content: string;
17055
17056
  link?: {
17056
17057
  url: string;
17057
17058
  } | null | undefined;
17058
17059
  } | undefined;
17059
- plain_text?: string | undefined;
17060
17060
  annotations?: {
17061
17061
  code?: boolean | undefined;
17062
17062
  bold?: boolean | undefined;
@@ -17210,13 +17210,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17210
17210
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17211
17211
  }, "strip", z.ZodTypeAny, {
17212
17212
  type: "text" | "mention" | "equation";
17213
+ plain_text?: string | undefined;
17213
17214
  text?: {
17214
17215
  content: string;
17215
17216
  link?: {
17216
17217
  url: string;
17217
17218
  } | null | undefined;
17218
17219
  } | undefined;
17219
- plain_text?: string | undefined;
17220
17220
  annotations?: {
17221
17221
  code: boolean;
17222
17222
  bold: boolean;
@@ -17228,13 +17228,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17228
17228
  href?: string | null | undefined;
17229
17229
  }, {
17230
17230
  type: "text" | "mention" | "equation";
17231
+ plain_text?: string | undefined;
17231
17232
  text?: {
17232
17233
  content: string;
17233
17234
  link?: {
17234
17235
  url: string;
17235
17236
  } | null | undefined;
17236
17237
  } | undefined;
17237
- plain_text?: string | undefined;
17238
17238
  annotations?: {
17239
17239
  code?: boolean | undefined;
17240
17240
  bold?: boolean | undefined;
@@ -17247,7 +17247,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17247
17247
  }>, "many">;
17248
17248
  }, "strip", z.ZodTypeAny, {
17249
17249
  object: "comment";
17250
- id: string;
17251
17250
  parent: {
17252
17251
  type: "block_id" | "page_id";
17253
17252
  block_id?: string | undefined;
@@ -17255,6 +17254,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17255
17254
  } & {
17256
17255
  [k: string]: unknown;
17257
17256
  };
17257
+ id: string;
17258
17258
  created_time: string;
17259
17259
  last_edited_time: string;
17260
17260
  created_by: {
@@ -17277,13 +17277,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17277
17277
  discussion_id: string;
17278
17278
  rich_text: {
17279
17279
  type: "text" | "mention" | "equation";
17280
+ plain_text?: string | undefined;
17280
17281
  text?: {
17281
17282
  content: string;
17282
17283
  link?: {
17283
17284
  url: string;
17284
17285
  } | null | undefined;
17285
17286
  } | undefined;
17286
- plain_text?: string | undefined;
17287
17287
  annotations?: {
17288
17288
  code: boolean;
17289
17289
  bold: boolean;
@@ -17296,7 +17296,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17296
17296
  }[];
17297
17297
  }, {
17298
17298
  object: "comment";
17299
- id: string;
17300
17299
  parent: {
17301
17300
  type: "block_id" | "page_id";
17302
17301
  block_id?: string | undefined;
@@ -17304,6 +17303,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17304
17303
  } & {
17305
17304
  [k: string]: unknown;
17306
17305
  };
17306
+ id: string;
17307
17307
  created_time: string;
17308
17308
  last_edited_time: string;
17309
17309
  created_by: {
@@ -17326,13 +17326,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17326
17326
  discussion_id: string;
17327
17327
  rich_text: {
17328
17328
  type: "text" | "mention" | "equation";
17329
+ plain_text?: string | undefined;
17329
17330
  text?: {
17330
17331
  content: string;
17331
17332
  link?: {
17332
17333
  url: string;
17333
17334
  } | null | undefined;
17334
17335
  } | undefined;
17335
- plain_text?: string | undefined;
17336
17336
  annotations?: {
17337
17337
  code?: boolean | undefined;
17338
17338
  bold?: boolean | undefined;
@@ -17350,7 +17350,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17350
17350
  operation: "retrieve_comment";
17351
17351
  comment?: {
17352
17352
  object: "comment";
17353
- id: string;
17354
17353
  parent: {
17355
17354
  type: "block_id" | "page_id";
17356
17355
  block_id?: string | undefined;
@@ -17358,6 +17357,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17358
17357
  } & {
17359
17358
  [k: string]: unknown;
17360
17359
  };
17360
+ id: string;
17361
17361
  created_time: string;
17362
17362
  last_edited_time: string;
17363
17363
  created_by: {
@@ -17380,13 +17380,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17380
17380
  discussion_id: string;
17381
17381
  rich_text: {
17382
17382
  type: "text" | "mention" | "equation";
17383
+ plain_text?: string | undefined;
17383
17384
  text?: {
17384
17385
  content: string;
17385
17386
  link?: {
17386
17387
  url: string;
17387
17388
  } | null | undefined;
17388
17389
  } | undefined;
17389
- plain_text?: string | undefined;
17390
17390
  annotations?: {
17391
17391
  code: boolean;
17392
17392
  bold: boolean;
@@ -17404,7 +17404,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17404
17404
  operation: "retrieve_comment";
17405
17405
  comment?: {
17406
17406
  object: "comment";
17407
- id: string;
17408
17407
  parent: {
17409
17408
  type: "block_id" | "page_id";
17410
17409
  block_id?: string | undefined;
@@ -17412,6 +17411,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17412
17411
  } & {
17413
17412
  [k: string]: unknown;
17414
17413
  };
17414
+ id: string;
17415
17415
  created_time: string;
17416
17416
  last_edited_time: string;
17417
17417
  created_by: {
@@ -17434,13 +17434,13 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
17434
17434
  discussion_id: string;
17435
17435
  rich_text: {
17436
17436
  type: "text" | "mention" | "equation";
17437
+ plain_text?: string | undefined;
17437
17438
  text?: {
17438
17439
  content: string;
17439
17440
  link?: {
17440
17441
  url: string;
17441
17442
  } | null | undefined;
17442
17443
  } | undefined;
17443
- plain_text?: string | undefined;
17444
17444
  annotations?: {
17445
17445
  code?: boolean | undefined;
17446
17446
  bold?: boolean | undefined;
@@ -18351,13 +18351,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18351
18351
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18352
18352
  }, "strip", z.ZodTypeAny, {
18353
18353
  type: "text" | "mention" | "equation";
18354
+ plain_text?: string | undefined;
18354
18355
  text?: {
18355
18356
  content: string;
18356
18357
  link?: {
18357
18358
  url: string;
18358
18359
  } | null | undefined;
18359
18360
  } | undefined;
18360
- plain_text?: string | undefined;
18361
18361
  annotations?: {
18362
18362
  code: boolean;
18363
18363
  bold: boolean;
@@ -18369,13 +18369,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18369
18369
  href?: string | null | undefined;
18370
18370
  }, {
18371
18371
  type: "text" | "mention" | "equation";
18372
+ plain_text?: string | undefined;
18372
18373
  text?: {
18373
18374
  content: string;
18374
18375
  link?: {
18375
18376
  url: string;
18376
18377
  } | null | undefined;
18377
18378
  } | undefined;
18378
- plain_text?: string | undefined;
18379
18379
  annotations?: {
18380
18380
  code?: boolean | undefined;
18381
18381
  bold?: boolean | undefined;
@@ -18468,13 +18468,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18468
18468
  operation: "create_data_source";
18469
18469
  title?: {
18470
18470
  type: "text" | "mention" | "equation";
18471
+ plain_text?: string | undefined;
18471
18472
  text?: {
18472
18473
  content: string;
18473
18474
  link?: {
18474
18475
  url: string;
18475
18476
  } | null | undefined;
18476
18477
  } | undefined;
18477
- plain_text?: string | undefined;
18478
18478
  annotations?: {
18479
18479
  code: boolean;
18480
18480
  bold: boolean;
@@ -18515,13 +18515,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18515
18515
  operation: "create_data_source";
18516
18516
  title?: {
18517
18517
  type: "text" | "mention" | "equation";
18518
+ plain_text?: string | undefined;
18518
18519
  text?: {
18519
18520
  content: string;
18520
18521
  link?: {
18521
18522
  url: string;
18522
18523
  } | null | undefined;
18523
18524
  } | undefined;
18524
- plain_text?: string | undefined;
18525
18525
  annotations?: {
18526
18526
  code?: boolean | undefined;
18527
18527
  bold?: boolean | undefined;
@@ -18605,13 +18605,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18605
18605
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18606
18606
  }, "strip", z.ZodTypeAny, {
18607
18607
  type: "text" | "mention" | "equation";
18608
+ plain_text?: string | undefined;
18608
18609
  text?: {
18609
18610
  content: string;
18610
18611
  link?: {
18611
18612
  url: string;
18612
18613
  } | null | undefined;
18613
18614
  } | undefined;
18614
- plain_text?: string | undefined;
18615
18615
  annotations?: {
18616
18616
  code: boolean;
18617
18617
  bold: boolean;
@@ -18623,13 +18623,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18623
18623
  href?: string | null | undefined;
18624
18624
  }, {
18625
18625
  type: "text" | "mention" | "equation";
18626
+ plain_text?: string | undefined;
18626
18627
  text?: {
18627
18628
  content: string;
18628
18629
  link?: {
18629
18630
  url: string;
18630
18631
  } | null | undefined;
18631
18632
  } | undefined;
18632
- plain_text?: string | undefined;
18633
18633
  annotations?: {
18634
18634
  code?: boolean | undefined;
18635
18635
  bold?: boolean | undefined;
@@ -18688,13 +18688,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18688
18688
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18689
18689
  }, "strip", z.ZodTypeAny, {
18690
18690
  type: "text" | "mention" | "equation";
18691
+ plain_text?: string | undefined;
18691
18692
  text?: {
18692
18693
  content: string;
18693
18694
  link?: {
18694
18695
  url: string;
18695
18696
  } | null | undefined;
18696
18697
  } | undefined;
18697
- plain_text?: string | undefined;
18698
18698
  annotations?: {
18699
18699
  code: boolean;
18700
18700
  bold: boolean;
@@ -18706,13 +18706,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18706
18706
  href?: string | null | undefined;
18707
18707
  }, {
18708
18708
  type: "text" | "mention" | "equation";
18709
+ plain_text?: string | undefined;
18709
18710
  text?: {
18710
18711
  content: string;
18711
18712
  link?: {
18712
18713
  url: string;
18713
18714
  } | null | undefined;
18714
18715
  } | undefined;
18715
- plain_text?: string | undefined;
18716
18716
  annotations?: {
18717
18717
  code?: boolean | undefined;
18718
18718
  bold?: boolean | undefined;
@@ -18813,13 +18813,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18813
18813
  properties?: Record<string, unknown> | undefined;
18814
18814
  description?: {
18815
18815
  type: "text" | "mention" | "equation";
18816
+ plain_text?: string | undefined;
18816
18817
  text?: {
18817
18818
  content: string;
18818
18819
  link?: {
18819
18820
  url: string;
18820
18821
  } | null | undefined;
18821
18822
  } | undefined;
18822
- plain_text?: string | undefined;
18823
18823
  annotations?: {
18824
18824
  code: boolean;
18825
18825
  bold: boolean;
@@ -18832,13 +18832,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18832
18832
  }[] | undefined;
18833
18833
  title?: {
18834
18834
  type: "text" | "mention" | "equation";
18835
+ plain_text?: string | undefined;
18835
18836
  text?: {
18836
18837
  content: string;
18837
18838
  link?: {
18838
18839
  url: string;
18839
18840
  } | null | undefined;
18840
18841
  } | undefined;
18841
- plain_text?: string | undefined;
18842
18842
  annotations?: {
18843
18843
  code: boolean;
18844
18844
  bold: boolean;
@@ -18881,13 +18881,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18881
18881
  properties?: Record<string, unknown> | undefined;
18882
18882
  description?: {
18883
18883
  type: "text" | "mention" | "equation";
18884
+ plain_text?: string | undefined;
18884
18885
  text?: {
18885
18886
  content: string;
18886
18887
  link?: {
18887
18888
  url: string;
18888
18889
  } | null | undefined;
18889
18890
  } | undefined;
18890
- plain_text?: string | undefined;
18891
18891
  annotations?: {
18892
18892
  code?: boolean | undefined;
18893
18893
  bold?: boolean | undefined;
@@ -18900,13 +18900,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
18900
18900
  }[] | undefined;
18901
18901
  title?: {
18902
18902
  type: "text" | "mention" | "equation";
18903
+ plain_text?: string | undefined;
18903
18904
  text?: {
18904
18905
  content: string;
18905
18906
  link?: {
18906
18907
  url: string;
18907
18908
  } | null | undefined;
18908
18909
  } | undefined;
18909
- plain_text?: string | undefined;
18910
18910
  annotations?: {
18911
18911
  code?: boolean | undefined;
18912
18912
  bold?: boolean | undefined;
@@ -19033,13 +19033,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19033
19033
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19034
19034
  }, "strip", z.ZodTypeAny, {
19035
19035
  type: "text" | "mention" | "equation";
19036
+ plain_text?: string | undefined;
19036
19037
  text?: {
19037
19038
  content: string;
19038
19039
  link?: {
19039
19040
  url: string;
19040
19041
  } | null | undefined;
19041
19042
  } | undefined;
19042
- plain_text?: string | undefined;
19043
19043
  annotations?: {
19044
19044
  code: boolean;
19045
19045
  bold: boolean;
@@ -19051,13 +19051,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19051
19051
  href?: string | null | undefined;
19052
19052
  }, {
19053
19053
  type: "text" | "mention" | "equation";
19054
+ plain_text?: string | undefined;
19054
19055
  text?: {
19055
19056
  content: string;
19056
19057
  link?: {
19057
19058
  url: string;
19058
19059
  } | null | undefined;
19059
19060
  } | undefined;
19060
- plain_text?: string | undefined;
19061
19061
  annotations?: {
19062
19062
  code?: boolean | undefined;
19063
19063
  bold?: boolean | undefined;
@@ -19116,13 +19116,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19116
19116
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19117
19117
  }, "strip", z.ZodTypeAny, {
19118
19118
  type: "text" | "mention" | "equation";
19119
+ plain_text?: string | undefined;
19119
19120
  text?: {
19120
19121
  content: string;
19121
19122
  link?: {
19122
19123
  url: string;
19123
19124
  } | null | undefined;
19124
19125
  } | undefined;
19125
- plain_text?: string | undefined;
19126
19126
  annotations?: {
19127
19127
  code: boolean;
19128
19128
  bold: boolean;
@@ -19134,13 +19134,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19134
19134
  href?: string | null | undefined;
19135
19135
  }, {
19136
19136
  type: "text" | "mention" | "equation";
19137
+ plain_text?: string | undefined;
19137
19138
  text?: {
19138
19139
  content: string;
19139
19140
  link?: {
19140
19141
  url: string;
19141
19142
  } | null | undefined;
19142
19143
  } | undefined;
19143
- plain_text?: string | undefined;
19144
19144
  annotations?: {
19145
19145
  code?: boolean | undefined;
19146
19146
  bold?: boolean | undefined;
@@ -19303,13 +19303,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19303
19303
  };
19304
19304
  description?: {
19305
19305
  type: "text" | "mention" | "equation";
19306
+ plain_text?: string | undefined;
19306
19307
  text?: {
19307
19308
  content: string;
19308
19309
  link?: {
19309
19310
  url: string;
19310
19311
  } | null | undefined;
19311
19312
  } | undefined;
19312
- plain_text?: string | undefined;
19313
19313
  annotations?: {
19314
19314
  code: boolean;
19315
19315
  bold: boolean;
@@ -19322,13 +19322,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19322
19322
  }[] | undefined;
19323
19323
  title?: {
19324
19324
  type: "text" | "mention" | "equation";
19325
+ plain_text?: string | undefined;
19325
19326
  text?: {
19326
19327
  content: string;
19327
19328
  link?: {
19328
19329
  url: string;
19329
19330
  } | null | undefined;
19330
19331
  } | undefined;
19331
- plain_text?: string | undefined;
19332
19332
  annotations?: {
19333
19333
  code: boolean;
19334
19334
  bold: boolean;
@@ -19389,13 +19389,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19389
19389
  };
19390
19390
  description?: {
19391
19391
  type: "text" | "mention" | "equation";
19392
+ plain_text?: string | undefined;
19392
19393
  text?: {
19393
19394
  content: string;
19394
19395
  link?: {
19395
19396
  url: string;
19396
19397
  } | null | undefined;
19397
19398
  } | undefined;
19398
- plain_text?: string | undefined;
19399
19399
  annotations?: {
19400
19400
  code?: boolean | undefined;
19401
19401
  bold?: boolean | undefined;
@@ -19408,13 +19408,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19408
19408
  }[] | undefined;
19409
19409
  title?: {
19410
19410
  type: "text" | "mention" | "equation";
19411
+ plain_text?: string | undefined;
19411
19412
  text?: {
19412
19413
  content: string;
19413
19414
  link?: {
19414
19415
  url: string;
19415
19416
  } | null | undefined;
19416
19417
  } | undefined;
19417
- plain_text?: string | undefined;
19418
19418
  annotations?: {
19419
19419
  code?: boolean | undefined;
19420
19420
  bold?: boolean | undefined;
@@ -19514,13 +19514,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19514
19514
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19515
19515
  }, "strip", z.ZodTypeAny, {
19516
19516
  type: "text" | "mention" | "equation";
19517
+ plain_text?: string | undefined;
19517
19518
  text?: {
19518
19519
  content: string;
19519
19520
  link?: {
19520
19521
  url: string;
19521
19522
  } | null | undefined;
19522
19523
  } | undefined;
19523
- plain_text?: string | undefined;
19524
19524
  annotations?: {
19525
19525
  code: boolean;
19526
19526
  bold: boolean;
@@ -19532,13 +19532,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19532
19532
  href?: string | null | undefined;
19533
19533
  }, {
19534
19534
  type: "text" | "mention" | "equation";
19535
+ plain_text?: string | undefined;
19535
19536
  text?: {
19536
19537
  content: string;
19537
19538
  link?: {
19538
19539
  url: string;
19539
19540
  } | null | undefined;
19540
19541
  } | undefined;
19541
- plain_text?: string | undefined;
19542
19542
  annotations?: {
19543
19543
  code?: boolean | undefined;
19544
19544
  bold?: boolean | undefined;
@@ -19597,13 +19597,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19597
19597
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19598
19598
  }, "strip", z.ZodTypeAny, {
19599
19599
  type: "text" | "mention" | "equation";
19600
+ plain_text?: string | undefined;
19600
19601
  text?: {
19601
19602
  content: string;
19602
19603
  link?: {
19603
19604
  url: string;
19604
19605
  } | null | undefined;
19605
19606
  } | undefined;
19606
- plain_text?: string | undefined;
19607
19607
  annotations?: {
19608
19608
  code: boolean;
19609
19609
  bold: boolean;
@@ -19615,13 +19615,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19615
19615
  href?: string | null | undefined;
19616
19616
  }, {
19617
19617
  type: "text" | "mention" | "equation";
19618
+ plain_text?: string | undefined;
19618
19619
  text?: {
19619
19620
  content: string;
19620
19621
  link?: {
19621
19622
  url: string;
19622
19623
  } | null | undefined;
19623
19624
  } | undefined;
19624
- plain_text?: string | undefined;
19625
19625
  annotations?: {
19626
19626
  code?: boolean | undefined;
19627
19627
  bold?: boolean | undefined;
@@ -19825,13 +19825,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19825
19825
  database_id: string;
19826
19826
  description?: {
19827
19827
  type: "text" | "mention" | "equation";
19828
+ plain_text?: string | undefined;
19828
19829
  text?: {
19829
19830
  content: string;
19830
19831
  link?: {
19831
19832
  url: string;
19832
19833
  } | null | undefined;
19833
19834
  } | undefined;
19834
- plain_text?: string | undefined;
19835
19835
  annotations?: {
19836
19836
  code: boolean;
19837
19837
  bold: boolean;
@@ -19844,13 +19844,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19844
19844
  }[] | undefined;
19845
19845
  title?: {
19846
19846
  type: "text" | "mention" | "equation";
19847
+ plain_text?: string | undefined;
19847
19848
  text?: {
19848
19849
  content: string;
19849
19850
  link?: {
19850
19851
  url: string;
19851
19852
  } | null | undefined;
19852
19853
  } | undefined;
19853
- plain_text?: string | undefined;
19854
19854
  annotations?: {
19855
19855
  code: boolean;
19856
19856
  bold: boolean;
@@ -19924,13 +19924,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19924
19924
  database_id: string;
19925
19925
  description?: {
19926
19926
  type: "text" | "mention" | "equation";
19927
+ plain_text?: string | undefined;
19927
19928
  text?: {
19928
19929
  content: string;
19929
19930
  link?: {
19930
19931
  url: string;
19931
19932
  } | null | undefined;
19932
19933
  } | undefined;
19933
- plain_text?: string | undefined;
19934
19934
  annotations?: {
19935
19935
  code?: boolean | undefined;
19936
19936
  bold?: boolean | undefined;
@@ -19943,13 +19943,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
19943
19943
  }[] | undefined;
19944
19944
  title?: {
19945
19945
  type: "text" | "mention" | "equation";
19946
+ plain_text?: string | undefined;
19946
19947
  text?: {
19947
19948
  content: string;
19948
19949
  link?: {
19949
19950
  url: string;
19950
19951
  } | null | undefined;
19951
19952
  } | undefined;
19952
- plain_text?: string | undefined;
19953
19953
  annotations?: {
19954
19954
  code?: boolean | undefined;
19955
19955
  bold?: boolean | undefined;
@@ -20025,14 +20025,14 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20025
20025
  after: z.ZodOptional<z.ZodString>;
20026
20026
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
20027
20027
  }, "strip", z.ZodTypeAny, {
20028
- operation: "append_block_children";
20029
20028
  block_id: string;
20029
+ operation: "append_block_children";
20030
20030
  children: unknown[];
20031
20031
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20032
20032
  after?: string | undefined;
20033
20033
  }, {
20034
- operation: "append_block_children";
20035
20034
  block_id: string;
20035
+ operation: "append_block_children";
20036
20036
  children: unknown[];
20037
20037
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20038
20038
  after?: string | undefined;
@@ -20043,14 +20043,14 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20043
20043
  page_size: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
20044
20044
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
20045
20045
  }, "strip", z.ZodTypeAny, {
20046
- operation: "retrieve_block_children";
20047
20046
  block_id: string;
20047
+ operation: "retrieve_block_children";
20048
20048
  page_size: number;
20049
20049
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20050
20050
  start_cursor?: string | undefined;
20051
20051
  }, {
20052
- operation: "retrieve_block_children";
20053
20052
  block_id: string;
20053
+ operation: "retrieve_block_children";
20054
20054
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20055
20055
  page_size?: number | undefined;
20056
20056
  start_cursor?: string | undefined;
@@ -20059,12 +20059,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20059
20059
  block_id: z.ZodString;
20060
20060
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
20061
20061
  }, "strip", z.ZodTypeAny, {
20062
- operation: "retrieve_block";
20063
20062
  block_id: string;
20063
+ operation: "retrieve_block";
20064
20064
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20065
20065
  }, {
20066
- operation: "retrieve_block";
20067
20066
  block_id: string;
20067
+ operation: "retrieve_block";
20068
20068
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20069
20069
  }>, z.ZodObject<{
20070
20070
  operation: z.ZodLiteral<"update_block">;
@@ -20072,13 +20072,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20072
20072
  archived: z.ZodOptional<z.ZodBoolean>;
20073
20073
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
20074
20074
  }, "strip", z.ZodTypeAny, {
20075
- operation: "update_block";
20076
20075
  block_id: string;
20076
+ operation: "update_block";
20077
20077
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20078
20078
  archived?: boolean | undefined;
20079
20079
  }, {
20080
- operation: "update_block";
20081
20080
  block_id: string;
20081
+ operation: "update_block";
20082
20082
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20083
20083
  archived?: boolean | undefined;
20084
20084
  }>, z.ZodObject<{
@@ -20141,13 +20141,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20141
20141
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20142
20142
  }, "strip", z.ZodTypeAny, {
20143
20143
  type: "text" | "mention" | "equation";
20144
+ plain_text?: string | undefined;
20144
20145
  text?: {
20145
20146
  content: string;
20146
20147
  link?: {
20147
20148
  url: string;
20148
20149
  } | null | undefined;
20149
20150
  } | undefined;
20150
- plain_text?: string | undefined;
20151
20151
  annotations?: {
20152
20152
  code: boolean;
20153
20153
  bold: boolean;
@@ -20159,13 +20159,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20159
20159
  href?: string | null | undefined;
20160
20160
  }, {
20161
20161
  type: "text" | "mention" | "equation";
20162
+ plain_text?: string | undefined;
20162
20163
  text?: {
20163
20164
  content: string;
20164
20165
  link?: {
20165
20166
  url: string;
20166
20167
  } | null | undefined;
20167
20168
  } | undefined;
20168
- plain_text?: string | undefined;
20169
20169
  annotations?: {
20170
20170
  code?: boolean | undefined;
20171
20171
  bold?: boolean | undefined;
@@ -20215,13 +20215,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20215
20215
  operation: "create_comment";
20216
20216
  rich_text: {
20217
20217
  type: "text" | "mention" | "equation";
20218
+ plain_text?: string | undefined;
20218
20219
  text?: {
20219
20220
  content: string;
20220
20221
  link?: {
20221
20222
  url: string;
20222
20223
  } | null | undefined;
20223
20224
  } | undefined;
20224
- plain_text?: string | undefined;
20225
20225
  annotations?: {
20226
20226
  code: boolean;
20227
20227
  bold: boolean;
@@ -20251,13 +20251,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20251
20251
  operation: "create_comment";
20252
20252
  rich_text: {
20253
20253
  type: "text" | "mention" | "equation";
20254
+ plain_text?: string | undefined;
20254
20255
  text?: {
20255
20256
  content: string;
20256
20257
  link?: {
20257
20258
  url: string;
20258
20259
  } | null | undefined;
20259
20260
  } | undefined;
20260
- plain_text?: string | undefined;
20261
20261
  annotations?: {
20262
20262
  code?: boolean | undefined;
20263
20263
  bold?: boolean | undefined;
@@ -20686,7 +20686,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20686
20686
  object: "page";
20687
20687
  properties: Record<string, unknown>;
20688
20688
  url: string;
20689
- id: string;
20690
20689
  parent: {
20691
20690
  type: "page_id";
20692
20691
  page_id: string;
@@ -20704,6 +20703,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20704
20703
  type: "workspace";
20705
20704
  workspace: true;
20706
20705
  };
20706
+ id: string;
20707
20707
  created_time: string;
20708
20708
  last_edited_time: string;
20709
20709
  created_by: {
@@ -20779,7 +20779,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20779
20779
  object: "page";
20780
20780
  properties: Record<string, unknown>;
20781
20781
  url: string;
20782
- id: string;
20783
20782
  parent: {
20784
20783
  type: "page_id";
20785
20784
  page_id: string;
@@ -20797,6 +20796,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20797
20796
  type: "workspace";
20798
20797
  workspace: true;
20799
20798
  };
20799
+ id: string;
20800
20800
  created_time: string;
20801
20801
  last_edited_time: string;
20802
20802
  created_by: {
@@ -20877,7 +20877,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20877
20877
  object: "page";
20878
20878
  properties: Record<string, unknown>;
20879
20879
  url: string;
20880
- id: string;
20881
20880
  parent: {
20882
20881
  type: "page_id";
20883
20882
  page_id: string;
@@ -20895,6 +20894,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20895
20894
  type: "workspace";
20896
20895
  workspace: true;
20897
20896
  };
20897
+ id: string;
20898
20898
  created_time: string;
20899
20899
  last_edited_time: string;
20900
20900
  created_by: {
@@ -20975,7 +20975,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20975
20975
  object: "page";
20976
20976
  properties: Record<string, unknown>;
20977
20977
  url: string;
20978
- id: string;
20979
20978
  parent: {
20980
20979
  type: "page_id";
20981
20980
  page_id: string;
@@ -20993,6 +20992,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
20993
20992
  type: "workspace";
20994
20993
  workspace: true;
20995
20994
  };
20995
+ id: string;
20996
20996
  created_time: string;
20997
20997
  last_edited_time: string;
20998
20998
  created_by: {
@@ -21390,7 +21390,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21390
21390
  object: "page";
21391
21391
  properties: Record<string, unknown>;
21392
21392
  url: string;
21393
- id: string;
21394
21393
  parent: {
21395
21394
  type: "page_id";
21396
21395
  page_id: string;
@@ -21408,6 +21407,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21408
21407
  type: "workspace";
21409
21408
  workspace: true;
21410
21409
  };
21410
+ id: string;
21411
21411
  created_time: string;
21412
21412
  last_edited_time: string;
21413
21413
  created_by: {
@@ -21483,7 +21483,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21483
21483
  object: "page";
21484
21484
  properties: Record<string, unknown>;
21485
21485
  url: string;
21486
- id: string;
21487
21486
  parent: {
21488
21487
  type: "page_id";
21489
21488
  page_id: string;
@@ -21501,6 +21500,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21501
21500
  type: "workspace";
21502
21501
  workspace: true;
21503
21502
  };
21503
+ id: string;
21504
21504
  created_time: string;
21505
21505
  last_edited_time: string;
21506
21506
  created_by: {
@@ -21581,7 +21581,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21581
21581
  object: "page";
21582
21582
  properties: Record<string, unknown>;
21583
21583
  url: string;
21584
- id: string;
21585
21584
  parent: {
21586
21585
  type: "page_id";
21587
21586
  page_id: string;
@@ -21599,6 +21598,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21599
21598
  type: "workspace";
21600
21599
  workspace: true;
21601
21600
  };
21601
+ id: string;
21602
21602
  created_time: string;
21603
21603
  last_edited_time: string;
21604
21604
  created_by: {
@@ -21679,7 +21679,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21679
21679
  object: "page";
21680
21680
  properties: Record<string, unknown>;
21681
21681
  url: string;
21682
- id: string;
21683
21682
  parent: {
21684
21683
  type: "page_id";
21685
21684
  page_id: string;
@@ -21697,6 +21696,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
21697
21696
  type: "workspace";
21698
21697
  workspace: true;
21699
21698
  };
21699
+ id: string;
21700
21700
  created_time: string;
21701
21701
  last_edited_time: string;
21702
21702
  created_by: {
@@ -22094,7 +22094,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22094
22094
  object: "page";
22095
22095
  properties: Record<string, unknown>;
22096
22096
  url: string;
22097
- id: string;
22098
22097
  parent: {
22099
22098
  type: "page_id";
22100
22099
  page_id: string;
@@ -22112,6 +22111,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22112
22111
  type: "workspace";
22113
22112
  workspace: true;
22114
22113
  };
22114
+ id: string;
22115
22115
  created_time: string;
22116
22116
  last_edited_time: string;
22117
22117
  created_by: {
@@ -22187,7 +22187,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22187
22187
  object: "page";
22188
22188
  properties: Record<string, unknown>;
22189
22189
  url: string;
22190
- id: string;
22191
22190
  parent: {
22192
22191
  type: "page_id";
22193
22192
  page_id: string;
@@ -22205,6 +22204,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22205
22204
  type: "workspace";
22206
22205
  workspace: true;
22207
22206
  };
22207
+ id: string;
22208
22208
  created_time: string;
22209
22209
  last_edited_time: string;
22210
22210
  created_by: {
@@ -22285,7 +22285,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22285
22285
  object: "page";
22286
22286
  properties: Record<string, unknown>;
22287
22287
  url: string;
22288
- id: string;
22289
22288
  parent: {
22290
22289
  type: "page_id";
22291
22290
  page_id: string;
@@ -22303,6 +22302,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22303
22302
  type: "workspace";
22304
22303
  workspace: true;
22305
22304
  };
22305
+ id: string;
22306
22306
  created_time: string;
22307
22307
  last_edited_time: string;
22308
22308
  created_by: {
@@ -22383,7 +22383,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22383
22383
  object: "page";
22384
22384
  properties: Record<string, unknown>;
22385
22385
  url: string;
22386
- id: string;
22387
22386
  parent: {
22388
22387
  type: "page_id";
22389
22388
  page_id: string;
@@ -22401,6 +22400,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22401
22400
  type: "workspace";
22402
22401
  workspace: true;
22403
22402
  };
22403
+ id: string;
22404
22404
  created_time: string;
22405
22405
  last_edited_time: string;
22406
22406
  created_by: {
@@ -22530,13 +22530,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22530
22530
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22531
22531
  }, "strip", z.ZodTypeAny, {
22532
22532
  type: "text" | "mention" | "equation";
22533
+ plain_text?: string | undefined;
22533
22534
  text?: {
22534
22535
  content: string;
22535
22536
  link?: {
22536
22537
  url: string;
22537
22538
  } | null | undefined;
22538
22539
  } | undefined;
22539
- plain_text?: string | undefined;
22540
22540
  annotations?: {
22541
22541
  code: boolean;
22542
22542
  bold: boolean;
@@ -22548,13 +22548,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22548
22548
  href?: string | null | undefined;
22549
22549
  }, {
22550
22550
  type: "text" | "mention" | "equation";
22551
+ plain_text?: string | undefined;
22551
22552
  text?: {
22552
22553
  content: string;
22553
22554
  link?: {
22554
22555
  url: string;
22555
22556
  } | null | undefined;
22556
22557
  } | undefined;
22557
- plain_text?: string | undefined;
22558
22558
  annotations?: {
22559
22559
  code?: boolean | undefined;
22560
22560
  bold?: boolean | undefined;
@@ -22613,13 +22613,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22613
22613
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22614
22614
  }, "strip", z.ZodTypeAny, {
22615
22615
  type: "text" | "mention" | "equation";
22616
+ plain_text?: string | undefined;
22616
22617
  text?: {
22617
22618
  content: string;
22618
22619
  link?: {
22619
22620
  url: string;
22620
22621
  } | null | undefined;
22621
22622
  } | undefined;
22622
- plain_text?: string | undefined;
22623
22623
  annotations?: {
22624
22624
  code: boolean;
22625
22625
  bold: boolean;
@@ -22631,13 +22631,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
22631
22631
  href?: string | null | undefined;
22632
22632
  }, {
22633
22633
  type: "text" | "mention" | "equation";
22634
+ plain_text?: string | undefined;
22634
22635
  text?: {
22635
22636
  content: string;
22636
22637
  link?: {
22637
22638
  url: string;
22638
22639
  } | null | undefined;
22639
22640
  } | undefined;
22640
- plain_text?: string | undefined;
22641
22641
  annotations?: {
22642
22642
  code?: boolean | undefined;
22643
22643
  bold?: boolean | undefined;
@@ -23012,13 +23012,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23012
23012
  object: "database";
23013
23013
  title: {
23014
23014
  type: "text" | "mention" | "equation";
23015
+ plain_text?: string | undefined;
23015
23016
  text?: {
23016
23017
  content: string;
23017
23018
  link?: {
23018
23019
  url: string;
23019
23020
  } | null | undefined;
23020
23021
  } | undefined;
23021
- plain_text?: string | undefined;
23022
23022
  annotations?: {
23023
23023
  code: boolean;
23024
23024
  bold: boolean;
@@ -23029,7 +23029,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23029
23029
  } | undefined;
23030
23030
  href?: string | null | undefined;
23031
23031
  }[];
23032
- id: string;
23033
23032
  parent: {
23034
23033
  type: "page_id";
23035
23034
  page_id: string;
@@ -23047,6 +23046,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23047
23046
  type: "workspace";
23048
23047
  workspace: true;
23049
23048
  };
23049
+ id: string;
23050
23050
  created_time: string;
23051
23051
  last_edited_time: string;
23052
23052
  data_sources: {
@@ -23087,13 +23087,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23087
23087
  }[];
23088
23088
  description?: {
23089
23089
  type: "text" | "mention" | "equation";
23090
+ plain_text?: string | undefined;
23090
23091
  text?: {
23091
23092
  content: string;
23092
23093
  link?: {
23093
23094
  url: string;
23094
23095
  } | null | undefined;
23095
23096
  } | undefined;
23096
- plain_text?: string | undefined;
23097
23097
  annotations?: {
23098
23098
  code: boolean;
23099
23099
  bold: boolean;
@@ -23145,13 +23145,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23145
23145
  object: "database";
23146
23146
  title: {
23147
23147
  type: "text" | "mention" | "equation";
23148
+ plain_text?: string | undefined;
23148
23149
  text?: {
23149
23150
  content: string;
23150
23151
  link?: {
23151
23152
  url: string;
23152
23153
  } | null | undefined;
23153
23154
  } | undefined;
23154
- plain_text?: string | undefined;
23155
23155
  annotations?: {
23156
23156
  code?: boolean | undefined;
23157
23157
  bold?: boolean | undefined;
@@ -23162,7 +23162,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23162
23162
  } | undefined;
23163
23163
  href?: string | null | undefined;
23164
23164
  }[];
23165
- id: string;
23166
23165
  parent: {
23167
23166
  type: "page_id";
23168
23167
  page_id: string;
@@ -23180,6 +23179,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23180
23179
  type: "workspace";
23181
23180
  workspace: true;
23182
23181
  };
23182
+ id: string;
23183
23183
  created_time: string;
23184
23184
  last_edited_time: string;
23185
23185
  data_sources: {
@@ -23220,13 +23220,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23220
23220
  }[];
23221
23221
  description?: {
23222
23222
  type: "text" | "mention" | "equation";
23223
+ plain_text?: string | undefined;
23223
23224
  text?: {
23224
23225
  content: string;
23225
23226
  link?: {
23226
23227
  url: string;
23227
23228
  } | null | undefined;
23228
23229
  } | undefined;
23229
- plain_text?: string | undefined;
23230
23230
  annotations?: {
23231
23231
  code?: boolean | undefined;
23232
23232
  bold?: boolean | undefined;
@@ -23283,13 +23283,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23283
23283
  object: "database";
23284
23284
  title: {
23285
23285
  type: "text" | "mention" | "equation";
23286
+ plain_text?: string | undefined;
23286
23287
  text?: {
23287
23288
  content: string;
23288
23289
  link?: {
23289
23290
  url: string;
23290
23291
  } | null | undefined;
23291
23292
  } | undefined;
23292
- plain_text?: string | undefined;
23293
23293
  annotations?: {
23294
23294
  code: boolean;
23295
23295
  bold: boolean;
@@ -23300,7 +23300,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23300
23300
  } | undefined;
23301
23301
  href?: string | null | undefined;
23302
23302
  }[];
23303
- id: string;
23304
23303
  parent: {
23305
23304
  type: "page_id";
23306
23305
  page_id: string;
@@ -23318,6 +23317,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23318
23317
  type: "workspace";
23319
23318
  workspace: true;
23320
23319
  };
23320
+ id: string;
23321
23321
  created_time: string;
23322
23322
  last_edited_time: string;
23323
23323
  data_sources: {
@@ -23358,13 +23358,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23358
23358
  }[];
23359
23359
  description?: {
23360
23360
  type: "text" | "mention" | "equation";
23361
+ plain_text?: string | undefined;
23361
23362
  text?: {
23362
23363
  content: string;
23363
23364
  link?: {
23364
23365
  url: string;
23365
23366
  } | null | undefined;
23366
23367
  } | undefined;
23367
- plain_text?: string | undefined;
23368
23368
  annotations?: {
23369
23369
  code: boolean;
23370
23370
  bold: boolean;
@@ -23421,13 +23421,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23421
23421
  object: "database";
23422
23422
  title: {
23423
23423
  type: "text" | "mention" | "equation";
23424
+ plain_text?: string | undefined;
23424
23425
  text?: {
23425
23426
  content: string;
23426
23427
  link?: {
23427
23428
  url: string;
23428
23429
  } | null | undefined;
23429
23430
  } | undefined;
23430
- plain_text?: string | undefined;
23431
23431
  annotations?: {
23432
23432
  code?: boolean | undefined;
23433
23433
  bold?: boolean | undefined;
@@ -23438,7 +23438,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23438
23438
  } | undefined;
23439
23439
  href?: string | null | undefined;
23440
23440
  }[];
23441
- id: string;
23442
23441
  parent: {
23443
23442
  type: "page_id";
23444
23443
  page_id: string;
@@ -23456,6 +23455,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23456
23455
  type: "workspace";
23457
23456
  workspace: true;
23458
23457
  };
23458
+ id: string;
23459
23459
  created_time: string;
23460
23460
  last_edited_time: string;
23461
23461
  data_sources: {
@@ -23496,13 +23496,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23496
23496
  }[];
23497
23497
  description?: {
23498
23498
  type: "text" | "mention" | "equation";
23499
+ plain_text?: string | undefined;
23499
23500
  text?: {
23500
23501
  content: string;
23501
23502
  link?: {
23502
23503
  url: string;
23503
23504
  } | null | undefined;
23504
23505
  } | undefined;
23505
- plain_text?: string | undefined;
23506
23506
  annotations?: {
23507
23507
  code?: boolean | undefined;
23508
23508
  bold?: boolean | undefined;
@@ -23987,13 +23987,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
23987
23987
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23988
23988
  }, "strip", z.ZodTypeAny, {
23989
23989
  type: "text" | "mention" | "equation";
23990
+ plain_text?: string | undefined;
23990
23991
  text?: {
23991
23992
  content: string;
23992
23993
  link?: {
23993
23994
  url: string;
23994
23995
  } | null | undefined;
23995
23996
  } | undefined;
23996
- plain_text?: string | undefined;
23997
23997
  annotations?: {
23998
23998
  code: boolean;
23999
23999
  bold: boolean;
@@ -24005,13 +24005,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24005
24005
  href?: string | null | undefined;
24006
24006
  }, {
24007
24007
  type: "text" | "mention" | "equation";
24008
+ plain_text?: string | undefined;
24008
24009
  text?: {
24009
24010
  content: string;
24010
24011
  link?: {
24011
24012
  url: string;
24012
24013
  } | null | undefined;
24013
24014
  } | undefined;
24014
- plain_text?: string | undefined;
24015
24015
  annotations?: {
24016
24016
  code?: boolean | undefined;
24017
24017
  bold?: boolean | undefined;
@@ -24070,13 +24070,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24070
24070
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24071
24071
  }, "strip", z.ZodTypeAny, {
24072
24072
  type: "text" | "mention" | "equation";
24073
+ plain_text?: string | undefined;
24073
24074
  text?: {
24074
24075
  content: string;
24075
24076
  link?: {
24076
24077
  url: string;
24077
24078
  } | null | undefined;
24078
24079
  } | undefined;
24079
- plain_text?: string | undefined;
24080
24080
  annotations?: {
24081
24081
  code: boolean;
24082
24082
  bold: boolean;
@@ -24088,13 +24088,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24088
24088
  href?: string | null | undefined;
24089
24089
  }, {
24090
24090
  type: "text" | "mention" | "equation";
24091
+ plain_text?: string | undefined;
24091
24092
  text?: {
24092
24093
  content: string;
24093
24094
  link?: {
24094
24095
  url: string;
24095
24096
  } | null | undefined;
24096
24097
  } | undefined;
24097
- plain_text?: string | undefined;
24098
24098
  annotations?: {
24099
24099
  code?: boolean | undefined;
24100
24100
  bold?: boolean | undefined;
@@ -24433,13 +24433,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24433
24433
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24434
24434
  }, "strip", z.ZodTypeAny, {
24435
24435
  type: "text" | "mention" | "equation";
24436
+ plain_text?: string | undefined;
24436
24437
  text?: {
24437
24438
  content: string;
24438
24439
  link?: {
24439
24440
  url: string;
24440
24441
  } | null | undefined;
24441
24442
  } | undefined;
24442
- plain_text?: string | undefined;
24443
24443
  annotations?: {
24444
24444
  code: boolean;
24445
24445
  bold: boolean;
@@ -24451,13 +24451,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24451
24451
  href?: string | null | undefined;
24452
24452
  }, {
24453
24453
  type: "text" | "mention" | "equation";
24454
+ plain_text?: string | undefined;
24454
24455
  text?: {
24455
24456
  content: string;
24456
24457
  link?: {
24457
24458
  url: string;
24458
24459
  } | null | undefined;
24459
24460
  } | undefined;
24460
- plain_text?: string | undefined;
24461
24461
  annotations?: {
24462
24462
  code?: boolean | undefined;
24463
24463
  bold?: boolean | undefined;
@@ -24516,13 +24516,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24516
24516
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24517
24517
  }, "strip", z.ZodTypeAny, {
24518
24518
  type: "text" | "mention" | "equation";
24519
+ plain_text?: string | undefined;
24519
24520
  text?: {
24520
24521
  content: string;
24521
24522
  link?: {
24522
24523
  url: string;
24523
24524
  } | null | undefined;
24524
24525
  } | undefined;
24525
- plain_text?: string | undefined;
24526
24526
  annotations?: {
24527
24527
  code: boolean;
24528
24528
  bold: boolean;
@@ -24534,13 +24534,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24534
24534
  href?: string | null | undefined;
24535
24535
  }, {
24536
24536
  type: "text" | "mention" | "equation";
24537
+ plain_text?: string | undefined;
24537
24538
  text?: {
24538
24539
  content: string;
24539
24540
  link?: {
24540
24541
  url: string;
24541
24542
  } | null | undefined;
24542
24543
  } | undefined;
24543
- plain_text?: string | undefined;
24544
24544
  annotations?: {
24545
24545
  code?: boolean | undefined;
24546
24546
  bold?: boolean | undefined;
@@ -24879,13 +24879,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24879
24879
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24880
24880
  }, "strip", z.ZodTypeAny, {
24881
24881
  type: "text" | "mention" | "equation";
24882
+ plain_text?: string | undefined;
24882
24883
  text?: {
24883
24884
  content: string;
24884
24885
  link?: {
24885
24886
  url: string;
24886
24887
  } | null | undefined;
24887
24888
  } | undefined;
24888
- plain_text?: string | undefined;
24889
24889
  annotations?: {
24890
24890
  code: boolean;
24891
24891
  bold: boolean;
@@ -24897,13 +24897,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24897
24897
  href?: string | null | undefined;
24898
24898
  }, {
24899
24899
  type: "text" | "mention" | "equation";
24900
+ plain_text?: string | undefined;
24900
24901
  text?: {
24901
24902
  content: string;
24902
24903
  link?: {
24903
24904
  url: string;
24904
24905
  } | null | undefined;
24905
24906
  } | undefined;
24906
- plain_text?: string | undefined;
24907
24907
  annotations?: {
24908
24908
  code?: boolean | undefined;
24909
24909
  bold?: boolean | undefined;
@@ -24962,13 +24962,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24962
24962
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24963
24963
  }, "strip", z.ZodTypeAny, {
24964
24964
  type: "text" | "mention" | "equation";
24965
+ plain_text?: string | undefined;
24965
24966
  text?: {
24966
24967
  content: string;
24967
24968
  link?: {
24968
24969
  url: string;
24969
24970
  } | null | undefined;
24970
24971
  } | undefined;
24971
- plain_text?: string | undefined;
24972
24972
  annotations?: {
24973
24973
  code: boolean;
24974
24974
  bold: boolean;
@@ -24980,13 +24980,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
24980
24980
  href?: string | null | undefined;
24981
24981
  }, {
24982
24982
  type: "text" | "mention" | "equation";
24983
+ plain_text?: string | undefined;
24983
24984
  text?: {
24984
24985
  content: string;
24985
24986
  link?: {
24986
24987
  url: string;
24987
24988
  } | null | undefined;
24988
24989
  } | undefined;
24989
- plain_text?: string | undefined;
24990
24990
  annotations?: {
24991
24991
  code?: boolean | undefined;
24992
24992
  bold?: boolean | undefined;
@@ -25330,13 +25330,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25330
25330
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25331
25331
  }, "strip", z.ZodTypeAny, {
25332
25332
  type: "text" | "mention" | "equation";
25333
+ plain_text?: string | undefined;
25333
25334
  text?: {
25334
25335
  content: string;
25335
25336
  link?: {
25336
25337
  url: string;
25337
25338
  } | null | undefined;
25338
25339
  } | undefined;
25339
- plain_text?: string | undefined;
25340
25340
  annotations?: {
25341
25341
  code: boolean;
25342
25342
  bold: boolean;
@@ -25348,13 +25348,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25348
25348
  href?: string | null | undefined;
25349
25349
  }, {
25350
25350
  type: "text" | "mention" | "equation";
25351
+ plain_text?: string | undefined;
25351
25352
  text?: {
25352
25353
  content: string;
25353
25354
  link?: {
25354
25355
  url: string;
25355
25356
  } | null | undefined;
25356
25357
  } | undefined;
25357
- plain_text?: string | undefined;
25358
25358
  annotations?: {
25359
25359
  code?: boolean | undefined;
25360
25360
  bold?: boolean | undefined;
@@ -25413,13 +25413,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25413
25413
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25414
25414
  }, "strip", z.ZodTypeAny, {
25415
25415
  type: "text" | "mention" | "equation";
25416
+ plain_text?: string | undefined;
25416
25417
  text?: {
25417
25418
  content: string;
25418
25419
  link?: {
25419
25420
  url: string;
25420
25421
  } | null | undefined;
25421
25422
  } | undefined;
25422
- plain_text?: string | undefined;
25423
25423
  annotations?: {
25424
25424
  code: boolean;
25425
25425
  bold: boolean;
@@ -25431,13 +25431,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25431
25431
  href?: string | null | undefined;
25432
25432
  }, {
25433
25433
  type: "text" | "mention" | "equation";
25434
+ plain_text?: string | undefined;
25434
25435
  text?: {
25435
25436
  content: string;
25436
25437
  link?: {
25437
25438
  url: string;
25438
25439
  } | null | undefined;
25439
25440
  } | undefined;
25440
- plain_text?: string | undefined;
25441
25441
  annotations?: {
25442
25442
  code?: boolean | undefined;
25443
25443
  bold?: boolean | undefined;
@@ -25781,13 +25781,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25781
25781
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25782
25782
  }, "strip", z.ZodTypeAny, {
25783
25783
  type: "text" | "mention" | "equation";
25784
+ plain_text?: string | undefined;
25784
25785
  text?: {
25785
25786
  content: string;
25786
25787
  link?: {
25787
25788
  url: string;
25788
25789
  } | null | undefined;
25789
25790
  } | undefined;
25790
- plain_text?: string | undefined;
25791
25791
  annotations?: {
25792
25792
  code: boolean;
25793
25793
  bold: boolean;
@@ -25799,13 +25799,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25799
25799
  href?: string | null | undefined;
25800
25800
  }, {
25801
25801
  type: "text" | "mention" | "equation";
25802
+ plain_text?: string | undefined;
25802
25803
  text?: {
25803
25804
  content: string;
25804
25805
  link?: {
25805
25806
  url: string;
25806
25807
  } | null | undefined;
25807
25808
  } | undefined;
25808
- plain_text?: string | undefined;
25809
25809
  annotations?: {
25810
25810
  code?: boolean | undefined;
25811
25811
  bold?: boolean | undefined;
@@ -25864,13 +25864,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25864
25864
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25865
25865
  }, "strip", z.ZodTypeAny, {
25866
25866
  type: "text" | "mention" | "equation";
25867
+ plain_text?: string | undefined;
25867
25868
  text?: {
25868
25869
  content: string;
25869
25870
  link?: {
25870
25871
  url: string;
25871
25872
  } | null | undefined;
25872
25873
  } | undefined;
25873
- plain_text?: string | undefined;
25874
25874
  annotations?: {
25875
25875
  code: boolean;
25876
25876
  bold: boolean;
@@ -25882,13 +25882,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
25882
25882
  href?: string | null | undefined;
25883
25883
  }, {
25884
25884
  type: "text" | "mention" | "equation";
25885
+ plain_text?: string | undefined;
25885
25886
  text?: {
25886
25887
  content: string;
25887
25888
  link?: {
25888
25889
  url: string;
25889
25890
  } | null | undefined;
25890
25891
  } | undefined;
25891
- plain_text?: string | undefined;
25892
25892
  annotations?: {
25893
25893
  code?: boolean | undefined;
25894
25894
  bold?: boolean | undefined;
@@ -26232,13 +26232,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26232
26232
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26233
26233
  }, "strip", z.ZodTypeAny, {
26234
26234
  type: "text" | "mention" | "equation";
26235
+ plain_text?: string | undefined;
26235
26236
  text?: {
26236
26237
  content: string;
26237
26238
  link?: {
26238
26239
  url: string;
26239
26240
  } | null | undefined;
26240
26241
  } | undefined;
26241
- plain_text?: string | undefined;
26242
26242
  annotations?: {
26243
26243
  code: boolean;
26244
26244
  bold: boolean;
@@ -26250,13 +26250,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26250
26250
  href?: string | null | undefined;
26251
26251
  }, {
26252
26252
  type: "text" | "mention" | "equation";
26253
+ plain_text?: string | undefined;
26253
26254
  text?: {
26254
26255
  content: string;
26255
26256
  link?: {
26256
26257
  url: string;
26257
26258
  } | null | undefined;
26258
26259
  } | undefined;
26259
- plain_text?: string | undefined;
26260
26260
  annotations?: {
26261
26261
  code?: boolean | undefined;
26262
26262
  bold?: boolean | undefined;
@@ -26315,13 +26315,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26315
26315
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26316
26316
  }, "strip", z.ZodTypeAny, {
26317
26317
  type: "text" | "mention" | "equation";
26318
+ plain_text?: string | undefined;
26318
26319
  text?: {
26319
26320
  content: string;
26320
26321
  link?: {
26321
26322
  url: string;
26322
26323
  } | null | undefined;
26323
26324
  } | undefined;
26324
- plain_text?: string | undefined;
26325
26325
  annotations?: {
26326
26326
  code: boolean;
26327
26327
  bold: boolean;
@@ -26333,13 +26333,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26333
26333
  href?: string | null | undefined;
26334
26334
  }, {
26335
26335
  type: "text" | "mention" | "equation";
26336
+ plain_text?: string | undefined;
26336
26337
  text?: {
26337
26338
  content: string;
26338
26339
  link?: {
26339
26340
  url: string;
26340
26341
  } | null | undefined;
26341
26342
  } | undefined;
26342
- plain_text?: string | undefined;
26343
26343
  annotations?: {
26344
26344
  code?: boolean | undefined;
26345
26345
  bold?: boolean | undefined;
@@ -26678,13 +26678,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26678
26678
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26679
26679
  }, "strip", z.ZodTypeAny, {
26680
26680
  type: "text" | "mention" | "equation";
26681
+ plain_text?: string | undefined;
26681
26682
  text?: {
26682
26683
  content: string;
26683
26684
  link?: {
26684
26685
  url: string;
26685
26686
  } | null | undefined;
26686
26687
  } | undefined;
26687
- plain_text?: string | undefined;
26688
26688
  annotations?: {
26689
26689
  code: boolean;
26690
26690
  bold: boolean;
@@ -26696,13 +26696,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26696
26696
  href?: string | null | undefined;
26697
26697
  }, {
26698
26698
  type: "text" | "mention" | "equation";
26699
+ plain_text?: string | undefined;
26699
26700
  text?: {
26700
26701
  content: string;
26701
26702
  link?: {
26702
26703
  url: string;
26703
26704
  } | null | undefined;
26704
26705
  } | undefined;
26705
- plain_text?: string | undefined;
26706
26706
  annotations?: {
26707
26707
  code?: boolean | undefined;
26708
26708
  bold?: boolean | undefined;
@@ -26761,13 +26761,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26761
26761
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26762
26762
  }, "strip", z.ZodTypeAny, {
26763
26763
  type: "text" | "mention" | "equation";
26764
+ plain_text?: string | undefined;
26764
26765
  text?: {
26765
26766
  content: string;
26766
26767
  link?: {
26767
26768
  url: string;
26768
26769
  } | null | undefined;
26769
26770
  } | undefined;
26770
- plain_text?: string | undefined;
26771
26771
  annotations?: {
26772
26772
  code: boolean;
26773
26773
  bold: boolean;
@@ -26779,13 +26779,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
26779
26779
  href?: string | null | undefined;
26780
26780
  }, {
26781
26781
  type: "text" | "mention" | "equation";
26782
+ plain_text?: string | undefined;
26782
26783
  text?: {
26783
26784
  content: string;
26784
26785
  link?: {
26785
26786
  url: string;
26786
26787
  } | null | undefined;
26787
26788
  } | undefined;
26788
- plain_text?: string | undefined;
26789
26789
  annotations?: {
26790
26790
  code?: boolean | undefined;
26791
26791
  bold?: boolean | undefined;
@@ -27124,13 +27124,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27124
27124
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27125
27125
  }, "strip", z.ZodTypeAny, {
27126
27126
  type: "text" | "mention" | "equation";
27127
+ plain_text?: string | undefined;
27127
27128
  text?: {
27128
27129
  content: string;
27129
27130
  link?: {
27130
27131
  url: string;
27131
27132
  } | null | undefined;
27132
27133
  } | undefined;
27133
- plain_text?: string | undefined;
27134
27134
  annotations?: {
27135
27135
  code: boolean;
27136
27136
  bold: boolean;
@@ -27142,13 +27142,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27142
27142
  href?: string | null | undefined;
27143
27143
  }, {
27144
27144
  type: "text" | "mention" | "equation";
27145
+ plain_text?: string | undefined;
27145
27146
  text?: {
27146
27147
  content: string;
27147
27148
  link?: {
27148
27149
  url: string;
27149
27150
  } | null | undefined;
27150
27151
  } | undefined;
27151
- plain_text?: string | undefined;
27152
27152
  annotations?: {
27153
27153
  code?: boolean | undefined;
27154
27154
  bold?: boolean | undefined;
@@ -27207,13 +27207,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27207
27207
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27208
27208
  }, "strip", z.ZodTypeAny, {
27209
27209
  type: "text" | "mention" | "equation";
27210
+ plain_text?: string | undefined;
27210
27211
  text?: {
27211
27212
  content: string;
27212
27213
  link?: {
27213
27214
  url: string;
27214
27215
  } | null | undefined;
27215
27216
  } | undefined;
27216
- plain_text?: string | undefined;
27217
27217
  annotations?: {
27218
27218
  code: boolean;
27219
27219
  bold: boolean;
@@ -27225,13 +27225,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27225
27225
  href?: string | null | undefined;
27226
27226
  }, {
27227
27227
  type: "text" | "mention" | "equation";
27228
+ plain_text?: string | undefined;
27228
27229
  text?: {
27229
27230
  content: string;
27230
27231
  link?: {
27231
27232
  url: string;
27232
27233
  } | null | undefined;
27233
27234
  } | undefined;
27234
- plain_text?: string | undefined;
27235
27235
  annotations?: {
27236
27236
  code?: boolean | undefined;
27237
27237
  bold?: boolean | undefined;
@@ -27575,13 +27575,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27575
27575
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27576
27576
  }, "strip", z.ZodTypeAny, {
27577
27577
  type: "text" | "mention" | "equation";
27578
+ plain_text?: string | undefined;
27578
27579
  text?: {
27579
27580
  content: string;
27580
27581
  link?: {
27581
27582
  url: string;
27582
27583
  } | null | undefined;
27583
27584
  } | undefined;
27584
- plain_text?: string | undefined;
27585
27585
  annotations?: {
27586
27586
  code: boolean;
27587
27587
  bold: boolean;
@@ -27593,13 +27593,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27593
27593
  href?: string | null | undefined;
27594
27594
  }, {
27595
27595
  type: "text" | "mention" | "equation";
27596
+ plain_text?: string | undefined;
27596
27597
  text?: {
27597
27598
  content: string;
27598
27599
  link?: {
27599
27600
  url: string;
27600
27601
  } | null | undefined;
27601
27602
  } | undefined;
27602
- plain_text?: string | undefined;
27603
27603
  annotations?: {
27604
27604
  code?: boolean | undefined;
27605
27605
  bold?: boolean | undefined;
@@ -27658,13 +27658,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27658
27658
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27659
27659
  }, "strip", z.ZodTypeAny, {
27660
27660
  type: "text" | "mention" | "equation";
27661
+ plain_text?: string | undefined;
27661
27662
  text?: {
27662
27663
  content: string;
27663
27664
  link?: {
27664
27665
  url: string;
27665
27666
  } | null | undefined;
27666
27667
  } | undefined;
27667
- plain_text?: string | undefined;
27668
27668
  annotations?: {
27669
27669
  code: boolean;
27670
27670
  bold: boolean;
@@ -27676,13 +27676,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
27676
27676
  href?: string | null | undefined;
27677
27677
  }, {
27678
27678
  type: "text" | "mention" | "equation";
27679
+ plain_text?: string | undefined;
27679
27680
  text?: {
27680
27681
  content: string;
27681
27682
  link?: {
27682
27683
  url: string;
27683
27684
  } | null | undefined;
27684
27685
  } | undefined;
27685
- plain_text?: string | undefined;
27686
27686
  annotations?: {
27687
27687
  code?: boolean | undefined;
27688
27688
  bold?: boolean | undefined;
@@ -28026,13 +28026,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28026
28026
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28027
28027
  }, "strip", z.ZodTypeAny, {
28028
28028
  type: "text" | "mention" | "equation";
28029
+ plain_text?: string | undefined;
28029
28030
  text?: {
28030
28031
  content: string;
28031
28032
  link?: {
28032
28033
  url: string;
28033
28034
  } | null | undefined;
28034
28035
  } | undefined;
28035
- plain_text?: string | undefined;
28036
28036
  annotations?: {
28037
28037
  code: boolean;
28038
28038
  bold: boolean;
@@ -28044,13 +28044,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28044
28044
  href?: string | null | undefined;
28045
28045
  }, {
28046
28046
  type: "text" | "mention" | "equation";
28047
+ plain_text?: string | undefined;
28047
28048
  text?: {
28048
28049
  content: string;
28049
28050
  link?: {
28050
28051
  url: string;
28051
28052
  } | null | undefined;
28052
28053
  } | undefined;
28053
- plain_text?: string | undefined;
28054
28054
  annotations?: {
28055
28055
  code?: boolean | undefined;
28056
28056
  bold?: boolean | undefined;
@@ -28109,13 +28109,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28109
28109
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28110
28110
  }, "strip", z.ZodTypeAny, {
28111
28111
  type: "text" | "mention" | "equation";
28112
+ plain_text?: string | undefined;
28112
28113
  text?: {
28113
28114
  content: string;
28114
28115
  link?: {
28115
28116
  url: string;
28116
28117
  } | null | undefined;
28117
28118
  } | undefined;
28118
- plain_text?: string | undefined;
28119
28119
  annotations?: {
28120
28120
  code: boolean;
28121
28121
  bold: boolean;
@@ -28127,13 +28127,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28127
28127
  href?: string | null | undefined;
28128
28128
  }, {
28129
28129
  type: "text" | "mention" | "equation";
28130
+ plain_text?: string | undefined;
28130
28131
  text?: {
28131
28132
  content: string;
28132
28133
  link?: {
28133
28134
  url: string;
28134
28135
  } | null | undefined;
28135
28136
  } | undefined;
28136
- plain_text?: string | undefined;
28137
28137
  annotations?: {
28138
28138
  code?: boolean | undefined;
28139
28139
  bold?: boolean | undefined;
@@ -28204,13 +28204,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28204
28204
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28205
28205
  }, "strip", z.ZodTypeAny, {
28206
28206
  type: "text" | "mention" | "equation";
28207
+ plain_text?: string | undefined;
28207
28208
  text?: {
28208
28209
  content: string;
28209
28210
  link?: {
28210
28211
  url: string;
28211
28212
  } | null | undefined;
28212
28213
  } | undefined;
28213
- plain_text?: string | undefined;
28214
28214
  annotations?: {
28215
28215
  code: boolean;
28216
28216
  bold: boolean;
@@ -28222,13 +28222,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28222
28222
  href?: string | null | undefined;
28223
28223
  }, {
28224
28224
  type: "text" | "mention" | "equation";
28225
+ plain_text?: string | undefined;
28225
28226
  text?: {
28226
28227
  content: string;
28227
28228
  link?: {
28228
28229
  url: string;
28229
28230
  } | null | undefined;
28230
28231
  } | undefined;
28231
- plain_text?: string | undefined;
28232
28232
  annotations?: {
28233
28233
  code?: boolean | undefined;
28234
28234
  bold?: boolean | undefined;
@@ -28287,13 +28287,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28287
28287
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28288
28288
  }, "strip", z.ZodTypeAny, {
28289
28289
  type: "text" | "mention" | "equation";
28290
+ plain_text?: string | undefined;
28290
28291
  text?: {
28291
28292
  content: string;
28292
28293
  link?: {
28293
28294
  url: string;
28294
28295
  } | null | undefined;
28295
28296
  } | undefined;
28296
- plain_text?: string | undefined;
28297
28297
  annotations?: {
28298
28298
  code: boolean;
28299
28299
  bold: boolean;
@@ -28305,13 +28305,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28305
28305
  href?: string | null | undefined;
28306
28306
  }, {
28307
28307
  type: "text" | "mention" | "equation";
28308
+ plain_text?: string | undefined;
28308
28309
  text?: {
28309
28310
  content: string;
28310
28311
  link?: {
28311
28312
  url: string;
28312
28313
  } | null | undefined;
28313
28314
  } | undefined;
28314
- plain_text?: string | undefined;
28315
28315
  annotations?: {
28316
28316
  code?: boolean | undefined;
28317
28317
  bold?: boolean | undefined;
@@ -28686,13 +28686,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28686
28686
  object: "database";
28687
28687
  title: {
28688
28688
  type: "text" | "mention" | "equation";
28689
+ plain_text?: string | undefined;
28689
28690
  text?: {
28690
28691
  content: string;
28691
28692
  link?: {
28692
28693
  url: string;
28693
28694
  } | null | undefined;
28694
28695
  } | undefined;
28695
- plain_text?: string | undefined;
28696
28696
  annotations?: {
28697
28697
  code: boolean;
28698
28698
  bold: boolean;
@@ -28703,7 +28703,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28703
28703
  } | undefined;
28704
28704
  href?: string | null | undefined;
28705
28705
  }[];
28706
- id: string;
28707
28706
  parent: {
28708
28707
  type: "page_id";
28709
28708
  page_id: string;
@@ -28721,6 +28720,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28721
28720
  type: "workspace";
28722
28721
  workspace: true;
28723
28722
  };
28723
+ id: string;
28724
28724
  created_time: string;
28725
28725
  last_edited_time: string;
28726
28726
  data_sources: {
@@ -28761,13 +28761,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28761
28761
  }[];
28762
28762
  description?: {
28763
28763
  type: "text" | "mention" | "equation";
28764
+ plain_text?: string | undefined;
28764
28765
  text?: {
28765
28766
  content: string;
28766
28767
  link?: {
28767
28768
  url: string;
28768
28769
  } | null | undefined;
28769
28770
  } | undefined;
28770
- plain_text?: string | undefined;
28771
28771
  annotations?: {
28772
28772
  code: boolean;
28773
28773
  bold: boolean;
@@ -28819,13 +28819,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28819
28819
  object: "database";
28820
28820
  title: {
28821
28821
  type: "text" | "mention" | "equation";
28822
+ plain_text?: string | undefined;
28822
28823
  text?: {
28823
28824
  content: string;
28824
28825
  link?: {
28825
28826
  url: string;
28826
28827
  } | null | undefined;
28827
28828
  } | undefined;
28828
- plain_text?: string | undefined;
28829
28829
  annotations?: {
28830
28830
  code?: boolean | undefined;
28831
28831
  bold?: boolean | undefined;
@@ -28836,7 +28836,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28836
28836
  } | undefined;
28837
28837
  href?: string | null | undefined;
28838
28838
  }[];
28839
- id: string;
28840
28839
  parent: {
28841
28840
  type: "page_id";
28842
28841
  page_id: string;
@@ -28854,6 +28853,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28854
28853
  type: "workspace";
28855
28854
  workspace: true;
28856
28855
  };
28856
+ id: string;
28857
28857
  created_time: string;
28858
28858
  last_edited_time: string;
28859
28859
  data_sources: {
@@ -28894,13 +28894,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28894
28894
  }[];
28895
28895
  description?: {
28896
28896
  type: "text" | "mention" | "equation";
28897
+ plain_text?: string | undefined;
28897
28898
  text?: {
28898
28899
  content: string;
28899
28900
  link?: {
28900
28901
  url: string;
28901
28902
  } | null | undefined;
28902
28903
  } | undefined;
28903
- plain_text?: string | undefined;
28904
28904
  annotations?: {
28905
28905
  code?: boolean | undefined;
28906
28906
  bold?: boolean | undefined;
@@ -28957,13 +28957,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28957
28957
  object: "database";
28958
28958
  title: {
28959
28959
  type: "text" | "mention" | "equation";
28960
+ plain_text?: string | undefined;
28960
28961
  text?: {
28961
28962
  content: string;
28962
28963
  link?: {
28963
28964
  url: string;
28964
28965
  } | null | undefined;
28965
28966
  } | undefined;
28966
- plain_text?: string | undefined;
28967
28967
  annotations?: {
28968
28968
  code: boolean;
28969
28969
  bold: boolean;
@@ -28974,7 +28974,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28974
28974
  } | undefined;
28975
28975
  href?: string | null | undefined;
28976
28976
  }[];
28977
- id: string;
28978
28977
  parent: {
28979
28978
  type: "page_id";
28980
28979
  page_id: string;
@@ -28992,6 +28991,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
28992
28991
  type: "workspace";
28993
28992
  workspace: true;
28994
28993
  };
28994
+ id: string;
28995
28995
  created_time: string;
28996
28996
  last_edited_time: string;
28997
28997
  data_sources: {
@@ -29032,13 +29032,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29032
29032
  }[];
29033
29033
  description?: {
29034
29034
  type: "text" | "mention" | "equation";
29035
+ plain_text?: string | undefined;
29035
29036
  text?: {
29036
29037
  content: string;
29037
29038
  link?: {
29038
29039
  url: string;
29039
29040
  } | null | undefined;
29040
29041
  } | undefined;
29041
- plain_text?: string | undefined;
29042
29042
  annotations?: {
29043
29043
  code: boolean;
29044
29044
  bold: boolean;
@@ -29095,13 +29095,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29095
29095
  object: "database";
29096
29096
  title: {
29097
29097
  type: "text" | "mention" | "equation";
29098
+ plain_text?: string | undefined;
29098
29099
  text?: {
29099
29100
  content: string;
29100
29101
  link?: {
29101
29102
  url: string;
29102
29103
  } | null | undefined;
29103
29104
  } | undefined;
29104
- plain_text?: string | undefined;
29105
29105
  annotations?: {
29106
29106
  code?: boolean | undefined;
29107
29107
  bold?: boolean | undefined;
@@ -29112,7 +29112,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29112
29112
  } | undefined;
29113
29113
  href?: string | null | undefined;
29114
29114
  }[];
29115
- id: string;
29116
29115
  parent: {
29117
29116
  type: "page_id";
29118
29117
  page_id: string;
@@ -29130,6 +29129,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29130
29129
  type: "workspace";
29131
29130
  workspace: true;
29132
29131
  };
29132
+ id: string;
29133
29133
  created_time: string;
29134
29134
  last_edited_time: string;
29135
29135
  data_sources: {
@@ -29170,13 +29170,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29170
29170
  }[];
29171
29171
  description?: {
29172
29172
  type: "text" | "mention" | "equation";
29173
+ plain_text?: string | undefined;
29173
29174
  text?: {
29174
29175
  content: string;
29175
29176
  link?: {
29176
29177
  url: string;
29177
29178
  } | null | undefined;
29178
29179
  } | undefined;
29179
- plain_text?: string | undefined;
29180
29180
  annotations?: {
29181
29181
  code?: boolean | undefined;
29182
29182
  bold?: boolean | undefined;
@@ -29282,13 +29282,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29282
29282
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29283
29283
  }, "strip", z.ZodTypeAny, {
29284
29284
  type: "text" | "mention" | "equation";
29285
+ plain_text?: string | undefined;
29285
29286
  text?: {
29286
29287
  content: string;
29287
29288
  link?: {
29288
29289
  url: string;
29289
29290
  } | null | undefined;
29290
29291
  } | undefined;
29291
- plain_text?: string | undefined;
29292
29292
  annotations?: {
29293
29293
  code: boolean;
29294
29294
  bold: boolean;
@@ -29300,13 +29300,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29300
29300
  href?: string | null | undefined;
29301
29301
  }, {
29302
29302
  type: "text" | "mention" | "equation";
29303
+ plain_text?: string | undefined;
29303
29304
  text?: {
29304
29305
  content: string;
29305
29306
  link?: {
29306
29307
  url: string;
29307
29308
  } | null | undefined;
29308
29309
  } | undefined;
29309
- plain_text?: string | undefined;
29310
29310
  annotations?: {
29311
29311
  code?: boolean | undefined;
29312
29312
  bold?: boolean | undefined;
@@ -29365,13 +29365,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29365
29365
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29366
29366
  }, "strip", z.ZodTypeAny, {
29367
29367
  type: "text" | "mention" | "equation";
29368
+ plain_text?: string | undefined;
29368
29369
  text?: {
29369
29370
  content: string;
29370
29371
  link?: {
29371
29372
  url: string;
29372
29373
  } | null | undefined;
29373
29374
  } | undefined;
29374
- plain_text?: string | undefined;
29375
29375
  annotations?: {
29376
29376
  code: boolean;
29377
29377
  bold: boolean;
@@ -29383,13 +29383,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29383
29383
  href?: string | null | undefined;
29384
29384
  }, {
29385
29385
  type: "text" | "mention" | "equation";
29386
+ plain_text?: string | undefined;
29386
29387
  text?: {
29387
29388
  content: string;
29388
29389
  link?: {
29389
29390
  url: string;
29390
29391
  } | null | undefined;
29391
29392
  } | undefined;
29392
- plain_text?: string | undefined;
29393
29393
  annotations?: {
29394
29394
  code?: boolean | undefined;
29395
29395
  bold?: boolean | undefined;
@@ -29764,13 +29764,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29764
29764
  object: "database";
29765
29765
  title: {
29766
29766
  type: "text" | "mention" | "equation";
29767
+ plain_text?: string | undefined;
29767
29768
  text?: {
29768
29769
  content: string;
29769
29770
  link?: {
29770
29771
  url: string;
29771
29772
  } | null | undefined;
29772
29773
  } | undefined;
29773
- plain_text?: string | undefined;
29774
29774
  annotations?: {
29775
29775
  code: boolean;
29776
29776
  bold: boolean;
@@ -29781,7 +29781,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29781
29781
  } | undefined;
29782
29782
  href?: string | null | undefined;
29783
29783
  }[];
29784
- id: string;
29785
29784
  parent: {
29786
29785
  type: "page_id";
29787
29786
  page_id: string;
@@ -29799,6 +29798,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29799
29798
  type: "workspace";
29800
29799
  workspace: true;
29801
29800
  };
29801
+ id: string;
29802
29802
  created_time: string;
29803
29803
  last_edited_time: string;
29804
29804
  data_sources: {
@@ -29839,13 +29839,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29839
29839
  }[];
29840
29840
  description?: {
29841
29841
  type: "text" | "mention" | "equation";
29842
+ plain_text?: string | undefined;
29842
29843
  text?: {
29843
29844
  content: string;
29844
29845
  link?: {
29845
29846
  url: string;
29846
29847
  } | null | undefined;
29847
29848
  } | undefined;
29848
- plain_text?: string | undefined;
29849
29849
  annotations?: {
29850
29850
  code: boolean;
29851
29851
  bold: boolean;
@@ -29897,13 +29897,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29897
29897
  object: "database";
29898
29898
  title: {
29899
29899
  type: "text" | "mention" | "equation";
29900
+ plain_text?: string | undefined;
29900
29901
  text?: {
29901
29902
  content: string;
29902
29903
  link?: {
29903
29904
  url: string;
29904
29905
  } | null | undefined;
29905
29906
  } | undefined;
29906
- plain_text?: string | undefined;
29907
29907
  annotations?: {
29908
29908
  code?: boolean | undefined;
29909
29909
  bold?: boolean | undefined;
@@ -29914,7 +29914,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29914
29914
  } | undefined;
29915
29915
  href?: string | null | undefined;
29916
29916
  }[];
29917
- id: string;
29918
29917
  parent: {
29919
29918
  type: "page_id";
29920
29919
  page_id: string;
@@ -29932,6 +29931,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29932
29931
  type: "workspace";
29933
29932
  workspace: true;
29934
29933
  };
29934
+ id: string;
29935
29935
  created_time: string;
29936
29936
  last_edited_time: string;
29937
29937
  data_sources: {
@@ -29972,13 +29972,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
29972
29972
  }[];
29973
29973
  description?: {
29974
29974
  type: "text" | "mention" | "equation";
29975
+ plain_text?: string | undefined;
29975
29976
  text?: {
29976
29977
  content: string;
29977
29978
  link?: {
29978
29979
  url: string;
29979
29980
  } | null | undefined;
29980
29981
  } | undefined;
29981
- plain_text?: string | undefined;
29982
29982
  annotations?: {
29983
29983
  code?: boolean | undefined;
29984
29984
  bold?: boolean | undefined;
@@ -30035,13 +30035,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30035
30035
  object: "database";
30036
30036
  title: {
30037
30037
  type: "text" | "mention" | "equation";
30038
+ plain_text?: string | undefined;
30038
30039
  text?: {
30039
30040
  content: string;
30040
30041
  link?: {
30041
30042
  url: string;
30042
30043
  } | null | undefined;
30043
30044
  } | undefined;
30044
- plain_text?: string | undefined;
30045
30045
  annotations?: {
30046
30046
  code: boolean;
30047
30047
  bold: boolean;
@@ -30052,7 +30052,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30052
30052
  } | undefined;
30053
30053
  href?: string | null | undefined;
30054
30054
  }[];
30055
- id: string;
30056
30055
  parent: {
30057
30056
  type: "page_id";
30058
30057
  page_id: string;
@@ -30070,6 +30069,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30070
30069
  type: "workspace";
30071
30070
  workspace: true;
30072
30071
  };
30072
+ id: string;
30073
30073
  created_time: string;
30074
30074
  last_edited_time: string;
30075
30075
  data_sources: {
@@ -30110,13 +30110,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30110
30110
  }[];
30111
30111
  description?: {
30112
30112
  type: "text" | "mention" | "equation";
30113
+ plain_text?: string | undefined;
30113
30114
  text?: {
30114
30115
  content: string;
30115
30116
  link?: {
30116
30117
  url: string;
30117
30118
  } | null | undefined;
30118
30119
  } | undefined;
30119
- plain_text?: string | undefined;
30120
30120
  annotations?: {
30121
30121
  code: boolean;
30122
30122
  bold: boolean;
@@ -30173,13 +30173,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30173
30173
  object: "database";
30174
30174
  title: {
30175
30175
  type: "text" | "mention" | "equation";
30176
+ plain_text?: string | undefined;
30176
30177
  text?: {
30177
30178
  content: string;
30178
30179
  link?: {
30179
30180
  url: string;
30180
30181
  } | null | undefined;
30181
30182
  } | undefined;
30182
- plain_text?: string | undefined;
30183
30183
  annotations?: {
30184
30184
  code?: boolean | undefined;
30185
30185
  bold?: boolean | undefined;
@@ -30190,7 +30190,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30190
30190
  } | undefined;
30191
30191
  href?: string | null | undefined;
30192
30192
  }[];
30193
- id: string;
30194
30193
  parent: {
30195
30194
  type: "page_id";
30196
30195
  page_id: string;
@@ -30208,6 +30207,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30208
30207
  type: "workspace";
30209
30208
  workspace: true;
30210
30209
  };
30210
+ id: string;
30211
30211
  created_time: string;
30212
30212
  last_edited_time: string;
30213
30213
  data_sources: {
@@ -30248,13 +30248,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
30248
30248
  }[];
30249
30249
  description?: {
30250
30250
  type: "text" | "mention" | "equation";
30251
+ plain_text?: string | undefined;
30251
30252
  text?: {
30252
30253
  content: string;
30253
30254
  link?: {
30254
30255
  url: string;
30255
30256
  } | null | undefined;
30256
30257
  } | undefined;
30257
- plain_text?: string | undefined;
30258
30258
  annotations?: {
30259
30259
  code?: boolean | undefined;
30260
30260
  bold?: boolean | undefined;
@@ -34517,13 +34517,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34517
34517
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34518
34518
  }, "strip", z.ZodTypeAny, {
34519
34519
  type: "text" | "mention" | "equation";
34520
+ plain_text?: string | undefined;
34520
34521
  text?: {
34521
34522
  content: string;
34522
34523
  link?: {
34523
34524
  url: string;
34524
34525
  } | null | undefined;
34525
34526
  } | undefined;
34526
- plain_text?: string | undefined;
34527
34527
  annotations?: {
34528
34528
  code: boolean;
34529
34529
  bold: boolean;
@@ -34535,13 +34535,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34535
34535
  href?: string | null | undefined;
34536
34536
  }, {
34537
34537
  type: "text" | "mention" | "equation";
34538
+ plain_text?: string | undefined;
34538
34539
  text?: {
34539
34540
  content: string;
34540
34541
  link?: {
34541
34542
  url: string;
34542
34543
  } | null | undefined;
34543
34544
  } | undefined;
34544
- plain_text?: string | undefined;
34545
34545
  annotations?: {
34546
34546
  code?: boolean | undefined;
34547
34547
  bold?: boolean | undefined;
@@ -34554,7 +34554,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34554
34554
  }>, "many">;
34555
34555
  }, "strip", z.ZodTypeAny, {
34556
34556
  object: "comment";
34557
- id: string;
34558
34557
  parent: {
34559
34558
  type: "block_id" | "page_id";
34560
34559
  block_id?: string | undefined;
@@ -34562,6 +34561,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34562
34561
  } & {
34563
34562
  [k: string]: unknown;
34564
34563
  };
34564
+ id: string;
34565
34565
  created_time: string;
34566
34566
  last_edited_time: string;
34567
34567
  created_by: {
@@ -34584,13 +34584,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34584
34584
  discussion_id: string;
34585
34585
  rich_text: {
34586
34586
  type: "text" | "mention" | "equation";
34587
+ plain_text?: string | undefined;
34587
34588
  text?: {
34588
34589
  content: string;
34589
34590
  link?: {
34590
34591
  url: string;
34591
34592
  } | null | undefined;
34592
34593
  } | undefined;
34593
- plain_text?: string | undefined;
34594
34594
  annotations?: {
34595
34595
  code: boolean;
34596
34596
  bold: boolean;
@@ -34603,7 +34603,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34603
34603
  }[];
34604
34604
  }, {
34605
34605
  object: "comment";
34606
- id: string;
34607
34606
  parent: {
34608
34607
  type: "block_id" | "page_id";
34609
34608
  block_id?: string | undefined;
@@ -34611,6 +34610,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34611
34610
  } & {
34612
34611
  [k: string]: unknown;
34613
34612
  };
34613
+ id: string;
34614
34614
  created_time: string;
34615
34615
  last_edited_time: string;
34616
34616
  created_by: {
@@ -34633,13 +34633,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34633
34633
  discussion_id: string;
34634
34634
  rich_text: {
34635
34635
  type: "text" | "mention" | "equation";
34636
+ plain_text?: string | undefined;
34636
34637
  text?: {
34637
34638
  content: string;
34638
34639
  link?: {
34639
34640
  url: string;
34640
34641
  } | null | undefined;
34641
34642
  } | undefined;
34642
- plain_text?: string | undefined;
34643
34643
  annotations?: {
34644
34644
  code?: boolean | undefined;
34645
34645
  bold?: boolean | undefined;
@@ -34657,7 +34657,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34657
34657
  operation: "create_comment";
34658
34658
  comment?: {
34659
34659
  object: "comment";
34660
- id: string;
34661
34660
  parent: {
34662
34661
  type: "block_id" | "page_id";
34663
34662
  block_id?: string | undefined;
@@ -34665,6 +34664,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34665
34664
  } & {
34666
34665
  [k: string]: unknown;
34667
34666
  };
34667
+ id: string;
34668
34668
  created_time: string;
34669
34669
  last_edited_time: string;
34670
34670
  created_by: {
@@ -34687,13 +34687,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34687
34687
  discussion_id: string;
34688
34688
  rich_text: {
34689
34689
  type: "text" | "mention" | "equation";
34690
+ plain_text?: string | undefined;
34690
34691
  text?: {
34691
34692
  content: string;
34692
34693
  link?: {
34693
34694
  url: string;
34694
34695
  } | null | undefined;
34695
34696
  } | undefined;
34696
- plain_text?: string | undefined;
34697
34697
  annotations?: {
34698
34698
  code: boolean;
34699
34699
  bold: boolean;
@@ -34711,7 +34711,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34711
34711
  operation: "create_comment";
34712
34712
  comment?: {
34713
34713
  object: "comment";
34714
- id: string;
34715
34714
  parent: {
34716
34715
  type: "block_id" | "page_id";
34717
34716
  block_id?: string | undefined;
@@ -34719,6 +34718,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34719
34718
  } & {
34720
34719
  [k: string]: unknown;
34721
34720
  };
34721
+ id: string;
34722
34722
  created_time: string;
34723
34723
  last_edited_time: string;
34724
34724
  created_by: {
@@ -34741,13 +34741,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34741
34741
  discussion_id: string;
34742
34742
  rich_text: {
34743
34743
  type: "text" | "mention" | "equation";
34744
+ plain_text?: string | undefined;
34744
34745
  text?: {
34745
34746
  content: string;
34746
34747
  link?: {
34747
34748
  url: string;
34748
34749
  } | null | undefined;
34749
34750
  } | undefined;
34750
- plain_text?: string | undefined;
34751
34751
  annotations?: {
34752
34752
  code?: boolean | undefined;
34753
34753
  bold?: boolean | undefined;
@@ -34901,13 +34901,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34901
34901
  href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34902
34902
  }, "strip", z.ZodTypeAny, {
34903
34903
  type: "text" | "mention" | "equation";
34904
+ plain_text?: string | undefined;
34904
34905
  text?: {
34905
34906
  content: string;
34906
34907
  link?: {
34907
34908
  url: string;
34908
34909
  } | null | undefined;
34909
34910
  } | undefined;
34910
- plain_text?: string | undefined;
34911
34911
  annotations?: {
34912
34912
  code: boolean;
34913
34913
  bold: boolean;
@@ -34919,13 +34919,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34919
34919
  href?: string | null | undefined;
34920
34920
  }, {
34921
34921
  type: "text" | "mention" | "equation";
34922
+ plain_text?: string | undefined;
34922
34923
  text?: {
34923
34924
  content: string;
34924
34925
  link?: {
34925
34926
  url: string;
34926
34927
  } | null | undefined;
34927
34928
  } | undefined;
34928
- plain_text?: string | undefined;
34929
34929
  annotations?: {
34930
34930
  code?: boolean | undefined;
34931
34931
  bold?: boolean | undefined;
@@ -34938,7 +34938,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34938
34938
  }>, "many">;
34939
34939
  }, "strip", z.ZodTypeAny, {
34940
34940
  object: "comment";
34941
- id: string;
34942
34941
  parent: {
34943
34942
  type: "block_id" | "page_id";
34944
34943
  block_id?: string | undefined;
@@ -34946,6 +34945,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34946
34945
  } & {
34947
34946
  [k: string]: unknown;
34948
34947
  };
34948
+ id: string;
34949
34949
  created_time: string;
34950
34950
  last_edited_time: string;
34951
34951
  created_by: {
@@ -34968,13 +34968,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34968
34968
  discussion_id: string;
34969
34969
  rich_text: {
34970
34970
  type: "text" | "mention" | "equation";
34971
+ plain_text?: string | undefined;
34971
34972
  text?: {
34972
34973
  content: string;
34973
34974
  link?: {
34974
34975
  url: string;
34975
34976
  } | null | undefined;
34976
34977
  } | undefined;
34977
- plain_text?: string | undefined;
34978
34978
  annotations?: {
34979
34979
  code: boolean;
34980
34980
  bold: boolean;
@@ -34987,7 +34987,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34987
34987
  }[];
34988
34988
  }, {
34989
34989
  object: "comment";
34990
- id: string;
34991
34990
  parent: {
34992
34991
  type: "block_id" | "page_id";
34993
34992
  block_id?: string | undefined;
@@ -34995,6 +34994,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
34995
34994
  } & {
34996
34995
  [k: string]: unknown;
34997
34996
  };
34997
+ id: string;
34998
34998
  created_time: string;
34999
34999
  last_edited_time: string;
35000
35000
  created_by: {
@@ -35017,13 +35017,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
35017
35017
  discussion_id: string;
35018
35018
  rich_text: {
35019
35019
  type: "text" | "mention" | "equation";
35020
+ plain_text?: string | undefined;
35020
35021
  text?: {
35021
35022
  content: string;
35022
35023
  link?: {
35023
35024
  url: string;
35024
35025
  } | null | undefined;
35025
35026
  } | undefined;
35026
- plain_text?: string | undefined;
35027
35027
  annotations?: {
35028
35028
  code?: boolean | undefined;
35029
35029
  bold?: boolean | undefined;
@@ -35041,7 +35041,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
35041
35041
  operation: "retrieve_comment";
35042
35042
  comment?: {
35043
35043
  object: "comment";
35044
- id: string;
35045
35044
  parent: {
35046
35045
  type: "block_id" | "page_id";
35047
35046
  block_id?: string | undefined;
@@ -35049,6 +35048,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
35049
35048
  } & {
35050
35049
  [k: string]: unknown;
35051
35050
  };
35051
+ id: string;
35052
35052
  created_time: string;
35053
35053
  last_edited_time: string;
35054
35054
  created_by: {
@@ -35071,13 +35071,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
35071
35071
  discussion_id: string;
35072
35072
  rich_text: {
35073
35073
  type: "text" | "mention" | "equation";
35074
+ plain_text?: string | undefined;
35074
35075
  text?: {
35075
35076
  content: string;
35076
35077
  link?: {
35077
35078
  url: string;
35078
35079
  } | null | undefined;
35079
35080
  } | undefined;
35080
- plain_text?: string | undefined;
35081
35081
  annotations?: {
35082
35082
  code: boolean;
35083
35083
  bold: boolean;
@@ -35095,7 +35095,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
35095
35095
  operation: "retrieve_comment";
35096
35096
  comment?: {
35097
35097
  object: "comment";
35098
- id: string;
35099
35098
  parent: {
35100
35099
  type: "block_id" | "page_id";
35101
35100
  block_id?: string | undefined;
@@ -35103,6 +35102,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
35103
35102
  } & {
35104
35103
  [k: string]: unknown;
35105
35104
  };
35105
+ id: string;
35106
35106
  created_time: string;
35107
35107
  last_edited_time: string;
35108
35108
  created_by: {
@@ -35125,13 +35125,13 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
35125
35125
  discussion_id: string;
35126
35126
  rich_text: {
35127
35127
  type: "text" | "mention" | "equation";
35128
+ plain_text?: string | undefined;
35128
35129
  text?: {
35129
35130
  content: string;
35130
35131
  link?: {
35131
35132
  url: string;
35132
35133
  } | null | undefined;
35133
35134
  } | undefined;
35134
- plain_text?: string | undefined;
35135
35135
  annotations?: {
35136
35136
  code?: boolean | undefined;
35137
35137
  bold?: boolean | undefined;