@bubblelab/bubble-core 0.1.25 → 0.1.27

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 (56) hide show
  1. package/dist/bubble-bundle.d.ts +84 -68
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
  3. package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
  10. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
  14. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
  15. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
  18. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
  19. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
  22. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts +168 -168
  25. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  26. package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
  27. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
  29. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  30. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  31. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
  32. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
  34. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  35. package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
  36. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
  44. package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
  45. package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
  46. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  47. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
  51. package/dist/bubbles.json +52057 -9
  52. package/dist/types/available-tools.d.ts +1 -1
  53. package/dist/types/available-tools.d.ts.map +1 -1
  54. package/dist/types/available-tools.js +1 -0
  55. package/dist/types/available-tools.js.map +1 -1
  56. package/package.json +3 -3
@@ -36,18 +36,18 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
36
36
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
37
37
  }, "strip", import("zod").ZodTypeAny, {
38
38
  operation: "identify";
39
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
40
+ count?: number | undefined;
39
41
  query_company_name?: string | undefined;
40
42
  query_company_website?: string | undefined;
41
43
  query_company_linkedin_url?: string | undefined;
42
- count?: number | undefined;
43
- credentials?: Partial<Record<CredentialType, string>> | undefined;
44
44
  }, {
45
45
  operation: "identify";
46
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
47
+ count?: number | undefined;
46
48
  query_company_name?: string | undefined;
47
49
  query_company_website?: string | undefined;
48
50
  query_company_linkedin_url?: string | undefined;
49
- count?: number | undefined;
50
- credentials?: Partial<Record<CredentialType, string>> | undefined;
51
51
  }>, import("zod").ZodObject<{
52
52
  operation: import("zod").ZodLiteral<"enrich">;
53
53
  company_domain: import("zod").ZodOptional<import("zod").ZodString>;
@@ -58,19 +58,19 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
58
58
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
59
59
  }, "strip", import("zod").ZodTypeAny, {
60
60
  operation: "enrich";
61
- company_linkedin_url?: string | undefined;
62
61
  credentials?: Partial<Record<CredentialType, string>> | undefined;
62
+ fields?: string | undefined;
63
63
  company_domain?: string | undefined;
64
+ company_linkedin_url?: string | undefined;
64
65
  company_id?: number | undefined;
65
- fields?: string | undefined;
66
66
  enrich_realtime?: boolean | undefined;
67
67
  }, {
68
68
  operation: "enrich";
69
- company_linkedin_url?: string | undefined;
70
69
  credentials?: Partial<Record<CredentialType, string>> | undefined;
70
+ fields?: string | undefined;
71
71
  company_domain?: string | undefined;
72
+ company_linkedin_url?: string | undefined;
72
73
  company_id?: number | undefined;
73
- fields?: string | undefined;
74
74
  enrich_realtime?: boolean | undefined;
75
75
  }>, import("zod").ZodObject<{
76
76
  operation: import("zod").ZodLiteral<"person_search_db">;
@@ -84,27 +84,27 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
84
84
  }, "strip", import("zod").ZodTypeAny, {
85
85
  location: string;
86
86
  distance: number;
87
- unit?: "km" | "mi" | "miles" | "m" | "meters" | "ft" | "feet" | undefined;
87
+ unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
88
88
  }, {
89
89
  location: string;
90
90
  distance: number;
91
- unit?: "km" | "mi" | "miles" | "m" | "meters" | "ft" | "feet" | undefined;
91
+ unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
92
92
  }>]>;
