@bubblelab/bubble-core 0.1.41 → 0.1.42
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 +75 -75
- package/dist/bubbles/service-bubble/agi-inc.d.ts +100 -100
- package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +136 -136
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +70 -70
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +39 -39
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +126 -126
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +592 -592
- package/dist/bubbles/service-bubble/followupboss.d.ts +156 -156
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
- package/dist/bubbles/service-bubble/github.d.ts +188 -188
- package/dist/bubbles/service-bubble/gmail.d.ts +248 -248
- package/dist/bubbles/service-bubble/google-calendar.d.ts +134 -134
- package/dist/bubbles/service-bubble/google-drive.d.ts +92 -92
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +40 -40
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +44 -44
- package/dist/bubbles/service-bubble/notion/notion.d.ts +2077 -2077
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +32 -32
- package/dist/bubbles/service-bubble/slack/slack.d.ts +430 -430
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1549 -1549
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +19 -19
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.js +1 -1
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +332 -332
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +144 -132
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +11 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +134 -134
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +74 -74
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +11 -3
- package/package.json +2 -2
|
@@ -51,38 +51,38 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
51
51
|
location: import("zod").ZodOptional<import("zod").ZodString>;
|
|
52
52
|
profile_url: import("zod").ZodString;
|
|
53
53
|
}, "strip", import("zod").ZodTypeAny, {
|
|
54
|
-
profile_url: string;
|
|
55
54
|
name: string;
|
|
56
|
-
|
|
55
|
+
profile_url: string;
|
|
57
56
|
location?: string | undefined;
|
|
57
|
+
headline?: string | undefined;
|
|
58
58
|
}, {
|
|
59
|
-
profile_url: string;
|
|
60
59
|
name: string;
|
|
61
|
-
|
|
60
|
+
profile_url: string;
|
|
62
61
|
location?: string | undefined;
|
|
62
|
+
headline?: string | undefined;
|
|
63
63
|
}>>;
|
|
64
64
|
error: import("zod").ZodString;
|
|
65
65
|
}, "strip", import("zod").ZodTypeAny, {
|
|
66
|
-
operation: "send_connection";
|
|
67
66
|
success: boolean;
|
|
68
67
|
error: string;
|
|
68
|
+
operation: "send_connection";
|
|
69
69
|
message?: string | undefined;
|
|
70
70
|
profile?: {
|
|
71
|
-
profile_url: string;
|
|
72
71
|
name: string;
|
|
73
|
-
|
|
72
|
+
profile_url: string;
|
|
74
73
|
location?: string | undefined;
|
|
74
|
+
headline?: string | undefined;
|
|
75
75
|
} | undefined;
|
|
76
76
|
}, {
|
|
77
|
-
operation: "send_connection";
|
|
78
77
|
success: boolean;
|
|
79
78
|
error: string;
|
|
79
|
+
operation: "send_connection";
|
|
80
80
|
message?: string | undefined;
|
|
81
81
|
profile?: {
|
|
82
|
-
profile_url: string;
|
|
83
82
|
name: string;
|
|
84
|
-
|
|
83
|
+
profile_url: string;
|
|
85
84
|
location?: string | undefined;
|
|
85
|
+
headline?: string | undefined;
|
|
86
86
|
} | undefined;
|
|
87
87
|
}>;
|
|
88
88
|
static readonly shortDescription = "LinkedIn connection automation - send connection requests with optional notes";
|
|
@@ -264,7 +264,7 @@ export class LinkedInConnectionTool extends ToolBubble {
|
|
|
264
264
|
// Navigate to profile page
|
|
265
265
|
await this.navigateTo(profile_url);
|
|
266
266
|
// Wait for page to load
|
|
267
|
-
await new Promise((resolve) => setTimeout(resolve,
|
|
267
|
+
await new Promise((resolve) => setTimeout(resolve, 8000));
|
|
268
268
|
// Save debug state after page load
|
|
269
269
|
await this.saveDebugState('01-after-page-load');
|
|
270
270
|
// Extract profile info
|