@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.
Files changed (43) hide show
  1. package/dist/bubble-bundle.d.ts +67 -67
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
  6. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
  13. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
  14. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
  17. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
  18. package/dist/bubbles/service-bubble/github.d.ts +28 -28
  19. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  20. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  22. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
  31. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
  34. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +330 -330
  35. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
  36. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
  38. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
  39. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
  40. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  41. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  42. package/dist/bubbles.json +1 -1
  43. package/package.json +2 -2
@@ -63,16 +63,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
63
63
  operation: "enrich";
64
64
  credentials?: Partial<Record<CredentialType, string>> | undefined;
65
65
  fields?: string | undefined;
66
- company_domain?: string | undefined;
67
66
  company_linkedin_url?: string | undefined;
67
+ company_domain?: string | undefined;
68
68
  company_id?: number | undefined;
69
69
  enrich_realtime?: boolean | undefined;
70
70
  }, {
71
71
  operation: "enrich";
72
72
  credentials?: Partial<Record<CredentialType, string>> | undefined;
73
73
  fields?: string | undefined;
74
- company_domain?: string | undefined;
75
74
  company_linkedin_url?: string | undefined;
75
+ company_domain?: string | undefined;
76
76
  company_id?: number | undefined;
77
77
  enrich_realtime?: boolean | undefined;
78
78
  }>, import("zod").ZodObject<{
@@ -192,18 +192,18 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
192
192
  operation: "person_enrich";
193
193
  credentials?: Partial<Record<CredentialType, string>> | undefined;
194
194
  fields?: string | undefined;
195
- enrich_realtime?: boolean | undefined;
196
- preview?: boolean | undefined;
197
195
  linkedin_profile_url?: string | undefined;
198
196
  business_email?: string | undefined;
197
+ enrich_realtime?: boolean | undefined;
198
+ preview?: boolean | undefined;
199
199
  }, {
200
200
  operation: "person_enrich";
201
201
  credentials?: Partial<Record<CredentialType, string>> | undefined;
202
202
  fields?: string | undefined;
203
- enrich_realtime?: boolean | undefined;
204
- preview?: boolean | undefined;
205
203
  linkedin_profile_url?: string | undefined;
206
204
  business_email?: string | undefined;
205
+ enrich_realtime?: boolean | undefined;
206
+ preview?: boolean | undefined;
207
207
  }>]>;
208
208
  static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
209
209
  operation: import("zod").ZodLiteral<"identify">;