@bubblelab/bubble-core 0.1.238 → 0.1.239
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 +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +82 -82
- package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +114 -114
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +162 -162
- package/dist/bubbles/service-bubble/assembled/assembled.d.ts +4 -4
- package/dist/bubbles/service-bubble/attio/attio.d.ts +2 -2
- package/dist/bubbles/service-bubble/attio/attio.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +5 -5
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +7 -7
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +82 -82
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +102 -102
- package/dist/bubbles/service-bubble/firecrawl.d.ts +270 -270
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +12 -12
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/http.d.ts +10 -10
- package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +8 -8
- package/dist/bubbles/service-bubble/hubspot/hubspot.schema.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +28 -28
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +9 -9
- package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +13 -13
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.schema.d.ts +6 -6
- package/dist/bubbles/service-bubble/slab/slab.d.ts +16 -16
- package/dist/bubbles/service-bubble/slab/slab.schema.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +140 -140
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +34 -34
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +40 -40
- package/dist/bubbles/service-bubble/xero/xero.d.ts +2 -2
- package/dist/bubbles/service-bubble/xero/xero.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +22 -22
- package/dist/bubbles/service-bubble/zendesk/zendesk.schema.d.ts +22 -22
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/app-rankings-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +316 -316
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
- 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/yc-scraper-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +18 -18
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -11,18 +11,18 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
11
11
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
+
parameters: unknown[];
|
|
14
15
|
timeout: number;
|
|
15
16
|
query: string;
|
|
16
17
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
17
|
-
parameters: unknown[];
|
|
18
18
|
maxRows: number;
|
|
19
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
query: string;
|
|
22
|
+
parameters?: unknown[] | undefined;
|
|
22
23
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
23
24
|
timeout?: number | undefined;
|
|
24
25
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
25
|
-
parameters?: unknown[] | undefined;
|
|
26
26
|
maxRows?: number | undefined;
|
|
27
27
|
}>;
|
|
28
28
|
type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
|
|
@@ -36,20 +36,20 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
|
|
|
36
36
|
error: z.ZodString;
|
|
37
37
|
cleanedJSONString: z.ZodString;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
executionTime: number;
|
|
39
40
|
error: string;
|
|
40
41
|
success: boolean;
|
|
41
42
|
rows: Record<string, unknown>[];
|
|
42
43
|
rowCount: number | null;
|
|
43
44
|
command: string;
|
|
44
|
-
executionTime: number;
|
|
45
45
|
cleanedJSONString: string;
|
|
46
46
|
}, {
|
|
47
|
+
executionTime: number;
|
|
47
48
|
error: string;
|
|
48
49
|
success: boolean;
|
|
49
50
|
rows: Record<string, unknown>[];
|
|
50
51
|
rowCount: number | null;
|
|
51
52
|
command: string;
|
|
52
|
-
executionTime: number;
|
|
53
53
|
cleanedJSONString: string;
|
|
54
54
|
}>;
|
|
55
55
|
type InsForgeDbResult = z.output<typeof InsForgeDbResultSchema>;
|
|
@@ -85,18 +85,18 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
85
85
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
86
86
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
+
parameters: unknown[];
|
|
88
89
|
timeout: number;
|
|
89
90
|
query: string;
|
|
90
91
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
91
|
-
parameters: unknown[];
|
|
92
92
|
maxRows: number;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
query: string;
|
|
96
|
+
parameters?: unknown[] | undefined;
|
|
96
97
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
97
98
|
timeout?: number | undefined;
|
|
98
99
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
99
|
-
parameters?: unknown[] | undefined;
|
|
100
100
|
maxRows?: number | undefined;
|
|
101
101
|
}>;
|
|
102
102
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -108,20 +108,20 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
108
108
|
error: z.ZodString;
|
|
109
109
|
cleanedJSONString: z.ZodString;
|
|
110
110
|
}, "strip", z.ZodTypeAny, {
|
|
111
|
+
executionTime: number;
|
|
111
112
|
error: string;
|
|
112
113
|
success: boolean;
|
|
113
114
|
rows: Record<string, unknown>[];
|
|
114
115
|
rowCount: number | null;
|
|
115
116
|
command: string;
|
|
116
|
-
executionTime: number;
|
|
117
117
|
cleanedJSONString: string;
|
|
118
118
|
}, {
|
|
119
|
+
executionTime: number;
|
|
119
120
|
error: string;
|
|
120
121
|
success: boolean;
|
|
121
122
|
rows: Record<string, unknown>[];
|
|
122
123
|
rowCount: number | null;
|
|
123
124
|
command: string;
|
|
124
|
-
executionTime: number;
|
|
125
125
|
cleanedJSONString: string;
|
|
126
126
|
}>;
|
|
127
127
|
static readonly shortDescription = "InsForge is the backend built for AI-assisted development. Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds.";
|
|
@@ -129,12 +129,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
129
129
|
remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
130
130
|
set: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
131
131
|
}, "strip", import("zod").ZodTypeAny, {
|
|
132
|
-
set?: string[] | undefined;
|
|
133
132
|
remove?: string[] | undefined;
|
|
133
|
+
set?: string[] | undefined;
|
|
134
134
|
add?: string[] | undefined;
|
|
135
135
|
}, {
|
|
136
|
-
set?: string[] | undefined;
|
|
137
136
|
remove?: string[] | undefined;
|
|
137
|
+
set?: string[] | undefined;
|
|
138
138
|
add?: string[] | undefined;
|
|
139
139
|
}>>;
|
|
140
140
|
due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -148,8 +148,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
148
148
|
priority?: string | undefined;
|
|
149
149
|
summary?: string | undefined;
|
|
150
150
|
labels?: {
|
|
151
|
-
set?: string[] | undefined;
|
|
152
151
|
remove?: string[] | undefined;
|
|
152
|
+
set?: string[] | undefined;
|
|
153
153
|
add?: string[] | undefined;
|
|
154
154
|
} | undefined;
|
|
155
155
|
comment?: string | undefined;
|
|
@@ -163,8 +163,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
163
163
|
priority?: string | undefined;
|
|
164
164
|
summary?: string | undefined;
|
|
165
165
|
labels?: {
|
|
166
|
-
set?: string[] | undefined;
|
|
167
166
|
remove?: string[] | undefined;
|
|
167
|
+
set?: string[] | undefined;
|
|
168
168
|
add?: string[] | undefined;
|
|
169
169
|
} | undefined;
|
|
170
170
|
comment?: string | undefined;
|
|
@@ -2302,12 +2302,12 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2302
2302
|
remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2303
2303
|
set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2304
2304
|
}, "strip", z.ZodTypeAny, {
|
|
2305
|
-
set?: string[] | undefined;
|
|
2306
2305
|
remove?: string[] | undefined;
|
|
2306
|
+
set?: string[] | undefined;
|
|
2307
2307
|
add?: string[] | undefined;
|
|
2308
2308
|
}, {
|
|
2309
|
-
set?: string[] | undefined;
|
|
2310
2309
|
remove?: string[] | undefined;
|
|
2310
|
+
set?: string[] | undefined;
|
|
2311
2311
|
add?: string[] | undefined;
|
|
2312
2312
|
}>>;
|
|
2313
2313
|
due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2321,8 +2321,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2321
2321
|
priority?: string | undefined;
|
|
2322
2322
|
summary?: string | undefined;
|
|
2323
2323
|
labels?: {
|
|
2324
|
-
set?: string[] | undefined;
|
|
2325
2324
|
remove?: string[] | undefined;
|
|
2325
|
+
set?: string[] | undefined;
|
|
2326
2326
|
add?: string[] | undefined;
|
|
2327
2327
|
} | undefined;
|
|
2328
2328
|
comment?: string | undefined;
|
|
@@ -2336,8 +2336,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2336
2336
|
priority?: string | undefined;
|
|
2337
2337
|
summary?: string | undefined;
|
|
2338
2338
|
labels?: {
|
|
2339
|
-
set?: string[] | undefined;
|
|
2340
2339
|
remove?: string[] | undefined;
|
|
2340
|
+
set?: string[] | undefined;
|
|
2341
2341
|
add?: string[] | undefined;
|
|
2342
2342
|
} | undefined;
|
|
2343
2343
|
comment?: string | undefined;
|
|
@@ -1134,6 +1134,7 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1134
1134
|
}, "strip", z.ZodTypeAny, {
|
|
1135
1135
|
operation: "update_data_source";
|
|
1136
1136
|
data_source_id: string;
|
|
1137
|
+
properties?: Record<string, unknown> | undefined;
|
|
1137
1138
|
description?: {
|
|
1138
1139
|
type: "text" | "mention" | "equation";
|
|
1139
1140
|
text?: {
|
|
@@ -1153,7 +1154,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1153
1154
|
} | undefined;
|
|
1154
1155
|
href?: string | null | undefined;
|
|
1155
1156
|
}[] | undefined;
|
|
1156
|
-
properties?: Record<string, unknown> | undefined;
|
|
1157
1157
|
title?: {
|
|
1158
1158
|
type: "text" | "mention" | "equation";
|
|
1159
1159
|
text?: {
|
|
@@ -1202,6 +1202,7 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1202
1202
|
}, {
|
|
1203
1203
|
operation: "update_data_source";
|
|
1204
1204
|
data_source_id: string;
|
|
1205
|
+
properties?: Record<string, unknown> | undefined;
|
|
1205
1206
|
description?: {
|
|
1206
1207
|
type: "text" | "mention" | "equation";
|
|
1207
1208
|
text?: {
|
|
@@ -1221,7 +1222,6 @@ declare const NotionParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1221
1222
|
} | undefined;
|
|
1222
1223
|
href?: string | null | undefined;
|
|
1223
1224
|
}[] | undefined;
|
|
1224
|
-
properties?: Record<string, unknown> | undefined;
|
|
1225
1225
|
title?: {
|
|
1226
1226
|
type: "text" | "mention" | "equation";
|
|
1227
1227
|
text?: {
|
|
@@ -3009,8 +3009,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3009
3009
|
}, "strip", z.ZodTypeAny, {
|
|
3010
3010
|
object: "page";
|
|
3011
3011
|
properties: Record<string, unknown>;
|
|
3012
|
-
url: string;
|
|
3013
3012
|
id: string;
|
|
3013
|
+
url: string;
|
|
3014
3014
|
parent: {
|
|
3015
3015
|
type: "page_id";
|
|
3016
3016
|
page_id: string;
|
|
@@ -3102,8 +3102,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3102
3102
|
}, {
|
|
3103
3103
|
object: "page";
|
|
3104
3104
|
properties: Record<string, unknown>;
|
|
3105
|
-
url: string;
|
|
3106
3105
|
id: string;
|
|
3106
|
+
url: string;
|
|
3107
3107
|
parent: {
|
|
3108
3108
|
type: "page_id";
|
|
3109
3109
|
page_id: string;
|
|
@@ -3200,8 +3200,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3200
3200
|
page?: {
|
|
3201
3201
|
object: "page";
|
|
3202
3202
|
properties: Record<string, unknown>;
|
|
3203
|
-
url: string;
|
|
3204
3203
|
id: string;
|
|
3204
|
+
url: string;
|
|
3205
3205
|
parent: {
|
|
3206
3206
|
type: "page_id";
|
|
3207
3207
|
page_id: string;
|
|
@@ -3298,8 +3298,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3298
3298
|
page?: {
|
|
3299
3299
|
object: "page";
|
|
3300
3300
|
properties: Record<string, unknown>;
|
|
3301
|
-
url: string;
|
|
3302
3301
|
id: string;
|
|
3302
|
+
url: string;
|
|
3303
3303
|
parent: {
|
|
3304
3304
|
type: "page_id";
|
|
3305
3305
|
page_id: string;
|
|
@@ -3713,8 +3713,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3713
3713
|
}, "strip", z.ZodTypeAny, {
|
|
3714
3714
|
object: "page";
|
|
3715
3715
|
properties: Record<string, unknown>;
|
|
3716
|
-
url: string;
|
|
3717
3716
|
id: string;
|
|
3717
|
+
url: string;
|
|
3718
3718
|
parent: {
|
|
3719
3719
|
type: "page_id";
|
|
3720
3720
|
page_id: string;
|
|
@@ -3806,8 +3806,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3806
3806
|
}, {
|
|
3807
3807
|
object: "page";
|
|
3808
3808
|
properties: Record<string, unknown>;
|
|
3809
|
-
url: string;
|
|
3810
3809
|
id: string;
|
|
3810
|
+
url: string;
|
|
3811
3811
|
parent: {
|
|
3812
3812
|
type: "page_id";
|
|
3813
3813
|
page_id: string;
|
|
@@ -3904,8 +3904,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
3904
3904
|
page?: {
|
|
3905
3905
|
object: "page";
|
|
3906
3906
|
properties: Record<string, unknown>;
|
|
3907
|
-
url: string;
|
|
3908
3907
|
id: string;
|
|
3908
|
+
url: string;
|
|
3909
3909
|
parent: {
|
|
3910
3910
|
type: "page_id";
|
|
3911
3911
|
page_id: string;
|
|
@@ -4002,8 +4002,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4002
4002
|
page?: {
|
|
4003
4003
|
object: "page";
|
|
4004
4004
|
properties: Record<string, unknown>;
|
|
4005
|
-
url: string;
|
|
4006
4005
|
id: string;
|
|
4006
|
+
url: string;
|
|
4007
4007
|
parent: {
|
|
4008
4008
|
type: "page_id";
|
|
4009
4009
|
page_id: string;
|
|
@@ -4417,8 +4417,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4417
4417
|
}, "strip", z.ZodTypeAny, {
|
|
4418
4418
|
object: "page";
|
|
4419
4419
|
properties: Record<string, unknown>;
|
|
4420
|
-
url: string;
|
|
4421
4420
|
id: string;
|
|
4421
|
+
url: string;
|
|
4422
4422
|
parent: {
|
|
4423
4423
|
type: "page_id";
|
|
4424
4424
|
page_id: string;
|
|
@@ -4510,8 +4510,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4510
4510
|
}, {
|
|
4511
4511
|
object: "page";
|
|
4512
4512
|
properties: Record<string, unknown>;
|
|
4513
|
-
url: string;
|
|
4514
4513
|
id: string;
|
|
4514
|
+
url: string;
|
|
4515
4515
|
parent: {
|
|
4516
4516
|
type: "page_id";
|
|
4517
4517
|
page_id: string;
|
|
@@ -4608,8 +4608,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4608
4608
|
page?: {
|
|
4609
4609
|
object: "page";
|
|
4610
4610
|
properties: Record<string, unknown>;
|
|
4611
|
-
url: string;
|
|
4612
4611
|
id: string;
|
|
4612
|
+
url: string;
|
|
4613
4613
|
parent: {
|
|
4614
4614
|
type: "page_id";
|
|
4615
4615
|
page_id: string;
|
|
@@ -4706,8 +4706,8 @@ declare const NotionResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
4706
4706
|
page?: {
|
|
4707
4707
|
object: "page";
|
|
4708
4708
|
properties: Record<string, unknown>;
|
|
4709
|
-
url: string;
|
|
4710
4709
|
id: string;
|
|
4710
|
+
url: string;
|
|
4711
4711
|
parent: {
|
|
4712
4712
|
type: "page_id";
|
|
4713
4713
|
page_id: string;
|
|
@@ -21085,6 +21085,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21085
21085
|
}, "strip", z.ZodTypeAny, {
|
|
21086
21086
|
operation: "update_data_source";
|
|
21087
21087
|
data_source_id: string;
|
|
21088
|
+
properties?: Record<string, unknown> | undefined;
|
|
21088
21089
|
description?: {
|
|
21089
21090
|
type: "text" | "mention" | "equation";
|
|
21090
21091
|
text?: {
|
|
@@ -21104,7 +21105,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21104
21105
|
} | undefined;
|
|
21105
21106
|
href?: string | null | undefined;
|
|
21106
21107
|
}[] | undefined;
|
|
21107
|
-
properties?: Record<string, unknown> | undefined;
|
|
21108
21108
|
title?: {
|
|
21109
21109
|
type: "text" | "mention" | "equation";
|
|
21110
21110
|
text?: {
|
|
@@ -21153,6 +21153,7 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21153
21153
|
}, {
|
|
21154
21154
|
operation: "update_data_source";
|
|
21155
21155
|
data_source_id: string;
|
|
21156
|
+
properties?: Record<string, unknown> | undefined;
|
|
21156
21157
|
description?: {
|
|
21157
21158
|
type: "text" | "mention" | "equation";
|
|
21158
21159
|
text?: {
|
|
@@ -21172,7 +21173,6 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
21172
21173
|
} | undefined;
|
|
21173
21174
|
href?: string | null | undefined;
|
|
21174
21175
|
}[] | undefined;
|
|
21175
|
-
properties?: Record<string, unknown> | undefined;
|
|
21176
21176
|
title?: {
|
|
21177
21177
|
type: "text" | "mention" | "equation";
|
|
21178
21178
|
text?: {
|
|
@@ -22960,8 +22960,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
22960
22960
|
}, "strip", z.ZodTypeAny, {
|
|
22961
22961
|
object: "page";
|
|
22962
22962
|
properties: Record<string, unknown>;
|
|
22963
|
-
url: string;
|
|
22964
22963
|
id: string;
|
|
22964
|
+
url: string;
|
|
22965
22965
|
parent: {
|
|
22966
22966
|
type: "page_id";
|
|
22967
22967
|
page_id: string;
|
|
@@ -23053,8 +23053,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23053
23053
|
}, {
|
|
23054
23054
|
object: "page";
|
|
23055
23055
|
properties: Record<string, unknown>;
|
|
23056
|
-
url: string;
|
|
23057
23056
|
id: string;
|
|
23057
|
+
url: string;
|
|
23058
23058
|
parent: {
|
|
23059
23059
|
type: "page_id";
|
|
23060
23060
|
page_id: string;
|
|
@@ -23151,8 +23151,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23151
23151
|
page?: {
|
|
23152
23152
|
object: "page";
|
|
23153
23153
|
properties: Record<string, unknown>;
|
|
23154
|
-
url: string;
|
|
23155
23154
|
id: string;
|
|
23155
|
+
url: string;
|
|
23156
23156
|
parent: {
|
|
23157
23157
|
type: "page_id";
|
|
23158
23158
|
page_id: string;
|
|
@@ -23249,8 +23249,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23249
23249
|
page?: {
|
|
23250
23250
|
object: "page";
|
|
23251
23251
|
properties: Record<string, unknown>;
|
|
23252
|
-
url: string;
|
|
23253
23252
|
id: string;
|
|
23253
|
+
url: string;
|
|
23254
23254
|
parent: {
|
|
23255
23255
|
type: "page_id";
|
|
23256
23256
|
page_id: string;
|
|
@@ -23664,8 +23664,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23664
23664
|
}, "strip", z.ZodTypeAny, {
|
|
23665
23665
|
object: "page";
|
|
23666
23666
|
properties: Record<string, unknown>;
|
|
23667
|
-
url: string;
|
|
23668
23667
|
id: string;
|
|
23668
|
+
url: string;
|
|
23669
23669
|
parent: {
|
|
23670
23670
|
type: "page_id";
|
|
23671
23671
|
page_id: string;
|
|
@@ -23757,8 +23757,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23757
23757
|
}, {
|
|
23758
23758
|
object: "page";
|
|
23759
23759
|
properties: Record<string, unknown>;
|
|
23760
|
-
url: string;
|
|
23761
23760
|
id: string;
|
|
23761
|
+
url: string;
|
|
23762
23762
|
parent: {
|
|
23763
23763
|
type: "page_id";
|
|
23764
23764
|
page_id: string;
|
|
@@ -23855,8 +23855,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23855
23855
|
page?: {
|
|
23856
23856
|
object: "page";
|
|
23857
23857
|
properties: Record<string, unknown>;
|
|
23858
|
-
url: string;
|
|
23859
23858
|
id: string;
|
|
23859
|
+
url: string;
|
|
23860
23860
|
parent: {
|
|
23861
23861
|
type: "page_id";
|
|
23862
23862
|
page_id: string;
|
|
@@ -23953,8 +23953,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
23953
23953
|
page?: {
|
|
23954
23954
|
object: "page";
|
|
23955
23955
|
properties: Record<string, unknown>;
|
|
23956
|
-
url: string;
|
|
23957
23956
|
id: string;
|
|
23957
|
+
url: string;
|
|
23958
23958
|
parent: {
|
|
23959
23959
|
type: "page_id";
|
|
23960
23960
|
page_id: string;
|
|
@@ -24368,8 +24368,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
24368
24368
|
}, "strip", z.ZodTypeAny, {
|
|
24369
24369
|
object: "page";
|
|
24370
24370
|
properties: Record<string, unknown>;
|
|
24371
|
-
url: string;
|
|
24372
24371
|
id: string;
|
|
24372
|
+
url: string;
|
|
24373
24373
|
parent: {
|
|
24374
24374
|
type: "page_id";
|
|
24375
24375
|
page_id: string;
|
|
@@ -24461,8 +24461,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
24461
24461
|
}, {
|
|
24462
24462
|
object: "page";
|
|
24463
24463
|
properties: Record<string, unknown>;
|
|
24464
|
-
url: string;
|
|
24465
24464
|
id: string;
|
|
24465
|
+
url: string;
|
|
24466
24466
|
parent: {
|
|
24467
24467
|
type: "page_id";
|
|
24468
24468
|
page_id: string;
|
|
@@ -24559,8 +24559,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
24559
24559
|
page?: {
|
|
24560
24560
|
object: "page";
|
|
24561
24561
|
properties: Record<string, unknown>;
|
|
24562
|
-
url: string;
|
|
24563
24562
|
id: string;
|
|
24563
|
+
url: string;
|
|
24564
24564
|
parent: {
|
|
24565
24565
|
type: "page_id";
|
|
24566
24566
|
page_id: string;
|
|
@@ -24657,8 +24657,8 @@ export declare class NotionBubble<T extends NotionParams = NotionParams> extends
|
|
|
24657
24657
|
page?: {
|
|
24658
24658
|
object: "page";
|
|
24659
24659
|
properties: Record<string, unknown>;
|
|
24660
|
-
url: string;
|
|
24661
24660
|
id: string;
|
|
24661
|
+
url: string;
|
|
24662
24662
|
parent: {
|
|
24663
24663
|
type: "page_id";
|
|
24664
24664
|
page_id: string;
|
|
@@ -12,20 +12,20 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
|
|
|
12
12
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
13
13
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
parameters: unknown[];
|
|
15
16
|
timeout: number;
|
|
16
17
|
ignoreSSL: boolean;
|
|
17
18
|
query: string;
|
|
18
19
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
19
|
-
parameters: unknown[];
|
|
20
20
|
maxRows: number;
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
query: string;
|
|
24
|
+
parameters?: unknown[] | undefined;
|
|
24
25
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
26
|
timeout?: number | undefined;
|
|
26
27
|
ignoreSSL?: boolean | undefined;
|
|
27
28
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
28
|
-
parameters?: unknown[] | undefined;
|
|
29
29
|
maxRows?: number | undefined;
|
|
30
30
|
}>;
|
|
31
31
|
type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;
|
|
@@ -49,24 +49,24 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
|
|
|
49
49
|
error: z.ZodString;
|
|
50
50
|
cleanedJSONString: z.ZodString;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
+
executionTime: number;
|
|
52
53
|
error: string;
|
|
53
54
|
success: boolean;
|
|
54
55
|
rows: Record<string, unknown>[];
|
|
55
56
|
rowCount: number | null;
|
|
56
57
|
command: string;
|
|
57
|
-
executionTime: number;
|
|
58
58
|
cleanedJSONString: string;
|
|
59
59
|
fields?: {
|
|
60
60
|
name: string;
|
|
61
61
|
dataTypeID: number;
|
|
62
62
|
}[] | undefined;
|
|
63
63
|
}, {
|
|
64
|
+
executionTime: number;
|
|
64
65
|
error: string;
|
|
65
66
|
success: boolean;
|
|
66
67
|
rows: Record<string, unknown>[];
|
|
67
68
|
rowCount: number | null;
|
|
68
69
|
command: string;
|
|
69
|
-
executionTime: number;
|
|
70
70
|
cleanedJSONString: string;
|
|
71
71
|
fields?: {
|
|
72
72
|
name: string;
|
|
@@ -89,20 +89,20 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
89
89
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
90
90
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
+
parameters: unknown[];
|
|
92
93
|
timeout: number;
|
|
93
94
|
ignoreSSL: boolean;
|
|
94
95
|
query: string;
|
|
95
96
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
96
|
-
parameters: unknown[];
|
|
97
97
|
maxRows: number;
|
|
98
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
99
|
}, {
|
|
100
100
|
query: string;
|
|
101
|
+
parameters?: unknown[] | undefined;
|
|
101
102
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
102
103
|
timeout?: number | undefined;
|
|
103
104
|
ignoreSSL?: boolean | undefined;
|
|
104
105
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
105
|
-
parameters?: unknown[] | undefined;
|
|
106
106
|
maxRows?: number | undefined;
|
|
107
107
|
}>;
|
|
108
108
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -124,24 +124,24 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
124
124
|
error: z.ZodString;
|
|
125
125
|
cleanedJSONString: z.ZodString;
|
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
|
127
|
+
executionTime: number;
|
|
127
128
|
error: string;
|
|
128
129
|
success: boolean;
|
|
129
130
|
rows: Record<string, unknown>[];
|
|
130
131
|
rowCount: number | null;
|
|
131
132
|
command: string;
|
|
132
|
-
executionTime: number;
|
|
133
133
|
cleanedJSONString: string;
|
|
134
134
|
fields?: {
|
|
135
135
|
name: string;
|
|
136
136
|
dataTypeID: number;
|
|
137
137
|
}[] | undefined;
|
|
138
138
|
}, {
|
|
139
|
+
executionTime: number;
|
|
139
140
|
error: string;
|
|
140
141
|
success: boolean;
|
|
141
142
|
rows: Record<string, unknown>[];
|
|
142
143
|
rowCount: number | null;
|
|
143
144
|
command: string;
|
|
144
|
-
executionTime: number;
|
|
145
145
|
cleanedJSONString: string;
|
|
146
146
|
fields?: {
|
|
147
147
|
name: string;
|
|
@@ -91,8 +91,8 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
91
91
|
event?: string | undefined;
|
|
92
92
|
person_id?: string | undefined;
|
|
93
93
|
after?: string | undefined;
|
|
94
|
-
before?: string | undefined;
|
|
95
94
|
host?: string | undefined;
|
|
95
|
+
before?: string | undefined;
|
|
96
96
|
distinct_id?: string | undefined;
|
|
97
97
|
}>, import("zod").ZodObject<{
|
|
98
98
|
operation: import("zod").ZodLiteral<"query">;
|
|
@@ -230,8 +230,8 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
230
230
|
event: string;
|
|
231
231
|
distinct_id: string;
|
|
232
232
|
properties?: Record<string, unknown> | undefined;
|
|
233
|
-
uuid?: string | undefined;
|
|
234
233
|
id?: string | undefined;
|
|
234
|
+
uuid?: string | undefined;
|
|
235
235
|
elements?: unknown[] | undefined;
|
|
236
236
|
timestamp?: string | undefined;
|
|
237
237
|
created_at?: string | undefined;
|
|
@@ -240,8 +240,8 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
240
240
|
event: string;
|
|
241
241
|
distinct_id: string;
|
|
242
242
|
properties?: Record<string, unknown> | undefined;
|
|
243
|
-
uuid?: string | undefined;
|
|
244
243
|
id?: string | undefined;
|
|
244
|
+
uuid?: string | undefined;
|
|
245
245
|
elements?: unknown[] | undefined;
|
|
246
246
|
timestamp?: string | undefined;
|
|
247
247
|
created_at?: string | undefined;
|
|
@@ -257,8 +257,8 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
257
257
|
event: string;
|
|
258
258
|
distinct_id: string;
|
|
259
259
|
properties?: Record<string, unknown> | undefined;
|
|
260
|
-
uuid?: string | undefined;
|
|
261
260
|
id?: string | undefined;
|
|
261
|
+
uuid?: string | undefined;
|
|
262
262
|
elements?: unknown[] | undefined;
|
|
263
263
|
timestamp?: string | undefined;
|
|
264
264
|
created_at?: string | undefined;
|
|
@@ -273,8 +273,8 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
273
273
|
event: string;
|
|
274
274
|
distinct_id: string;
|
|
275
275
|
properties?: Record<string, unknown> | undefined;
|
|
276
|
-
uuid?: string | undefined;
|
|
277
276
|
id?: string | undefined;
|
|
277
|
+
uuid?: string | undefined;
|
|
278
278
|
elements?: unknown[] | undefined;
|
|
279
279
|
timestamp?: string | undefined;
|
|
280
280
|
created_at?: string | undefined;
|
|
@@ -368,9 +368,9 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
368
368
|
last_modified_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
369
369
|
}, "strip", import("zod").ZodTypeAny, {
|
|
370
370
|
id: number;
|
|
371
|
+
result?: unknown;
|
|
371
372
|
description?: string | null | undefined;
|
|
372
373
|
name?: string | null | undefined;
|
|
373
|
-
result?: unknown;
|
|
374
374
|
created_at?: string | undefined;
|
|
375
375
|
filters?: Record<string, unknown> | undefined;
|
|
376
376
|
short_id?: string | undefined;
|
|
@@ -378,9 +378,9 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
378
378
|
last_modified_at?: string | undefined;
|
|
379
379
|
}, {
|
|
380
380
|
id: number;
|
|
381
|
+
result?: unknown;
|
|
381
382
|
description?: string | null | undefined;
|
|
382
383
|
name?: string | null | undefined;
|
|
383
|
-
result?: unknown;
|
|
384
384
|
created_at?: string | undefined;
|
|
385
385
|
filters?: Record<string, unknown> | undefined;
|
|
386
386
|
short_id?: string | undefined;
|
|
@@ -394,9 +394,9 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
394
394
|
operation: "get_insight";
|
|
395
395
|
insight?: {
|
|
396
396
|
id: number;
|
|
397
|
+
result?: unknown;
|
|
397
398
|
description?: string | null | undefined;
|
|
398
399
|
name?: string | null | undefined;
|
|
399
|
-
result?: unknown;
|
|
400
400
|
created_at?: string | undefined;
|
|
401
401
|
filters?: Record<string, unknown> | undefined;
|
|
402
402
|
short_id?: string | undefined;
|
|
@@ -409,9 +409,9 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
|
|
|
409
409
|
operation: "get_insight";
|
|
410
410
|
insight?: {
|
|
411
411
|
id: number;
|
|
412
|
+
result?: unknown;
|
|
412
413
|
description?: string | null | undefined;
|
|
413
414
|
name?: string | null | undefined;
|
|
414
|
-
result?: unknown;
|
|
415
415
|
created_at?: string | undefined;
|
|
416
416
|
filters?: Record<string, unknown> | undefined;
|
|
417
417
|
short_id?: string | undefined;
|