@bubblelab/bubble-core 0.1.146 → 0.1.147
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 +76 -76
- package/dist/bubbles/service-bubble/agi-inc.d.ts +28 -28
- package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +112 -112
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +37 -37
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +21 -21
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +394 -394
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +60 -60
- package/dist/bubbles/service-bubble/github.d.ts +210 -210
- package/dist/bubbles/service-bubble/gmail.d.ts +410 -410
- package/dist/bubbles/service-bubble/google-calendar.d.ts +2 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts +48 -48
- 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 +18 -18
- package/dist/bubbles/service-bubble/notion/notion.d.ts +13738 -9223
- package/dist/bubbles/service-bubble/notion/notion.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.js +55 -2
- package/dist/bubbles/service-bubble/notion/notion.js.map +1 -1
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +504 -504
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +25 -25
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-accept-invitations/tool.d.ts +7 -7
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-received-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-sent-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +386 -386
- package/dist/bubbles/tool-bubble/list-airtable-bases-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-airtable-tables-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +46 -46
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles.json +732 -3
- package/package.json +2 -2
|
@@ -48,8 +48,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
48
48
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
49
49
|
}, "strip", import("zod").ZodTypeAny, {
|
|
50
50
|
operation: "search";
|
|
51
|
-
offset: number;
|
|
52
51
|
limit: number;
|
|
52
|
+
offset: number;
|
|
53
53
|
jql: string;
|
|
54
54
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
55
55
|
fields?: string[] | undefined;
|
|
@@ -57,9 +57,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
57
57
|
operation: "search";
|
|
58
58
|
jql: string;
|
|
59
59
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
60
|
-
offset?: number | undefined;
|
|
61
60
|
fields?: string[] | undefined;
|
|
62
61
|
limit?: number | undefined;
|
|
62
|
+
offset?: number | undefined;
|
|
63
63
|
}>, import("zod").ZodObject<{
|
|
64
64
|
operation: import("zod").ZodLiteral<"get">;
|
|
65
65
|
key: import("zod").ZodString;
|
|
@@ -97,9 +97,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
97
97
|
summary: string;
|
|
98
98
|
project: string;
|
|
99
99
|
description?: string | undefined;
|
|
100
|
+
parent?: string | undefined;
|
|
100
101
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
101
102
|
priority?: string | undefined;
|
|
102
|
-
parent?: string | undefined;
|
|
103
103
|
labels?: string[] | undefined;
|
|
104
104
|
assignee?: string | undefined;
|
|
105
105
|
due_date?: string | undefined;
|
|
@@ -110,9 +110,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
110
110
|
project: string;
|
|
111
111
|
type?: string | undefined;
|
|
112
112
|
description?: string | undefined;
|
|
113
|
+
parent?: string | undefined;
|
|
113
114
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
114
115
|
priority?: string | undefined;
|
|
115
|
-
parent?: string | undefined;
|
|
116
116
|
labels?: string[] | undefined;
|
|
117
117
|
assignee?: string | undefined;
|
|
118
118
|
due_date?: string | undefined;
|
|
@@ -145,6 +145,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
145
145
|
key: string;
|
|
146
146
|
description?: string | undefined;
|
|
147
147
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
148
|
+
comment?: string | undefined;
|
|
148
149
|
priority?: string | undefined;
|
|
149
150
|
summary?: string | undefined;
|
|
150
151
|
labels?: {
|
|
@@ -152,7 +153,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
152
153
|
remove?: string[] | undefined;
|
|
153
154
|
add?: string[] | undefined;
|
|
154
155
|
} | undefined;
|
|
155
|
-
comment?: string | undefined;
|
|
156
156
|
assignee?: string | null | undefined;
|
|
157
157
|
due_date?: string | null | undefined;
|
|
158
158
|
}, {
|
|
@@ -160,6 +160,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
160
160
|
key: string;
|
|
161
161
|
description?: string | undefined;
|
|
162
162
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
163
|
+
comment?: string | undefined;
|
|
163
164
|
priority?: string | undefined;
|
|
164
165
|
summary?: string | undefined;
|
|
165
166
|
labels?: {
|
|
@@ -167,7 +168,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
167
168
|
remove?: string[] | undefined;
|
|
168
169
|
add?: string[] | undefined;
|
|
169
170
|
} | undefined;
|
|
170
|
-
comment?: string | undefined;
|
|
171
171
|
assignee?: string | null | undefined;
|
|
172
172
|
due_date?: string | null | undefined;
|
|
173
173
|
}>, import("zod").ZodObject<{
|
|
@@ -213,14 +213,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
213
213
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
214
214
|
}, "strip", import("zod").ZodTypeAny, {
|
|
215
215
|
operation: "list_projects";
|
|
216
|
-
offset: number;
|
|
217
216
|
limit: number;
|
|
217
|
+
offset: number;
|
|
218
218
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
219
219
|
}, {
|
|
220
220
|
operation: "list_projects";
|
|
221
221
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
222
|
-
offset?: number | undefined;
|
|
223
222
|
limit?: number | undefined;
|
|
223
|
+
offset?: number | undefined;
|
|
224
224
|
}>, import("zod").ZodObject<{
|
|
225
225
|
operation: import("zod").ZodLiteral<"list_issue_types">;
|
|
226
226
|
project: import("zod").ZodString;
|
|
@@ -255,13 +255,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
255
255
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
256
256
|
}, "strip", import("zod").ZodTypeAny, {
|
|
257
257
|
operation: "add_comment";
|
|
258
|
-
body: string;
|
|
259
258
|
key: string;
|
|
259
|
+
body: string;
|
|
260
260
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
261
261
|
}, {
|
|
262
262
|
operation: "add_comment";
|
|
263
|
-
body: string;
|
|
264
263
|
key: string;
|
|
264
|
+
body: string;
|
|
265
265
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
266
266
|
}>, import("zod").ZodObject<{
|
|
267
267
|
operation: import("zod").ZodLiteral<"get_comments">;
|
|
@@ -271,16 +271,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
271
271
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
272
272
|
}, "strip", import("zod").ZodTypeAny, {
|
|
273
273
|
operation: "get_comments";
|
|
274
|
-
offset: number;
|
|
275
274
|
key: string;
|
|
276
275
|
limit: number;
|
|
276
|
+
offset: number;
|
|
277
277
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
278
278
|
}, {
|
|
279
279
|
operation: "get_comments";
|
|
280
280
|
key: string;
|
|
281
281
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
282
|
-
offset?: number | undefined;
|
|
283
282
|
limit?: number | undefined;
|
|
283
|
+
offset?: number | undefined;
|
|
284
284
|
}>]>;
|
|
285
285
|
static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
|
|
286
286
|
operation: import("zod").ZodLiteral<"search">;
|
|
@@ -2601,8 +2601,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2601
2601
|
expand?: string | undefined;
|
|
2602
2602
|
self?: string | undefined;
|
|
2603
2603
|
}[] | undefined;
|
|
2604
|
-
offset?: number | undefined;
|
|
2605
2604
|
limit?: number | undefined;
|
|
2605
|
+
offset?: number | undefined;
|
|
2606
2606
|
total?: number | undefined;
|
|
2607
2607
|
}, {
|
|
2608
2608
|
operation: "search";
|
|
@@ -2996,8 +2996,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2996
2996
|
expand?: string | undefined;
|
|
2997
2997
|
self?: string | undefined;
|
|
2998
2998
|
}[] | undefined;
|
|
2999
|
-
offset?: number | undefined;
|
|
3000
2999
|
limit?: number | undefined;
|
|
3000
|
+
offset?: number | undefined;
|
|
3001
3001
|
total?: number | undefined;
|
|
3002
3002
|
}>, import("zod").ZodObject<{
|
|
3003
3003
|
operation: import("zod").ZodLiteral<"get">;
|
|
@@ -6112,8 +6112,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
6112
6112
|
allowedValues?: unknown[] | undefined;
|
|
6113
6113
|
}>, "many">;
|
|
6114
6114
|
}, "strip", import("zod").ZodTypeAny, {
|
|
6115
|
-
name: string;
|
|
6116
6115
|
id: string;
|
|
6116
|
+
name: string;
|
|
6117
6117
|
fields: {
|
|
6118
6118
|
required: boolean;
|
|
6119
6119
|
name: string;
|
|
@@ -6123,8 +6123,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
6123
6123
|
allowedValues?: unknown[] | undefined;
|
|
6124
6124
|
}[];
|
|
6125
6125
|
}, {
|
|
6126
|
-
name: string;
|
|
6127
6126
|
id: string;
|
|
6127
|
+
name: string;
|
|
6128
6128
|
fields: {
|
|
6129
6129
|
required: boolean;
|
|
6130
6130
|
name: string;
|
|
@@ -6140,8 +6140,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
6140
6140
|
success: boolean;
|
|
6141
6141
|
error: string;
|
|
6142
6142
|
issue_types?: {
|
|
6143
|
-
name: string;
|
|
6144
6143
|
id: string;
|
|
6144
|
+
name: string;
|
|
6145
6145
|
fields: {
|
|
6146
6146
|
required: boolean;
|
|
6147
6147
|
name: string;
|
|
@@ -6156,8 +6156,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
6156
6156
|
success: boolean;
|
|
6157
6157
|
error: string;
|
|
6158
6158
|
issue_types?: {
|
|
6159
|
-
name: string;
|
|
6160
6159
|
id: string;
|
|
6160
|
+
name: string;
|
|
6161
6161
|
fields: {
|
|
6162
6162
|
required: boolean;
|
|
6163
6163
|
name: string;
|