@bubblelab/bubble-core 0.1.26 → 0.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +60 -60
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
- package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +19 -19
- package/package.json +2 -2
|
@@ -585,8 +585,8 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
585
585
|
data_source_id: string;
|
|
586
586
|
filter?: Record<string, unknown> | undefined;
|
|
587
587
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
588
|
-
sorts?: unknown[] | undefined;
|
|
589
588
|
filter_properties?: string[] | undefined;
|
|
589
|
+
sorts?: unknown[] | undefined;
|
|
590
590
|
start_cursor?: string | undefined;
|
|
591
591
|
result_type?: "page" | "data_source" | undefined;
|
|
592
592
|
}, {
|
|
@@ -594,9 +594,9 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
594
594
|
data_source_id: string;
|
|
595
595
|
filter?: Record<string, unknown> | undefined;
|
|
596
596
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
597
|
-
sorts?: unknown[] | undefined;
|
|
598
597
|
page_size?: number | undefined;
|
|
599
598
|
filter_properties?: string[] | undefined;
|
|
599
|
+
sorts?: unknown[] | undefined;
|
|
600
600
|
start_cursor?: string | undefined;
|
|
601
601
|
result_type?: "page" | "data_source" | undefined;
|
|
602
602
|
}>, z.ZodObject<{
|
|
@@ -3179,9 +3179,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3179
3179
|
public_url?: string | null | undefined;
|
|
3180
3180
|
}>>;
|
|
3181
3181
|
}, "strip", z.ZodTypeAny, {
|
|
3182
|
+
operation: "create_page";
|
|
3182
3183
|
success: boolean;
|
|
3183
3184
|
error: string;
|
|
3184
|
-
operation: "create_page";
|
|
3185
3185
|
page?: {
|
|
3186
3186
|
object: "page";
|
|
3187
3187
|
properties: Record<string, unknown>;
|
|
@@ -3277,9 +3277,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3277
3277
|
public_url?: string | null | undefined;
|
|
3278
3278
|
} | undefined;
|
|
3279
3279
|
}, {
|
|
3280
|
+
operation: "create_page";
|
|
3280
3281
|
success: boolean;
|
|
3281
3282
|
error: string;
|
|
3282
|
-
operation: "create_page";
|
|
3283
3283
|
page?: {
|
|
3284
3284
|
object: "page";
|
|
3285
3285
|
properties: Record<string, unknown>;
|
|
@@ -3883,9 +3883,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3883
3883
|
public_url?: string | null | undefined;
|
|
3884
3884
|
}>>;
|
|
3885
3885
|
}, "strip", z.ZodTypeAny, {
|
|
3886
|
+
operation: "retrieve_page";
|
|
3886
3887
|
success: boolean;
|
|
3887
3888
|
error: string;
|
|
3888
|
-
operation: "retrieve_page";
|
|
3889
3889
|
page?: {
|
|
3890
3890
|
object: "page";
|
|
3891
3891
|
properties: Record<string, unknown>;
|
|
@@ -3981,9 +3981,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3981
3981
|
public_url?: string | null | undefined;
|
|
3982
3982
|
} | undefined;
|
|
3983
3983
|
}, {
|
|
3984
|
+
operation: "retrieve_page";
|
|
3984
3985
|
success: boolean;
|
|
3985
3986
|
error: string;
|
|
3986
|
-
operation: "retrieve_page";
|
|
3987
3987
|
page?: {
|
|
3988
3988
|
object: "page";
|
|
3989
3989
|
properties: Record<string, unknown>;
|
|
@@ -4587,9 +4587,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4587
4587
|
public_url?: string | null | undefined;
|
|
4588
4588
|
}>>;
|
|
4589
4589
|
}, "strip", z.ZodTypeAny, {
|
|
4590
|
+
operation: "update_page";
|
|
4590
4591
|
success: boolean;
|
|
4591
4592
|
error: string;
|
|
4592
|
-
operation: "update_page";
|
|
4593
4593
|
page?: {
|
|
4594
4594
|
object: "page";
|
|
4595
4595
|
properties: Record<string, unknown>;
|
|
@@ -4685,9 +4685,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4685
4685
|
public_url?: string | null | undefined;
|
|
4686
4686
|
} | undefined;
|
|
4687
4687
|
}, {
|
|
4688
|
+
operation: "update_page";
|
|
4688
4689
|
success: boolean;
|
|
4689
4690
|
error: string;
|
|
4690
|
-
operation: "update_page";
|
|
4691
4691
|
page?: {
|
|
4692
4692
|
object: "page";
|
|
4693
4693
|
properties: Record<string, unknown>;
|
|
@@ -5585,9 +5585,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5585
5585
|
is_inline?: boolean | undefined;
|
|
5586
5586
|
}>>;
|
|
5587
5587
|
}, "strip", z.ZodTypeAny, {
|
|
5588
|
+
operation: "retrieve_database";
|
|
5588
5589
|
success: boolean;
|
|
5589
5590
|
error: string;
|
|
5590
|
-
operation: "retrieve_database";
|
|
5591
5591
|
database?: {
|
|
5592
5592
|
object: "database";
|
|
5593
5593
|
title: {
|
|
@@ -5723,9 +5723,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5723
5723
|
is_inline?: boolean | undefined;
|
|
5724
5724
|
} | undefined;
|
|
5725
5725
|
}, {
|
|
5726
|
+
operation: "retrieve_database";
|
|
5726
5727
|
success: boolean;
|
|
5727
5728
|
error: string;
|
|
5728
|
-
operation: "retrieve_database";
|
|
5729
5729
|
database?: {
|
|
5730
5730
|
object: "database";
|
|
5731
5731
|
title: {
|
|
@@ -5919,9 +5919,11 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5919
5919
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5920
5920
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
5921
5921
|
}, "strip", z.ZodTypeAny, {
|
|
5922
|
+
operation: "query_data_source";
|
|
5922
5923
|
success: boolean;
|
|
5923
5924
|
error: string;
|
|
5924
|
-
|
|
5925
|
+
next_cursor?: string | null | undefined;
|
|
5926
|
+
has_more?: boolean | undefined;
|
|
5925
5927
|
results?: z.objectOutputType<{
|
|
5926
5928
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
5927
5929
|
id: z.ZodString;
|
|
@@ -5940,12 +5942,12 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5940
5942
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
5941
5943
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
5942
5944
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5943
|
-
next_cursor?: string | null | undefined;
|
|
5944
|
-
has_more?: boolean | undefined;
|
|
5945
5945
|
}, {
|
|
5946
|
+
operation: "query_data_source";
|
|
5946
5947
|
success: boolean;
|
|
5947
5948
|
error: string;
|
|
5948
|
-
|
|
5949
|
+
next_cursor?: string | null | undefined;
|
|
5950
|
+
has_more?: boolean | undefined;
|
|
5949
5951
|
results?: z.objectInputType<{
|
|
5950
5952
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
5951
5953
|
id: z.ZodString;
|
|
@@ -5964,8 +5966,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5964
5966
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
5965
5967
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
5966
5968
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5967
|
-
next_cursor?: string | null | undefined;
|
|
5968
|
-
has_more?: boolean | undefined;
|
|
5969
5969
|
}>, z.ZodObject<{
|
|
5970
5970
|
operation: z.ZodLiteral<"create_data_source">;
|
|
5971
5971
|
success: z.ZodBoolean;
|
|
@@ -7310,9 +7310,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
7310
7310
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7311
7311
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7312
7312
|
}, "strip", z.ZodTypeAny, {
|
|
7313
|
+
operation: "create_data_source";
|
|
7313
7314
|
success: boolean;
|
|
7314
7315
|
error: string;
|
|
7315
|
-
operation: "create_data_source";
|
|
7316
7316
|
dataSource?: z.objectOutputType<{
|
|
7317
7317
|
object: z.ZodLiteral<"data_source">;
|
|
7318
7318
|
id: z.ZodString;
|
|
@@ -7761,9 +7761,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
7761
7761
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7762
7762
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7763
7763
|
}, {
|
|
7764
|
+
operation: "create_data_source";
|
|
7764
7765
|
success: boolean;
|
|
7765
7766
|
error: string;
|
|
7766
|
-
operation: "create_data_source";
|
|
7767
7767
|
dataSource?: z.objectInputType<{
|
|
7768
7768
|
object: z.ZodLiteral<"data_source">;
|
|
7769
7769
|
id: z.ZodString;
|
|
@@ -9555,9 +9555,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
9555
9555
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9556
9556
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
9557
9557
|
}, "strip", z.ZodTypeAny, {
|
|
9558
|
+
operation: "update_data_source";
|
|
9558
9559
|
success: boolean;
|
|
9559
9560
|
error: string;
|
|
9560
|
-
operation: "update_data_source";
|
|
9561
9561
|
dataSource?: z.objectOutputType<{
|
|
9562
9562
|
object: z.ZodLiteral<"data_source">;
|
|
9563
9563
|
id: z.ZodString;
|
|
@@ -10006,9 +10006,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
10006
10006
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10007
10007
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
10008
10008
|
}, {
|
|
10009
|
+
operation: "update_data_source";
|
|
10009
10010
|
success: boolean;
|
|
10010
10011
|
error: string;
|
|
10011
|
-
operation: "update_data_source";
|
|
10012
10012
|
dataSource?: z.objectInputType<{
|
|
10013
10013
|
object: z.ZodLiteral<"data_source">;
|
|
10014
10014
|
id: z.ZodString;
|
|
@@ -11259,9 +11259,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11259
11259
|
is_inline?: boolean | undefined;
|
|
11260
11260
|
}>>;
|
|
11261
11261
|
}, "strip", z.ZodTypeAny, {
|
|
11262
|
+
operation: "create_database";
|
|
11262
11263
|
success: boolean;
|
|
11263
11264
|
error: string;
|
|
11264
|
-
operation: "create_database";
|
|
11265
11265
|
database?: {
|
|
11266
11266
|
object: "database";
|
|
11267
11267
|
title: {
|
|
@@ -11397,9 +11397,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11397
11397
|
is_inline?: boolean | undefined;
|
|
11398
11398
|
} | undefined;
|
|
11399
11399
|
}, {
|
|
11400
|
+
operation: "create_database";
|
|
11400
11401
|
success: boolean;
|
|
11401
11402
|
error: string;
|
|
11402
|
-
operation: "create_database";
|
|
11403
11403
|
database?: {
|
|
11404
11404
|
object: "database";
|
|
11405
11405
|
title: {
|
|
@@ -12337,9 +12337,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12337
12337
|
is_inline?: boolean | undefined;
|
|
12338
12338
|
}>>;
|
|
12339
12339
|
}, "strip", z.ZodTypeAny, {
|
|
12340
|
+
operation: "update_database";
|
|
12340
12341
|
success: boolean;
|
|
12341
12342
|
error: string;
|
|
12342
|
-
operation: "update_database";
|
|
12343
12343
|
database?: {
|
|
12344
12344
|
object: "database";
|
|
12345
12345
|
title: {
|
|
@@ -12475,9 +12475,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12475
12475
|
is_inline?: boolean | undefined;
|
|
12476
12476
|
} | undefined;
|
|
12477
12477
|
}, {
|
|
12478
|
+
operation: "update_database";
|
|
12478
12479
|
success: boolean;
|
|
12479
12480
|
error: string;
|
|
12480
|
-
operation: "update_database";
|
|
12481
12481
|
database?: {
|
|
12482
12482
|
object: "database";
|
|
12483
12483
|
title: {
|
|
@@ -13220,10 +13220,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
13220
13220
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13221
13221
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
13222
13222
|
}, "strip", z.ZodTypeAny, {
|
|
13223
|
+
operation: "append_block_children";
|
|
13223
13224
|
success: boolean;
|
|
13224
13225
|
error: string;
|
|
13225
|
-
operation: "append_block_children";
|
|
13226
|
-
next_cursor?: string | null | undefined;
|
|
13227
13226
|
blocks?: z.objectOutputType<{
|
|
13228
13227
|
object: z.ZodLiteral<"block">;
|
|
13229
13228
|
id: z.ZodString;
|
|
@@ -13425,12 +13424,12 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
13425
13424
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
13426
13425
|
type: z.ZodString;
|
|
13427
13426
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
13427
|
+
next_cursor?: string | null | undefined;
|
|
13428
13428
|
has_more?: boolean | undefined;
|
|
13429
13429
|
}, {
|
|
13430
|
+
operation: "append_block_children";
|
|
13430
13431
|
success: boolean;
|
|
13431
13432
|
error: string;
|
|
13432
|
-
operation: "append_block_children";
|
|
13433
|
-
next_cursor?: string | null | undefined;
|
|
13434
13433
|
blocks?: z.objectInputType<{
|
|
13435
13434
|
object: z.ZodLiteral<"block">;
|
|
13436
13435
|
id: z.ZodString;
|
|
@@ -13632,6 +13631,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
13632
13631
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
13633
13632
|
type: z.ZodString;
|
|
13634
13633
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
13634
|
+
next_cursor?: string | null | undefined;
|
|
13635
13635
|
has_more?: boolean | undefined;
|
|
13636
13636
|
}>, z.ZodObject<{
|
|
13637
13637
|
operation: z.ZodLiteral<"retrieve_block_children">;
|
|
@@ -14241,10 +14241,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
14241
14241
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14242
14242
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
14243
14243
|
}, "strip", z.ZodTypeAny, {
|
|
14244
|
+
operation: "retrieve_block_children";
|
|
14244
14245
|
success: boolean;
|
|
14245
14246
|
error: string;
|
|
14246
|
-
operation: "retrieve_block_children";
|
|
14247
|
-
next_cursor?: string | null | undefined;
|
|
14248
14247
|
blocks?: z.objectOutputType<{
|
|
14249
14248
|
object: z.ZodLiteral<"block">;
|
|
14250
14249
|
id: z.ZodString;
|
|
@@ -14446,12 +14445,12 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
14446
14445
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
14447
14446
|
type: z.ZodString;
|
|
14448
14447
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
14448
|
+
next_cursor?: string | null | undefined;
|
|
14449
14449
|
has_more?: boolean | undefined;
|
|
14450
14450
|
}, {
|
|
14451
|
+
operation: "retrieve_block_children";
|
|
14451
14452
|
success: boolean;
|
|
14452
14453
|
error: string;
|
|
14453
|
-
operation: "retrieve_block_children";
|
|
14454
|
-
next_cursor?: string | null | undefined;
|
|
14455
14454
|
blocks?: z.objectInputType<{
|
|
14456
14455
|
object: z.ZodLiteral<"block">;
|
|
14457
14456
|
id: z.ZodString;
|
|
@@ -14653,6 +14652,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
14653
14652
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
14654
14653
|
type: z.ZodString;
|
|
14655
14654
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
14655
|
+
next_cursor?: string | null | undefined;
|
|
14656
14656
|
has_more?: boolean | undefined;
|
|
14657
14657
|
}>, z.ZodObject<{
|
|
14658
14658
|
operation: z.ZodLiteral<"retrieve_block">;
|
|
@@ -15260,9 +15260,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
15260
15260
|
type: z.ZodString;
|
|
15261
15261
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
15262
15262
|
}, "strip", z.ZodTypeAny, {
|
|
15263
|
+
operation: "retrieve_block";
|
|
15263
15264
|
success: boolean;
|
|
15264
15265
|
error: string;
|
|
15265
|
-
operation: "retrieve_block";
|
|
15266
15266
|
block?: z.objectOutputType<{
|
|
15267
15267
|
object: z.ZodLiteral<"block">;
|
|
15268
15268
|
id: z.ZodString;
|
|
@@ -15465,9 +15465,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
15465
15465
|
type: z.ZodString;
|
|
15466
15466
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
15467
15467
|
}, {
|
|
15468
|
+
operation: "retrieve_block";
|
|
15468
15469
|
success: boolean;
|
|
15469
15470
|
error: string;
|
|
15470
|
-
operation: "retrieve_block";
|
|
15471
15471
|
block?: z.objectInputType<{
|
|
15472
15472
|
object: z.ZodLiteral<"block">;
|
|
15473
15473
|
id: z.ZodString;
|
|
@@ -16275,9 +16275,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16275
16275
|
type: z.ZodString;
|
|
16276
16276
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
16277
16277
|
}, "strip", z.ZodTypeAny, {
|
|
16278
|
+
operation: "update_block";
|
|
16278
16279
|
success: boolean;
|
|
16279
16280
|
error: string;
|
|
16280
|
-
operation: "update_block";
|
|
16281
16281
|
block?: z.objectOutputType<{
|
|
16282
16282
|
object: z.ZodLiteral<"block">;
|
|
16283
16283
|
id: z.ZodString;
|
|
@@ -16480,9 +16480,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16480
16480
|
type: z.ZodString;
|
|
16481
16481
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
16482
16482
|
}, {
|
|
16483
|
+
operation: "update_block";
|
|
16483
16484
|
success: boolean;
|
|
16484
16485
|
error: string;
|
|
16485
|
-
operation: "update_block";
|
|
16486
16486
|
block?: z.objectInputType<{
|
|
16487
16487
|
object: z.ZodLiteral<"block">;
|
|
16488
16488
|
id: z.ZodString;
|
|
@@ -16961,9 +16961,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16961
16961
|
}[];
|
|
16962
16962
|
}>>;
|
|
16963
16963
|
}, "strip", z.ZodTypeAny, {
|
|
16964
|
+
operation: "create_comment";
|
|
16964
16965
|
success: boolean;
|
|
16965
16966
|
error: string;
|
|
16966
|
-
operation: "create_comment";
|
|
16967
16967
|
comment?: {
|
|
16968
16968
|
object: "comment";
|
|
16969
16969
|
parent: {
|
|
@@ -17015,9 +17015,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17015
17015
|
}[];
|
|
17016
17016
|
} | undefined;
|
|
17017
17017
|
}, {
|
|
17018
|
+
operation: "create_comment";
|
|
17018
17019
|
success: boolean;
|
|
17019
17020
|
error: string;
|
|
17020
|
-
operation: "create_comment";
|
|
17021
17021
|
comment?: {
|
|
17022
17022
|
object: "comment";
|
|
17023
17023
|
parent: {
|
|
@@ -17345,9 +17345,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17345
17345
|
}[];
|
|
17346
17346
|
}>>;
|
|
17347
17347
|
}, "strip", z.ZodTypeAny, {
|
|
17348
|
+
operation: "retrieve_comment";
|
|
17348
17349
|
success: boolean;
|
|
17349
17350
|
error: string;
|
|
17350
|
-
operation: "retrieve_comment";
|
|
17351
17351
|
comment?: {
|
|
17352
17352
|
object: "comment";
|
|
17353
17353
|
parent: {
|
|
@@ -17399,9 +17399,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17399
17399
|
}[];
|
|
17400
17400
|
} | undefined;
|
|
17401
17401
|
}, {
|
|
17402
|
+
operation: "retrieve_comment";
|
|
17402
17403
|
success: boolean;
|
|
17403
17404
|
error: string;
|
|
17404
|
-
operation: "retrieve_comment";
|
|
17405
17405
|
comment?: {
|
|
17406
17406
|
object: "comment";
|
|
17407
17407
|
parent: {
|
|
@@ -17530,10 +17530,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17530
17530
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17531
17531
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
17532
17532
|
}, "strip", z.ZodTypeAny, {
|
|
17533
|
+
operation: "list_users";
|
|
17533
17534
|
success: boolean;
|
|
17534
17535
|
error: string;
|
|
17535
|
-
operation: "list_users";
|
|
17536
|
-
next_cursor?: string | null | undefined;
|
|
17537
17536
|
users?: {
|
|
17538
17537
|
object: "user";
|
|
17539
17538
|
id: string;
|
|
@@ -17551,12 +17550,12 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17551
17550
|
workspace_name?: string | undefined;
|
|
17552
17551
|
} | undefined;
|
|
17553
17552
|
}[] | undefined;
|
|
17553
|
+
next_cursor?: string | null | undefined;
|
|
17554
17554
|
has_more?: boolean | undefined;
|
|
17555
17555
|
}, {
|
|
17556
|
+
operation: "list_users";
|
|
17556
17557
|
success: boolean;
|
|
17557
17558
|
error: string;
|
|
17558
|
-
operation: "list_users";
|
|
17559
|
-
next_cursor?: string | null | undefined;
|
|
17560
17559
|
users?: {
|
|
17561
17560
|
object: "user";
|
|
17562
17561
|
id: string;
|
|
@@ -17574,6 +17573,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17574
17573
|
workspace_name?: string | undefined;
|
|
17575
17574
|
} | undefined;
|
|
17576
17575
|
}[] | undefined;
|
|
17576
|
+
next_cursor?: string | null | undefined;
|
|
17577
17577
|
has_more?: boolean | undefined;
|
|
17578
17578
|
}>, z.ZodObject<{
|
|
17579
17579
|
operation: z.ZodLiteral<"search">;
|
|
@@ -17634,9 +17634,11 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17634
17634
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17635
17635
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
17636
17636
|
}, "strip", z.ZodTypeAny, {
|
|
17637
|
+
operation: "search";
|
|
17637
17638
|
success: boolean;
|
|
17638
17639
|
error: string;
|
|
17639
|
-
|
|
17640
|
+
next_cursor?: string | null | undefined;
|
|
17641
|
+
has_more?: boolean | undefined;
|
|
17640
17642
|
results?: z.objectOutputType<{
|
|
17641
17643
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
17642
17644
|
id: z.ZodString;
|
|
@@ -17655,12 +17657,12 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17655
17657
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
17656
17658
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
17657
17659
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
17658
|
-
next_cursor?: string | null | undefined;
|
|
17659
|
-
has_more?: boolean | undefined;
|
|
17660
17660
|
}, {
|
|
17661
|
+
operation: "search";
|
|
17661
17662
|
success: boolean;
|
|
17662
17663
|
error: string;
|
|
17663
|
-
|
|
17664
|
+
next_cursor?: string | null | undefined;
|
|
17665
|
+
has_more?: boolean | undefined;
|
|
17664
17666
|
results?: z.objectInputType<{
|
|
17665
17667
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
17666
17668
|
id: z.ZodString;
|
|
@@ -17679,8 +17681,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17679
17681
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
17680
17682
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
17681
17683
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
17682
|
-
next_cursor?: string | null | undefined;
|
|
17683
|
-
has_more?: boolean | undefined;
|
|
17684
17684
|
}>]>;
|
|
17685
17685
|
type NotionParams = z.input<typeof NotionParamsSchema>;
|
|
17686
17686
|
type NotionResult = z.output<typeof NotionResultSchema>;
|
|
@@ -18276,8 +18276,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18276
18276
|
data_source_id: string;
|
|
18277
18277
|
filter?: Record<string, unknown> | undefined;
|
|
18278
18278
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18279
|
-
sorts?: unknown[] | undefined;
|
|
18280
18279
|
filter_properties?: string[] | undefined;
|
|
18280
|
+
sorts?: unknown[] | undefined;
|
|
18281
18281
|
start_cursor?: string | undefined;
|
|
18282
18282
|
result_type?: "page" | "data_source" | undefined;
|
|
18283
18283
|
}, {
|
|
@@ -18285,9 +18285,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18285
18285
|
data_source_id: string;
|
|
18286
18286
|
filter?: Record<string, unknown> | undefined;
|
|
18287
18287
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18288
|
-
sorts?: unknown[] | undefined;
|
|
18289
18288
|
page_size?: number | undefined;
|
|
18290
18289
|
filter_properties?: string[] | undefined;
|
|
18290
|
+
sorts?: unknown[] | undefined;
|
|
18291
18291
|
start_cursor?: string | undefined;
|
|
18292
18292
|
result_type?: "page" | "data_source" | undefined;
|
|
18293
18293
|
}>, z.ZodObject<{
|
|
@@ -20870,9 +20870,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20870
20870
|
public_url?: string | null | undefined;
|
|
20871
20871
|
}>>;
|
|
20872
20872
|
}, "strip", z.ZodTypeAny, {
|
|
20873
|
+
operation: "create_page";
|
|
20873
20874
|
success: boolean;
|
|
20874
20875
|
error: string;
|
|
20875
|
-
operation: "create_page";
|
|
20876
20876
|
page?: {
|
|
20877
20877
|
object: "page";
|
|
20878
20878
|
properties: Record<string, unknown>;
|
|
@@ -20968,9 +20968,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20968
20968
|
public_url?: string | null | undefined;
|
|
20969
20969
|
} | undefined;
|
|
20970
20970
|
}, {
|
|
20971
|
+
operation: "create_page";
|
|
20971
20972
|
success: boolean;
|
|
20972
20973
|
error: string;
|
|
20973
|
-
operation: "create_page";
|
|
20974
20974
|
page?: {
|
|
20975
20975
|
object: "page";
|
|
20976
20976
|
properties: Record<string, unknown>;
|
|
@@ -21574,9 +21574,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21574
21574
|
public_url?: string | null | undefined;
|
|
21575
21575
|
}>>;
|
|
21576
21576
|
}, "strip", z.ZodTypeAny, {
|
|
21577
|
+
operation: "retrieve_page";
|
|
21577
21578
|
success: boolean;
|
|
21578
21579
|
error: string;
|
|
21579
|
-
operation: "retrieve_page";
|
|
21580
21580
|
page?: {
|
|
21581
21581
|
object: "page";
|
|
21582
21582
|
properties: Record<string, unknown>;
|
|
@@ -21672,9 +21672,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21672
21672
|
public_url?: string | null | undefined;
|
|
21673
21673
|
} | undefined;
|
|
21674
21674
|
}, {
|
|
21675
|
+
operation: "retrieve_page";
|
|
21675
21676
|
success: boolean;
|
|
21676
21677
|
error: string;
|
|
21677
|
-
operation: "retrieve_page";
|
|
21678
21678
|
page?: {
|
|
21679
21679
|
object: "page";
|
|
21680
21680
|
properties: Record<string, unknown>;
|
|
@@ -22278,9 +22278,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
22278
22278
|
public_url?: string | null | undefined;
|
|
22279
22279
|
}>>;
|
|
22280
22280
|
}, "strip", z.ZodTypeAny, {
|
|
22281
|
+
operation: "update_page";
|
|
22281
22282
|
success: boolean;
|
|
22282
22283
|
error: string;
|
|
22283
|
-
operation: "update_page";
|
|
22284
22284
|
page?: {
|
|
22285
22285
|
object: "page";
|
|
22286
22286
|
properties: Record<string, unknown>;
|
|
@@ -22376,9 +22376,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
22376
22376
|
public_url?: string | null | undefined;
|
|
22377
22377
|
} | undefined;
|
|
22378
22378
|
}, {
|
|
22379
|
+
operation: "update_page";
|
|
22379
22380
|
success: boolean;
|
|
22380
22381
|
error: string;
|
|
22381
|
-
operation: "update_page";
|
|
22382
22382
|
page?: {
|
|
22383
22383
|
object: "page";
|
|
22384
22384
|
properties: Record<string, unknown>;
|
|
@@ -23276,9 +23276,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23276
23276
|
is_inline?: boolean | undefined;
|
|
23277
23277
|
}>>;
|
|
23278
23278
|
}, "strip", z.ZodTypeAny, {
|
|
23279
|
+
operation: "retrieve_database";
|
|
23279
23280
|
success: boolean;
|
|
23280
23281
|
error: string;
|
|
23281
|
-
operation: "retrieve_database";
|
|
23282
23282
|
database?: {
|
|
23283
23283
|
object: "database";
|
|
23284
23284
|
title: {
|
|
@@ -23414,9 +23414,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23414
23414
|
is_inline?: boolean | undefined;
|
|
23415
23415
|
} | undefined;
|
|
23416
23416
|
}, {
|
|
23417
|
+
operation: "retrieve_database";
|
|
23417
23418
|
success: boolean;
|
|
23418
23419
|
error: string;
|
|
23419
|
-
operation: "retrieve_database";
|
|
23420
23420
|
database?: {
|
|
23421
23421
|
object: "database";
|
|
23422
23422
|
title: {
|
|
@@ -23610,9 +23610,11 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23610
23610
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23611
23611
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
23612
23612
|
}, "strip", z.ZodTypeAny, {
|
|
23613
|
+
operation: "query_data_source";
|
|
23613
23614
|
success: boolean;
|
|
23614
23615
|
error: string;
|
|
23615
|
-
|
|
23616
|
+
next_cursor?: string | null | undefined;
|
|
23617
|
+
has_more?: boolean | undefined;
|
|
23616
23618
|
results?: z.objectOutputType<{
|
|
23617
23619
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
23618
23620
|
id: z.ZodString;
|
|
@@ -23631,12 +23633,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23631
23633
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
23632
23634
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
23633
23635
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
23634
|
-
next_cursor?: string | null | undefined;
|
|
23635
|
-
has_more?: boolean | undefined;
|
|
23636
23636
|
}, {
|
|
23637
|
+
operation: "query_data_source";
|
|
23637
23638
|
success: boolean;
|
|
23638
23639
|
error: string;
|
|
23639
|
-
|
|
23640
|
+
next_cursor?: string | null | undefined;
|
|
23641
|
+
has_more?: boolean | undefined;
|
|
23640
23642
|
results?: z.objectInputType<{
|
|
23641
23643
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
23642
23644
|
id: z.ZodString;
|
|
@@ -23655,8 +23657,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23655
23657
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
23656
23658
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
23657
23659
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
23658
|
-
next_cursor?: string | null | undefined;
|
|
23659
|
-
has_more?: boolean | undefined;
|
|
23660
23660
|
}>, z.ZodObject<{
|
|
23661
23661
|
operation: z.ZodLiteral<"create_data_source">;
|
|
23662
23662
|
success: z.ZodBoolean;
|
|
@@ -25001,9 +25001,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
25001
25001
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25002
25002
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
25003
25003
|
}, "strip", z.ZodTypeAny, {
|
|
25004
|
+
operation: "create_data_source";
|
|
25004
25005
|
success: boolean;
|
|
25005
25006
|
error: string;
|
|
25006
|
-
operation: "create_data_source";
|
|
25007
25007
|
dataSource?: z.objectOutputType<{
|
|
25008
25008
|
object: z.ZodLiteral<"data_source">;
|
|
25009
25009
|
id: z.ZodString;
|
|
@@ -25452,9 +25452,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
25452
25452
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25453
25453
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
25454
25454
|
}, {
|
|
25455
|
+
operation: "create_data_source";
|
|
25455
25456
|
success: boolean;
|
|
25456
25457
|
error: string;
|
|
25457
|
-
operation: "create_data_source";
|
|
25458
25458
|
dataSource?: z.objectInputType<{
|
|
25459
25459
|
object: z.ZodLiteral<"data_source">;
|
|
25460
25460
|
id: z.ZodString;
|
|
@@ -27246,9 +27246,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
27246
27246
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27247
27247
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
27248
27248
|
}, "strip", z.ZodTypeAny, {
|
|
27249
|
+
operation: "update_data_source";
|
|
27249
27250
|
success: boolean;
|
|
27250
27251
|
error: string;
|
|
27251
|
-
operation: "update_data_source";
|
|
27252
27252
|
dataSource?: z.objectOutputType<{
|
|
27253
27253
|
object: z.ZodLiteral<"data_source">;
|
|
27254
27254
|
id: z.ZodString;
|
|
@@ -27697,9 +27697,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
27697
27697
|
public_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27698
27698
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
27699
27699
|
}, {
|
|
27700
|
+
operation: "update_data_source";
|
|
27700
27701
|
success: boolean;
|
|
27701
27702
|
error: string;
|
|
27702
|
-
operation: "update_data_source";
|
|
27703
27703
|
dataSource?: z.objectInputType<{
|
|
27704
27704
|
object: z.ZodLiteral<"data_source">;
|
|
27705
27705
|
id: z.ZodString;
|
|
@@ -28950,9 +28950,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28950
28950
|
is_inline?: boolean | undefined;
|
|
28951
28951
|
}>>;
|
|
28952
28952
|
}, "strip", z.ZodTypeAny, {
|
|
28953
|
+
operation: "create_database";
|
|
28953
28954
|
success: boolean;
|
|
28954
28955
|
error: string;
|
|
28955
|
-
operation: "create_database";
|
|
28956
28956
|
database?: {
|
|
28957
28957
|
object: "database";
|
|
28958
28958
|
title: {
|
|
@@ -29088,9 +29088,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29088
29088
|
is_inline?: boolean | undefined;
|
|
29089
29089
|
} | undefined;
|
|
29090
29090
|
}, {
|
|
29091
|
+
operation: "create_database";
|
|
29091
29092
|
success: boolean;
|
|
29092
29093
|
error: string;
|
|
29093
|
-
operation: "create_database";
|
|
29094
29094
|
database?: {
|
|
29095
29095
|
object: "database";
|
|
29096
29096
|
title: {
|
|
@@ -30028,9 +30028,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30028
30028
|
is_inline?: boolean | undefined;
|
|
30029
30029
|
}>>;
|
|
30030
30030
|
}, "strip", z.ZodTypeAny, {
|
|
30031
|
+
operation: "update_database";
|
|
30031
30032
|
success: boolean;
|
|
30032
30033
|
error: string;
|
|
30033
|
-
operation: "update_database";
|
|
30034
30034
|
database?: {
|
|
30035
30035
|
object: "database";
|
|
30036
30036
|
title: {
|
|
@@ -30166,9 +30166,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30166
30166
|
is_inline?: boolean | undefined;
|
|
30167
30167
|
} | undefined;
|
|
30168
30168
|
}, {
|
|
30169
|
+
operation: "update_database";
|
|
30169
30170
|
success: boolean;
|
|
30170
30171
|
error: string;
|
|
30171
|
-
operation: "update_database";
|
|
30172
30172
|
database?: {
|
|
30173
30173
|
object: "database";
|
|
30174
30174
|
title: {
|
|
@@ -30911,10 +30911,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30911
30911
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30912
30912
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
30913
30913
|
}, "strip", z.ZodTypeAny, {
|
|
30914
|
+
operation: "append_block_children";
|
|
30914
30915
|
success: boolean;
|
|
30915
30916
|
error: string;
|
|
30916
|
-
operation: "append_block_children";
|
|
30917
|
-
next_cursor?: string | null | undefined;
|
|
30918
30917
|
blocks?: z.objectOutputType<{
|
|
30919
30918
|
object: z.ZodLiteral<"block">;
|
|
30920
30919
|
id: z.ZodString;
|
|
@@ -31116,12 +31115,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
31116
31115
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
31117
31116
|
type: z.ZodString;
|
|
31118
31117
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
31118
|
+
next_cursor?: string | null | undefined;
|
|
31119
31119
|
has_more?: boolean | undefined;
|
|
31120
31120
|
}, {
|
|
31121
|
+
operation: "append_block_children";
|
|
31121
31122
|
success: boolean;
|
|
31122
31123
|
error: string;
|
|
31123
|
-
operation: "append_block_children";
|
|
31124
|
-
next_cursor?: string | null | undefined;
|
|
31125
31124
|
blocks?: z.objectInputType<{
|
|
31126
31125
|
object: z.ZodLiteral<"block">;
|
|
31127
31126
|
id: z.ZodString;
|
|
@@ -31323,6 +31322,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
31323
31322
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
31324
31323
|
type: z.ZodString;
|
|
31325
31324
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
31325
|
+
next_cursor?: string | null | undefined;
|
|
31326
31326
|
has_more?: boolean | undefined;
|
|
31327
31327
|
}>, z.ZodObject<{
|
|
31328
31328
|
operation: z.ZodLiteral<"retrieve_block_children">;
|
|
@@ -31932,10 +31932,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
31932
31932
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31933
31933
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
31934
31934
|
}, "strip", z.ZodTypeAny, {
|
|
31935
|
+
operation: "retrieve_block_children";
|
|
31935
31936
|
success: boolean;
|
|
31936
31937
|
error: string;
|
|
31937
|
-
operation: "retrieve_block_children";
|
|
31938
|
-
next_cursor?: string | null | undefined;
|
|
31939
31938
|
blocks?: z.objectOutputType<{
|
|
31940
31939
|
object: z.ZodLiteral<"block">;
|
|
31941
31940
|
id: z.ZodString;
|
|
@@ -32137,12 +32136,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
32137
32136
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
32138
32137
|
type: z.ZodString;
|
|
32139
32138
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
32139
|
+
next_cursor?: string | null | undefined;
|
|
32140
32140
|
has_more?: boolean | undefined;
|
|
32141
32141
|
}, {
|
|
32142
|
+
operation: "retrieve_block_children";
|
|
32142
32143
|
success: boolean;
|
|
32143
32144
|
error: string;
|
|
32144
|
-
operation: "retrieve_block_children";
|
|
32145
|
-
next_cursor?: string | null | undefined;
|
|
32146
32145
|
blocks?: z.objectInputType<{
|
|
32147
32146
|
object: z.ZodLiteral<"block">;
|
|
32148
32147
|
id: z.ZodString;
|
|
@@ -32344,6 +32343,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
32344
32343
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
32345
32344
|
type: z.ZodString;
|
|
32346
32345
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
32346
|
+
next_cursor?: string | null | undefined;
|
|
32347
32347
|
has_more?: boolean | undefined;
|
|
32348
32348
|
}>, z.ZodObject<{
|
|
32349
32349
|
operation: z.ZodLiteral<"retrieve_block">;
|
|
@@ -32951,9 +32951,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
32951
32951
|
type: z.ZodString;
|
|
32952
32952
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
32953
32953
|
}, "strip", z.ZodTypeAny, {
|
|
32954
|
+
operation: "retrieve_block";
|
|
32954
32955
|
success: boolean;
|
|
32955
32956
|
error: string;
|
|
32956
|
-
operation: "retrieve_block";
|
|
32957
32957
|
block?: z.objectOutputType<{
|
|
32958
32958
|
object: z.ZodLiteral<"block">;
|
|
32959
32959
|
id: z.ZodString;
|
|
@@ -33156,9 +33156,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
33156
33156
|
type: z.ZodString;
|
|
33157
33157
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
33158
33158
|
}, {
|
|
33159
|
+
operation: "retrieve_block";
|
|
33159
33160
|
success: boolean;
|
|
33160
33161
|
error: string;
|
|
33161
|
-
operation: "retrieve_block";
|
|
33162
33162
|
block?: z.objectInputType<{
|
|
33163
33163
|
object: z.ZodLiteral<"block">;
|
|
33164
33164
|
id: z.ZodString;
|
|
@@ -33966,9 +33966,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
33966
33966
|
type: z.ZodString;
|
|
33967
33967
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
33968
33968
|
}, "strip", z.ZodTypeAny, {
|
|
33969
|
+
operation: "update_block";
|
|
33969
33970
|
success: boolean;
|
|
33970
33971
|
error: string;
|
|
33971
|
-
operation: "update_block";
|
|
33972
33972
|
block?: z.objectOutputType<{
|
|
33973
33973
|
object: z.ZodLiteral<"block">;
|
|
33974
33974
|
id: z.ZodString;
|
|
@@ -34171,9 +34171,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34171
34171
|
type: z.ZodString;
|
|
34172
34172
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
34173
34173
|
}, {
|
|
34174
|
+
operation: "update_block";
|
|
34174
34175
|
success: boolean;
|
|
34175
34176
|
error: string;
|
|
34176
|
-
operation: "update_block";
|
|
34177
34177
|
block?: z.objectInputType<{
|
|
34178
34178
|
object: z.ZodLiteral<"block">;
|
|
34179
34179
|
id: z.ZodString;
|
|
@@ -34652,9 +34652,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34652
34652
|
}[];
|
|
34653
34653
|
}>>;
|
|
34654
34654
|
}, "strip", z.ZodTypeAny, {
|
|
34655
|
+
operation: "create_comment";
|
|
34655
34656
|
success: boolean;
|
|
34656
34657
|
error: string;
|
|
34657
|
-
operation: "create_comment";
|
|
34658
34658
|
comment?: {
|
|
34659
34659
|
object: "comment";
|
|
34660
34660
|
parent: {
|
|
@@ -34706,9 +34706,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34706
34706
|
}[];
|
|
34707
34707
|
} | undefined;
|
|
34708
34708
|
}, {
|
|
34709
|
+
operation: "create_comment";
|
|
34709
34710
|
success: boolean;
|
|
34710
34711
|
error: string;
|
|
34711
|
-
operation: "create_comment";
|
|
34712
34712
|
comment?: {
|
|
34713
34713
|
object: "comment";
|
|
34714
34714
|
parent: {
|
|
@@ -35036,9 +35036,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35036
35036
|
}[];
|
|
35037
35037
|
}>>;
|
|
35038
35038
|
}, "strip", z.ZodTypeAny, {
|
|
35039
|
+
operation: "retrieve_comment";
|
|
35039
35040
|
success: boolean;
|
|
35040
35041
|
error: string;
|
|
35041
|
-
operation: "retrieve_comment";
|
|
35042
35042
|
comment?: {
|
|
35043
35043
|
object: "comment";
|
|
35044
35044
|
parent: {
|
|
@@ -35090,9 +35090,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35090
35090
|
}[];
|
|
35091
35091
|
} | undefined;
|
|
35092
35092
|
}, {
|
|
35093
|
+
operation: "retrieve_comment";
|
|
35093
35094
|
success: boolean;
|
|
35094
35095
|
error: string;
|
|
35095
|
-
operation: "retrieve_comment";
|
|
35096
35096
|
comment?: {
|
|
35097
35097
|
object: "comment";
|
|
35098
35098
|
parent: {
|
|
@@ -35221,10 +35221,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35221
35221
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35222
35222
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
35223
35223
|
}, "strip", z.ZodTypeAny, {
|
|
35224
|
+
operation: "list_users";
|
|
35224
35225
|
success: boolean;
|
|
35225
35226
|
error: string;
|
|
35226
|
-
operation: "list_users";
|
|
35227
|
-
next_cursor?: string | null | undefined;
|
|
35228
35227
|
users?: {
|
|
35229
35228
|
object: "user";
|
|
35230
35229
|
id: string;
|
|
@@ -35242,12 +35241,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35242
35241
|
workspace_name?: string | undefined;
|
|
35243
35242
|
} | undefined;
|
|
35244
35243
|
}[] | undefined;
|
|
35244
|
+
next_cursor?: string | null | undefined;
|
|
35245
35245
|
has_more?: boolean | undefined;
|
|
35246
35246
|
}, {
|
|
35247
|
+
operation: "list_users";
|
|
35247
35248
|
success: boolean;
|
|
35248
35249
|
error: string;
|
|
35249
|
-
operation: "list_users";
|
|
35250
|
-
next_cursor?: string | null | undefined;
|
|
35251
35250
|
users?: {
|
|
35252
35251
|
object: "user";
|
|
35253
35252
|
id: string;
|
|
@@ -35265,6 +35264,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35265
35264
|
workspace_name?: string | undefined;
|
|
35266
35265
|
} | undefined;
|
|
35267
35266
|
}[] | undefined;
|
|
35267
|
+
next_cursor?: string | null | undefined;
|
|
35268
35268
|
has_more?: boolean | undefined;
|
|
35269
35269
|
}>, z.ZodObject<{
|
|
35270
35270
|
operation: z.ZodLiteral<"search">;
|
|
@@ -35325,9 +35325,11 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35325
35325
|
next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35326
35326
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
35327
35327
|
}, "strip", z.ZodTypeAny, {
|
|
35328
|
+
operation: "search";
|
|
35328
35329
|
success: boolean;
|
|
35329
35330
|
error: string;
|
|
35330
|
-
|
|
35331
|
+
next_cursor?: string | null | undefined;
|
|
35332
|
+
has_more?: boolean | undefined;
|
|
35331
35333
|
results?: z.objectOutputType<{
|
|
35332
35334
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
35333
35335
|
id: z.ZodString;
|
|
@@ -35346,12 +35348,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35346
35348
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
35347
35349
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
35348
35350
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
35349
|
-
next_cursor?: string | null | undefined;
|
|
35350
|
-
has_more?: boolean | undefined;
|
|
35351
35351
|
}, {
|
|
35352
|
+
operation: "search";
|
|
35352
35353
|
success: boolean;
|
|
35353
35354
|
error: string;
|
|
35354
|
-
|
|
35355
|
+
next_cursor?: string | null | undefined;
|
|
35356
|
+
has_more?: boolean | undefined;
|
|
35355
35357
|
results?: z.objectInputType<{
|
|
35356
35358
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
35357
35359
|
id: z.ZodString;
|
|
@@ -35370,8 +35372,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35370
35372
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
35371
35373
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
35372
35374
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
35373
|
-
next_cursor?: string | null | undefined;
|
|
35374
|
-
has_more?: boolean | undefined;
|
|
35375
35375
|
}>]>;
|
|
35376
35376
|
static readonly shortDescription = "Notion API integration for pages, databases, and blocks";
|
|
35377
35377
|
static readonly longDescription = "\n Comprehensive Notion API integration for managing pages, databases, blocks, and comments.\n \n Features:\n - Create, retrieve, and update pages\n - Manage databases and data sources\n - Query data sources with filters and sorting\n - Search pages and data sources by title\n - Append and retrieve block children\n - Create and retrieve comments\n - List workspace users\n \n Use cases:\n - Content management and automation\n - Database operations and queries\n - Page creation and updates\n - Search and discovery of pages and data sources\n - Block manipulation\n - Comment management\n - Workspace user management\n \n Security Features:\n - OAuth token authentication\n - Parameter validation\n - Comprehensive error handling\n - Respects Notion API versioning (2025-09-03)\n ";
|