@bubblelab/bubble-core 0.1.137 → 0.1.138
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 +34 -34
- package/dist/bubbles/service-bubble/apify/actors/google-maps-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +806 -0
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts.map +1 -0
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js +256 -0
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js.map +1 -0
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +813 -6
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js +8 -0
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.js +1 -0
- package/dist/bubbles/service-bubble/apify/apify.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/firecrawl.d.ts +16 -16
- package/dist/bubbles/service-bubble/followupboss.d.ts +8 -8
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +28 -28
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/jira/jira.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +1579 -141
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/linkedin-tool.js +300 -56
- package/dist/bubbles/tool-bubble/linkedin-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +74 -74
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +10 -10
- package/dist/bubbles.json +481 -6
- package/package.json +2 -2
|
@@ -120,15 +120,15 @@ export declare const GoogleMapsPlaceSchema: z.ZodObject<{
|
|
|
120
120
|
lng: number;
|
|
121
121
|
} | undefined;
|
|
122
122
|
postalCode?: string | null | undefined;
|
|
123
|
+
countryCode?: string | undefined;
|
|
124
|
+
state?: string | undefined;
|
|
125
|
+
city?: string | undefined;
|
|
123
126
|
language?: string | undefined;
|
|
124
127
|
price?: string | null | undefined;
|
|
125
128
|
categoryName?: string | undefined;
|
|
126
129
|
address?: string | undefined;
|
|
127
130
|
neighborhood?: string | null | undefined;
|
|
128
131
|
street?: string | null | undefined;
|
|
129
|
-
city?: string | undefined;
|
|
130
|
-
state?: string | undefined;
|
|
131
|
-
countryCode?: string | undefined;
|
|
132
132
|
website?: string | undefined;
|
|
133
133
|
phoneUnformatted?: string | undefined;
|
|
134
134
|
claimThisBusiness?: boolean | undefined;
|
|
@@ -182,15 +182,15 @@ export declare const GoogleMapsPlaceSchema: z.ZodObject<{
|
|
|
182
182
|
lng: number;
|
|
183
183
|
} | undefined;
|
|
184
184
|
postalCode?: string | null | undefined;
|
|
185
|
+
countryCode?: string | undefined;
|
|
186
|
+
state?: string | undefined;
|
|
187
|
+
city?: string | undefined;
|
|
185
188
|
language?: string | undefined;
|
|
186
189
|
price?: string | null | undefined;
|
|
187
190
|
categoryName?: string | undefined;
|
|
188
191
|
address?: string | undefined;
|
|
189
192
|
neighborhood?: string | null | undefined;
|
|
190
193
|
street?: string | null | undefined;
|
|
191
|
-
city?: string | undefined;
|
|
192
|
-
state?: string | undefined;
|
|
193
|
-
countryCode?: string | undefined;
|
|
194
194
|
website?: string | undefined;
|
|
195
195
|
phoneUnformatted?: string | undefined;
|
|
196
196
|
claimThisBusiness?: boolean | undefined;
|