@bubblelab/bubble-core 0.1.64 → 0.1.66

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 (54) hide show
  1. package/dist/bubble-bundle.d.ts +79 -79
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +113 -104
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +129 -0
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +95 -74
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
  10. package/dist/bubbles/service-bubble/ashby/ashby.js +96 -0
  11. package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
  12. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +108 -102
  13. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
  14. package/dist/bubbles/service-bubble/ashby/ashby.schema.js +10 -1
  15. package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
  16. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  17. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  18. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
  20. package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
  21. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  23. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  24. package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
  25. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  26. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +32 -32
  31. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
  32. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  34. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
  38. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
  41. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
  42. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  45. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  46. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +10 -10
  47. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  49. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
  50. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
  51. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +20 -20
  52. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
  53. package/dist/bubbles.json +50 -21
  54. package/package.json +2 -2
@@ -12,8 +12,8 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
12
12
  maxRows: z.ZodDefault<z.ZodNumber>;
13
13
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
- parameters: unknown[];
16
15
  timeout: number;
16
+ parameters: unknown[];
17
17
  ignoreSSL: boolean;
18
18
  query: string;
19
19
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
@@ -21,9 +21,9 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  }, {
23
23
  query: string;
24
- parameters?: unknown[] | undefined;
25
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
26
25
  timeout?: number | undefined;
26
+ parameters?: unknown[] | undefined;
27
27
  ignoreSSL?: boolean | undefined;
28
28
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
29
29
  maxRows?: number | undefined;
@@ -49,9 +49,9 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
49
49
  error: z.ZodString;
50
50
  cleanedJSONString: z.ZodString;
51
51
  }, "strip", z.ZodTypeAny, {
52
- executionTime: number;
53
52
  error: string;
54
53
  success: boolean;
54
+ executionTime: number;
55
55
  rows: Record<string, unknown>[];
56
56
  rowCount: number | null;
57
57
  command: string;
@@ -61,9 +61,9 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
61
61
  dataTypeID: number;
62
62
  }[] | undefined;
63
63
  }, {
64
- executionTime: number;
65
64
  error: string;
66
65
  success: boolean;
66
+ executionTime: number;
67
67
  rows: Record<string, unknown>[];
68
68
  rowCount: number | null;
69
69
  command: string;
@@ -89,8 +89,8 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
89
89
  maxRows: z.ZodDefault<z.ZodNumber>;
90
90
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
91
91
  }, "strip", z.ZodTypeAny, {
92
- parameters: unknown[];
93
92
  timeout: number;
93
+ parameters: unknown[];
94
94
  ignoreSSL: boolean;
95
95
  query: string;
96
96
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
@@ -98,9 +98,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
99
99
  }, {
100
100
  query: string;
101
- parameters?: unknown[] | undefined;
102
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
103
102
  timeout?: number | undefined;
103
+ parameters?: unknown[] | undefined;
104
104
  ignoreSSL?: boolean | undefined;
105
105
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
106
106
  maxRows?: number | undefined;
@@ -124,9 +124,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
124
124
  error: z.ZodString;
125
125
  cleanedJSONString: z.ZodString;
126
126
  }, "strip", z.ZodTypeAny, {
127
- executionTime: number;
128
127
  error: string;
129
128
  success: boolean;
129
+ executionTime: number;
130
130
  rows: Record<string, unknown>[];
131
131
  rowCount: number | null;
132
132
  command: string;
@@ -136,9 +136,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
136
136
  dataTypeID: number;
137
137
  }[] | undefined;
138
138
  }, {
139
- executionTime: number;
140
139
  error: string;
141
140
  success: boolean;
141
+ executionTime: number;
142
142
  rows: Record<string, unknown>[];
143
143
  rowCount: number | null;
144
144
  command: string;
@@ -2398,9 +2398,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2398
2398
  success: boolean;
2399
2399
  operation: "get_conversation_history";
2400
2400
  ok: boolean;
2401
- response_metadata?: {
2402
- next_cursor: string;
2403
- } | undefined;
2404
2401
  messages?: {
2405
2402
  type: string;
2406
2403
  user?: string | undefined;
@@ -2427,15 +2424,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2427
2424
  count: number;
2428
2425
  }[] | undefined;
2429
2426
  }[] | undefined;