93
93
  }, "strip", import("zod").ZodTypeAny, {
94
- value: string | number | boolean | string[] | {
94
+ value: string | number | boolean | string[] | number[] | {
95
95
  location: string;
96
96
  distance: number;
97
- unit?: "km" | "mi" | "miles" | "m" | "meters" | "ft" | "feet" | undefined;
98
- } | number[];
99
- type: "in" | "=" | "!=" | "not_in" | ">" | "<" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
97
+ unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
98
+ };
99
+ type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
100
100
  column: string;
101
101
  }, {
102
- value: string | number | boolean | string[] | {
102
+ value: string | number | boolean | string[] | number[] | {
103
103
  location: string;
104
104
  distance: number;
105
- unit?: "km" | "mi" | "miles" | "m" | "meters" | "ft" | "feet" | undefined;
106
- } | number[];
107
- type: "in" | "=" | "!=" | "not_in" | ">" | "<" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
105
+ unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
106
+ };
107
+ type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
108
108
  column: string;
109
109
  }>, import("zod").ZodType<import("./crustdata.schema.js").PersonDBFilterGroup, import("zod").ZodTypeDef, import("./crustdata.schema.js").PersonDBFilterGroup>]>;
110
110
  sorts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -134,21 +134,21 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
134
134
  }, "strip", import("zod").ZodTypeAny, {
135
135
  operation: "person_search_db";
136
136
  filters: {
137
- value: string | number | boolean | string[] | {
137
+ value: string | number | boolean | string[] | number[] | {
138
138
  location: string;
139
139
  distance: number;
140
- unit?: "km" | "mi" | "miles" | "m" | "meters" | "ft" | "feet" | undefined;
141
- } | number[];
142
- type: "in" | "=" | "!=" | "not_in" | ">" | "<" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
140
+ unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
141
+ };
142
+ type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
143
143
  column: string;
144
144
  } | import("./crustdata.schema.js").PersonDBFilterGroup;
145
145
  credentials?: Partial<Record<CredentialType, string>> | undefined;
146
+ limit?: number | undefined;
147
+ cursor?: string | undefined;
146
148
  sorts?: {
147
149
  column: string;
148
150
  order: "asc" | "desc";
149
151
  }[] | undefined;
150
- cursor?: string | undefined;
151
- limit?: number | undefined;
152
152
  preview?: boolean | undefined;
153
153
  post_processing?: {
154
154
  exclude_profiles?: string[] | undefined;
@@ -157,21 +157,21 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
157
157
  }, {
158
158
  operation: "person_search_db";
159
159
  filters: {
160
- value: string | number | boolean | string[] | {
160
+ value: string | number | boolean | string[] | number[] | {
161
161
  location: string;
162
162
  distance: number;
163
- unit?: "km" | "mi" | "miles" | "m" | "meters" | "ft" | "feet" | undefined;
164
- } | number[];
165
- type: "in" | "=" | "!=" | "not_in" | ">" | "<" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
163
+ unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
164
+ };
165
+ type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
166
166
  column: string;
167
167
  } | import("./crustdata.schema.js").PersonDBFilterGroup;
168
168
  credentials?: Partial<Record<CredentialType, string>> | undefined;
169
+ limit?: number | undefined;
170
+ cursor?: string | undefined;
169
171
  sorts?: {
170
172
  column: string;
171
173
  order: "asc" | "desc";
172
174
  }[] | undefined;
173
- cursor?: string | undefined;
174
- limit?: number | undefined;
175
175
  preview?: boolean | undefined;
176
176
  post_processing?: {
177
177
  exclude_profiles?: string[] | undefined;
@@ -315,16 +315,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
315
315
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
316
316
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
317
317
  }, "strip", import("zod").ZodTypeAny, {
318
- title?: string | null | undefined;
319
318
  description?: string | null | undefined;
320
- company_name?: string | null | undefined;
319
+ title?: string | null | undefined;
321
320
  company_linkedin_url?: string | null | undefined;
321
+ company_name?: string | null | undefined;
322
322
  start_date?: string | number | null | undefined;
323
323
  }, {
324
- title?: string | null | undefined;
325
324
  description?: string | null | undefined;
326
- company_name?: string | null | undefined;
325
+ title?: string | null | undefined;
327
326
  company_linkedin_url?: string | null | undefined;
327
+ company_name?: string | null | undefined;
328
328
  start_date?: string | number | null | undefined;
329
329
  }>, "many">>>;
330
330
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -379,16 +379,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
379
379
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
380
380
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
381
381
  }, "strip", import("zod").ZodTypeAny, {
382
- title?: string | null | undefined;
383
382
  description?: string | null | undefined;
384
- company_name?: string | null | undefined;
383
+ title?: string | null | undefined;
385
384
  company_linkedin_url?: string | null | undefined;
385
+ company_name?: string | null | undefined;
386
386
  start_date?: string | number | null | undefined;
387
387
  }, {
388
- title?: string | null | undefined;
389
388
  description?: string | null | undefined;
390
- company_name?: string | null | undefined;
389
+ title?: string | null | undefined;
391
390
  company_linkedin_url?: string | null | undefined;
391
+ company_name?: string | null | undefined;
392
392
  start_date?: string | number | null | undefined;
393
393
  }>, "many">>>;
394
394
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -443,16 +443,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
443
443
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
444
444
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
445
445
  }, "strip", import("zod").ZodTypeAny, {
446
- title?: string | null | undefined;
447
446
  description?: string | null | undefined;
448
- company_name?: string | null | undefined;
447
+ title?: string | null | undefined;
449
448
  company_linkedin_url?: string | null | undefined;
449
+ company_name?: string | null | undefined;
450
450
  start_date?: string | number | null | undefined;
451
451
  }, {
452
- title?: string | null | undefined;
453
452
  description?: string | null | undefined;
454
- company_name?: string | null | undefined;
453
+ title?: string | null | undefined;
455
454
  company_linkedin_url?: string | null | undefined;
455
+ company_name?: string | null | undefined;
456
456
  start_date?: string | number | null | undefined;
457
457
  }>, "many">>>;
