@bubblelab/bubble-core 0.1.44 → 0.1.45
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 +67 -67
- package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
- package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +28 -28
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +330 -330
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -2995,6 +2995,7 @@ 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;
|
|
2998
2999
|
parent: {
|
|
2999
3000
|
type: "page_id";
|
|
3000
3001
|
page_id: string;
|
|
@@ -3012,7 +3013,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3012
3013
|
type: "workspace";
|
|
3013
3014
|
workspace: true;
|
|
3014
3015
|
};
|
|
3015
|
-
id: string;
|
|
3016
3016
|
created_time: string;
|
|
3017
3017
|
last_edited_time: string;
|
|
3018
3018
|
created_by: {
|
|
@@ -3088,6 +3088,7 @@ 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;
|
|
3091
3092
|
parent: {
|
|
3092
3093
|
type: "page_id";
|
|
3093
3094
|
page_id: string;
|
|
@@ -3105,7 +3106,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3105
3106
|
type: "workspace";
|
|
3106
3107
|
workspace: true;
|
|
3107
3108
|
};
|
|
3108
|
-
id: string;
|
|
3109
3109
|
created_time: string;
|
|
3110
3110
|
last_edited_time: string;
|
|
3111
3111
|
created_by: {
|
|
@@ -3186,6 +3186,7 @@ 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;
|
|
3189
3190
|
parent: {
|
|
3190
3191
|
type: "page_id";
|
|
3191
3192
|
page_id: string;
|
|
@@ -3203,7 +3204,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3203
3204
|
type: "workspace";
|
|
3204
3205
|
workspace: true;
|
|
3205
3206
|
};
|
|
3206
|
-
id: string;
|
|
3207
3207
|
created_time: string;
|
|
3208
3208
|
last_edited_time: string;
|
|
3209
3209
|
created_by: {
|
|
@@ -3284,6 +3284,7 @@ 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;
|
|
3287
3288
|
parent: {
|
|
3288
3289
|
type: "page_id";
|
|
3289
3290
|
page_id: string;
|
|
@@ -3301,7 +3302,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3301
3302
|
type: "workspace";
|
|
3302
3303
|
workspace: true;
|
|
3303
3304
|
};
|
|
3304
|
-
id: string;
|
|
3305
3305
|
created_time: string;
|
|
3306
3306
|
last_edited_time: string;
|
|
3307
3307
|
created_by: {
|
|
@@ -3699,6 +3699,7 @@ 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;
|
|
3702
3703
|
parent: {
|
|
3703
3704
|
type: "page_id";
|
|
3704
3705
|
page_id: string;
|
|
@@ -3716,7 +3717,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3716
3717
|
type: "workspace";
|
|
3717
3718
|
workspace: true;
|
|
3718
3719
|
};
|
|
3719
|
-
id: string;
|
|
3720
3720
|
created_time: string;
|
|
3721
3721
|
last_edited_time: string;
|
|
3722
3722
|
created_by: {
|
|
@@ -3792,6 +3792,7 @@ 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;
|
|
3795
3796
|
parent: {
|
|
3796
3797
|
type: "page_id";
|
|
3797
3798
|
page_id: string;
|
|
@@ -3809,7 +3810,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3809
3810
|
type: "workspace";
|
|
3810
3811
|
workspace: true;
|
|
3811
3812
|
};
|
|
3812
|
-
id: string;
|
|
3813
3813
|
created_time: string;
|
|
3814
3814
|
last_edited_time: string;
|
|
3815
3815
|
created_by: {
|
|
@@ -3890,6 +3890,7 @@ 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;
|
|
3893
3894
|
parent: {
|
|
3894
3895
|
type: "page_id";
|
|
3895
3896
|
page_id: string;
|
|
@@ -3907,7 +3908,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3907
3908
|
type: "workspace";
|
|
3908
3909
|
workspace: true;
|
|
3909
3910
|
};
|
|
3910
|
-
id: string;
|
|
3911
3911
|
created_time: string;
|
|
3912
3912
|
last_edited_time: string;
|
|
3913
3913
|
created_by: {
|
|
@@ -3988,6 +3988,7 @@ 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;
|
|
3991
3992
|
parent: {
|
|
3992
3993
|
type: "page_id";
|
|
3993
3994
|
page_id: string;
|
|
@@ -4005,7 +4006,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4005
4006
|
type: "workspace";
|
|
4006
4007
|
workspace: true;
|
|
4007
4008
|
};
|
|
4008
|
-
id: string;
|
|
4009
4009
|
created_time: string;
|
|
4010
4010
|
last_edited_time: string;
|
|
4011
4011
|
created_by: {
|
|
@@ -4403,6 +4403,7 @@ 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;
|
|
4406
4407
|
parent: {
|
|
4407
4408
|
type: "page_id";
|
|
4408
4409
|
page_id: string;
|
|
@@ -4420,7 +4421,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4420
4421
|
type: "workspace";
|
|
4421
4422
|
workspace: true;
|
|
4422
4423
|
};
|
|
4423
|
-
id: string;
|
|
4424
4424
|
created_time: string;
|
|
4425
4425
|
last_edited_time: string;
|
|
4426
4426
|
created_by: {
|
|
@@ -4496,6 +4496,7 @@ 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;
|
|
4499
4500
|
parent: {
|
|
4500
4501
|
type: "page_id";
|
|
4501
4502
|
page_id: string;
|
|
@@ -4513,7 +4514,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4513
4514
|
type: "workspace";
|
|
4514
4515
|
workspace: true;
|
|
4515
4516
|
};
|
|
4516
|
-
id: string;
|
|
4517
4517
|
created_time: string;
|
|
4518
4518
|
last_edited_time: string;
|
|
4519
4519
|
created_by: {
|
|
@@ -4594,6 +4594,7 @@ 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;
|
|
4597
4598
|
parent: {
|
|
4598
4599
|
type: "page_id";
|
|
4599
4600
|
page_id: string;
|
|
@@ -4611,7 +4612,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4611
4612
|
type: "workspace";
|
|
4612
4613
|
workspace: true;
|
|
4613
4614
|
};
|
|
4614
|
-
id: string;
|
|
4615
4615
|
created_time: string;
|
|
4616
4616
|
last_edited_time: string;
|
|
4617
4617
|
created_by: {
|
|
@@ -4692,6 +4692,7 @@ 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;
|
|
4695
4696
|
parent: {
|
|
4696
4697
|
type: "page_id";
|
|
4697
4698
|
page_id: string;
|
|
@@ -4709,7 +4710,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4709
4710
|
type: "workspace";
|
|
4710
4711
|
workspace: true;
|
|
4711
4712
|
};
|
|
4712
|
-
id: string;
|
|
4713
4713
|
created_time: string;
|
|
4714
4714
|
last_edited_time: string;
|
|
4715
4715
|
created_by: {
|
|
@@ -5338,6 +5338,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5338
5338
|
} | undefined;
|
|
5339
5339
|
href?: string | null | undefined;
|
|
5340
5340
|
}[];
|
|
5341
|
+
id: string;
|
|
5341
5342
|
parent: {
|
|
5342
5343
|
type: "page_id";
|
|
5343
5344
|
page_id: string;
|
|
@@ -5355,7 +5356,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5355
5356
|
type: "workspace";
|
|
5356
5357
|
workspace: true;
|
|
5357
5358
|
};
|
|
5358
|
-
id: string;
|
|
5359
5359
|
created_time: string;
|
|
5360
5360
|
last_edited_time: string;
|
|
5361
5361
|
data_sources: {
|
|
@@ -5471,6 +5471,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5471
5471
|
} | undefined;
|
|
5472
5472
|
href?: string | null | undefined;
|
|
5473
5473
|
}[];
|
|
5474
|
+
id: string;
|
|
5474
5475
|
parent: {
|
|
5475
5476
|
type: "page_id";
|
|
5476
5477
|
page_id: string;
|
|
@@ -5488,7 +5489,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5488
5489
|
type: "workspace";
|
|
5489
5490
|
workspace: true;
|
|
5490
5491
|
};
|
|
5491
|
-
id: string;
|
|
5492
5492
|
created_time: string;
|
|
5493
5493
|
last_edited_time: string;
|
|
5494
5494
|
data_sources: {
|
|
@@ -5609,6 +5609,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5609
5609
|
} | undefined;
|
|
5610
5610
|
href?: string | null | undefined;
|
|
5611
5611
|
}[];
|
|
5612
|
+
id: string;
|
|
5612
5613
|
parent: {
|
|
5613
5614
|
type: "page_id";
|
|
5614
5615
|
page_id: string;
|
|
@@ -5626,7 +5627,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5626
5627
|
type: "workspace";
|
|
5627
5628
|
workspace: true;
|
|
5628
5629
|
};
|
|
5629
|
-
id: string;
|
|
5630
5630
|
created_time: string;
|
|
5631
5631
|
last_edited_time: string;
|
|
5632
5632
|
data_sources: {
|
|
@@ -5747,6 +5747,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5747
5747
|
} | undefined;
|
|
5748
5748
|
href?: string | null | undefined;
|
|
5749
5749
|
}[];
|
|
5750
|
+
id: string;
|
|
5750
5751
|
parent: {
|
|
5751
5752
|
type: "page_id";
|
|
5752
5753
|
page_id: string;
|
|
@@ -5764,7 +5765,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5764
5765
|
type: "workspace";
|
|
5765
5766
|
workspace: true;
|
|
5766
5767
|
};
|
|
5767
|
-
id: string;
|
|
5768
5768
|
created_time: string;
|
|
5769
5769
|
last_edited_time: string;
|
|
5770
5770
|
data_sources: {
|
|
@@ -5922,8 +5922,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5922
5922
|
operation: "query_data_source";
|
|
5923
5923
|
success: boolean;
|
|
5924
5924
|
error: string;
|
|
5925
|
-
next_cursor?: string | null | undefined;
|
|
5926
|
-
has_more?: boolean | undefined;
|
|
5927
5925
|
results?: z.objectOutputType<{
|
|
5928
5926
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
5929
5927
|
id: z.ZodString;
|
|
@@ -5942,12 +5940,12 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5942
5940
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
5943
5941
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
5944
5942
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5943
|
+
next_cursor?: string | null | undefined;
|
|
5944
|
+
has_more?: boolean | undefined;
|
|
5945
5945
|
}, {
|
|
5946
5946
|
operation: "query_data_source";
|
|
5947
5947
|
success: boolean;
|
|
5948
5948
|
error: string;
|
|
5949
|
-
next_cursor?: string | null | undefined;
|
|
5950
|
-
has_more?: boolean | undefined;
|
|
5951
5949
|
results?: z.objectInputType<{
|
|
5952
5950
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
5953
5951
|
id: z.ZodString;
|
|
@@ -5966,6 +5964,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5966
5964
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
5967
5965
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
5968
5966
|
}, 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;
|
|
@@ -11012,6 +11012,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11012
11012
|
} | undefined;
|
|
11013
11013
|
href?: string | null | undefined;
|
|
11014
11014
|
}[];
|
|
11015
|
+
id: string;
|
|
11015
11016
|
parent: {
|
|
11016
11017
|
type: "page_id";
|
|
11017
11018
|
page_id: string;
|
|
@@ -11029,7 +11030,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11029
11030
|
type: "workspace";
|
|
11030
11031
|
workspace: true;
|
|
11031
11032
|
};
|
|
11032
|
-
id: string;
|
|
11033
11033
|
created_time: string;
|
|
11034
11034
|
last_edited_time: string;
|
|
11035
11035
|
data_sources: {
|
|
@@ -11145,6 +11145,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11145
11145
|
} | undefined;
|
|
11146
11146
|
href?: string | null | undefined;
|
|
11147
11147
|
}[];
|
|
11148
|
+
id: string;
|
|
11148
11149
|
parent: {
|
|
11149
11150
|
type: "page_id";
|
|
11150
11151
|
page_id: string;
|
|
@@ -11162,7 +11163,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11162
11163
|
type: "workspace";
|
|
11163
11164
|
workspace: true;
|
|
11164
11165
|
};
|
|
11165
|
-
id: string;
|
|
11166
11166
|
created_time: string;
|
|
11167
11167
|
last_edited_time: string;
|
|
11168
11168
|
data_sources: {
|
|
@@ -11283,6 +11283,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11283
11283
|
} | undefined;
|
|
11284
11284
|
href?: string | null | undefined;
|
|
11285
11285
|
}[];
|
|
11286
|
+
id: string;
|
|
11286
11287
|
parent: {
|
|
11287
11288
|
type: "page_id";
|
|
11288
11289
|
page_id: string;
|
|
@@ -11300,7 +11301,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11300
11301
|
type: "workspace";
|
|
11301
11302
|
workspace: true;
|
|
11302
11303
|
};
|
|
11303
|
-
id: string;
|
|
11304
11304
|
created_time: string;
|
|
11305
11305
|
last_edited_time: string;
|
|
11306
11306
|
data_sources: {
|
|
@@ -11421,6 +11421,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11421
11421
|
} | undefined;
|
|
11422
11422
|
href?: string | null | undefined;
|
|
11423
11423
|
}[];
|
|
11424
|
+
id: string;
|
|
11424
11425
|
parent: {
|
|
11425
11426
|
type: "page_id";
|
|
11426
11427
|
page_id: string;
|
|
@@ -11438,7 +11439,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11438
11439
|
type: "workspace";
|
|
11439
11440
|
workspace: true;
|
|
11440
11441
|
};
|
|
11441
|
-
id: string;
|
|
11442
11442
|
created_time: string;
|
|
11443
11443
|
last_edited_time: string;
|
|
11444
11444
|
data_sources: {
|
|
@@ -12090,6 +12090,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12090
12090
|
} | undefined;
|
|
12091
12091
|
href?: string | null | undefined;
|
|
12092
12092
|
}[];
|
|
12093
|
+
id: string;
|
|
12093
12094
|
parent: {
|
|
12094
12095
|
type: "page_id";
|
|
12095
12096
|
page_id: string;
|
|
@@ -12107,7 +12108,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12107
12108
|
type: "workspace";
|
|
12108
12109
|
workspace: true;
|
|
12109
12110
|
};
|
|
12110
|
-
id: string;
|
|
12111
12111
|
created_time: string;
|
|
12112
12112
|
last_edited_time: string;
|
|
12113
12113
|
data_sources: {
|
|
@@ -12223,6 +12223,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12223
12223
|
} | undefined;
|
|
12224
12224
|
href?: string | null | undefined;
|
|
12225
12225
|
}[];
|
|
12226
|
+
id: string;
|
|
12226
12227
|
parent: {
|
|
12227
12228
|
type: "page_id";
|
|
12228
12229
|
page_id: string;
|
|
@@ -12240,7 +12241,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12240
12241
|
type: "workspace";
|
|
12241
12242
|
workspace: true;
|
|
12242
12243
|
};
|
|
12243
|
-
id: string;
|
|
12244
12244
|
created_time: string;
|
|
12245
12245
|
last_edited_time: string;
|
|
12246
12246
|
data_sources: {
|
|
@@ -12361,6 +12361,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12361
12361
|
} | undefined;
|
|
12362
12362
|
href?: string | null | undefined;
|
|
12363
12363
|
}[];
|
|
12364
|
+
id: string;
|
|
12364
12365
|
parent: {
|
|
12365
12366
|
type: "page_id";
|
|
12366
12367
|
page_id: string;
|
|
@@ -12378,7 +12379,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12378
12379
|
type: "workspace";
|
|
12379
12380
|
workspace: true;
|
|
12380
12381
|
};
|
|
12381
|
-
id: string;
|
|
12382
12382
|
created_time: string;
|
|
12383
12383
|
last_edited_time: string;
|
|
12384
12384
|
data_sources: {
|
|
@@ -12499,6 +12499,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12499
12499
|
} | undefined;
|
|
12500
12500
|
href?: string | null | undefined;
|
|
12501
12501
|
}[];
|
|
12502
|
+
id: string;
|
|
12502
12503
|
parent: {
|
|
12503
12504
|
type: "page_id";
|
|
12504
12505
|
page_id: string;
|
|
@@ -12516,7 +12517,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12516
12517
|
type: "workspace";
|
|
12517
12518
|
workspace: true;
|
|
12518
12519
|
};
|
|
12519
|
-
id: string;
|
|
12520
12520
|
created_time: string;
|
|
12521
12521
|
last_edited_time: string;
|
|
12522
12522
|
data_sources: {
|
|
@@ -16863,6 +16863,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16863
16863
|
}>, "many">;
|
|
16864
16864
|
}, "strip", z.ZodTypeAny, {
|
|
16865
16865
|
object: "comment";
|
|
16866
|
+
id: string;
|
|
16866
16867
|
parent: {
|
|
16867
16868
|
type: "block_id" | "page_id";
|
|
16868
16869
|
block_id?: string | undefined;
|
|
@@ -16870,7 +16871,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16870
16871
|
} & {
|
|
16871
16872
|
[k: string]: unknown;
|
|
16872
16873
|
};
|
|
16873
|
-
id: string;
|
|
16874
16874
|
created_time: string;
|
|
16875
16875
|
last_edited_time: string;
|
|
16876
16876
|
created_by: {
|
|
@@ -16912,6 +16912,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16912
16912
|
}[];
|
|
16913
16913
|
}, {
|
|
16914
16914
|
object: "comment";
|
|
16915
|
+
id: string;
|
|
16915
16916
|
parent: {
|
|
16916
16917
|
type: "block_id" | "page_id";
|
|
16917
16918
|
block_id?: string | undefined;
|
|
@@ -16919,7 +16920,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16919
16920
|
} & {
|
|
16920
16921
|
[k: string]: unknown;
|
|
16921
16922
|
};
|
|
16922
|
-
id: string;
|
|
16923
16923
|
created_time: string;
|
|
16924
16924
|
last_edited_time: string;
|
|
16925
16925
|
created_by: {
|
|
@@ -16966,6 +16966,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16966
16966
|
error: string;
|
|
16967
16967
|
comment?: {
|
|
16968
16968
|
object: "comment";
|
|
16969
|
+
id: string;
|
|
16969
16970
|
parent: {
|
|
16970
16971
|
type: "block_id" | "page_id";
|
|
16971
16972
|
block_id?: string | undefined;
|
|
@@ -16973,7 +16974,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
16973
16974
|
} & {
|
|
16974
16975
|
[k: string]: unknown;
|
|
16975
16976
|
};
|
|
16976
|
-
id: string;
|
|
16977
16977
|
created_time: string;
|
|
16978
16978
|
last_edited_time: string;
|
|
16979
16979
|
created_by: {
|
|
@@ -17020,6 +17020,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17020
17020
|
error: string;
|
|
17021
17021
|
comment?: {
|
|
17022
17022
|
object: "comment";
|
|
17023
|
+
id: string;
|
|
17023
17024
|
parent: {
|
|
17024
17025
|
type: "block_id" | "page_id";
|
|
17025
17026
|
block_id?: string | undefined;
|
|
@@ -17027,7 +17028,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17027
17028
|
} & {
|
|
17028
17029
|
[k: string]: unknown;
|
|
17029
17030
|
};
|
|
17030
|
-
id: string;
|
|
17031
17031
|
created_time: string;
|
|
17032
17032
|
last_edited_time: string;
|
|
17033
17033
|
created_by: {
|
|
@@ -17247,6 +17247,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17247
17247
|
}>, "many">;
|
|
17248
17248
|
}, "strip", z.ZodTypeAny, {
|
|
17249
17249
|
object: "comment";
|
|
17250
|
+
id: string;
|
|
17250
17251
|
parent: {
|
|
17251
17252
|
type: "block_id" | "page_id";
|
|
17252
17253
|
block_id?: string | undefined;
|
|
@@ -17254,7 +17255,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17254
17255
|
} & {
|
|
17255
17256
|
[k: string]: unknown;
|
|
17256
17257
|
};
|
|
17257
|
-
id: string;
|
|
17258
17258
|
created_time: string;
|
|
17259
17259
|
last_edited_time: string;
|
|
17260
17260
|
created_by: {
|
|
@@ -17296,6 +17296,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17296
17296
|
}[];
|
|
17297
17297
|
}, {
|
|
17298
17298
|
object: "comment";
|
|
17299
|
+
id: string;
|
|
17299
17300
|
parent: {
|
|
17300
17301
|
type: "block_id" | "page_id";
|
|
17301
17302
|
block_id?: string | undefined;
|
|
@@ -17303,7 +17304,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17303
17304
|
} & {
|
|
17304
17305
|
[k: string]: unknown;
|
|
17305
17306
|
};
|
|
17306
|
-
id: string;
|
|
17307
17307
|
created_time: string;
|
|
17308
17308
|
last_edited_time: string;
|
|
17309
17309
|
created_by: {
|
|
@@ -17350,6 +17350,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17350
17350
|
error: string;
|
|
17351
17351
|
comment?: {
|
|
17352
17352
|
object: "comment";
|
|
17353
|
+
id: string;
|
|
17353
17354
|
parent: {
|
|
17354
17355
|
type: "block_id" | "page_id";
|
|
17355
17356
|
block_id?: string | undefined;
|
|
@@ -17357,7 +17358,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17357
17358
|
} & {
|
|
17358
17359
|
[k: string]: unknown;
|
|
17359
17360
|
};
|
|
17360
|
-
id: string;
|
|
17361
17361
|
created_time: string;
|
|
17362
17362
|
last_edited_time: string;
|
|
17363
17363
|
created_by: {
|
|
@@ -17404,6 +17404,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17404
17404
|
error: string;
|
|
17405
17405
|
comment?: {
|
|
17406
17406
|
object: "comment";
|
|
17407
|
+
id: string;
|
|
17407
17408
|
parent: {
|
|
17408
17409
|
type: "block_id" | "page_id";
|
|
17409
17410
|
block_id?: string | undefined;
|
|
@@ -17411,7 +17412,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17411
17412
|
} & {
|
|
17412
17413
|
[k: string]: unknown;
|
|
17413
17414
|
};
|
|
17414
|
-
id: string;
|
|
17415
17415
|
created_time: string;
|
|
17416
17416
|
last_edited_time: string;
|
|
17417
17417
|
created_by: {
|
|
@@ -17637,8 +17637,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17637
17637
|
operation: "search";
|
|
17638
17638
|
success: boolean;
|
|
17639
17639
|
error: string;
|
|
17640
|
-
next_cursor?: string | null | undefined;
|
|
17641
|
-
has_more?: boolean | undefined;
|
|
17642
17640
|
results?: z.objectOutputType<{
|
|
17643
17641
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
17644
17642
|
id: z.ZodString;
|
|
@@ -17657,12 +17655,12 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17657
17655
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
17658
17656
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
17659
17657
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
17658
|
+
next_cursor?: string | null | undefined;
|
|
17659
|
+
has_more?: boolean | undefined;
|
|
17660
17660
|
}, {
|
|
17661
17661
|
operation: "search";
|
|
17662
17662
|
success: boolean;
|
|
17663
17663
|
error: string;
|
|
17664
|
-
next_cursor?: string | null | undefined;
|
|
17665
|
-
has_more?: boolean | undefined;
|
|
17666
17664
|
results?: z.objectInputType<{
|
|
17667
17665
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
17668
17666
|
id: z.ZodString;
|
|
@@ -17681,6 +17679,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17681
17679
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
17682
17680
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
17683
17681
|
}, 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>;
|
|
@@ -20686,6 +20686,7 @@ 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;
|
|
20689
20690
|
parent: {
|
|
20690
20691
|
type: "page_id";
|
|
20691
20692
|
page_id: string;
|
|
@@ -20703,7 +20704,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20703
20704
|
type: "workspace";
|
|
20704
20705
|
workspace: true;
|
|
20705
20706
|
};
|
|
20706
|
-
id: string;
|
|
20707
20707
|
created_time: string;
|
|
20708
20708
|
last_edited_time: string;
|
|
20709
20709
|
created_by: {
|
|
@@ -20779,6 +20779,7 @@ 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;
|
|
20782
20783
|
parent: {
|
|
20783
20784
|
type: "page_id";
|
|
20784
20785
|
page_id: string;
|
|
@@ -20796,7 +20797,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20796
20797
|
type: "workspace";
|
|
20797
20798
|
workspace: true;
|
|
20798
20799
|
};
|
|
20799
|
-
id: string;
|
|
20800
20800
|
created_time: string;
|
|
20801
20801
|
last_edited_time: string;
|
|
20802
20802
|
created_by: {
|
|
@@ -20877,6 +20877,7 @@ 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;
|
|
20880
20881
|
parent: {
|
|
20881
20882
|
type: "page_id";
|
|
20882
20883
|
page_id: string;
|
|
@@ -20894,7 +20895,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20894
20895
|
type: "workspace";
|
|
20895
20896
|
workspace: true;
|
|
20896
20897
|
};
|
|
20897
|
-
id: string;
|
|
20898
20898
|
created_time: string;
|
|
20899
20899
|
last_edited_time: string;
|
|
20900
20900
|
created_by: {
|
|
@@ -20975,6 +20975,7 @@ 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;
|
|
20978
20979
|
parent: {
|
|
20979
20980
|
type: "page_id";
|
|
20980
20981
|
page_id: string;
|
|
@@ -20992,7 +20993,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20992
20993
|
type: "workspace";
|
|
20993
20994
|
workspace: true;
|
|
20994
20995
|
};
|
|
20995
|
-
id: string;
|
|
20996
20996
|
created_time: string;
|
|
20997
20997
|
last_edited_time: string;
|
|
20998
20998
|
created_by: {
|
|
@@ -21390,6 +21390,7 @@ 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;
|
|
21393
21394
|
parent: {
|
|
21394
21395
|
type: "page_id";
|
|
21395
21396
|
page_id: string;
|
|
@@ -21407,7 +21408,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21407
21408
|
type: "workspace";
|
|
21408
21409
|
workspace: true;
|
|
21409
21410
|
};
|
|
21410
|
-
id: string;
|
|
21411
21411
|
created_time: string;
|
|
21412
21412
|
last_edited_time: string;
|
|
21413
21413
|
created_by: {
|
|
@@ -21483,6 +21483,7 @@ 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;
|
|
21486
21487
|
parent: {
|
|
21487
21488
|
type: "page_id";
|
|
21488
21489
|
page_id: string;
|
|
@@ -21500,7 +21501,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21500
21501
|
type: "workspace";
|
|
21501
21502
|
workspace: true;
|
|
21502
21503
|
};
|
|
21503
|
-
id: string;
|
|
21504
21504
|
created_time: string;
|
|
21505
21505
|
last_edited_time: string;
|
|
21506
21506
|
created_by: {
|
|
@@ -21581,6 +21581,7 @@ 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;
|
|
21584
21585
|
parent: {
|
|
21585
21586
|
type: "page_id";
|
|
21586
21587
|
page_id: string;
|
|
@@ -21598,7 +21599,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21598
21599
|
type: "workspace";
|
|
21599
21600
|
workspace: true;
|
|
21600
21601
|
};
|
|
21601
|
-
id: string;
|
|
21602
21602
|
created_time: string;
|
|
21603
21603
|
last_edited_time: string;
|
|
21604
21604
|
created_by: {
|
|
@@ -21679,6 +21679,7 @@ 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;
|
|
21682
21683
|
parent: {
|
|
21683
21684
|
type: "page_id";
|
|
21684
21685
|
page_id: string;
|
|
@@ -21696,7 +21697,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21696
21697
|
type: "workspace";
|
|
21697
21698
|
workspace: true;
|
|
21698
21699
|
};
|
|
21699
|
-
id: string;
|
|
21700
21700
|
created_time: string;
|
|
21701
21701
|
last_edited_time: string;
|
|
21702
21702
|
created_by: {
|
|
@@ -22094,6 +22094,7 @@ 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;
|
|
22097
22098
|
parent: {
|
|
22098
22099
|
type: "page_id";
|
|
22099
22100
|
page_id: string;
|
|
@@ -22111,7 +22112,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
22111
22112
|
type: "workspace";
|
|
22112
22113
|
workspace: true;
|
|
22113
22114
|
};
|
|
22114
|
-
id: string;
|
|
22115
22115
|
created_time: string;
|
|
22116
22116
|
last_edited_time: string;
|
|
22117
22117
|
created_by: {
|
|
@@ -22187,6 +22187,7 @@ 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;
|
|
22190
22191
|
parent: {
|
|
22191
22192
|
type: "page_id";
|
|
22192
22193
|
page_id: string;
|
|
@@ -22204,7 +22205,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
22204
22205
|
type: "workspace";
|
|
22205
22206
|
workspace: true;
|
|
22206
22207
|
};
|
|
22207
|
-
id: string;
|
|
22208
22208
|
created_time: string;
|
|
22209
22209
|
last_edited_time: string;
|
|
22210
22210
|
created_by: {
|
|
@@ -22285,6 +22285,7 @@ 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;
|
|
22288
22289
|
parent: {
|
|
22289
22290
|
type: "page_id";
|
|
22290
22291
|
page_id: string;
|
|
@@ -22302,7 +22303,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
22302
22303
|
type: "workspace";
|
|
22303
22304
|
workspace: true;
|
|
22304
22305
|
};
|
|
22305
|
-
id: string;
|
|
22306
22306
|
created_time: string;
|
|
22307
22307
|
last_edited_time: string;
|
|
22308
22308
|
created_by: {
|
|
@@ -22383,6 +22383,7 @@ 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;
|
|
22386
22387
|
parent: {
|
|
22387
22388
|
type: "page_id";
|
|
22388
22389
|
page_id: string;
|
|
@@ -22400,7 +22401,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
22400
22401
|
type: "workspace";
|
|
22401
22402
|
workspace: true;
|
|
22402
22403
|
};
|
|
22403
|
-
id: string;
|
|
22404
22404
|
created_time: string;
|
|
22405
22405
|
last_edited_time: string;
|
|
22406
22406
|
created_by: {
|
|
@@ -23029,6 +23029,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23029
23029
|
} | undefined;
|
|
23030
23030
|
href?: string | null | undefined;
|
|
23031
23031
|
}[];
|
|
23032
|
+
id: string;
|
|
23032
23033
|
parent: {
|
|
23033
23034
|
type: "page_id";
|
|
23034
23035
|
page_id: string;
|
|
@@ -23046,7 +23047,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23046
23047
|
type: "workspace";
|
|
23047
23048
|
workspace: true;
|
|
23048
23049
|
};
|
|
23049
|
-
id: string;
|
|
23050
23050
|
created_time: string;
|
|
23051
23051
|
last_edited_time: string;
|
|
23052
23052
|
data_sources: {
|
|
@@ -23162,6 +23162,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23162
23162
|
} | undefined;
|
|
23163
23163
|
href?: string | null | undefined;
|
|
23164
23164
|
}[];
|
|
23165
|
+
id: string;
|
|
23165
23166
|
parent: {
|
|
23166
23167
|
type: "page_id";
|
|
23167
23168
|
page_id: string;
|
|
@@ -23179,7 +23180,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23179
23180
|
type: "workspace";
|
|
23180
23181
|
workspace: true;
|
|
23181
23182
|
};
|
|
23182
|
-
id: string;
|
|
23183
23183
|
created_time: string;
|
|
23184
23184
|
last_edited_time: string;
|
|
23185
23185
|
data_sources: {
|
|
@@ -23300,6 +23300,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23300
23300
|
} | undefined;
|
|
23301
23301
|
href?: string | null | undefined;
|
|
23302
23302
|
}[];
|
|
23303
|
+
id: string;
|
|
23303
23304
|
parent: {
|
|
23304
23305
|
type: "page_id";
|
|
23305
23306
|
page_id: string;
|
|
@@ -23317,7 +23318,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23317
23318
|
type: "workspace";
|
|
23318
23319
|
workspace: true;
|
|
23319
23320
|
};
|
|
23320
|
-
id: string;
|
|
23321
23321
|
created_time: string;
|
|
23322
23322
|
last_edited_time: string;
|
|
23323
23323
|
data_sources: {
|
|
@@ -23438,6 +23438,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23438
23438
|
} | undefined;
|
|
23439
23439
|
href?: string | null | undefined;
|
|
23440
23440
|
}[];
|
|
23441
|
+
id: string;
|
|
23441
23442
|
parent: {
|
|
23442
23443
|
type: "page_id";
|
|
23443
23444
|
page_id: string;
|
|
@@ -23455,7 +23456,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23455
23456
|
type: "workspace";
|
|
23456
23457
|
workspace: true;
|
|
23457
23458
|
};
|
|
23458
|
-
id: string;
|
|
23459
23459
|
created_time: string;
|
|
23460
23460
|
last_edited_time: string;
|
|
23461
23461
|
data_sources: {
|
|
@@ -23613,8 +23613,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23613
23613
|
operation: "query_data_source";
|
|
23614
23614
|
success: boolean;
|
|
23615
23615
|
error: string;
|
|
23616
|
-
next_cursor?: string | null | undefined;
|
|
23617
|
-
has_more?: boolean | undefined;
|
|
23618
23616
|
results?: z.objectOutputType<{
|
|
23619
23617
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
23620
23618
|
id: z.ZodString;
|
|
@@ -23633,12 +23631,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23633
23631
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
23634
23632
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
23635
23633
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
23634
|
+
next_cursor?: string | null | undefined;
|
|
23635
|
+
has_more?: boolean | undefined;
|
|
23636
23636
|
}, {
|
|
23637
23637
|
operation: "query_data_source";
|
|
23638
23638
|
success: boolean;
|
|
23639
23639
|
error: string;
|
|
23640
|
-
next_cursor?: string | null | undefined;
|
|
23641
|
-
has_more?: boolean | undefined;
|
|
23642
23640
|
results?: z.objectInputType<{
|
|
23643
23641
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
23644
23642
|
id: z.ZodString;
|
|
@@ -23657,6 +23655,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23657
23655
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
23658
23656
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
23659
23657
|
}, 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;
|
|
@@ -28703,6 +28703,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28703
28703
|
} | undefined;
|
|
28704
28704
|
href?: string | null | undefined;
|
|
28705
28705
|
}[];
|
|
28706
|
+
id: string;
|
|
28706
28707
|
parent: {
|
|
28707
28708
|
type: "page_id";
|
|
28708
28709
|
page_id: string;
|
|
@@ -28720,7 +28721,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28720
28721
|
type: "workspace";
|
|
28721
28722
|
workspace: true;
|
|
28722
28723
|
};
|
|
28723
|
-
id: string;
|
|
28724
28724
|
created_time: string;
|
|
28725
28725
|
last_edited_time: string;
|
|
28726
28726
|
data_sources: {
|
|
@@ -28836,6 +28836,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28836
28836
|
} | undefined;
|
|
28837
28837
|
href?: string | null | undefined;
|
|
28838
28838
|
}[];
|
|
28839
|
+
id: string;
|
|
28839
28840
|
parent: {
|
|
28840
28841
|
type: "page_id";
|
|
28841
28842
|
page_id: string;
|
|
@@ -28853,7 +28854,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28853
28854
|
type: "workspace";
|
|
28854
28855
|
workspace: true;
|
|
28855
28856
|
};
|
|
28856
|
-
id: string;
|
|
28857
28857
|
created_time: string;
|
|
28858
28858
|
last_edited_time: string;
|
|
28859
28859
|
data_sources: {
|
|
@@ -28974,6 +28974,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28974
28974
|
} | undefined;
|
|
28975
28975
|
href?: string | null | undefined;
|
|
28976
28976
|
}[];
|
|
28977
|
+
id: string;
|
|
28977
28978
|
parent: {
|
|
28978
28979
|
type: "page_id";
|
|
28979
28980
|
page_id: string;
|
|
@@ -28991,7 +28992,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28991
28992
|
type: "workspace";
|
|
28992
28993
|
workspace: true;
|
|
28993
28994
|
};
|
|
28994
|
-
id: string;
|
|
28995
28995
|
created_time: string;
|
|
28996
28996
|
last_edited_time: string;
|
|
28997
28997
|
data_sources: {
|
|
@@ -29112,6 +29112,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29112
29112
|
} | undefined;
|
|
29113
29113
|
href?: string | null | undefined;
|
|
29114
29114
|
}[];
|
|
29115
|
+
id: string;
|
|
29115
29116
|
parent: {
|
|
29116
29117
|
type: "page_id";
|
|
29117
29118
|
page_id: string;
|
|
@@ -29129,7 +29130,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29129
29130
|
type: "workspace";
|
|
29130
29131
|
workspace: true;
|
|
29131
29132
|
};
|
|
29132
|
-
id: string;
|
|
29133
29133
|
created_time: string;
|
|
29134
29134
|
last_edited_time: string;
|
|
29135
29135
|
data_sources: {
|
|
@@ -29781,6 +29781,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29781
29781
|
} | undefined;
|
|
29782
29782
|
href?: string | null | undefined;
|
|
29783
29783
|
}[];
|
|
29784
|
+
id: string;
|
|
29784
29785
|
parent: {
|
|
29785
29786
|
type: "page_id";
|
|
29786
29787
|
page_id: string;
|
|
@@ -29798,7 +29799,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29798
29799
|
type: "workspace";
|
|
29799
29800
|
workspace: true;
|
|
29800
29801
|
};
|
|
29801
|
-
id: string;
|
|
29802
29802
|
created_time: string;
|
|
29803
29803
|
last_edited_time: string;
|
|
29804
29804
|
data_sources: {
|
|
@@ -29914,6 +29914,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29914
29914
|
} | undefined;
|
|
29915
29915
|
href?: string | null | undefined;
|
|
29916
29916
|
}[];
|
|
29917
|
+
id: string;
|
|
29917
29918
|
parent: {
|
|
29918
29919
|
type: "page_id";
|
|
29919
29920
|
page_id: string;
|
|
@@ -29931,7 +29932,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29931
29932
|
type: "workspace";
|
|
29932
29933
|
workspace: true;
|
|
29933
29934
|
};
|
|
29934
|
-
id: string;
|
|
29935
29935
|
created_time: string;
|
|
29936
29936
|
last_edited_time: string;
|
|
29937
29937
|
data_sources: {
|
|
@@ -30052,6 +30052,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30052
30052
|
} | undefined;
|
|
30053
30053
|
href?: string | null | undefined;
|
|
30054
30054
|
}[];
|
|
30055
|
+
id: string;
|
|
30055
30056
|
parent: {
|
|
30056
30057
|
type: "page_id";
|
|
30057
30058
|
page_id: string;
|
|
@@ -30069,7 +30070,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30069
30070
|
type: "workspace";
|
|
30070
30071
|
workspace: true;
|
|
30071
30072
|
};
|
|
30072
|
-
id: string;
|
|
30073
30073
|
created_time: string;
|
|
30074
30074
|
last_edited_time: string;
|
|
30075
30075
|
data_sources: {
|
|
@@ -30190,6 +30190,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30190
30190
|
} | undefined;
|
|
30191
30191
|
href?: string | null | undefined;
|
|
30192
30192
|
}[];
|
|
30193
|
+
id: string;
|
|
30193
30194
|
parent: {
|
|
30194
30195
|
type: "page_id";
|
|
30195
30196
|
page_id: string;
|
|
@@ -30207,7 +30208,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30207
30208
|
type: "workspace";
|
|
30208
30209
|
workspace: true;
|
|
30209
30210
|
};
|
|
30210
|
-
id: string;
|
|
30211
30211
|
created_time: string;
|
|
30212
30212
|
last_edited_time: string;
|
|
30213
30213
|
data_sources: {
|
|
@@ -34554,6 +34554,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34554
34554
|
}>, "many">;
|
|
34555
34555
|
}, "strip", z.ZodTypeAny, {
|
|
34556
34556
|
object: "comment";
|
|
34557
|
+
id: string;
|
|
34557
34558
|
parent: {
|
|
34558
34559
|
type: "block_id" | "page_id";
|
|
34559
34560
|
block_id?: string | undefined;
|
|
@@ -34561,7 +34562,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34561
34562
|
} & {
|
|
34562
34563
|
[k: string]: unknown;
|
|
34563
34564
|
};
|
|
34564
|
-
id: string;
|
|
34565
34565
|
created_time: string;
|
|
34566
34566
|
last_edited_time: string;
|
|
34567
34567
|
created_by: {
|
|
@@ -34603,6 +34603,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34603
34603
|
}[];
|
|
34604
34604
|
}, {
|
|
34605
34605
|
object: "comment";
|
|
34606
|
+
id: string;
|
|
34606
34607
|
parent: {
|
|
34607
34608
|
type: "block_id" | "page_id";
|
|
34608
34609
|
block_id?: string | undefined;
|
|
@@ -34610,7 +34611,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34610
34611
|
} & {
|
|
34611
34612
|
[k: string]: unknown;
|
|
34612
34613
|
};
|
|
34613
|
-
id: string;
|
|
34614
34614
|
created_time: string;
|
|
34615
34615
|
last_edited_time: string;
|
|
34616
34616
|
created_by: {
|
|
@@ -34657,6 +34657,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34657
34657
|
error: string;
|
|
34658
34658
|
comment?: {
|
|
34659
34659
|
object: "comment";
|
|
34660
|
+
id: string;
|
|
34660
34661
|
parent: {
|
|
34661
34662
|
type: "block_id" | "page_id";
|
|
34662
34663
|
block_id?: string | undefined;
|
|
@@ -34664,7 +34665,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34664
34665
|
} & {
|
|
34665
34666
|
[k: string]: unknown;
|
|
34666
34667
|
};
|
|
34667
|
-
id: string;
|
|
34668
34668
|
created_time: string;
|
|
34669
34669
|
last_edited_time: string;
|
|
34670
34670
|
created_by: {
|
|
@@ -34711,6 +34711,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34711
34711
|
error: string;
|
|
34712
34712
|
comment?: {
|
|
34713
34713
|
object: "comment";
|
|
34714
|
+
id: string;
|
|
34714
34715
|
parent: {
|
|
34715
34716
|
type: "block_id" | "page_id";
|
|
34716
34717
|
block_id?: string | undefined;
|
|
@@ -34718,7 +34719,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34718
34719
|
} & {
|
|
34719
34720
|
[k: string]: unknown;
|
|
34720
34721
|
};
|
|
34721
|
-
id: string;
|
|
34722
34722
|
created_time: string;
|
|
34723
34723
|
last_edited_time: string;
|
|
34724
34724
|
created_by: {
|
|
@@ -34938,6 +34938,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34938
34938
|
}>, "many">;
|
|
34939
34939
|
}, "strip", z.ZodTypeAny, {
|
|
34940
34940
|
object: "comment";
|
|
34941
|
+
id: string;
|
|
34941
34942
|
parent: {
|
|
34942
34943
|
type: "block_id" | "page_id";
|
|
34943
34944
|
block_id?: string | undefined;
|
|
@@ -34945,7 +34946,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34945
34946
|
} & {
|
|
34946
34947
|
[k: string]: unknown;
|
|
34947
34948
|
};
|
|
34948
|
-
id: string;
|
|
34949
34949
|
created_time: string;
|
|
34950
34950
|
last_edited_time: string;
|
|
34951
34951
|
created_by: {
|
|
@@ -34987,6 +34987,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34987
34987
|
}[];
|
|
34988
34988
|
}, {
|
|
34989
34989
|
object: "comment";
|
|
34990
|
+
id: string;
|
|
34990
34991
|
parent: {
|
|
34991
34992
|
type: "block_id" | "page_id";
|
|
34992
34993
|
block_id?: string | undefined;
|
|
@@ -34994,7 +34995,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34994
34995
|
} & {
|
|
34995
34996
|
[k: string]: unknown;
|
|
34996
34997
|
};
|
|
34997
|
-
id: string;
|
|
34998
34998
|
created_time: string;
|
|
34999
34999
|
last_edited_time: string;
|
|
35000
35000
|
created_by: {
|
|
@@ -35041,6 +35041,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35041
35041
|
error: string;
|
|
35042
35042
|
comment?: {
|
|
35043
35043
|
object: "comment";
|
|
35044
|
+
id: string;
|
|
35044
35045
|
parent: {
|
|
35045
35046
|
type: "block_id" | "page_id";
|
|
35046
35047
|
block_id?: string | undefined;
|
|
@@ -35048,7 +35049,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35048
35049
|
} & {
|
|
35049
35050
|
[k: string]: unknown;
|
|
35050
35051
|
};
|
|
35051
|
-
id: string;
|
|
35052
35052
|
created_time: string;
|
|
35053
35053
|
last_edited_time: string;
|
|
35054
35054
|
created_by: {
|
|
@@ -35095,6 +35095,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35095
35095
|
error: string;
|
|
35096
35096
|
comment?: {
|
|
35097
35097
|
object: "comment";
|
|
35098
|
+
id: string;
|
|
35098
35099
|
parent: {
|
|
35099
35100
|
type: "block_id" | "page_id";
|
|
35100
35101
|
block_id?: string | undefined;
|
|
@@ -35102,7 +35103,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35102
35103
|
} & {
|
|
35103
35104
|
[k: string]: unknown;
|
|
35104
35105
|
};
|
|
35105
|
-
id: string;
|
|
35106
35106
|
created_time: string;
|
|
35107
35107
|
last_edited_time: string;
|
|
35108
35108
|
created_by: {
|
|
@@ -35328,8 +35328,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35328
35328
|
operation: "search";
|
|
35329
35329
|
success: boolean;
|
|
35330
35330
|
error: string;
|
|
35331
|
-
next_cursor?: string | null | undefined;
|
|
35332
|
-
has_more?: boolean | undefined;
|
|
35333
35331
|
results?: z.objectOutputType<{
|
|
35334
35332
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
35335
35333
|
id: z.ZodString;
|
|
@@ -35348,12 +35346,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35348
35346
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
35349
35347
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
35350
35348
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
35349
|
+
next_cursor?: string | null | undefined;
|
|
35350
|
+
has_more?: boolean | undefined;
|
|
35351
35351
|
}, {
|
|
35352
35352
|
operation: "search";
|
|
35353
35353
|
success: boolean;
|
|
35354
35354
|
error: string;
|
|
35355
|
-
next_cursor?: string | null | undefined;
|
|
35356
|
-
has_more?: boolean | undefined;
|
|
35357
35355
|
results?: z.objectInputType<{
|
|
35358
35356
|
object: z.ZodEnum<["page", "data_source"]>;
|
|
35359
35357
|
id: z.ZodString;
|
|
@@ -35372,6 +35370,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35372
35370
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
35373
35371
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
35374
35372
|
}, 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 ";
|