2427
+ response_metadata?: {
2428
+ next_cursor: string;
2429
+ } | undefined;
2430
2430
  has_more?: boolean | undefined;
2431
2431
  }, {
2432
2432
  error: string;
2433
2433
  success: boolean;
2434
2434
  operation: "get_conversation_history";
2435
2435
  ok: boolean;
2436
- response_metadata?: {
2437
- next_cursor: string;
2438
- } | undefined;
2439
2436
  messages?: {
2440
2437
  type: string;
2441
2438
  user?: string | undefined;
@@ -2462,6 +2459,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2462
2459
  count: number;
2463
2460
  }[] | undefined;
2464
2461
  }[] | undefined;
2462
+ response_metadata?: {
2463
+ next_cursor: string;
2464
+ } | undefined;
2465
2465
  has_more?: boolean | undefined;
2466
2466
  }>, z.ZodObject<{
2467
2467
  operation: z.ZodLiteral<"get_thread_replies">;
@@ -2569,9 +2569,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2569
2569
  success: boolean;
2570
2570
  operation: "get_thread_replies";
2571
2571
  ok: boolean;
2572
- response_metadata?: {
2573
- next_cursor: string;
2574
- } | undefined;
2575
2572
  messages?: {
2576
2573
  type: string;
2577
2574
  user?: string | undefined;
@@ -2598,15 +2595,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2598
2595
  count: number;
2599
2596
  }[] | undefined;
2600
2597
  }[] | undefined;
2598
+ response_metadata?: {
2599
+ next_cursor: string;
2600
+ } | undefined;
2601
2601
  has_more?: boolean | undefined;
2602
2602
  }, {
2603
2603
  error: string;
2604
2604
  success: boolean;
2605
2605
  operation: "get_thread_replies";
2606
2606
  ok: boolean;
2607
- response_metadata?: {
2608
- next_cursor: string;
2609
- } | undefined;
2610
2607
  messages?: {
2611
2608
  type: string;
2612
2609
  user?: string | undefined;
@@ -2633,6 +2630,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2633
2630
  count: number;
2634
2631
  }[] | undefined;
2635
2632
  }[] | undefined;
2633
+ response_metadata?: {
2634
+ next_cursor: string;
2635
+ } | undefined;
2636
2636
  has_more?: boolean | undefined;
2637
2637
  }>, z.ZodObject<{
2638
2638
  operation: z.ZodLiteral<"update_message">;
@@ -3163,8 +3163,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3163
3163
  has_rich_preview: z.ZodOptional<z.ZodBoolean>;
3164
3164
  }, "strip", z.ZodTypeAny, {
3165
3165
  name: string;
3166
- id: string;
3167
3166
  user: string;
3167
+ id: string;
3168
3168
  username: string;
3169
3169
  timestamp: number;
3170
3170
  created: number;
@@ -3208,8 +3208,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3208
3208
  has_rich_preview?: boolean | undefined;
3209
3209
  }, {
3210
3210
  name: string;
3211
- id: string;
3212
3211
  user: string;
3212
+ id: string;
3213
3213
  username: string;
3214
3214
  timestamp: number;
3215
3215
  created: number;
@@ -3261,8 +3261,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3261
3261
  ok: boolean;
3262
3262
  file?: {
3263
3263
  name: string;
3264
- id: string;
3265
3264
  user: string;
3265
+ id: string;
3266
3266
  username: string;
3267
3267
  timestamp: number;
3268
3268
  created: number;
@@ -3312,8 +3312,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3312
3312
  ok: boolean;
3313
3313
  file?: {
3314
3314
  name: string;
3315
- id: string;
3316
3315
  user: string;
3316
+ id: string;
3317
3317
  username: string;
3318
3318
  timestamp: number;
3319
3319
  created: number;
@@ -5790,9 +5790,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5790
5790
  success: boolean;
5791
5791
  operation: "get_conversation_history";
5792
5792
  ok: boolean;
5793
- response_metadata?: {
5794
- next_cursor: string;
5795
- } | undefined;
5796
5793
  messages?: {
5797
5794
  type: string;
5798
5795
  user?: string | undefined;
@@ -5819,15 +5816,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5819
5816
  count: number;
5820
5817
  }[] | undefined;
5821
5818
  }[] | undefined;
5819
+ response_metadata?: {
5820
+ next_cursor: string;
5821
+ } | undefined;
5822
5822
  has_more?: boolean | undefined;
5823
5823
  }, {
5824
5824
  error: string;
5825
5825
  success: boolean;
5826
5826
  operation: "get_conversation_history";
5827
5827
  ok: boolean;
5828
- response_metadata?: {
5829
- next_cursor: string;
5830
- } | undefined;
5831
5828
  messages?: {
5832
5829
  type: string;
5833
5830
  user?: string | undefined;
@@ -5854,6 +5851,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5854
5851
  count: number;
5855
5852
  }[] | undefined;
5856
5853
  }[] | undefined;
5854
+ response_metadata?: {
5855
+ next_cursor: string;
5856
+ } | undefined;
5857
5857
  has_more?: boolean | undefined;
5858
5858
  }>, z.ZodObject<{
5859
5859
  operation: z.ZodLiteral<"get_thread_replies">;
@@ -5961,9 +5961,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5961
5961
  success: boolean;
5962
5962
  operation: "get_thread_replies";
5963
5963
  ok: boolean;
5964
- response_metadata?: {
5965
- next_cursor: string;
5966
- } | undefined;
5967
5964
  messages?: {
5968
5965
  type: string;
5969
5966
  user?: string | undefined;
@@ -5990,15 +5987,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5990
5987
  count: number;
5991
5988
  }[] | undefined;
5992
5989
  }[] | undefined;