458
458
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -508,16 +508,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
508
508
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
509
509
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
510
510
  }, "strip", import("zod").ZodTypeAny, {
511
- title?: string | null | undefined;
512
511
  description?: string | null | undefined;
513
- company_name?: string | null | undefined;
512
+ title?: string | null | undefined;
514
513
  company_linkedin_url?: string | null | undefined;
514
+ company_name?: string | null | undefined;
515
515
  start_date?: string | number | null | undefined;
516
516
  }, {
517
- title?: string | null | undefined;
518
517
  description?: string | null | undefined;
519
- company_name?: string | null | undefined;
518
+ title?: string | null | undefined;
520
519
  company_linkedin_url?: string | null | undefined;
520
+ company_name?: string | null | undefined;
521
521
  start_date?: string | number | null | undefined;
522
522
  }>, "many">>>;
523
523
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -572,16 +572,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
572
572
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
573
573
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
574
574
  }, "strip", import("zod").ZodTypeAny, {
575
- title?: string | null | undefined;
576
575
  description?: string | null | undefined;
577
- company_name?: string | null | undefined;
576
+ title?: string | null | undefined;
578
577
  company_linkedin_url?: string | null | undefined;
578
+ company_name?: string | null | undefined;
579
579
  start_date?: string | number | null | undefined;
580
580
  }, {
581
- title?: string | null | undefined;
582
581
  description?: string | null | undefined;
583
- company_name?: string | null | undefined;
582
+ title?: string | null | undefined;
584
583
  company_linkedin_url?: string | null | undefined;
584
+ company_name?: string | null | undefined;
585
585
  start_date?: string | number | null | undefined;
586
586
  }>, "many">>>;
587
587
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -636,16 +636,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
636
636
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
637
637
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
638
638
  }, "strip", import("zod").ZodTypeAny, {
639
- title?: string | null | undefined;
640
639
  description?: string | null | undefined;
641
- company_name?: string | null | undefined;
640
+ title?: string | null | undefined;
642
641
  company_linkedin_url?: string | null | undefined;
642
+ company_name?: string | null | undefined;
643
643
  start_date?: string | number | null | undefined;
644
644
  }, {
645
- title?: string | null | undefined;
646
645
  description?: string | null | undefined;
647
- company_name?: string | null | undefined;
646
+ title?: string | null | undefined;
648
647
  company_linkedin_url?: string | null | undefined;
648
+ company_name?: string | null | undefined;
649
649
  start_date?: string | number | null | undefined;
650
650
  }>, "many">>>;
