@bubblelab/bubble-core 0.1.75 → 0.1.76
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 +92 -92
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +222 -222
- package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +22 -22
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +29 -29
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +88 -88
- package/dist/bubbles/service-bubble/followupboss.d.ts +232 -232
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +60 -60
- package/dist/bubbles/service-bubble/gmail.d.ts +74 -74
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +94 -94
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
- package/dist/bubbles/service-bubble/notion/notion.d.ts +208 -208
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +278 -278
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +71 -71
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
- package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
- 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 +40 -40
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +50 -50
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +52 -52
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -192,7 +192,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
192
192
|
}>]>>;
|
|
193
193
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
194
194
|
}, "strip", z.ZodTypeAny, {
|
|
195
|
-
operation: "create_page";
|
|
196
195
|
parent: {
|
|
197
196
|
type: "page_id";
|
|
198
197
|
page_id: string;
|
|
@@ -210,6 +209,7 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
210
209
|
type: "workspace";
|
|
211
210
|
workspace: true;
|
|
212
211
|
};
|
|
212
|
+
operation: "create_page";
|
|
213
213
|
properties?: Record<string, unknown> | undefined;
|
|
214
214
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
215
215
|
icon?: {
|
|
@@ -251,7 +251,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
251
251
|
} | undefined;
|
|
252
252
|
children?: unknown[] | undefined;
|
|
253
253
|
}, {
|
|
254
|
-
operation: "create_page";
|
|
255
254
|
parent: {
|
|
256
255
|
type: "page_id";
|
|
257
256
|
page_id: string;
|
|
@@ -269,6 +268,7 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
269
268
|
type: "workspace";
|
|
270
269
|
workspace: true;
|
|
271
270
|
};
|
|
271
|
+
operation: "create_page";
|
|
272
272
|
properties?: Record<string, unknown> | undefined;
|
|
273
273
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
274
274
|
icon?: {
|
|
@@ -472,6 +472,7 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
472
472
|
page_id: string;
|
|
473
473
|
properties?: Record<string, unknown> | undefined;
|
|
474
474
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
475
|
+
is_locked?: boolean | undefined;
|
|
475
476
|
icon?: {
|
|
476
477
|
type: "file";
|
|
477
478
|
file: {
|
|
@@ -492,7 +493,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
492
493
|
type: "emoji";
|
|
493
494
|
emoji: string;
|
|
494
495
|
} | null | undefined;
|
|
495
|
-
is_locked?: boolean | undefined;
|
|
496
496
|
cover?: {
|
|
497
497
|
type: "file";
|
|
498
498
|
file: {
|
|
@@ -517,6 +517,7 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
517
517
|
page_id: string;
|
|
518
518
|
properties?: Record<string, unknown> | undefined;
|
|
519
519
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
520
|
+
is_locked?: boolean | undefined;
|
|
520
521
|
icon?: {
|
|
521
522
|
type: "file";
|
|
522
523
|
file: {
|
|
@@ -537,7 +538,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
537
538
|
type: "emoji";
|
|
538
539
|
emoji: string;
|
|
539
540
|
} | null | undefined;
|
|
540
|
-
is_locked?: boolean | undefined;
|
|
541
541
|
cover?: {
|
|
542
542
|
type: "file";
|
|
543
543
|
file: {
|
|
@@ -769,12 +769,12 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
769
769
|
}>]>>;
|
|
770
770
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
771
771
|
}, "strip", z.ZodTypeAny, {
|
|
772
|
-
operation: "create_data_source";
|
|
773
772
|
properties: Record<string, unknown>;
|
|
774
773
|
parent: {
|
|
775
774
|
type: "database_id";
|
|
776
775
|
database_id: string;
|
|
777
776
|
};
|
|
777
|
+
operation: "create_data_source";
|
|
778
778
|
title?: {
|
|
779
779
|
type: "text" | "mention" | "equation";
|
|
780
780
|
text?: {
|
|
@@ -816,12 +816,12 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
816
816
|
emoji: string;
|
|
817
817
|
} | undefined;
|
|
818
818
|
}, {
|
|
819
|
-
operation: "create_data_source";
|
|
820
819
|
properties: Record<string, unknown>;
|
|
821
820
|
parent: {
|
|
822
821
|
type: "database_id";
|
|
823
822
|
database_id: string;
|
|
824
823
|
};
|
|
824
|
+
operation: "create_data_source";
|
|
825
825
|
title?: {
|
|
826
826
|
type: "text" | "mention" | "equation";
|
|
827
827
|
text?: {
|
|
@@ -1159,6 +1159,10 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1159
1159
|
href?: string | null | undefined;
|
|
1160
1160
|
}[] | undefined;
|
|
1161
1161
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1162
|
+
parent?: {
|
|
1163
|
+
type: "database_id";
|
|
1164
|
+
database_id: string;
|
|
1165
|
+
} | undefined;
|
|
1162
1166
|
icon?: {
|
|
1163
1167
|
type: "file";
|
|
1164
1168
|
file: {
|
|
@@ -1179,10 +1183,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1179
1183
|
type: "emoji";
|
|
1180
1184
|
emoji: string;
|
|
1181
1185
|
} | null | undefined;
|
|
1182
|
-
parent?: {
|
|
1183
|
-
type: "database_id";
|
|
1184
|
-
database_id: string;
|
|
1185
|
-
} | undefined;
|
|
1186
1186
|
in_trash?: boolean | undefined;
|
|
1187
1187
|
}, {
|
|
1188
1188
|
operation: "update_data_source";
|
|
@@ -1227,6 +1227,10 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1227
1227
|
href?: string | null | undefined;
|
|
1228
1228
|
}[] | undefined;
|
|
1229
1229
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1230
|
+
parent?: {
|
|
1231
|
+
type: "database_id";
|
|
1232
|
+
database_id: string;
|
|
1233
|
+
} | undefined;
|
|
1230
1234
|
icon?: {
|
|
1231
1235
|
type: "file";
|
|
1232
1236
|
file: {
|
|
@@ -1247,10 +1251,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1247
1251
|
type: "emoji";
|
|
1248
1252
|
emoji: string;
|
|
1249
1253
|
} | null | undefined;
|
|
1250
|
-
parent?: {
|
|
1251
|
-
type: "database_id";
|
|
1252
|
-
database_id: string;
|
|
1253
|
-
} | undefined;
|
|
1254
1254
|
in_trash?: boolean | undefined;
|
|
1255
1255
|
}>, z.ZodObject<{
|
|
1256
1256
|
operation: z.ZodLiteral<"create_database">;
|
|
@@ -1597,7 +1597,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1597
1597
|
}>]>>;
|
|
1598
1598
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1599
1599
|
}, "strip", z.ZodTypeAny, {
|
|
1600
|
-
operation: "create_database";
|
|
1601
1600
|
parent: {
|
|
1602
1601
|
type: "workspace";
|
|
1603
1602
|
workspace: boolean;
|
|
@@ -1607,6 +1606,7 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1607
1606
|
page_id: string;
|
|
1608
1607
|
workspace?: undefined;
|
|
1609
1608
|
};
|
|
1609
|
+
operation: "create_database";
|
|
1610
1610
|
initial_data_source: {
|
|
1611
1611
|
properties: Record<string, unknown>;
|
|
1612
1612
|
};
|
|
@@ -1687,12 +1687,12 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1687
1687
|
};
|
|
1688
1688
|
} | undefined;
|
|
1689
1689
|
}, {
|
|
1690
|
-
operation: "create_database";
|
|
1691
1690
|
parent: {
|
|
1692
1691
|
type: "workspace" | "page_id";
|
|
1693
1692
|
workspace?: true | undefined;
|
|
1694
1693
|
page_id?: string | undefined;
|
|
1695
1694
|
};
|
|
1695
|
+
operation: "create_database";
|
|
1696
1696
|
initial_data_source: {
|
|
1697
1697
|
properties: Record<string, unknown>;
|
|
1698
1698
|
};
|
|
@@ -2171,6 +2171,24 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2171
2171
|
href?: string | null | undefined;
|
|
2172
2172
|
}[] | undefined;
|
|
2173
2173
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2174
|
+
parent?: {
|
|
2175
|
+
type: "page_id";
|
|
2176
|
+
page_id: string;
|
|
2177
|
+
} | {
|
|
2178
|
+
type: "database_id";
|
|
2179
|
+
database_id: string;
|
|
2180
|
+
} | {
|
|
2181
|
+
type: "data_source_id";
|
|
2182
|
+
data_source_id: string;
|
|
2183
|
+
database_id?: string | undefined;
|
|
2184
|
+
} | {
|
|
2185
|
+
type: "block_id";
|
|
2186
|
+
block_id: string;
|
|
2187
|
+
} | {
|
|
2188
|
+
type: "workspace";
|
|
2189
|
+
workspace: true;
|
|
2190
|
+
} | undefined;
|
|
2191
|
+
is_locked?: boolean | undefined;
|
|
2174
2192
|
icon?: {
|
|
2175
2193
|
type: "file";
|
|
2176
2194
|
file: {
|
|
@@ -2191,24 +2209,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2191
2209
|
type: "emoji";
|
|
2192
2210
|
emoji: string;
|
|
2193
2211
|
} | null | undefined;
|
|
2194
|
-
parent?: {
|
|
2195
|
-
type: "page_id";
|
|
2196
|
-
page_id: string;
|
|
2197
|
-
} | {
|
|
2198
|
-
type: "database_id";
|
|
2199
|
-
database_id: string;
|
|
2200
|
-
} | {
|
|
2201
|
-
type: "data_source_id";
|
|
2202
|
-
data_source_id: string;
|
|
2203
|
-
database_id?: string | undefined;
|
|
2204
|
-
} | {
|
|
2205
|
-
type: "block_id";
|
|
2206
|
-
block_id: string;
|
|
2207
|
-
} | {
|
|
2208
|
-
type: "workspace";
|
|
2209
|
-
workspace: true;
|
|
2210
|
-
} | undefined;
|
|
2211
|
-
is_locked?: boolean | undefined;
|
|
2212
2212
|
cover?: {
|
|
2213
2213
|
type: "file";
|
|
2214
2214
|
file: {
|
|
@@ -2270,6 +2270,24 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2270
2270
|
href?: string | null | undefined;
|
|
2271
2271
|
}[] | undefined;
|
|
2272
2272
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2273
|
+
parent?: {
|
|
2274
|
+
type: "page_id";
|
|
2275
|
+
page_id: string;
|
|
2276
|
+
} | {
|
|
2277
|
+
type: "database_id";
|
|
2278
|
+
database_id: string;
|
|
2279
|
+
} | {
|
|
2280
|
+
type: "data_source_id";
|
|
2281
|
+
data_source_id: string;
|
|
2282
|
+
database_id?: string | undefined;
|
|
2283
|
+
} | {
|
|
2284
|
+
type: "block_id";
|
|
2285
|
+
block_id: string;
|
|
2286
|
+
} | {
|
|
2287
|
+
type: "workspace";
|
|
2288
|
+
workspace: true;
|
|
2289
|
+
} | undefined;
|
|
2290
|
+
is_locked?: boolean | undefined;
|
|
2273
2291
|
icon?: {
|
|
2274
2292
|
type: "file";
|
|
2275
2293
|
file: {
|
|
@@ -2290,24 +2308,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2290
2308
|
type: "emoji";
|
|
2291
2309
|
emoji: string;
|
|
2292
2310
|
} | null | undefined;
|
|
2293
|
-
parent?: {
|
|
2294
|
-
type: "page_id";
|
|
2295
|
-
page_id: string;
|
|
2296
|
-
} | {
|
|
2297
|
-
type: "database_id";
|
|
2298
|
-
database_id: string;
|
|
2299
|
-
} | {
|
|
2300
|
-
type: "data_source_id";
|
|
2301
|
-
data_source_id: string;
|
|
2302
|
-
database_id?: string | undefined;
|
|
2303
|
-
} | {
|
|
2304
|
-
type: "block_id";
|
|
2305
|
-
block_id: string;
|
|
2306
|
-
} | {
|
|
2307
|
-
type: "workspace";
|
|
2308
|
-
workspace: true;
|
|
2309
|
-
} | undefined;
|
|
2310
|
-
is_locked?: boolean | undefined;
|
|
2311
2311
|
cover?: {
|
|
2312
2312
|
type: "file";
|
|
2313
2313
|
file: {
|
|
@@ -2517,11 +2517,11 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2517
2517
|
}>>;
|
|
2518
2518
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2519
2519
|
}, "strip", z.ZodTypeAny, {
|
|
2520
|
-
operation: "create_comment";
|
|
2521
2520
|
parent: {
|
|
2522
2521
|
block_id?: string | undefined;
|
|
2523
2522
|
page_id?: string | undefined;
|
|
2524
2523
|
};
|
|
2524
|
+
operation: "create_comment";
|
|
2525
2525
|
rich_text: {
|
|
2526
2526
|
type: "text" | "mention" | "equation";
|
|
2527
2527
|
text?: {
|
|
@@ -2553,11 +2553,11 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2553
2553
|
} | undefined;
|
|
2554
2554
|
} | undefined;
|
|
2555
2555
|
}, {
|
|
2556
|
-
operation: "create_comment";
|
|
2557
2556
|
parent: {
|
|
2558
2557
|
block_id?: string | undefined;
|
|
2559
2558
|
page_id?: string | undefined;
|
|
2560
2559
|
};
|
|
2560
|
+
operation: "create_comment";
|
|
2561
2561
|
rich_text: {
|
|
2562
2562
|
type: "text" | "mention" | "equation";
|
|
2563
2563
|
text?: {
|
|
@@ -2622,11 +2622,11 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2622
2622
|
direction: z.ZodEnum<["ascending", "descending"]>;
|
|
2623
2623
|
timestamp: z.ZodLiteral<"last_edited_time">;
|
|
2624
2624
|
}, "strip", z.ZodTypeAny, {
|
|
2625
|
-
direction: "ascending" | "descending";
|
|
2626
2625
|
timestamp: "last_edited_time";
|
|
2627
|
-
}, {
|
|
2628
2626
|
direction: "ascending" | "descending";
|
|
2627
|
+
}, {
|
|
2629
2628
|
timestamp: "last_edited_time";
|
|
2629
|
+
direction: "ascending" | "descending";
|
|
2630
2630
|
}>>;
|
|
2631
2631
|
filter: z.ZodOptional<z.ZodObject<{
|
|
2632
2632
|
value: z.ZodEnum<["page", "data_source"]>;
|
|
@@ -2645,8 +2645,8 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2645
2645
|
operation: "search";
|
|
2646
2646
|
page_size: number;
|
|
2647
2647
|
sort?: {
|
|
2648
|
-
direction: "ascending" | "descending";
|
|
2649
2648
|
timestamp: "last_edited_time";
|
|
2649
|
+
direction: "ascending" | "descending";
|
|
2650
2650
|
} | undefined;
|
|
2651
2651
|
filter?: {
|
|
2652
2652
|
value: "page" | "data_source";
|
|
@@ -2658,8 +2658,8 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
2658
2658
|
}, {
|
|
2659
2659
|
operation: "search";
|
|
2660
2660
|
sort?: {
|
|
2661
|
-
direction: "ascending" | "descending";
|
|
2662
2661
|
timestamp: "last_edited_time";
|
|
2662
|
+
direction: "ascending" | "descending";
|
|
2663
2663
|
} | undefined;
|
|
2664
2664
|
filter?: {
|
|
2665
2665
|
value: "page" | "data_source";
|
|
@@ -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";
|
|
3183
3182
|
error: string;
|
|
3184
3183
|
success: boolean;
|
|
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";
|
|
3281
3280
|
error: string;
|
|
3282
3281
|
success: boolean;
|
|
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";
|
|
3887
3886
|
error: string;
|
|
3888
3887
|
success: boolean;
|
|
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";
|
|
3985
3984
|
error: string;
|
|
3986
3985
|
success: boolean;
|
|
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";
|
|
4591
4590
|
error: string;
|
|
4592
4591
|
success: boolean;
|
|
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";
|
|
4689
4688
|
error: string;
|
|
4690
4689
|
success: boolean;
|
|
4690
|
+
operation: "update_page";
|
|
4691
4691
|
page?: {
|
|
4692
4692
|
object: "page";
|
|
4693
4693
|
properties: Record<string, unknown>;
|
|
@@ -5414,6 +5414,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5414
5414
|
href?: string | null | undefined;
|
|
5415
5415
|
}[] | undefined;
|
|
5416
5416
|
url?: string | undefined;
|
|
5417
|
+
is_locked?: boolean | undefined;
|
|
5417
5418
|
icon?: {
|
|
5418
5419
|
type: "emoji";
|
|
5419
5420
|
emoji: string;
|
|
@@ -5429,7 +5430,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5429
5430
|
expiry_time: string;
|
|
5430
5431
|
};
|
|
5431
5432
|
} | null | undefined;
|
|
5432
|
-
is_locked?: boolean | undefined;
|
|
5433
5433
|
cover?: {
|
|
5434
5434
|
type: "file";
|
|
5435
5435
|
file: {
|
|
@@ -5547,6 +5547,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5547
5547
|
href?: string | null | undefined;
|
|
5548
5548
|
}[] | undefined;
|
|
5549
5549
|
url?: string | undefined;
|
|
5550
|
+
is_locked?: boolean | undefined;
|
|
5550
5551
|
icon?: {
|
|
5551
5552
|
type: "emoji";
|
|
5552
5553
|
emoji: string;
|
|
@@ -5562,7 +5563,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5562
5563
|
expiry_time: string;
|
|
5563
5564
|
};
|
|
5564
5565
|
} | null | undefined;
|
|
5565
|
-
is_locked?: boolean | undefined;
|
|
5566
5566
|
cover?: {
|
|
5567
5567
|
type: "file";
|
|
5568
5568
|
file: {
|
|
@@ -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";
|
|
5589
5588
|
error: string;
|
|
5590
5589
|
success: boolean;
|
|
5590
|
+
operation: "retrieve_database";
|
|
5591
5591
|
database?: {
|
|
5592
5592
|
object: "database";
|
|
5593
5593
|
title: {
|
|
@@ -5685,6 +5685,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5685
5685
|
href?: string | null | undefined;
|
|
5686
5686
|
}[] | undefined;
|
|
5687
5687
|
url?: string | undefined;
|
|
5688
|
+
is_locked?: boolean | undefined;
|
|
5688
5689
|
icon?: {
|
|
5689
5690
|
type: "emoji";
|
|
5690
5691
|
emoji: string;
|
|
@@ -5700,7 +5701,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5700
5701
|
expiry_time: string;
|
|
5701
5702
|
};
|
|
5702
5703
|
} | null | undefined;
|
|
5703
|
-
is_locked?: boolean | undefined;
|
|
5704
5704
|
cover?: {
|
|
5705
5705
|
type: "file";
|
|
5706
5706
|
file: {
|
|
@@ -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";
|
|
5727
5726
|
error: string;
|
|
5728
5727
|
success: boolean;
|
|
5728
|
+
operation: "retrieve_database";
|
|
5729
5729
|
database?: {
|
|
5730
5730
|
object: "database";
|
|
5731
5731
|
title: {
|
|
@@ -5823,6 +5823,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5823
5823
|
href?: string | null | undefined;
|
|
5824
5824
|
}[] | undefined;
|
|
5825
5825
|
url?: string | undefined;
|
|
5826
|
+
is_locked?: boolean | undefined;
|
|
5826
5827
|
icon?: {
|
|
5827
5828
|
type: "emoji";
|
|
5828
5829
|
emoji: string;
|
|
@@ -5838,7 +5839,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5838
5839
|
expiry_time: string;
|
|
5839
5840
|
};
|
|
5840
5841
|
} | null | undefined;
|
|
5841
|
-
is_locked?: boolean | undefined;
|
|
5842
5842
|
cover?: {
|
|
5843
5843
|
type: "file";
|
|
5844
5844
|
file: {
|
|
@@ -5919,9 +5919,9 @@ 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";
|
|
5923
5922
|
error: string;
|
|
5924
5923
|
success: boolean;
|
|
5924
|
+
operation: "query_data_source";
|
|
5925
5925
|
next_cursor?: string | null | undefined;
|
|
5926
5926
|
has_more?: boolean | undefined;
|
|
5927
5927
|
results?: z.objectOutputType<{
|
|
@@ -5943,9 +5943,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
5943
5943
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
5944
5944
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5945
5945
|
}, {
|
|
5946
|
-
operation: "query_data_source";
|
|
5947
5946
|
error: string;
|
|
5948
5947
|
success: boolean;
|
|
5948
|
+
operation: "query_data_source";
|
|
5949
5949
|
next_cursor?: string | null | undefined;
|
|
5950
5950
|
has_more?: boolean | undefined;
|
|
5951
5951
|
results?: z.objectInputType<{
|
|
@@ -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";
|
|
7314
7313
|
error: string;
|
|
7315
7314
|
success: boolean;
|
|
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";
|
|
7765
7764
|
error: string;
|
|
7766
7765
|
success: boolean;
|
|
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";
|
|
9559
9558
|
error: string;
|
|
9560
9559
|
success: boolean;
|
|
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";
|
|
10010
10009
|
error: string;
|
|
10011
10010
|
success: boolean;
|
|
10011
|
+
operation: "update_data_source";
|
|
10012
10012
|
dataSource?: z.objectInputType<{
|
|
10013
10013
|
object: z.ZodLiteral<"data_source">;
|
|
10014
10014
|
id: z.ZodString;
|
|
@@ -11088,6 +11088,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11088
11088
|
href?: string | null | undefined;
|
|
11089
11089
|
}[] | undefined;
|
|
11090
11090
|
url?: string | undefined;
|
|
11091
|
+
is_locked?: boolean | undefined;
|
|
11091
11092
|
icon?: {
|
|
11092
11093
|
type: "emoji";
|
|
11093
11094
|
emoji: string;
|
|
@@ -11103,7 +11104,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11103
11104
|
expiry_time: string;
|
|
11104
11105
|
};
|
|
11105
11106
|
} | null | undefined;
|
|
11106
|
-
is_locked?: boolean | undefined;
|
|
11107
11107
|
cover?: {
|
|
11108
11108
|
type: "file";
|
|
11109
11109
|
file: {
|
|
@@ -11221,6 +11221,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11221
11221
|
href?: string | null | undefined;
|
|
11222
11222
|
}[] | undefined;
|
|
11223
11223
|
url?: string | undefined;
|
|
11224
|
+
is_locked?: boolean | undefined;
|
|
11224
11225
|
icon?: {
|
|
11225
11226
|
type: "emoji";
|
|
11226
11227
|
emoji: string;
|
|
@@ -11236,7 +11237,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11236
11237
|
expiry_time: string;
|
|
11237
11238
|
};
|
|
11238
11239
|
} | null | undefined;
|
|
11239
|
-
is_locked?: boolean | undefined;
|
|
11240
11240
|
cover?: {
|
|
11241
11241
|
type: "file";
|
|
11242
11242
|
file: {
|
|
@@ -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";
|
|
11263
11262
|
error: string;
|
|
11264
11263
|
success: boolean;
|
|
11264
|
+
operation: "create_database";
|
|
11265
11265
|
database?: {
|
|
11266
11266
|
object: "database";
|
|
11267
11267
|
title: {
|
|
@@ -11359,6 +11359,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11359
11359
|
href?: string | null | undefined;
|
|
11360
11360
|
}[] | undefined;
|
|
11361
11361
|
url?: string | undefined;
|
|
11362
|
+
is_locked?: boolean | undefined;
|
|
11362
11363
|
icon?: {
|
|
11363
11364
|
type: "emoji";
|
|
11364
11365
|
emoji: string;
|
|
@@ -11374,7 +11375,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11374
11375
|
expiry_time: string;
|
|
11375
11376
|
};
|
|
11376
11377
|
} | null | undefined;
|
|
11377
|
-
is_locked?: boolean | undefined;
|
|
11378
11378
|
cover?: {
|
|
11379
11379
|
type: "file";
|
|
11380
11380
|
file: {
|
|
@@ -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";
|
|
11401
11400
|
error: string;
|
|
11402
11401
|
success: boolean;
|
|
11402
|
+
operation: "create_database";
|
|
11403
11403
|
database?: {
|
|
11404
11404
|
object: "database";
|
|
11405
11405
|
title: {
|
|
@@ -11497,6 +11497,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11497
11497
|
href?: string | null | undefined;
|
|
11498
11498
|
}[] | undefined;
|
|
11499
11499
|
url?: string | undefined;
|
|
11500
|
+
is_locked?: boolean | undefined;
|
|
11500
11501
|
icon?: {
|
|
11501
11502
|
type: "emoji";
|
|
11502
11503
|
emoji: string;
|
|
@@ -11512,7 +11513,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
11512
11513
|
expiry_time: string;
|
|
11513
11514
|
};
|
|
11514
11515
|
} | null | undefined;
|
|
11515
|
-
is_locked?: boolean | undefined;
|
|
11516
11516
|
cover?: {
|
|
11517
11517
|
type: "file";
|
|
11518
11518
|
file: {
|
|
@@ -12166,6 +12166,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12166
12166
|
href?: string | null | undefined;
|
|
12167
12167
|
}[] | undefined;
|
|
12168
12168
|
url?: string | undefined;
|
|
12169
|
+
is_locked?: boolean | undefined;
|
|
12169
12170
|
icon?: {
|
|
12170
12171
|
type: "emoji";
|
|
12171
12172
|
emoji: string;
|
|
@@ -12181,7 +12182,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12181
12182
|
expiry_time: string;
|
|
12182
12183
|
};
|
|
12183
12184
|
} | null | undefined;
|
|
12184
|
-
is_locked?: boolean | undefined;
|
|
12185
12185
|
cover?: {
|
|
12186
12186
|
type: "file";
|
|
12187
12187
|
file: {
|
|
@@ -12299,6 +12299,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12299
12299
|
href?: string | null | undefined;
|
|
12300
12300
|
}[] | undefined;
|
|
12301
12301
|
url?: string | undefined;
|
|
12302
|
+
is_locked?: boolean | undefined;
|
|
12302
12303
|
icon?: {
|
|
12303
12304
|
type: "emoji";
|
|
12304
12305
|
emoji: string;
|
|
@@ -12314,7 +12315,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12314
12315
|
expiry_time: string;
|
|
12315
12316
|
};
|
|
12316
12317
|
} | null | undefined;
|
|
12317
|
-
is_locked?: boolean | undefined;
|
|
12318
12318
|
cover?: {
|
|
12319
12319
|
type: "file";
|
|
12320
12320
|
file: {
|
|
@@ -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";
|
|
12341
12340
|
error: string;
|
|
12342
12341
|
success: boolean;
|
|
12342
|
+
operation: "update_database";
|
|
12343
12343
|
database?: {
|
|
12344
12344
|
object: "database";
|
|
12345
12345
|
title: {
|
|
@@ -12437,6 +12437,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12437
12437
|
href?: string | null | undefined;
|
|
12438
12438
|
}[] | undefined;
|
|
12439
12439
|
url?: string | undefined;
|
|
12440
|
+
is_locked?: boolean | undefined;
|
|
12440
12441
|
icon?: {
|
|
12441
12442
|
type: "emoji";
|
|
12442
12443
|
emoji: string;
|
|
@@ -12452,7 +12453,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12452
12453
|
expiry_time: string;
|
|
12453
12454
|
};
|
|
12454
12455
|
} | null | undefined;
|
|
12455
|
-
is_locked?: boolean | undefined;
|
|
12456
12456
|
cover?: {
|
|
12457
12457
|
type: "file";
|
|
12458
12458
|
file: {
|
|
@@ -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";
|
|
12479
12478
|
error: string;
|
|
12480
12479
|
success: boolean;
|
|
12480
|
+
operation: "update_database";
|
|
12481
12481
|
database?: {
|
|
12482
12482
|
object: "database";
|
|
12483
12483
|
title: {
|
|
@@ -12575,6 +12575,7 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12575
12575
|
href?: string | null | undefined;
|
|
12576
12576
|
}[] | undefined;
|
|
12577
12577
|
url?: string | undefined;
|
|
12578
|
+
is_locked?: boolean | undefined;
|
|
12578
12579
|
icon?: {
|
|
12579
12580
|
type: "emoji";
|
|
12580
12581
|
emoji: string;
|
|
@@ -12590,7 +12591,6 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
12590
12591
|
expiry_time: string;
|
|
12591
12592
|
};
|
|
12592
12593
|
} | null | undefined;
|
|
12593
|
-
is_locked?: boolean | undefined;
|
|
12594
12594
|
cover?: {
|
|
12595
12595
|
type: "file";
|
|
12596
12596
|
file: {
|
|
@@ -13220,9 +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";
|
|
13224
13223
|
error: string;
|
|
13225
13224
|
success: boolean;
|
|
13225
|
+
operation: "append_block_children";
|
|
13226
13226
|
blocks?: z.objectOutputType<{
|
|
13227
13227
|
object: z.ZodLiteral<"block">;
|
|
13228
13228
|
id: z.ZodString;
|
|
@@ -13427,9 +13427,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
13427
13427
|
next_cursor?: string | null | undefined;
|
|
13428
13428
|
has_more?: boolean | undefined;
|
|
13429
13429
|
}, {
|
|
13430
|
-
operation: "append_block_children";
|
|
13431
13430
|
error: string;
|
|
13432
13431
|
success: boolean;
|
|
13432
|
+
operation: "append_block_children";
|
|
13433
13433
|
blocks?: z.objectInputType<{
|
|
13434
13434
|
object: z.ZodLiteral<"block">;
|
|
13435
13435
|
id: z.ZodString;
|
|
@@ -14241,9 +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";
|
|
14245
14244
|
error: string;
|
|
14246
14245
|
success: boolean;
|
|
14246
|
+
operation: "retrieve_block_children";
|
|
14247
14247
|
blocks?: z.objectOutputType<{
|
|
14248
14248
|
object: z.ZodLiteral<"block">;
|
|
14249
14249
|
id: z.ZodString;
|
|
@@ -14448,9 +14448,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
14448
14448
|
next_cursor?: string | null | undefined;
|
|
14449
14449
|
has_more?: boolean | undefined;
|
|
14450
14450
|
}, {
|
|
14451
|
-
operation: "retrieve_block_children";
|
|
14452
14451
|
error: string;
|
|
14453
14452
|
success: boolean;
|
|
14453
|
+
operation: "retrieve_block_children";
|
|
14454
14454
|
blocks?: z.objectInputType<{
|
|
14455
14455
|
object: z.ZodLiteral<"block">;
|
|
14456
14456
|
id: z.ZodString;
|
|
@@ -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";
|
|
15264
15263
|
error: string;
|
|
15265
15264
|
success: boolean;
|
|
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";
|
|
15469
15468
|
error: string;
|
|
15470
15469
|
success: boolean;
|
|
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";
|
|
16279
16278
|
error: string;
|
|
16280
16279
|
success: boolean;
|
|
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";
|
|
16484
16483
|
error: string;
|
|
16485
16484
|
success: boolean;
|
|
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";
|
|
16965
16964
|
error: string;
|
|
16966
16965
|
success: boolean;
|
|
16966
|
+
operation: "create_comment";
|
|
16967
16967
|
comment?: {
|
|
16968
16968
|
object: "comment";
|
|
16969
16969
|
id: string;
|
|
@@ -17015,9 +17015,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17015
17015
|
}[];
|
|
17016
17016
|
} | undefined;
|
|
17017
17017
|
}, {
|
|
17018
|
-
operation: "create_comment";
|
|
17019
17018
|
error: string;
|
|
17020
17019
|
success: boolean;
|
|
17020
|
+
operation: "create_comment";
|
|
17021
17021
|
comment?: {
|
|
17022
17022
|
object: "comment";
|
|
17023
17023
|
id: string;
|
|
@@ -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";
|
|
17349
17348
|
error: string;
|
|
17350
17349
|
success: boolean;
|
|
17350
|
+
operation: "retrieve_comment";
|
|
17351
17351
|
comment?: {
|
|
17352
17352
|
object: "comment";
|
|
17353
17353
|
id: string;
|
|
@@ -17399,9 +17399,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17399
17399
|
}[];
|
|
17400
17400
|
} | undefined;
|
|
17401
17401
|
}, {
|
|
17402
|
-
operation: "retrieve_comment";
|
|
17403
17402
|
error: string;
|
|
17404
17403
|
success: boolean;
|
|
17404
|
+
operation: "retrieve_comment";
|
|
17405
17405
|
comment?: {
|
|
17406
17406
|
object: "comment";
|
|
17407
17407
|
id: string;
|
|
@@ -17530,9 +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";
|
|
17534
17533
|
error: string;
|
|
17535
17534
|
success: boolean;
|
|
17535
|
+
operation: "list_users";
|
|
17536
17536
|
users?: {
|
|
17537
17537
|
object: "user";
|
|
17538
17538
|
id: string;
|
|
@@ -17553,9 +17553,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17553
17553
|
next_cursor?: string | null | undefined;
|
|
17554
17554
|
has_more?: boolean | undefined;
|
|
17555
17555
|
}, {
|
|
17556
|
-
operation: "list_users";
|
|
17557
17556
|
error: string;
|
|
17558
17557
|
success: boolean;
|
|
17558
|
+
operation: "list_users";
|
|
17559
17559
|
users?: {
|
|
17560
17560
|
object: "user";
|
|
17561
17561
|
id: string;
|
|
@@ -17634,9 +17634,9 @@ 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";
|
|
17638
17637
|
error: string;
|
|
17639
17638
|
success: boolean;
|
|
17639
|
+
operation: "search";
|
|
17640
17640
|
next_cursor?: string | null | undefined;
|
|
17641
17641
|
has_more?: boolean | undefined;
|
|
17642
17642
|
results?: z.objectOutputType<{
|
|
@@ -17658,9 +17658,9 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
17658
17658
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
17659
17659
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
17660
17660
|
}, {
|
|
17661
|
-
operation: "search";
|
|
17662
17661
|
error: string;
|
|
17663
17662
|
success: boolean;
|
|
17663
|
+
operation: "search";
|
|
17664
17664
|
next_cursor?: string | null | undefined;
|
|
17665
17665
|
has_more?: boolean | undefined;
|
|
17666
17666
|
results?: z.objectInputType<{
|
|
@@ -17883,7 +17883,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
17883
17883
|
}>]>>;
|
|
17884
17884
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
17885
17885
|
}, "strip", z.ZodTypeAny, {
|
|
17886
|
-
operation: "create_page";
|
|
17887
17886
|
parent: {
|
|
17888
17887
|
type: "page_id";
|
|
17889
17888
|
page_id: string;
|
|
@@ -17901,6 +17900,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
17901
17900
|
type: "workspace";
|
|
17902
17901
|
workspace: true;
|
|
17903
17902
|
};
|
|
17903
|
+
operation: "create_page";
|
|
17904
17904
|
properties?: Record<string, unknown> | undefined;
|
|
17905
17905
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
17906
17906
|
icon?: {
|
|
@@ -17942,7 +17942,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
17942
17942
|
} | undefined;
|
|
17943
17943
|
children?: unknown[] | undefined;
|
|
17944
17944
|
}, {
|
|
17945
|
-
operation: "create_page";
|
|
17946
17945
|
parent: {
|
|
17947
17946
|
type: "page_id";
|
|
17948
17947
|
page_id: string;
|
|
@@ -17960,6 +17959,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
17960
17959
|
type: "workspace";
|
|
17961
17960
|
workspace: true;
|
|
17962
17961
|
};
|
|
17962
|
+
operation: "create_page";
|
|
17963
17963
|
properties?: Record<string, unknown> | undefined;
|
|
17964
17964
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
17965
17965
|
icon?: {
|
|
@@ -18163,6 +18163,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18163
18163
|
page_id: string;
|
|
18164
18164
|
properties?: Record<string, unknown> | undefined;
|
|
18165
18165
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18166
|
+
is_locked?: boolean | undefined;
|
|
18166
18167
|
icon?: {
|
|
18167
18168
|
type: "file";
|
|
18168
18169
|
file: {
|
|
@@ -18183,7 +18184,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18183
18184
|
type: "emoji";
|
|
18184
18185
|
emoji: string;
|
|
18185
18186
|
} | null | undefined;
|
|
18186
|
-
is_locked?: boolean | undefined;
|
|
18187
18187
|
cover?: {
|
|
18188
18188
|
type: "file";
|
|
18189
18189
|
file: {
|
|
@@ -18208,6 +18208,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18208
18208
|
page_id: string;
|
|
18209
18209
|
properties?: Record<string, unknown> | undefined;
|
|
18210
18210
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18211
|
+
is_locked?: boolean | undefined;
|
|
18211
18212
|
icon?: {
|
|
18212
18213
|
type: "file";
|
|
18213
18214
|
file: {
|
|
@@ -18228,7 +18229,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18228
18229
|
type: "emoji";
|
|
18229
18230
|
emoji: string;
|
|
18230
18231
|
} | null | undefined;
|
|
18231
|
-
is_locked?: boolean | undefined;
|
|
18232
18232
|
cover?: {
|
|
18233
18233
|
type: "file";
|
|
18234
18234
|
file: {
|
|
@@ -18460,12 +18460,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18460
18460
|
}>]>>;
|
|
18461
18461
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
18462
18462
|
}, "strip", z.ZodTypeAny, {
|
|
18463
|
-
operation: "create_data_source";
|
|
18464
18463
|
properties: Record<string, unknown>;
|
|
18465
18464
|
parent: {
|
|
18466
18465
|
type: "database_id";
|
|
18467
18466
|
database_id: string;
|
|
18468
18467
|
};
|
|
18468
|
+
operation: "create_data_source";
|
|
18469
18469
|
title?: {
|
|
18470
18470
|
type: "text" | "mention" | "equation";
|
|
18471
18471
|
text?: {
|
|
@@ -18507,12 +18507,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18507
18507
|
emoji: string;
|
|
18508
18508
|
} | undefined;
|
|
18509
18509
|
}, {
|
|
18510
|
-
operation: "create_data_source";
|
|
18511
18510
|
properties: Record<string, unknown>;
|
|
18512
18511
|
parent: {
|
|
18513
18512
|
type: "database_id";
|
|
18514
18513
|
database_id: string;
|
|
18515
18514
|
};
|
|
18515
|
+
operation: "create_data_source";
|
|
18516
18516
|
title?: {
|
|
18517
18517
|
type: "text" | "mention" | "equation";
|
|
18518
18518
|
text?: {
|
|
@@ -18850,6 +18850,10 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18850
18850
|
href?: string | null | undefined;
|
|
18851
18851
|
}[] | undefined;
|
|
18852
18852
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18853
|
+
parent?: {
|
|
18854
|
+
type: "database_id";
|
|
18855
|
+
database_id: string;
|
|
18856
|
+
} | undefined;
|
|
18853
18857
|
icon?: {
|
|
18854
18858
|
type: "file";
|
|
18855
18859
|
file: {
|
|
@@ -18870,10 +18874,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18870
18874
|
type: "emoji";
|
|
18871
18875
|
emoji: string;
|
|
18872
18876
|
} | null | undefined;
|
|
18873
|
-
parent?: {
|
|
18874
|
-
type: "database_id";
|
|
18875
|
-
database_id: string;
|
|
18876
|
-
} | undefined;
|
|
18877
18877
|
in_trash?: boolean | undefined;
|
|
18878
18878
|
}, {
|
|
18879
18879
|
operation: "update_data_source";
|
|
@@ -18918,6 +18918,10 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18918
18918
|
href?: string | null | undefined;
|
|
18919
18919
|
}[] | undefined;
|
|
18920
18920
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18921
|
+
parent?: {
|
|
18922
|
+
type: "database_id";
|
|
18923
|
+
database_id: string;
|
|
18924
|
+
} | undefined;
|
|
18921
18925
|
icon?: {
|
|
18922
18926
|
type: "file";
|
|
18923
18927
|
file: {
|
|
@@ -18938,10 +18942,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
18938
18942
|
type: "emoji";
|
|
18939
18943
|
emoji: string;
|
|
18940
18944
|
} | null | undefined;
|
|
18941
|
-
parent?: {
|
|
18942
|
-
type: "database_id";
|
|
18943
|
-
database_id: string;
|
|
18944
|
-
} | undefined;
|
|
18945
18945
|
in_trash?: boolean | undefined;
|
|
18946
18946
|
}>, z.ZodObject<{
|
|
18947
18947
|
operation: z.ZodLiteral<"create_database">;
|
|
@@ -19288,7 +19288,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
19288
19288
|
}>]>>;
|
|
19289
19289
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
19290
19290
|
}, "strip", z.ZodTypeAny, {
|
|
19291
|
-
operation: "create_database";
|
|
19292
19291
|
parent: {
|
|
19293
19292
|
type: "workspace";
|
|
19294
19293
|
workspace: boolean;
|
|
@@ -19298,6 +19297,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
19298
19297
|
page_id: string;
|
|
19299
19298
|
workspace?: undefined;
|
|
19300
19299
|
};
|
|
19300
|
+
operation: "create_database";
|
|
19301
19301
|
initial_data_source: {
|
|
19302
19302
|
properties: Record<string, unknown>;
|
|
19303
19303
|
};
|
|
@@ -19378,12 +19378,12 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
19378
19378
|
};
|
|
19379
19379
|
} | undefined;
|
|
19380
19380
|
}, {
|
|
19381
|
-
operation: "create_database";
|
|
19382
19381
|
parent: {
|
|
19383
19382
|
type: "workspace" | "page_id";
|
|
19384
19383
|
workspace?: true | undefined;
|
|
19385
19384
|
page_id?: string | undefined;
|
|
19386
19385
|
};
|
|
19386
|
+
operation: "create_database";
|
|
19387
19387
|
initial_data_source: {
|
|
19388
19388
|
properties: Record<string, unknown>;
|
|
19389
19389
|
};
|
|
@@ -19862,6 +19862,24 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
19862
19862
|
href?: string | null | undefined;
|
|
19863
19863
|
}[] | undefined;
|
|
19864
19864
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19865
|
+
parent?: {
|
|
19866
|
+
type: "page_id";
|
|
19867
|
+
page_id: string;
|
|
19868
|
+
} | {
|
|
19869
|
+
type: "database_id";
|
|
19870
|
+
database_id: string;
|
|
19871
|
+
} | {
|
|
19872
|
+
type: "data_source_id";
|
|
19873
|
+
data_source_id: string;
|
|
19874
|
+
database_id?: string | undefined;
|
|
19875
|
+
} | {
|
|
19876
|
+
type: "block_id";
|
|
19877
|
+
block_id: string;
|
|
19878
|
+
} | {
|
|
19879
|
+
type: "workspace";
|
|
19880
|
+
workspace: true;
|
|
19881
|
+
} | undefined;
|
|
19882
|
+
is_locked?: boolean | undefined;
|
|
19865
19883
|
icon?: {
|
|
19866
19884
|
type: "file";
|
|
19867
19885
|
file: {
|
|
@@ -19882,24 +19900,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
19882
19900
|
type: "emoji";
|
|
19883
19901
|
emoji: string;
|
|
19884
19902
|
} | null | undefined;
|
|
19885
|
-
parent?: {
|
|
19886
|
-
type: "page_id";
|
|
19887
|
-
page_id: string;
|
|
19888
|
-
} | {
|
|
19889
|
-
type: "database_id";
|
|
19890
|
-
database_id: string;
|
|
19891
|
-
} | {
|
|
19892
|
-
type: "data_source_id";
|
|
19893
|
-
data_source_id: string;
|
|
19894
|
-
database_id?: string | undefined;
|
|
19895
|
-
} | {
|
|
19896
|
-
type: "block_id";
|
|
19897
|
-
block_id: string;
|
|
19898
|
-
} | {
|
|
19899
|
-
type: "workspace";
|
|
19900
|
-
workspace: true;
|
|
19901
|
-
} | undefined;
|
|
19902
|
-
is_locked?: boolean | undefined;
|
|
19903
19903
|
cover?: {
|
|
19904
19904
|
type: "file";
|
|
19905
19905
|
file: {
|
|
@@ -19961,6 +19961,24 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
19961
19961
|
href?: string | null | undefined;
|
|
19962
19962
|
}[] | undefined;
|
|
19963
19963
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19964
|
+
parent?: {
|
|
19965
|
+
type: "page_id";
|
|
19966
|
+
page_id: string;
|
|
19967
|
+
} | {
|
|
19968
|
+
type: "database_id";
|
|
19969
|
+
database_id: string;
|
|
19970
|
+
} | {
|
|
19971
|
+
type: "data_source_id";
|
|
19972
|
+
data_source_id: string;
|
|
19973
|
+
database_id?: string | undefined;
|
|
19974
|
+
} | {
|
|
19975
|
+
type: "block_id";
|
|
19976
|
+
block_id: string;
|
|
19977
|
+
} | {
|
|
19978
|
+
type: "workspace";
|
|
19979
|
+
workspace: true;
|
|
19980
|
+
} | undefined;
|
|
19981
|
+
is_locked?: boolean | undefined;
|
|
19964
19982
|
icon?: {
|
|
19965
19983
|
type: "file";
|
|
19966
19984
|
file: {
|
|
@@ -19981,24 +19999,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
19981
19999
|
type: "emoji";
|
|
19982
20000
|
emoji: string;
|
|
19983
20001
|
} | null | undefined;
|
|
19984
|
-
parent?: {
|
|
19985
|
-
type: "page_id";
|
|
19986
|
-
page_id: string;
|
|
19987
|
-
} | {
|
|
19988
|
-
type: "database_id";
|
|
19989
|
-
database_id: string;
|
|
19990
|
-
} | {
|
|
19991
|
-
type: "data_source_id";
|
|
19992
|
-
data_source_id: string;
|
|
19993
|
-
database_id?: string | undefined;
|
|
19994
|
-
} | {
|
|
19995
|
-
type: "block_id";
|
|
19996
|
-
block_id: string;
|
|
19997
|
-
} | {
|
|
19998
|
-
type: "workspace";
|
|
19999
|
-
workspace: true;
|
|
20000
|
-
} | undefined;
|
|
20001
|
-
is_locked?: boolean | undefined;
|
|
20002
20002
|
cover?: {
|
|
20003
20003
|
type: "file";
|
|
20004
20004
|
file: {
|
|
@@ -20208,11 +20208,11 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20208
20208
|
}>>;
|
|
20209
20209
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
20210
20210
|
}, "strip", z.ZodTypeAny, {
|
|
20211
|
-
operation: "create_comment";
|
|
20212
20211
|
parent: {
|
|
20213
20212
|
block_id?: string | undefined;
|
|
20214
20213
|
page_id?: string | undefined;
|
|
20215
20214
|
};
|
|
20215
|
+
operation: "create_comment";
|
|
20216
20216
|
rich_text: {
|
|
20217
20217
|
type: "text" | "mention" | "equation";
|
|
20218
20218
|
text?: {
|
|
@@ -20244,11 +20244,11 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20244
20244
|
} | undefined;
|
|
20245
20245
|
} | undefined;
|
|
20246
20246
|
}, {
|
|
20247
|
-
operation: "create_comment";
|
|
20248
20247
|
parent: {
|
|
20249
20248
|
block_id?: string | undefined;
|
|
20250
20249
|
page_id?: string | undefined;
|
|
20251
20250
|
};
|
|
20251
|
+
operation: "create_comment";
|
|
20252
20252
|
rich_text: {
|
|
20253
20253
|
type: "text" | "mention" | "equation";
|
|
20254
20254
|
text?: {
|
|
@@ -20313,11 +20313,11 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20313
20313
|
direction: z.ZodEnum<["ascending", "descending"]>;
|
|
20314
20314
|
timestamp: z.ZodLiteral<"last_edited_time">;
|
|
20315
20315
|
}, "strip", z.ZodTypeAny, {
|
|
20316
|
-
direction: "ascending" | "descending";
|
|
20317
20316
|
timestamp: "last_edited_time";
|
|
20318
|
-
}, {
|
|
20319
20317
|
direction: "ascending" | "descending";
|
|
20318
|
+
}, {
|
|
20320
20319
|
timestamp: "last_edited_time";
|
|
20320
|
+
direction: "ascending" | "descending";
|
|
20321
20321
|
}>>;
|
|
20322
20322
|
filter: z.ZodOptional<z.ZodObject<{
|
|
20323
20323
|
value: z.ZodEnum<["page", "data_source"]>;
|
|
@@ -20336,8 +20336,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20336
20336
|
operation: "search";
|
|
20337
20337
|
page_size: number;
|
|
20338
20338
|
sort?: {
|
|
20339
|
-
direction: "ascending" | "descending";
|
|
20340
20339
|
timestamp: "last_edited_time";
|
|
20340
|
+
direction: "ascending" | "descending";
|
|
20341
20341
|
} | undefined;
|
|
20342
20342
|
filter?: {
|
|
20343
20343
|
value: "page" | "data_source";
|
|
@@ -20349,8 +20349,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
20349
20349
|
}, {
|
|
20350
20350
|
operation: "search";
|
|
20351
20351
|
sort?: {
|
|
20352
|
-
direction: "ascending" | "descending";
|
|
20353
20352
|
timestamp: "last_edited_time";
|
|
20353
|
+
direction: "ascending" | "descending";
|
|
20354
20354
|
} | undefined;
|
|
20355
20355
|
filter?: {
|
|
20356
20356
|
value: "page" | "data_source";
|
|
@@ -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";
|
|
20874
20873
|
error: string;
|
|
20875
20874
|
success: boolean;
|
|
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";
|
|
20972
20971
|
error: string;
|
|
20973
20972
|
success: boolean;
|
|
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";
|
|
21578
21577
|
error: string;
|
|
21579
21578
|
success: boolean;
|
|
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";
|
|
21676
21675
|
error: string;
|
|
21677
21676
|
success: boolean;
|
|
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";
|
|
22282
22281
|
error: string;
|
|
22283
22282
|
success: boolean;
|
|
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";
|
|
22380
22379
|
error: string;
|
|
22381
22380
|
success: boolean;
|
|
22381
|
+
operation: "update_page";
|
|
22382
22382
|
page?: {
|
|
22383
22383
|
object: "page";
|
|
22384
22384
|
properties: Record<string, unknown>;
|
|
@@ -23105,6 +23105,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23105
23105
|
href?: string | null | undefined;
|
|
23106
23106
|
}[] | undefined;
|
|
23107
23107
|
url?: string | undefined;
|
|
23108
|
+
is_locked?: boolean | undefined;
|
|
23108
23109
|
icon?: {
|
|
23109
23110
|
type: "emoji";
|
|
23110
23111
|
emoji: string;
|
|
@@ -23120,7 +23121,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23120
23121
|
expiry_time: string;
|
|
23121
23122
|
};
|
|
23122
23123
|
} | null | undefined;
|
|
23123
|
-
is_locked?: boolean | undefined;
|
|
23124
23124
|
cover?: {
|
|
23125
23125
|
type: "file";
|
|
23126
23126
|
file: {
|
|
@@ -23238,6 +23238,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23238
23238
|
href?: string | null | undefined;
|
|
23239
23239
|
}[] | undefined;
|
|
23240
23240
|
url?: string | undefined;
|
|
23241
|
+
is_locked?: boolean | undefined;
|
|
23241
23242
|
icon?: {
|
|
23242
23243
|
type: "emoji";
|
|
23243
23244
|
emoji: string;
|
|
@@ -23253,7 +23254,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23253
23254
|
expiry_time: string;
|
|
23254
23255
|
};
|
|
23255
23256
|
} | null | undefined;
|
|
23256
|
-
is_locked?: boolean | undefined;
|
|
23257
23257
|
cover?: {
|
|
23258
23258
|
type: "file";
|
|
23259
23259
|
file: {
|
|
@@ -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";
|
|
23280
23279
|
error: string;
|
|
23281
23280
|
success: boolean;
|
|
23281
|
+
operation: "retrieve_database";
|
|
23282
23282
|
database?: {
|
|
23283
23283
|
object: "database";
|
|
23284
23284
|
title: {
|
|
@@ -23376,6 +23376,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23376
23376
|
href?: string | null | undefined;
|
|
23377
23377
|
}[] | undefined;
|
|
23378
23378
|
url?: string | undefined;
|
|
23379
|
+
is_locked?: boolean | undefined;
|
|
23379
23380
|
icon?: {
|
|
23380
23381
|
type: "emoji";
|
|
23381
23382
|
emoji: string;
|
|
@@ -23391,7 +23392,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23391
23392
|
expiry_time: string;
|
|
23392
23393
|
};
|
|
23393
23394
|
} | null | undefined;
|
|
23394
|
-
is_locked?: boolean | undefined;
|
|
23395
23395
|
cover?: {
|
|
23396
23396
|
type: "file";
|
|
23397
23397
|
file: {
|
|
@@ -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";
|
|
23418
23417
|
error: string;
|
|
23419
23418
|
success: boolean;
|
|
23419
|
+
operation: "retrieve_database";
|
|
23420
23420
|
database?: {
|
|
23421
23421
|
object: "database";
|
|
23422
23422
|
title: {
|
|
@@ -23514,6 +23514,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23514
23514
|
href?: string | null | undefined;
|
|
23515
23515
|
}[] | undefined;
|
|
23516
23516
|
url?: string | undefined;
|
|
23517
|
+
is_locked?: boolean | undefined;
|
|
23517
23518
|
icon?: {
|
|
23518
23519
|
type: "emoji";
|
|
23519
23520
|
emoji: string;
|
|
@@ -23529,7 +23530,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23529
23530
|
expiry_time: string;
|
|
23530
23531
|
};
|
|
23531
23532
|
} | null | undefined;
|
|
23532
|
-
is_locked?: boolean | undefined;
|
|
23533
23533
|
cover?: {
|
|
23534
23534
|
type: "file";
|
|
23535
23535
|
file: {
|
|
@@ -23610,9 +23610,9 @@ 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";
|
|
23614
23613
|
error: string;
|
|
23615
23614
|
success: boolean;
|
|
23615
|
+
operation: "query_data_source";
|
|
23616
23616
|
next_cursor?: string | null | undefined;
|
|
23617
23617
|
has_more?: boolean | undefined;
|
|
23618
23618
|
results?: z.objectOutputType<{
|
|
@@ -23634,9 +23634,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23634
23634
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
23635
23635
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
23636
23636
|
}, {
|
|
23637
|
-
operation: "query_data_source";
|
|
23638
23637
|
error: string;
|
|
23639
23638
|
success: boolean;
|
|
23639
|
+
operation: "query_data_source";
|
|
23640
23640
|
next_cursor?: string | null | undefined;
|
|
23641
23641
|
has_more?: boolean | undefined;
|
|
23642
23642
|
results?: z.objectInputType<{
|
|
@@ -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";
|
|
25005
25004
|
error: string;
|
|
25006
25005
|
success: boolean;
|
|
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";
|
|
25456
25455
|
error: string;
|
|
25457
25456
|
success: boolean;
|
|
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";
|
|
27250
27249
|
error: string;
|
|
27251
27250
|
success: boolean;
|
|
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";
|
|
27701
27700
|
error: string;
|
|
27702
27701
|
success: boolean;
|
|
27702
|
+
operation: "update_data_source";
|
|
27703
27703
|
dataSource?: z.objectInputType<{
|
|
27704
27704
|
object: z.ZodLiteral<"data_source">;
|
|
27705
27705
|
id: z.ZodString;
|
|
@@ -28779,6 +28779,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28779
28779
|
href?: string | null | undefined;
|
|
28780
28780
|
}[] | undefined;
|
|
28781
28781
|
url?: string | undefined;
|
|
28782
|
+
is_locked?: boolean | undefined;
|
|
28782
28783
|
icon?: {
|
|
28783
28784
|
type: "emoji";
|
|
28784
28785
|
emoji: string;
|
|
@@ -28794,7 +28795,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28794
28795
|
expiry_time: string;
|
|
28795
28796
|
};
|
|
28796
28797
|
} | null | undefined;
|
|
28797
|
-
is_locked?: boolean | undefined;
|
|
28798
28798
|
cover?: {
|
|
28799
28799
|
type: "file";
|
|
28800
28800
|
file: {
|
|
@@ -28912,6 +28912,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28912
28912
|
href?: string | null | undefined;
|
|
28913
28913
|
}[] | undefined;
|
|
28914
28914
|
url?: string | undefined;
|
|
28915
|
+
is_locked?: boolean | undefined;
|
|
28915
28916
|
icon?: {
|
|
28916
28917
|
type: "emoji";
|
|
28917
28918
|
emoji: string;
|
|
@@ -28927,7 +28928,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
28927
28928
|
expiry_time: string;
|
|
28928
28929
|
};
|
|
28929
28930
|
} | null | undefined;
|
|
28930
|
-
is_locked?: boolean | undefined;
|
|
28931
28931
|
cover?: {
|
|
28932
28932
|
type: "file";
|
|
28933
28933
|
file: {
|
|
@@ -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";
|
|
28954
28953
|
error: string;
|
|
28955
28954
|
success: boolean;
|
|
28955
|
+
operation: "create_database";
|
|
28956
28956
|
database?: {
|
|
28957
28957
|
object: "database";
|
|
28958
28958
|
title: {
|
|
@@ -29050,6 +29050,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29050
29050
|
href?: string | null | undefined;
|
|
29051
29051
|
}[] | undefined;
|
|
29052
29052
|
url?: string | undefined;
|
|
29053
|
+
is_locked?: boolean | undefined;
|
|
29053
29054
|
icon?: {
|
|
29054
29055
|
type: "emoji";
|
|
29055
29056
|
emoji: string;
|
|
@@ -29065,7 +29066,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29065
29066
|
expiry_time: string;
|
|
29066
29067
|
};
|
|
29067
29068
|
} | null | undefined;
|
|
29068
|
-
is_locked?: boolean | undefined;
|
|
29069
29069
|
cover?: {
|
|
29070
29070
|
type: "file";
|
|
29071
29071
|
file: {
|
|
@@ -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";
|
|
29092
29091
|
error: string;
|
|
29093
29092
|
success: boolean;
|
|
29093
|
+
operation: "create_database";
|
|
29094
29094
|
database?: {
|
|
29095
29095
|
object: "database";
|
|
29096
29096
|
title: {
|
|
@@ -29188,6 +29188,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29188
29188
|
href?: string | null | undefined;
|
|
29189
29189
|
}[] | undefined;
|
|
29190
29190
|
url?: string | undefined;
|
|
29191
|
+
is_locked?: boolean | undefined;
|
|
29191
29192
|
icon?: {
|
|
29192
29193
|
type: "emoji";
|
|
29193
29194
|
emoji: string;
|
|
@@ -29203,7 +29204,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29203
29204
|
expiry_time: string;
|
|
29204
29205
|
};
|
|
29205
29206
|
} | null | undefined;
|
|
29206
|
-
is_locked?: boolean | undefined;
|
|
29207
29207
|
cover?: {
|
|
29208
29208
|
type: "file";
|
|
29209
29209
|
file: {
|
|
@@ -29857,6 +29857,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29857
29857
|
href?: string | null | undefined;
|
|
29858
29858
|
}[] | undefined;
|
|
29859
29859
|
url?: string | undefined;
|
|
29860
|
+
is_locked?: boolean | undefined;
|
|
29860
29861
|
icon?: {
|
|
29861
29862
|
type: "emoji";
|
|
29862
29863
|
emoji: string;
|
|
@@ -29872,7 +29873,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29872
29873
|
expiry_time: string;
|
|
29873
29874
|
};
|
|
29874
29875
|
} | null | undefined;
|
|
29875
|
-
is_locked?: boolean | undefined;
|
|
29876
29876
|
cover?: {
|
|
29877
29877
|
type: "file";
|
|
29878
29878
|
file: {
|
|
@@ -29990,6 +29990,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
29990
29990
|
href?: string | null | undefined;
|
|
29991
29991
|
}[] | undefined;
|
|
29992
29992
|
url?: string | undefined;
|
|
29993
|
+
is_locked?: boolean | undefined;
|
|
29993
29994
|
icon?: {
|
|
29994
29995
|
type: "emoji";
|
|
29995
29996
|
emoji: string;
|
|
@@ -30005,7 +30006,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30005
30006
|
expiry_time: string;
|
|
30006
30007
|
};
|
|
30007
30008
|
} | null | undefined;
|
|
30008
|
-
is_locked?: boolean | undefined;
|
|
30009
30009
|
cover?: {
|
|
30010
30010
|
type: "file";
|
|
30011
30011
|
file: {
|
|
@@ -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";
|
|
30032
30031
|
error: string;
|
|
30033
30032
|
success: boolean;
|
|
30033
|
+
operation: "update_database";
|
|
30034
30034
|
database?: {
|
|
30035
30035
|
object: "database";
|
|
30036
30036
|
title: {
|
|
@@ -30128,6 +30128,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30128
30128
|
href?: string | null | undefined;
|
|
30129
30129
|
}[] | undefined;
|
|
30130
30130
|
url?: string | undefined;
|
|
30131
|
+
is_locked?: boolean | undefined;
|
|
30131
30132
|
icon?: {
|
|
30132
30133
|
type: "emoji";
|
|
30133
30134
|
emoji: string;
|
|
@@ -30143,7 +30144,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30143
30144
|
expiry_time: string;
|
|
30144
30145
|
};
|
|
30145
30146
|
} | null | undefined;
|
|
30146
|
-
is_locked?: boolean | undefined;
|
|
30147
30147
|
cover?: {
|
|
30148
30148
|
type: "file";
|
|
30149
30149
|
file: {
|
|
@@ -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";
|
|
30170
30169
|
error: string;
|
|
30171
30170
|
success: boolean;
|
|
30171
|
+
operation: "update_database";
|
|
30172
30172
|
database?: {
|
|
30173
30173
|
object: "database";
|
|
30174
30174
|
title: {
|
|
@@ -30266,6 +30266,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30266
30266
|
href?: string | null | undefined;
|
|
30267
30267
|
}[] | undefined;
|
|
30268
30268
|
url?: string | undefined;
|
|
30269
|
+
is_locked?: boolean | undefined;
|
|
30269
30270
|
icon?: {
|
|
30270
30271
|
type: "emoji";
|
|
30271
30272
|
emoji: string;
|
|
@@ -30281,7 +30282,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
30281
30282
|
expiry_time: string;
|
|
30282
30283
|
};
|
|
30283
30284
|
} | null | undefined;
|
|
30284
|
-
is_locked?: boolean | undefined;
|
|
30285
30285
|
cover?: {
|
|
30286
30286
|
type: "file";
|
|
30287
30287
|
file: {
|
|
@@ -30911,9 +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";
|
|
30915
30914
|
error: string;
|
|
30916
30915
|
success: boolean;
|
|
30916
|
+
operation: "append_block_children";
|
|
30917
30917
|
blocks?: z.objectOutputType<{
|
|
30918
30918
|
object: z.ZodLiteral<"block">;
|
|
30919
30919
|
id: z.ZodString;
|
|
@@ -31118,9 +31118,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
31118
31118
|
next_cursor?: string | null | undefined;
|
|
31119
31119
|
has_more?: boolean | undefined;
|
|
31120
31120
|
}, {
|
|
31121
|
-
operation: "append_block_children";
|
|
31122
31121
|
error: string;
|
|
31123
31122
|
success: boolean;
|
|
31123
|
+
operation: "append_block_children";
|
|
31124
31124
|
blocks?: z.objectInputType<{
|
|
31125
31125
|
object: z.ZodLiteral<"block">;
|
|
31126
31126
|
id: z.ZodString;
|
|
@@ -31932,9 +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";
|
|
31936
31935
|
error: string;
|
|
31937
31936
|
success: boolean;
|
|
31937
|
+
operation: "retrieve_block_children";
|
|
31938
31938
|
blocks?: z.objectOutputType<{
|
|
31939
31939
|
object: z.ZodLiteral<"block">;
|
|
31940
31940
|
id: z.ZodString;
|
|
@@ -32139,9 +32139,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
32139
32139
|
next_cursor?: string | null | undefined;
|
|
32140
32140
|
has_more?: boolean | undefined;
|
|
32141
32141
|
}, {
|
|
32142
|
-
operation: "retrieve_block_children";
|
|
32143
32142
|
error: string;
|
|
32144
32143
|
success: boolean;
|
|
32144
|
+
operation: "retrieve_block_children";
|
|
32145
32145
|
blocks?: z.objectInputType<{
|
|
32146
32146
|
object: z.ZodLiteral<"block">;
|
|
32147
32147
|
id: z.ZodString;
|
|
@@ -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";
|
|
32955
32954
|
error: string;
|
|
32956
32955
|
success: boolean;
|
|
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";
|
|
33160
33159
|
error: string;
|
|
33161
33160
|
success: boolean;
|
|
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";
|
|
33970
33969
|
error: string;
|
|
33971
33970
|
success: boolean;
|
|
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";
|
|
34175
34174
|
error: string;
|
|
34176
34175
|
success: boolean;
|
|
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";
|
|
34656
34655
|
error: string;
|
|
34657
34656
|
success: boolean;
|
|
34657
|
+
operation: "create_comment";
|
|
34658
34658
|
comment?: {
|
|
34659
34659
|
object: "comment";
|
|
34660
34660
|
id: string;
|
|
@@ -34706,9 +34706,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
34706
34706
|
}[];
|
|
34707
34707
|
} | undefined;
|
|
34708
34708
|
}, {
|
|
34709
|
-
operation: "create_comment";
|
|
34710
34709
|
error: string;
|
|
34711
34710
|
success: boolean;
|
|
34711
|
+
operation: "create_comment";
|
|
34712
34712
|
comment?: {
|
|
34713
34713
|
object: "comment";
|
|
34714
34714
|
id: string;
|
|
@@ -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";
|
|
35040
35039
|
error: string;
|
|
35041
35040
|
success: boolean;
|
|
35041
|
+
operation: "retrieve_comment";
|
|
35042
35042
|
comment?: {
|
|
35043
35043
|
object: "comment";
|
|
35044
35044
|
id: string;
|
|
@@ -35090,9 +35090,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35090
35090
|
}[];
|
|
35091
35091
|
} | undefined;
|
|
35092
35092
|
}, {
|
|
35093
|
-
operation: "retrieve_comment";
|
|
35094
35093
|
error: string;
|
|
35095
35094
|
success: boolean;
|
|
35095
|
+
operation: "retrieve_comment";
|
|
35096
35096
|
comment?: {
|
|
35097
35097
|
object: "comment";
|
|
35098
35098
|
id: string;
|
|
@@ -35221,9 +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";
|
|
35225
35224
|
error: string;
|
|
35226
35225
|
success: boolean;
|
|
35226
|
+
operation: "list_users";
|
|
35227
35227
|
users?: {
|
|
35228
35228
|
object: "user";
|
|
35229
35229
|
id: string;
|
|
@@ -35244,9 +35244,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35244
35244
|
next_cursor?: string | null | undefined;
|
|
35245
35245
|
has_more?: boolean | undefined;
|
|
35246
35246
|
}, {
|
|
35247
|
-
operation: "list_users";
|
|
35248
35247
|
error: string;
|
|
35249
35248
|
success: boolean;
|
|
35249
|
+
operation: "list_users";
|
|
35250
35250
|
users?: {
|
|
35251
35251
|
object: "user";
|
|
35252
35252
|
id: string;
|
|
@@ -35325,9 +35325,9 @@ 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";
|
|
35329
35328
|
error: string;
|
|
35330
35329
|
success: boolean;
|
|
35330
|
+
operation: "search";
|
|
35331
35331
|
next_cursor?: string | null | undefined;
|
|
35332
35332
|
has_more?: boolean | undefined;
|
|
35333
35333
|
results?: z.objectOutputType<{
|
|
@@ -35349,9 +35349,9 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
35349
35349
|
in_trash: z.ZodOptional<z.ZodBoolean>;
|
|
35350
35350
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
35351
35351
|
}, {
|
|
35352
|
-
operation: "search";
|
|
35353
35352
|
error: string;
|
|
35354
35353
|
success: boolean;
|
|
35354
|
+
operation: "search";
|
|
35355
35355
|
next_cursor?: string | null | undefined;
|
|
35356
35356
|
has_more?: boolean | undefined;
|
|
35357
35357
|
results?: z.objectInputType<{
|