5990
+ response_metadata?: {
5991
+ next_cursor: string;
5992
+ } | undefined;
5993
5993
  has_more?: boolean | undefined;
5994
5994
  }, {
5995
5995
  error: string;
5996
5996
  success: boolean;
5997
5997
  operation: "get_thread_replies";
5998
5998
  ok: boolean;
5999
- response_metadata?: {
6000
- next_cursor: string;
6001
- } | undefined;
6002
5999
  messages?: {
6003
6000
  type: string;
6004
6001
  user?: string | undefined;
@@ -6025,6 +6022,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6025
6022
  count: number;
6026
6023
  }[] | undefined;
6027
6024
  }[] | undefined;
6025
+ response_metadata?: {
6026
+ next_cursor: string;
6027
+ } | undefined;
6028
6028
  has_more?: boolean | undefined;
6029
6029
  }>, z.ZodObject<{
6030
6030
  operation: z.ZodLiteral<"update_message">;
@@ -6555,8 +6555,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6555
6555
  has_rich_preview: z.ZodOptional<z.ZodBoolean>;
6556
6556
  }, "strip", z.ZodTypeAny, {
6557
6557
  name: string;
6558
- id: string;
6559
6558
  user: string;
6559
+ id: string;
6560
6560
  username: string;
6561
6561
  timestamp: number;
6562
6562
  created: number;
@@ -6600,8 +6600,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6600
6600
  has_rich_preview?: boolean | undefined;
6601
6601
  }, {
6602
6602
  name: string;
6603
- id: string;
6604
6603
  user: string;
6604
+ id: string;
6605
6605
  username: string;
6606
6606
  timestamp: number;
6607
6607
  created: number;
@@ -6653,8 +6653,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6653
6653
  ok: boolean;
6654
6654
  file?: {
6655
6655
  name: string;
6656
- id: string;
6657
6656
  user: string;
6657
+ id: string;
6658
6658
  username: string;
6659
6659
  timestamp: number;
6660
6660
  created: number;
@@ -6704,8 +6704,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6704
6704
  ok: boolean;
6705
6705
  file?: {
6706
6706
  name: string;
6707
- id: string;
6708
6707
  user: string;
6708
+ id: string;
6709
6709
  username: string;
6710
6710
  timestamp: number;
6711
6711
  created: number;
@@ -46,14 +46,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
46
46
  }, "strip", import("zod").ZodTypeAny, {
47
47
  name: string;
48
48
  operation: "create_customer";
49
- credentials?: Partial<Record<CredentialType, string>> | undefined;
50
49
  email?: string | undefined;
50
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
51
51
  metadata?: Record<string, string> | undefined;
52
52
  }, {
53
53
  name: string;
54
54
  operation: "create_customer";
55
- credentials?: Partial<Record<CredentialType, string>> | undefined;
56
55
  email?: string | undefined;
56
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
57
57
  metadata?: Record<string, string> | undefined;
58
58
  }>, import("zod").ZodObject<{
59
59
  operation: import("zod").ZodLiteral<"list_customers">;
@@ -63,12 +63,12 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
63
63
  }, "strip", import("zod").ZodTypeAny, {
64
64
  operation: "list_customers";
65
65
  limit: number;
66
- credentials?: Partial<Record<CredentialType, string>> | undefined;
67
66
  email?: string | undefined;
67
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
68
68
  }, {
69
69
  operation: "list_customers";
70
- credentials?: Partial<Record<CredentialType, string>> | undefined;
71
70
  email?: string | undefined;
71
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
72
72
  limit?: number | undefined;
73
73
  }>, import("zod").ZodObject<{
74
74
  operation: import("zod").ZodLiteral<"create_product">;
@@ -224,14 +224,14 @@ export declare const StripeParamsSchema: z.ZodDiscriminatedUnion<"operation", [z
224
224
  }, "strip", z.ZodTypeAny, {
225
225
  name: string;
226
226
  operation: "create_customer";
227
- credentials?: Partial<Record<CredentialType, string>> | undefined;
228
227
  email?: string | undefined;
228
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
229
229
  metadata?: Record<string, string> | undefined;
230
230
  }, {
231
231
  name: string;
232
232
  operation: "create_customer";
233
- credentials?: Partial<Record<CredentialType, string>> | undefined;
234
233
  email?: string | undefined;
234
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
235
235
  metadata?: Record<string, string> | undefined;
236
236
  }>, z.ZodObject<{
237
237
  operation: z.ZodLiteral<"list_customers">;
@@ -241,12 +241,12 @@ export declare const StripeParamsSchema: z.ZodDiscriminatedUnion<"operation", [z
241
241
  }, "strip", z.ZodTypeAny, {
242
242
  operation: "list_customers";
243
243
  limit: number;
244
- credentials?: Partial<Record<CredentialType, string>> | undefined;
245
244
  email?: string | undefined;
245
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
246
246
  }, {
247
247
  operation: "list_customers";
248
- credentials?: Partial<Record<CredentialType, string>> | undefined;
249
248
  email?: string | undefined;
249
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
250
250
  limit?: number | undefined;
251
251
  }>, z.ZodObject<{
252
252
  operation: z.ZodLiteral<"create_product">;
@@ -98,12 +98,12 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
98
98
  }, "strip", import("zod").ZodTypeAny, {
99
99
  operation: "screenshot";
100
100
  full_page: boolean;
101
- credentials?: Partial<Record<CredentialType, string>> | undefined;
102
101
  url?: string | undefined;
102
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
103
103
  }, {
104
104
  operation: "screenshot";
105
- credentials?: Partial<Record<CredentialType, string>> | undefined;
106
105
  url?: string | undefined;
106
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
107
107
  full_page?: boolean | undefined;
108
108
  }>]>;
109
109
  static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
@@ -98,12 +98,12 @@ export declare const AmazonShoppingToolParamsSchema: z.ZodDiscriminatedUnion<"op
98
98
  }, "strip", z.ZodTypeAny, {
99
99
  operation: "screenshot";
100
100
  full_page: boolean;
101
- credentials?: Partial<Record<CredentialType, string>> | undefined;
102
101
  url?: string | undefined;
102
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
103
103
  }, {
104
104
  operation: "screenshot";
105
- credentials?: Partial<Record<CredentialType, string>> | undefined;
106
105
  url?: string | undefined;
106
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
107
107
  full_page?: boolean | undefined;
108
108
  }>]>;
109
109
  /**
@@ -71,6 +71,7 @@ declare const ContactSchema: z.ZodObject<{
71
71
  location: string | null;
72
72
  headline: string | null;
73
73
  emails: string[] | null;
74
+ linkedinUrl: string | null;
74
75
  languages: string[] | null;
75
76
  skills: string[] | null;
76
77
  education: {
@@ -78,7 +79,6 @@ declare const ContactSchema: z.ZodObject<{
78
79
  degreeName: string | null;
79
80
  fieldOfStudy: string | null;
80
81
  }[] | null;
81
- linkedinUrl: string | null;
82
82
  profilePictureUrl: string | null;
83
83
  twitterHandle: string | null;
84
84
  currentEmployment: {
@@ -102,6 +102,7 @@ declare const ContactSchema: z.ZodObject<{
102
102
  location: string | null;
103
103
  headline: string | null;
104
104
  emails: string[] | null;
105
+ linkedinUrl: string | null;
105
106
  languages: string[] | null;
106
107
  skills: string[] | null;
107
108
  education: {
@@ -109,7 +110,6 @@ declare const ContactSchema: z.ZodObject<{
109
110
  degreeName: string | null;
110
111
  fieldOfStudy: string | null;
111
112
  }[] | null;
112
- linkedinUrl: string | null;
113
113
  profilePictureUrl: string | null;
114
114
  twitterHandle: string | null;
115
115
  currentEmployment: {
@@ -209,6 +209,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
209
209
  location: string | null;
210
210
  headline: string | null;
211
211
  emails: string[] | null;
212
+ linkedinUrl: string | null;
212
213
  languages: string[] | null;
213
214
  skills: string[] | null;
214
215
  education: {
@@ -216,7 +217,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
216
217
  degreeName: string | null;
217
218
  fieldOfStudy: string | null;
218
219
  }[] | null;
219
- linkedinUrl: string | null;
220
220
  profilePictureUrl: string | null;
221
221
  twitterHandle: string | null;
222
222
  currentEmployment: {
@@ -240,6 +240,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
240
240
  location: string | null;
241
241
  headline: string | null;
242
242
  emails: string[] | null;
243
+ linkedinUrl: string | null;
243
244
  languages: string[] | null;
244
245
  skills: string[] | null;
245
246
  education: {
@@ -247,7 +248,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
247
248
  degreeName: string | null;
248
249
  fieldOfStudy: string | null;
249
250
  }[] | null;
250
- linkedinUrl: string | null;
251
251
  profilePictureUrl: string | null;
252
252
  twitterHandle: string | null;
253
253
  currentEmployment: {
@@ -280,9 +280,9 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
280
280
  description: string | null;
281
281
  name: string | null;
282
282
  website: string | null;
283
+ linkedinUrl: string | null;
283
284
  industry: string | null;
284
285
  headcount: number | null;
285
- linkedinUrl: string | null;
286
286
  hqCity: string | null;
287
287
  hqCountry: string | null;
288
288
  yearFounded: number | null;
@@ -292,9 +292,9 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
292
292
  description: string | null;
293
293
  name: string | null;
294
294
  website: string | null;
295
+ linkedinUrl: string | null;
295
296
  industry: string | null;
296
297
  headcount: number | null;
297
- linkedinUrl: string | null;
298
298
  hqCity: string | null;
299
299
  hqCountry: string | null;
300
300
  yearFounded: number | null;
@@ -311,9 +311,9 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
311
311
  description: string | null;
312
312
  name: string | null;
313
313
  website: string | null;
314
+ linkedinUrl: string | null;
314
315
  industry: string | null;
315
316
  headcount: number | null;
316
- linkedinUrl: string | null;
317
317
  hqCity: string | null;
318
318
  hqCountry: string | null;
319
319
  yearFounded: number | null;
@@ -328,6 +328,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
328
328
  location: string | null;
329
329
  headline: string | null;
330
330
  emails: string[] | null;
331
+ linkedinUrl: string | null;
331
332
  languages: string[] | null;
332
333
  skills: string[] | null;
333
334
  education: {
@@ -335,7 +336,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
335
336
  degreeName: string | null;
336
337
  fieldOfStudy: string | null;
337
338
  }[] | null;
338
- linkedinUrl: string | null;
339
339
  profilePictureUrl: string | null;
340
340
  twitterHandle: string | null;
341
341
  currentEmployment: {
@@ -360,9 +360,9 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
360
360
  description: string | null;
361
361
  name: string | null;
362
362
  website: string | null;
363
+ linkedinUrl: string | null;
363
364
  industry: string | null;
364
365
  headcount: number | null;
365
- linkedinUrl: string | null;
366
366
  hqCity: string | null;
367
367
  hqCountry: string | null;
368
368
  yearFounded: number | null;
@@ -377,6 +377,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
377
377
  location: string | null;
378
378
  headline: string | null;
379
379
  emails: string[] | null;
380
+ linkedinUrl: string | null;
380
381
  languages: string[] | null;
381
382
  skills: string[] | null;
382
383
  education: {
@@ -384,7 +385,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
384
385
  degreeName: string | null;
385
386
  fieldOfStudy: string | null;
386
387
  }[] | null;
387
- linkedinUrl: string | null;
388
388
  profilePictureUrl: string | null;
389
389
  twitterHandle: string | null;
390
390
  currentEmployment: {
@@ -510,6 +510,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
510
510
  location: string | null;
511
511
  headline: string | null;
512
512
  emails: string[] | null;
513
+ linkedinUrl: string | null;
513
514
  languages: string[] | null;
514
515
  skills: string[] | null;
515
516
  education: {
@@ -517,7 +518,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
517
518
  degreeName: string | null;
518
519
  fieldOfStudy: string | null;
519
520
  }[] | null;
520
- linkedinUrl: string | null;
521
521
  profilePictureUrl: string | null;
522
522
  twitterHandle: string | null;
523
523
  currentEmployment: {
@@ -541,6 +541,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
541
541
  location: string | null;
542
542
  headline: string | null;
543
543
  emails: string[] | null;
544
+ linkedinUrl: string | null;
544
545
  languages: string[] | null;
545
546
  skills: string[] | null;
546
547
  education: {
@@ -548,7 +549,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
548
549
  degreeName: string | null;
549
550
  fieldOfStudy: string | null;
550
551
  }[] | null;
551
- linkedinUrl: string | null;
552
552
  profilePictureUrl: string | null;
553
553
  twitterHandle: string | null;
554
554
  currentEmployment: {
@@ -581,9 +581,9 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
581
581
  description: string | null;
582
582
  name: string | null;
583
583
  website: string | null;
584
+ linkedinUrl: string | null;
584
585
  industry: string | null;
585
586
  headcount: number | null;
586
- linkedinUrl: string | null;
587
587
  hqCity: string | null;
588
588
  hqCountry: string | null;
589
589
  yearFounded: number | null;
@@ -593,9 +593,9 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
593
593
  description: string | null;
594
594
  name: string | null;
595
595
  website: string | null;
596
+ linkedinUrl: string | null;
596
597
  industry: string | null;
597
598
  headcount: number | null;
598
- linkedinUrl: string | null;
599
599
  hqCity: string | null;
600
600
  hqCountry: string | null;
601
601
  yearFounded: number | null;
@@ -612,9 +612,9 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
612
612
  description: string | null;
613
613
  name: string | null;
614
614
  website: string | null;
615
+ linkedinUrl: string | null;
615
616
  industry: string | null;
616
617
  headcount: number | null;
617
- linkedinUrl: string | null;
618
618
  hqCity: string | null;
619
619
  hqCountry: string | null;
620
620
  yearFounded: number | null;
@@ -629,6 +629,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
629
629
  location: string | null;
630
630
  headline: string | null;
631
631
  emails: string[] | null;
632
+ linkedinUrl: string | null;
632
633
  languages: string[] | null;
633
634
  skills: string[] | null;
634
635
  education: {
@@ -636,7 +637,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
636
637
  degreeName: string | null;
637
638
  fieldOfStudy: string | null;
638
639
  }[] | null;
639
- linkedinUrl: string | null;
640
640
  profilePictureUrl: string | null;
641
641
  twitterHandle: string | null;
642
642
  currentEmployment: {
@@ -661,9 +661,9 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
661
661
  description: string | null;
662
662
  name: string | null;
663
663
  website: string | null;
664
+ linkedinUrl: string | null;
664
665
  industry: string | null;
665
666
  headcount: number | null;
666
- linkedinUrl: string | null;
667
667
  hqCity: string | null;
668
668
  hqCountry: string | null;
669
669
  yearFounded: number | null;
@@ -678,6 +678,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
678
678
  location: string | null;
679
679
  headline: string | null;
680
680
  emails: string[] | null;
681
+ linkedinUrl: string | null;
681
682
  languages: string[] | null;
682
683
  skills: string[] | null;
683
684
  education: {
@@ -685,7 +686,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
685
686
  degreeName: string | null;
686
687
  fieldOfStudy: string | null;
687
688
  }[] | null;
688
- linkedinUrl: string | null;
689
689
  profilePictureUrl: string | null;
690
690
  twitterHandle: string | null;
691
691
  currentEmployment: {