651
651
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -702,16 +702,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
702
702
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
703
703
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
704
704
  }, "strip", import("zod").ZodTypeAny, {
705
- title?: string | null | undefined;
706
705
  description?: string | null | undefined;
707
- company_name?: string | null | undefined;
706
+ title?: string | null | undefined;
708
707
  company_linkedin_url?: string | null | undefined;
708
+ company_name?: string | null | undefined;
709
709
  start_date?: string | number | null | undefined;
710
710
  }, {
711
- title?: string | null | undefined;
712
711
  description?: string | null | undefined;
713
- company_name?: string | null | undefined;
712
+ title?: string | null | undefined;
714
713
  company_linkedin_url?: string | null | undefined;
714
+ company_name?: string | null | undefined;
715
715
  start_date?: string | number | null | undefined;
716
716
  }>, "many">>>;
717
717
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -766,16 +766,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
766
766
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
767
767
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
768
768
  }, "strip", import("zod").ZodTypeAny, {
769
- title?: string | null | undefined;
770
769
  description?: string | null | undefined;
771
- company_name?: string | null | undefined;
770
+ title?: string | null | undefined;
772
771
  company_linkedin_url?: string | null | undefined;
772
+ company_name?: string | null | undefined;
773
773
  start_date?: string | number | null | undefined;
774
774
  }, {
775
- title?: string | null | undefined;
776
775
  description?: string | null | undefined;
777
- company_name?: string | null | undefined;
776
+ title?: string | null | undefined;
778
777
  company_linkedin_url?: string | null | undefined;
778
+ company_name?: string | null | undefined;
779
779
  start_date?: string | number | null | undefined;
780
780
  }>, "many">>>;
781
781
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -830,16 +830,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
830
830
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
831
831
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
832
832
  }, "strip", import("zod").ZodTypeAny, {
833
- title?: string | null | undefined;
834
833
  description?: string | null | undefined;
835
- company_name?: string | null | undefined;
834
+ title?: string | null | undefined;
836
835
  company_linkedin_url?: string | null | undefined;
836
+ company_name?: string | null | undefined;
837
837
  start_date?: string | number | null | undefined;
838
838
  }, {
839
- title?: string | null | undefined;
840
839
  description?: string | null | undefined;
841
- company_name?: string | null | undefined;
840
+ title?: string | null | undefined;
842
841
  company_linkedin_url?: string | null | undefined;
842
+ company_name?: string | null | undefined;
843
843
  start_date?: string | number | null | undefined;
844
844
  }>, "many">>>;
845
845
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -896,16 +896,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
896
896
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
897
897
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
898
898
  }, "strip", import("zod").ZodTypeAny, {
899
- title?: string | null | undefined;
900
899
  description?: string | null | undefined;
901
- company_name?: string | null | undefined;
900
+ title?: string | null | undefined;
902
901
  company_linkedin_url?: string | null | undefined;
902
+ company_name?: string | null | undefined;
903
903
  start_date?: string | number | null | undefined;
904
904
  }, {
905
- title?: string | null | undefined;
906
905
  description?: string | null | undefined;
907
- company_name?: string | null | undefined;
906
+ title?: string | null | undefined;
908
907
  company_linkedin_url?: string | null | undefined;
908
+ company_name?: string | null | undefined;
909
909
  start_date?: string | number | null | undefined;
910
910
  }>, "many">>>;
911
911
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -962,16 +962,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
962
962
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
963
963
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
964
964
  }, "strip", import("zod").ZodTypeAny, {
965
- title?: string | null | undefined;
966
965
  description?: string | null | undefined;
967
- company_name?: string | null | undefined;
966
+ title?: string | null | undefined;
968
967
  company_linkedin_url?: string | null | undefined;
968
+ company_name?: string | null | undefined;
969
969
  start_date?: string | number | null | undefined;
970
970
  }, {
971
- title?: string | null | undefined;
972
971
  description?: string | null | undefined;
973
- company_name?: string | null | undefined;
972
+ title?: string | null | undefined;
974
973
  company_linkedin_url?: string | null | undefined;
974
+ company_name?: string | null | undefined;
975
975
  start_date?: string | number | null | undefined;
976
976
  }>, "many">>>;
