@bubblelab/bubble-core 0.1.44 → 0.1.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +67 -67
- package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
- package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +28 -28
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +330 -330
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts
CHANGED
|
@@ -9,13 +9,13 @@ export declare const ProfileInfoSchema: z.ZodObject<{
|
|
|
9
9
|
location: z.ZodOptional<z.ZodString>;
|
|
10
10
|
profile_url: z.ZodString;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
profile_url: string;
|
|
13
12
|
name: string;
|
|
13
|
+
profile_url: string;
|
|
14
14
|
headline?: string | undefined;
|
|
15
15
|
location?: string | undefined;
|
|
16
16
|
}, {
|
|
17
|
-
profile_url: string;
|
|
18
17
|
name: string;
|
|
18
|
+
profile_url: string;
|
|
19
19
|
headline?: string | undefined;
|
|
20
20
|
location?: string | undefined;
|
|
21
21
|
}>;
|
|
@@ -53,13 +53,13 @@ export declare const LinkedInConnectionToolResultSchema: z.ZodObject<{
|
|
|
53
53
|
location: z.ZodOptional<z.ZodString>;
|
|
54
54
|
profile_url: z.ZodString;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
profile_url: string;
|
|
57
56
|
name: string;
|
|
57
|
+
profile_url: string;
|
|
58
58
|
headline?: string | undefined;
|
|
59
59
|
location?: string | undefined;
|
|
60
60
|
}, {
|
|
61
|
-
profile_url: string;
|
|
62
61
|
name: string;
|
|
62
|
+
profile_url: string;
|
|
63
63
|
headline?: string | undefined;
|
|
64
64
|
location?: string | undefined;
|
|
65
65
|
}>>;
|
|
@@ -70,8 +70,8 @@ export declare const LinkedInConnectionToolResultSchema: z.ZodObject<{
|
|
|
70
70
|
error: string;
|
|
71
71
|
message?: string | undefined;
|
|
72
72
|
profile?: {
|
|
73
|
-
profile_url: string;
|
|
74
73
|
name: string;
|
|
74
|
+
profile_url: string;
|
|
75
75
|
headline?: string | undefined;
|
|
76
76
|
location?: string | undefined;
|
|
77
77
|
} | undefined;
|
|
@@ -81,8 +81,8 @@ export declare const LinkedInConnectionToolResultSchema: z.ZodObject<{
|
|
|
81
81
|
error: string;
|
|
82
82
|
message?: string | undefined;
|
|
83
83
|
profile?: {
|
|
84
|
-
profile_url: string;
|
|
85
84
|
name: string;
|
|
85
|
+
profile_url: string;
|
|
86
86
|
headline?: string | undefined;
|
|
87
87
|
location?: string | undefined;
|
|
88
88
|
} | undefined;
|