@bubblelab/bubble-core 0.1.101 → 0.1.102
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 +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
- package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
- package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
- package/dist/bubbles/service-bubble/github.d.ts +240 -240
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +109 -2
- package/package.json +2 -2
|
@@ -66,21 +66,21 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
title: string | null;
|
|
68
68
|
name: string | null;
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
70
|
+
summary: string | null;
|
|
71
71
|
location: string | null;
|
|
72
72
|
headline: string | null;
|
|
73
|
-
|
|
74
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
75
|
-
languages: string[] | null;
|
|
73
|
+
emails: string[] | null;
|
|
76
74
|
skills: string[] | null;
|
|
75
|
+
languages: string[] | null;
|
|
76
|
+
linkedinUrl: string | null;
|
|
77
|
+
profilePictureUrl: string | null;
|
|
78
|
+
twitterHandle: string | null;
|
|
77
79
|
education: {
|
|
78
80
|
instituteName: string | null;
|
|
79
81
|
degreeName: string | null;
|
|
80
82
|
fieldOfStudy: string | null;
|
|
81
83
|
}[] | null;
|
|
82
|
-
profilePictureUrl: string | null;
|
|
83
|
-
twitterHandle: string | null;
|
|
84
84
|
currentEmployment: {
|
|
85
85
|
description: string | null;
|
|
86
86
|
title: string | null;
|
|
@@ -97,21 +97,21 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
97
97
|
}, {
|
|
98
98
|
title: string | null;
|
|
99
99
|
name: string | null;
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
101
|
+
summary: string | null;
|
|
102
102
|
location: string | null;
|
|
103
103
|
headline: string | null;
|
|
104
|
-
|
|
105
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
106
|
-
languages: string[] | null;
|
|
104
|
+
emails: string[] | null;
|
|
107
105
|
skills: string[] | null;
|
|
106
|
+
languages: string[] | null;
|
|
107
|
+
linkedinUrl: string | null;
|
|
108
|
+
profilePictureUrl: string | null;
|
|
109
|
+
twitterHandle: string | null;
|
|
108
110
|
education: {
|
|
109
111
|
instituteName: string | null;
|
|
110
112
|
degreeName: string | null;
|
|
111
113
|
fieldOfStudy: string | null;
|
|
112
114
|
}[] | null;
|
|
113
|
-
profilePictureUrl: string | null;
|
|
114
|
-
twitterHandle: string | null;
|
|
115
115
|
currentEmployment: {
|
|
116
116
|
description: string | null;
|
|
117
117
|
title: string | null;
|
|
@@ -204,21 +204,21 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
title: string | null;
|
|
206
206
|
name: string | null;
|
|
207
|
-
|
|
208
|
-
|
|
207
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
208
|
+
summary: string | null;
|
|
209
209
|
location: string | null;
|
|
210
210
|
headline: string | null;
|
|
211
|
-
|
|
212
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
213
|
-
languages: string[] | null;
|
|
211
|
+
emails: string[] | null;
|
|
214
212
|
skills: string[] | null;
|
|
213
|
+
languages: string[] | null;
|
|
214
|
+
linkedinUrl: string | null;
|
|
215
|
+
profilePictureUrl: string | null;
|
|
216
|
+
twitterHandle: string | null;
|
|
215
217
|
education: {
|
|
216
218
|
instituteName: string | null;
|
|
217
219
|
degreeName: string | null;
|
|
218
220
|
fieldOfStudy: string | null;
|
|
219
221
|
}[] | null;
|
|
220
|
-
profilePictureUrl: string | null;
|
|
221
|
-
twitterHandle: string | null;
|
|
222
222
|
currentEmployment: {
|
|
223
223
|
description: string | null;
|
|
224
224
|
title: string | null;
|
|
@@ -235,21 +235,21 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
235
235
|
}, {
|
|
236
236
|
title: string | null;
|
|
237
237
|
name: string | null;
|
|
238
|
-
|
|
239
|
-
|
|
238
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
239
|
+
summary: string | null;
|
|
240
240
|
location: string | null;
|
|
241
241
|
headline: string | null;
|
|
242
|
-
|
|
243
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
244
|
-
languages: string[] | null;
|
|
242
|
+
emails: string[] | null;
|
|
245
243
|
skills: string[] | null;
|
|
244
|
+
languages: string[] | null;
|
|
245
|
+
linkedinUrl: string | null;
|
|
246
|
+
profilePictureUrl: string | null;
|
|
247
|
+
twitterHandle: string | null;
|
|
246
248
|
education: {
|
|
247
249
|
instituteName: string | null;
|
|
248
250
|
degreeName: string | null;
|
|
249
251
|
fieldOfStudy: string | null;
|
|
250
252
|
}[] | null;
|
|
251
|
-
profilePictureUrl: string | null;
|
|
252
|
-
twitterHandle: string | null;
|
|
253
253
|
currentEmployment: {
|
|
254
254
|
description: string | null;
|
|
255
255
|
title: string | null;
|
|
@@ -279,10 +279,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
280
|
description: string | null;
|
|
281
281
|
name: string | null;
|
|
282
|
-
linkedinUrl: string | null;
|
|
283
282
|
website: string | null;
|
|
284
|
-
|
|
283
|
+
linkedinUrl: string | null;
|
|
285
284
|
headcount: number | null;
|
|
285
|
+
industry: string | null;
|
|
286
286
|
hqCity: string | null;
|
|
287
287
|
hqCountry: string | null;
|
|
288
288
|
yearFounded: number | null;
|
|
@@ -291,10 +291,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
291
291
|
}, {
|
|
292
292
|
description: string | null;
|
|
293
293
|
name: string | null;
|
|
294
|
-
linkedinUrl: string | null;
|
|
295
294
|
website: string | null;
|
|
296
|
-
|
|
295
|
+
linkedinUrl: string | null;
|
|
297
296
|
headcount: number | null;
|
|
297
|
+
industry: string | null;
|
|
298
298
|
hqCity: string | null;
|
|
299
299
|
hqCountry: string | null;
|
|
300
300
|
yearFounded: number | null;
|
|
@@ -310,10 +310,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
310
310
|
company: {
|
|
311
311
|
description: string | null;
|
|
312
312
|
name: string | null;
|
|
313
|
-
linkedinUrl: string | null;
|
|
314
313
|
website: string | null;
|
|
315
|
-
|
|
314
|
+
linkedinUrl: string | null;
|
|
316
315
|
headcount: number | null;
|
|
316
|
+
industry: string | null;
|
|
317
317
|
hqCity: string | null;
|
|
318
318
|
hqCountry: string | null;
|
|
319
319
|
yearFounded: number | null;
|
|
@@ -323,21 +323,21 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
323
323
|
contacts: {
|
|
324
324
|
title: string | null;
|
|
325
325
|
name: string | null;
|
|
326
|
-
|
|
327
|
-
|
|
326
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
327
|
+
summary: string | null;
|
|
328
328
|
location: string | null;
|
|
329
329
|
headline: string | null;
|
|
330
|
-
|
|
331
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
332
|
-
languages: string[] | null;
|
|
330
|
+
emails: string[] | null;
|
|
333
331
|
skills: string[] | null;
|
|
332
|
+
languages: string[] | null;
|
|
333
|
+
linkedinUrl: string | null;
|
|
334
|
+
profilePictureUrl: string | null;
|
|
335
|
+
twitterHandle: string | null;
|
|
334
336
|
education: {
|
|
335
337
|
instituteName: string | null;
|
|
336
338
|
degreeName: string | null;
|
|
337
339
|
fieldOfStudy: string | null;
|
|
338
340
|
}[] | null;
|
|
339
|
-
profilePictureUrl: string | null;
|
|
340
|
-
twitterHandle: string | null;
|
|
341
341
|
currentEmployment: {
|
|
342
342
|
description: string | null;
|
|
343
343
|
title: string | null;
|
|
@@ -359,10 +359,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
359
359
|
company: {
|
|
360
360
|
description: string | null;
|
|
361
361
|
name: string | null;
|
|
362
|
-
linkedinUrl: string | null;
|
|
363
362
|
website: string | null;
|
|
364
|
-
|
|
363
|
+
linkedinUrl: string | null;
|
|
365
364
|
headcount: number | null;
|
|
365
|
+
industry: string | null;
|
|
366
366
|
hqCity: string | null;
|
|
367
367
|
hqCountry: string | null;
|
|
368
368
|
yearFounded: number | null;
|
|
@@ -372,21 +372,21 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
372
372
|
contacts: {
|
|
373
373
|
title: string | null;
|
|
374
374
|
name: string | null;
|
|
375
|
-
|
|
376
|
-
|
|
375
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
376
|
+
summary: string | null;
|
|
377
377
|
location: string | null;
|
|
378
378
|
headline: string | null;
|
|
379
|
-
|
|
380
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
381
|
-
languages: string[] | null;
|
|
379
|
+
emails: string[] | null;
|
|
382
380
|
skills: string[] | null;
|
|
381
|
+
languages: string[] | null;
|
|
382
|
+
linkedinUrl: string | null;
|
|
383
|
+
profilePictureUrl: string | null;
|
|
384
|
+
twitterHandle: string | null;
|
|
383
385
|
education: {
|
|
384
386
|
instituteName: string | null;
|
|
385
387
|
degreeName: string | null;
|
|
386
388
|
fieldOfStudy: string | null;
|
|
387
389
|
}[] | null;
|
|
388
|
-
profilePictureUrl: string | null;
|
|
389
|
-
twitterHandle: string | null;
|
|
390
390
|
currentEmployment: {
|
|
391
391
|
description: string | null;
|
|
392
392
|
title: string | null;
|
|
@@ -505,21 +505,21 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
506
|
title: string | null;
|
|
507
507
|
name: string | null;
|
|
508
|
-
|
|
509
|
-
|
|
508
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
509
|
+
summary: string | null;
|
|
510
510
|
location: string | null;
|
|
511
511
|
headline: string | null;
|
|
512
|
-
|
|
513
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
514
|
-
languages: string[] | null;
|
|
512
|
+
emails: string[] | null;
|
|
515
513
|
skills: string[] | null;
|
|
514
|
+
languages: string[] | null;
|
|
515
|
+
linkedinUrl: string | null;
|
|
516
|
+
profilePictureUrl: string | null;
|
|
517
|
+
twitterHandle: string | null;
|
|
516
518
|
education: {
|
|
517
519
|
instituteName: string | null;
|
|
518
520
|
degreeName: string | null;
|
|
519
521
|
fieldOfStudy: string | null;
|
|
520
522
|
}[] | null;
|
|
521
|
-
profilePictureUrl: string | null;
|
|
522
|
-
twitterHandle: string | null;
|
|
523
523
|
currentEmployment: {
|
|
524
524
|
description: string | null;
|
|
525
525
|
title: string | null;
|
|
@@ -536,21 +536,21 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
536
536
|
}, {
|
|
537
537
|
title: string | null;
|
|
538
538
|
name: string | null;
|
|
539
|
-
|
|
540
|
-
|
|
539
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
540
|
+
summary: string | null;
|
|
541
541
|
location: string | null;
|
|
542
542
|
headline: string | null;
|
|
543
|
-
|
|
544
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
545
|
-
languages: string[] | null;
|
|
543
|
+
emails: string[] | null;
|
|
546
544
|
skills: string[] | null;
|
|
545
|
+
languages: string[] | null;
|
|
546
|
+
linkedinUrl: string | null;
|
|
547
|
+
profilePictureUrl: string | null;
|
|
548
|
+
twitterHandle: string | null;
|
|
547
549
|
education: {
|
|
548
550
|
instituteName: string | null;
|
|
549
551
|
degreeName: string | null;
|
|
550
552
|
fieldOfStudy: string | null;
|
|
551
553
|
}[] | null;
|
|
552
|
-
profilePictureUrl: string | null;
|
|
553
|
-
twitterHandle: string | null;
|
|
554
554
|
currentEmployment: {
|
|
555
555
|
description: string | null;
|
|
556
556
|
title: string | null;
|
|
@@ -580,10 +580,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
581
|
description: string | null;
|
|
582
582
|
name: string | null;
|
|
583
|
-
linkedinUrl: string | null;
|
|
584
583
|
website: string | null;
|
|
585
|
-
|
|
584
|
+
linkedinUrl: string | null;
|
|
586
585
|
headcount: number | null;
|
|
586
|
+
industry: string | null;
|
|
587
587
|
hqCity: string | null;
|
|
588
588
|
hqCountry: string | null;
|
|
589
589
|
yearFounded: number | null;
|
|
@@ -592,10 +592,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
592
592
|
}, {
|
|
593
593
|
description: string | null;
|
|
594
594
|
name: string | null;
|
|
595
|
-
linkedinUrl: string | null;
|
|
596
595
|
website: string | null;
|
|
597
|
-
|
|
596
|
+
linkedinUrl: string | null;
|
|
598
597
|
headcount: number | null;
|
|
598
|
+
industry: string | null;
|
|
599
599
|
hqCity: string | null;
|
|
600
600
|
hqCountry: string | null;
|
|
601
601
|
yearFounded: number | null;
|
|
@@ -611,10 +611,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
611
611
|
company: {
|
|
612
612
|
description: string | null;
|
|
613
613
|
name: string | null;
|
|
614
|
-
linkedinUrl: string | null;
|
|
615
614
|
website: string | null;
|
|
616
|
-
|
|
615
|
+
linkedinUrl: string | null;
|
|
617
616
|
headcount: number | null;
|
|
617
|
+
industry: string | null;
|
|
618
618
|
hqCity: string | null;
|
|
619
619
|
hqCountry: string | null;
|
|
620
620
|
yearFounded: number | null;
|
|
@@ -624,21 +624,21 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
624
624
|
contacts: {
|
|
625
625
|
title: string | null;
|
|
626
626
|
name: string | null;
|
|
627
|
-
|
|
628
|
-
|
|
627
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
628
|
+
summary: string | null;
|
|
629
629
|
location: string | null;
|
|
630
630
|
headline: string | null;
|
|
631
|
-
|
|
632
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
633
|
-
languages: string[] | null;
|
|
631
|
+
emails: string[] | null;
|
|
634
632
|
skills: string[] | null;
|
|
633
|
+
languages: string[] | null;
|
|
634
|
+
linkedinUrl: string | null;
|
|
635
|
+
profilePictureUrl: string | null;
|
|
636
|
+
twitterHandle: string | null;
|
|
635
637
|
education: {
|
|
636
638
|
instituteName: string | null;
|
|
637
639
|
degreeName: string | null;
|
|
638
640
|
fieldOfStudy: string | null;
|
|
639
641
|
}[] | null;
|
|
640
|
-
profilePictureUrl: string | null;
|
|
641
|
-
twitterHandle: string | null;
|
|
642
642
|
currentEmployment: {
|
|
643
643
|
description: string | null;
|
|
644
644
|
title: string | null;
|
|
@@ -660,10 +660,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
660
660
|
company: {
|
|
661
661
|
description: string | null;
|
|
662
662
|
name: string | null;
|
|
663
|
-
linkedinUrl: string | null;
|
|
664
663
|
website: string | null;
|
|
665
|
-
|
|
664
|
+
linkedinUrl: string | null;
|
|
666
665
|
headcount: number | null;
|
|
666
|
+
industry: string | null;
|
|
667
667
|
hqCity: string | null;
|
|
668
668
|
hqCountry: string | null;
|
|
669
669
|
yearFounded: number | null;
|
|
@@ -673,21 +673,21 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
673
673
|
contacts: {
|
|
674
674
|
title: string | null;
|
|
675
675
|
name: string | null;
|
|
676
|
-
|
|
677
|
-
|
|
676
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
677
|
+
summary: string | null;
|
|
678
678
|
location: string | null;
|
|
679
679
|
headline: string | null;
|
|
680
|
-
|
|
681
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
682
|
-
languages: string[] | null;
|
|
680
|
+
emails: string[] | null;
|
|
683
681
|
skills: string[] | null;
|
|
682
|
+
languages: string[] | null;
|
|
683
|
+
linkedinUrl: string | null;
|
|
684
|
+
profilePictureUrl: string | null;
|
|
685
|
+
twitterHandle: string | null;
|
|
684
686
|
education: {
|
|
685
687
|
instituteName: string | null;
|
|
686
688
|
degreeName: string | null;
|
|
687
689
|
fieldOfStudy: string | null;
|
|
688
690
|
}[] | null;
|
|
689
|
-
profilePictureUrl: string | null;
|
|
690
|
-
twitterHandle: string | null;
|
|
691
691
|
currentEmployment: {
|
|
692
692
|
description: string | null;
|
|
693
693
|
title: string | null;
|
|
@@ -67,15 +67,15 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
67
67
|
responseFromOwnerText: z.ZodNullable<z.ZodString>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
69
|
name: string | null;
|
|
70
|
-
likesCount: number | null;
|
|
71
70
|
text: string | null;
|
|
71
|
+
likesCount: number | null;
|
|
72
72
|
rating: number | null;
|
|
73
73
|
publishedAtDate: string | null;
|
|
74
74
|
responseFromOwnerText: string | null;
|
|
75
75
|
}, {
|
|
76
76
|
name: string | null;
|
|
77
|
-
likesCount: number | null;
|
|
78
77
|
text: string | null;
|
|
78
|
+
likesCount: number | null;
|
|
79
79
|
rating: number | null;
|
|
80
80
|
publishedAtDate: string | null;
|
|
81
81
|
responseFromOwnerText: string | null;
|
|
@@ -83,9 +83,9 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
83
83
|
imageUrls: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
84
84
|
additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
|
-
url: string | null;
|
|
87
86
|
title: string | null;
|
|
88
|
-
|
|
87
|
+
url: string | null;
|
|
88
|
+
phone: string | null;
|
|
89
89
|
location: {
|
|
90
90
|
lat: number | null;
|
|
91
91
|
lng: number | null;
|
|
@@ -93,7 +93,7 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
93
93
|
rating: number | null;
|
|
94
94
|
category: string | null;
|
|
95
95
|
address: string | null;
|
|
96
|
-
|
|
96
|
+
website: string | null;
|
|
97
97
|
placeId: string | null;
|
|
98
98
|
reviewsCount: number | null;
|
|
99
99
|
openingHours: {
|
|
@@ -105,17 +105,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
105
105
|
priceLevel: string | null;
|
|
106
106
|
reviews: {
|
|
107
107
|
name: string | null;
|
|
108
|
-
likesCount: number | null;
|
|
109
108
|
text: string | null;
|
|
109
|
+
likesCount: number | null;
|
|
110
110
|
rating: number | null;
|
|
111
111
|
publishedAtDate: string | null;
|
|
112
112
|
responseFromOwnerText: string | null;
|
|
113
113
|
}[] | null;
|
|
114
114
|
imageUrls: string[] | null;
|
|
115
115
|
}, {
|
|
116
|
-
url: string | null;
|
|
117
116
|
title: string | null;
|
|
118
|
-
|
|
117
|
+
url: string | null;
|
|
118
|
+
phone: string | null;
|
|
119
119
|
location: {
|
|
120
120
|
lat: number | null;
|
|
121
121
|
lng: number | null;
|
|
@@ -123,7 +123,7 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
123
123
|
rating: number | null;
|
|
124
124
|
category: string | null;
|
|
125
125
|
address: string | null;
|
|
126
|
-
|
|
126
|
+
website: string | null;
|
|
127
127
|
placeId: string | null;
|
|
128
128
|
reviewsCount: number | null;
|
|
129
129
|
openingHours: {
|
|
@@ -135,8 +135,8 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
135
135
|
priceLevel: string | null;
|
|
136
136
|
reviews: {
|
|
137
137
|
name: string | null;
|
|
138
|
-
likesCount: number | null;
|
|
139
138
|
text: string | null;
|
|
139
|
+
likesCount: number | null;
|
|
140
140
|
rating: number | null;
|
|
141
141
|
publishedAtDate: string | null;
|
|
142
142
|
responseFromOwnerText: string | null;
|
|
@@ -151,9 +151,9 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
151
151
|
error: string;
|
|
152
152
|
operation: "search";
|
|
153
153
|
places: {
|
|
154
|
-
url: string | null;
|
|
155
154
|
title: string | null;
|
|
156
|
-
|
|
155
|
+
url: string | null;
|
|
156
|
+
phone: string | null;
|
|
157
157
|
location: {
|
|
158
158
|
lat: number | null;
|
|
159
159
|
lng: number | null;
|
|
@@ -161,7 +161,7 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
161
161
|
rating: number | null;
|
|
162
162
|
category: string | null;
|
|
163
163
|
address: string | null;
|
|
164
|
-
|
|
164
|
+
website: string | null;
|
|
165
165
|
placeId: string | null;
|
|
166
166
|
reviewsCount: number | null;
|
|
167
167
|
openingHours: {
|
|
@@ -173,8 +173,8 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
173
173
|
priceLevel: string | null;
|
|
174
174
|
reviews: {
|
|
175
175
|
name: string | null;
|
|
176
|
-
likesCount: number | null;
|
|
177
176
|
text: string | null;
|
|
177
|
+
likesCount: number | null;
|
|
178
178
|
rating: number | null;
|
|
179
179
|
publishedAtDate: string | null;
|
|
180
180
|
responseFromOwnerText: string | null;
|
|
@@ -187,9 +187,9 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
187
187
|
error: string;
|
|
188
188
|
operation: "search";
|
|
189
189
|
places: {
|
|
190
|
-
url: string | null;
|
|
191
190
|
title: string | null;
|
|
192
|
-
|
|
191
|
+
url: string | null;
|
|
192
|
+
phone: string | null;
|
|
193
193
|
location: {
|
|
194
194
|
lat: number | null;
|
|
195
195
|
lng: number | null;
|
|
@@ -197,7 +197,7 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
197
197
|
rating: number | null;
|
|
198
198
|
category: string | null;
|
|
199
199
|
address: string | null;
|
|
200
|
-
|
|
200
|
+
website: string | null;
|
|
201
201
|
placeId: string | null;
|
|
202
202
|
reviewsCount: number | null;
|
|
203
203
|
openingHours: {
|
|
@@ -209,8 +209,8 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
209
209
|
priceLevel: string | null;
|
|
210
210
|
reviews: {
|
|
211
211
|
name: string | null;
|
|
212
|
-
likesCount: number | null;
|
|
213
212
|
text: string | null;
|
|
213
|
+
likesCount: number | null;
|
|
214
214
|
rating: number | null;
|
|
215
215
|
publishedAtDate: string | null;
|
|
216
216
|
responseFromOwnerText: string | null;
|
|
@@ -289,15 +289,15 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
289
289
|
responseFromOwnerText: z.ZodNullable<z.ZodString>;
|
|
290
290
|
}, "strip", z.ZodTypeAny, {
|
|
291
291
|
name: string | null;
|
|
292
|
-
likesCount: number | null;
|
|
293
292
|
text: string | null;
|
|
293
|
+
likesCount: number | null;
|
|
294
294
|
rating: number | null;
|
|
295
295
|
publishedAtDate: string | null;
|
|
296
296
|
responseFromOwnerText: string | null;
|
|
297
297
|
}, {
|
|
298
298
|
name: string | null;
|
|
299
|
-
likesCount: number | null;
|
|
300
299
|
text: string | null;
|
|
300
|
+
likesCount: number | null;
|
|
301
301
|
rating: number | null;
|
|
302
302
|
publishedAtDate: string | null;
|
|
303
303
|
responseFromOwnerText: string | null;
|
|
@@ -305,9 +305,9 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
305
305
|
imageUrls: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
306
306
|
additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
|
-
url: string | null;
|
|
309
308
|
title: string | null;
|
|
310
|
-
|
|
309
|
+
url: string | null;
|
|
310
|
+
phone: string | null;
|
|
311
311
|
location: {
|
|
312
312
|
lat: number | null;
|
|
313
313
|
lng: number | null;
|
|
@@ -315,7 +315,7 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
315
315
|
rating: number | null;
|
|
316
316
|
category: string | null;
|
|
317
317
|
address: string | null;
|
|
318
|
-
|
|
318
|
+
website: string | null;
|
|
319
319
|
placeId: string | null;
|
|
320
320
|
reviewsCount: number | null;
|
|
321
321
|
openingHours: {
|
|
@@ -327,17 +327,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
327
327
|
priceLevel: string | null;
|
|
328
328
|
reviews: {
|
|
329
329
|
name: string | null;
|
|
330
|
-
likesCount: number | null;
|
|
331
330
|
text: string | null;
|
|
331
|
+
likesCount: number | null;
|
|
332
332
|
rating: number | null;
|
|
333
333
|
publishedAtDate: string | null;
|
|
334
334
|
responseFromOwnerText: string | null;
|
|
335
335
|
}[] | null;
|
|
336
336
|
imageUrls: string[] | null;
|
|
337
337
|
}, {
|
|
338
|
-
url: string | null;
|
|
339
338
|
title: string | null;
|
|
340
|
-
|
|
339
|
+
url: string | null;
|
|
340
|
+
phone: string | null;
|
|
341
341
|
location: {
|
|
342
342
|
lat: number | null;
|
|
343
343
|
lng: number | null;
|
|
@@ -345,7 +345,7 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
345
345
|
rating: number | null;
|
|
346
346
|
category: string | null;
|
|
347
347
|
address: string | null;
|
|
348
|
-
|
|
348
|
+
website: string | null;
|
|
349
349
|
placeId: string | null;
|
|
350
350
|
reviewsCount: number | null;
|
|
351
351
|
openingHours: {
|
|
@@ -357,8 +357,8 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
357
357
|
priceLevel: string | null;
|
|
358
358
|
reviews: {
|
|
359
359
|
name: string | null;
|
|
360
|
-
likesCount: number | null;
|
|
361
360
|
text: string | null;
|
|
361
|
+
likesCount: number | null;
|
|
362
362
|
rating: number | null;
|
|
363
363
|
publishedAtDate: string | null;
|
|
364
364
|
responseFromOwnerText: string | null;
|
|
@@ -373,9 +373,9 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
373
373
|
error: string;
|
|
374
374
|
operation: "search";
|
|
375
375
|
places: {
|
|
376
|
-
url: string | null;
|
|
377
376
|
title: string | null;
|
|
378
|
-
|
|
377
|
+
url: string | null;
|
|
378
|
+
phone: string | null;
|
|
379
379
|
location: {
|
|
380
380
|
lat: number | null;
|
|
381
381
|
lng: number | null;
|
|
@@ -383,7 +383,7 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
383
383
|
rating: number | null;
|
|
384
384
|
category: string | null;
|
|
385
385
|
address: string | null;
|
|
386
|
-
|
|
386
|
+
website: string | null;
|
|
387
387
|
placeId: string | null;
|
|
388
388
|
reviewsCount: number | null;
|
|
389
389
|
openingHours: {
|
|
@@ -395,8 +395,8 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
395
395
|
priceLevel: string | null;
|
|
396
396
|
reviews: {
|
|
397
397
|
name: string | null;
|
|
398
|
-
likesCount: number | null;
|
|
399
398
|
text: string | null;
|
|
399
|
+
likesCount: number | null;
|
|
400
400
|
rating: number | null;
|
|
401
401
|
publishedAtDate: string | null;
|
|
402
402
|
responseFromOwnerText: string | null;
|
|
@@ -409,9 +409,9 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
409
409
|
error: string;
|
|
410
410
|
operation: "search";
|
|
411
411
|
places: {
|
|
412
|
-
url: string | null;
|
|
413
412
|
title: string | null;
|
|
414
|
-
|
|
413
|
+
url: string | null;
|
|
414
|
+
phone: string | null;
|
|
415
415
|
location: {
|
|
416
416
|
lat: number | null;
|
|
417
417
|
lng: number | null;
|
|
@@ -419,7 +419,7 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
419
419
|
rating: number | null;
|
|
420
420
|
category: string | null;
|
|
421
421
|
address: string | null;
|
|
422
|
-
|
|
422
|
+
website: string | null;
|
|
423
423
|
placeId: string | null;
|
|
424
424
|
reviewsCount: number | null;
|
|
425
425
|
openingHours: {
|
|
@@ -431,8 +431,8 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
431
431
|
priceLevel: string | null;
|
|
432
432
|
reviews: {
|
|
433
433
|
name: string | null;
|
|
434
|
-
likesCount: number | null;
|
|
435
434
|
text: string | null;
|
|
435
|
+
likesCount: number | null;
|
|
436
436
|
rating: number | null;
|
|
437
437
|
publishedAtDate: string | null;
|
|
438
438
|
responseFromOwnerText: string | null;
|