977
977
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1054,16 +1054,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
1054
1054
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
1055
1055
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1056
1056
  }, "strip", import("zod").ZodTypeAny, {
1057
- title?: string | null | undefined;
1058
1057
  description?: string | null | undefined;
1059
- company_name?: string | null | undefined;
1058
+ title?: string | null | undefined;
1060
1059
  company_linkedin_url?: string | null | undefined;
1060
+ company_name?: string | null | undefined;
1061
1061
  start_date?: string | number | null | undefined;
1062
1062
  }, {
1063
- title?: string | null | undefined;
1064
1063
  description?: string | null | undefined;
1065
- company_name?: string | null | undefined;
1064
+ title?: string | null | undefined;
1066
1065
  company_linkedin_url?: string | null | undefined;
1066
+ company_name?: string | null | undefined;
1067
1067
  start_date?: string | number | null | undefined;
1068
1068
  }>, "many">>>;
1069
1069
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1119,16 +1119,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
1119
1119
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
1120
1120
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1121
1121
  }, "strip", import("zod").ZodTypeAny, {
1122
- title?: string | null | undefined;
1123
1122
  description?: string | null | undefined;
1124
- company_name?: string | null | undefined;
1123
+ title?: string | null | undefined;
1125
1124
  company_linkedin_url?: string | null | undefined;
1125
+ company_name?: string | null | undefined;
1126
1126
  start_date?: string | number | null | undefined;
1127
1127
  }, {
1128
- title?: string | null | undefined;
1129
1128
  description?: string | null | undefined;
1130
- company_name?: string | null | undefined;
1129
+ title?: string | null | undefined;
1131
1130
  company_linkedin_url?: string | null | undefined;
1131
+ company_name?: string | null | undefined;
1132
1132
  start_date?: string | number | null | undefined;
1133
1133
  }>, "many">>>;
1134
1134
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1185,16 +1185,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
1185
1185
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
1186
1186
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1187
1187
  }, "strip", import("zod").ZodTypeAny, {
1188
- title?: string | null | undefined;
1189
1188
  description?: string | null | undefined;
1190
- company_name?: string | null | undefined;
1189
+ title?: string | null | undefined;
1191
1190
  company_linkedin_url?: string | null | undefined;
1191
+ company_name?: string | null | undefined;
1192
1192
  start_date?: string | number | null | undefined;
1193
1193
  }, {
1194
- title?: string | null | undefined;
1195
1194
  description?: string | null | undefined;
1196
- company_name?: string | null | undefined;
1195
+ title?: string | null | undefined;
1197
1196
  company_linkedin_url?: string | null | undefined;
1197
+ company_name?: string | null | undefined;
1198
1198
  start_date?: string | number | null | undefined;
1199
1199
  }>, "many">>>;
1200
1200
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1276,16 +1276,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
1276
1276
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
1277
1277
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1278
1278
  }, "strip", import("zod").ZodTypeAny, {
1279
- title?: string | null | undefined;
1280
1279
  description?: string | null | undefined;
1281
- company_name?: string | null | undefined;
1280
+ title?: string | null | undefined;
1282
1281
  company_linkedin_url?: string | null | undefined;
1282
+ company_name?: string | null | undefined;
1283
1283
  start_date?: string | number | null | undefined;
1284
1284
  }, {
1285
- title?: string | null | undefined;
1286
1285
  description?: string | null | undefined;
1287
- company_name?: string | null | undefined;
1286
+ title?: string | null | undefined;
1288
1287
  company_linkedin_url?: string | null | undefined;
1288
+ company_name?: string | null | undefined;
1289
1289
  start_date?: string | number | null | undefined;
1290
1290
  }>, "many">>>;
1291
1291
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1341,16 +1341,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
1341
1341
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
1342
1342
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1343
1343
  }, "strip", import("zod").ZodTypeAny, {
1344
- title?: string | null | undefined;
1345
1344
  description?: string | null | undefined;
1346
- company_name?: string | null | undefined;
1345
+ title?: string | null | undefined;
1347
1346
  company_linkedin_url?: string | null | undefined;
1347
+ company_name?: string | null | undefined;
1348
1348
  start_date?: string | number | null | undefined;
1349
1349
  }, {
1350
- title?: string | null | undefined;
1351
1350
  description?: string | null | undefined;
1352
- company_name?: string | null | undefined;
1351
+ title?: string | null | undefined;
1353
1352
  company_linkedin_url?: string | null | undefined;
1353
+ company_name?: string | null | undefined;
1354
1354
  start_date?: string | number | null | undefined;
1355
1355
  }>, "many">>>;
1356
1356
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1407,16 +1407,16 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
1407
1407
  start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
1408
1408
  description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1409
1409
  }, "strip", import("zod").ZodTypeAny, {
1410
- title?: string | null | undefined;
1411
1410
  description?: string | null | undefined;
1412
- company_name?: string | null | undefined;
1411
+ title?: string | null | undefined;
1413
1412
  company_linkedin_url?: string | null | undefined;
1413
+ company_name?: string | null | undefined;
1414
1414
  start_date?: string | number | null | undefined;
1415
1415
  }, {
1416
- title?: string | null | undefined;
1417
1416
  description?: string | null | undefined;
1418
- company_name?: string | null | undefined;
1417
+ title?: string | null | undefined;
1419
1418
  company_linkedin_url?: string | null | undefined;
1419
+ company_name?: string | null | undefined;
1420
1420
  start_date?: string | number | null | undefined;
1421
1421
  }>, "many">>>;
1422
1422
  past_positions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -2232,6 +2232,8 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
2232
2232
  operation: "person_search_db";
2233
2233
  success: boolean;
2234
2234
  error: string;
2235
+ next_cursor?: string | undefined;
2236
+ total_count?: number | undefined;
2235
2237
  profiles?: import("zod").objectOutputType<{
2236
2238
  person_id: import("zod").ZodOptional<import("zod").ZodNumber>;
2237
2239
  name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
@@ -2490,12 +2492,12 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
2490
2492
  websites: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>>;
2491
2493
  twitter_handle: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
2492
2494
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
2493
- total_count?: number | undefined;
2494
- next_cursor?: string | undefined;
2495
2495
  }, {
2496
2496
  operation: "person_search_db";
2497
2497
  success: boolean;
2498
2498
  error: string;
2499
+ next_cursor?: string | undefined;
2500
+ total_count?: number | undefined;
2499
2501
  profiles?: import("zod").objectInputType<{
2500
2502
  person_id: import("zod").ZodOptional<import("zod").ZodNumber>;
2501
2503
  name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
@@ -2754,8 +2756,6 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
2754
2756
  websites: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>>;
2755
2757
  twitter_handle: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
2756
2758
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
2757
- total_count?: number | undefined;
2758
- next_cursor?: string | undefined;
2759
2759
  }>]>;
2760
2760
  static readonly shortDescription = "Crustdata API for company data enrichment and people search";
2761
2761
  static readonly longDescription = "\n Crustdata service integration for company data enrichment, lead generation, and people search.\n\n Operations:\n - identify: Resolve company name/domain/LinkedIn URL to company_id (FREE)\n - enrich: Get company data with decision makers, CXOs, and founders (1 credit)\n - person_search_db: In-database people search with advanced filtering (3 credits per 100 results)\n\n Use cases:\n - Lead generation and sales prospecting\n - Company research and intelligence\n - Contact discovery for outreach\n - People search across companies with various filters\n - Find professionals by title, company, skills, location, etc.\n - Geographic radius search for local talent\n\n Note: For agent-friendly usage, use CompanyEnrichmentTool or PeopleSearchTool instead.\n ";