@bubblelab/bubble-core 0.1.51 → 0.1.52
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 +50 -50
- package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
- package/dist/bubbles/service-bubble/github.d.ts +56 -56
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +24 -24
- package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +201 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +51 -0
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +210 -40
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +45 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +252 -2
- package/package.json +2 -2
|
@@ -92,13 +92,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
92
92
|
line: z.ZodNumber;
|
|
93
93
|
column: z.ZodNumber;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
type: string;
|
|
96
95
|
name: string;
|
|
96
|
+
type: string;
|
|
97
97
|
column: number;
|
|
98
98
|
line: number;
|
|
99
99
|
}, {
|
|
100
|
-
type: string;
|
|
101
100
|
name: string;
|
|
101
|
+
type: string;
|
|
102
102
|
column: number;
|
|
103
103
|
line: number;
|
|
104
104
|
}>, "many">>;
|
|
@@ -136,8 +136,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
136
136
|
parameterCount: number;
|
|
137
137
|
}[] | undefined;
|
|
138
138
|
variableTypes?: {
|
|
139
|
-
type: string;
|
|
140
139
|
name: string;
|
|
140
|
+
type: string;
|
|
141
141
|
column: number;
|
|
142
142
|
line: number;
|
|
143
143
|
}[] | undefined;
|
|
@@ -161,8 +161,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
161
161
|
parameterCount: number;
|
|
162
162
|
}[] | undefined;
|
|
163
163
|
variableTypes?: {
|
|
164
|
-
type: string;
|
|
165
164
|
name: string;
|
|
165
|
+
type: string;
|
|
166
166
|
column: number;
|
|
167
167
|
line: number;
|
|
168
168
|
}[] | undefined;
|
|
@@ -241,13 +241,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
241
241
|
line: z.ZodNumber;
|
|
242
242
|
column: z.ZodNumber;
|
|
243
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
-
type: string;
|
|
245
244
|
name: string;
|
|
245
|
+
type: string;
|
|
246
246
|
column: number;
|
|
247
247
|
line: number;
|
|
248
248
|
}, {
|
|
249
|
-
type: string;
|
|
250
249
|
name: string;
|
|
250
|
+
type: string;
|
|
251
251
|
column: number;
|
|
252
252
|
line: number;
|
|
253
253
|
}>, "many">>;
|
|
@@ -285,8 +285,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
285
285
|
parameterCount: number;
|
|
286
286
|
}[] | undefined;
|
|
287
287
|
variableTypes?: {
|
|
288
|
-
type: string;
|
|
289
288
|
name: string;
|
|
289
|
+
type: string;
|
|
290
290
|
column: number;
|
|
291
291
|
line: number;
|
|
292
292
|
}[] | undefined;
|
|
@@ -310,8 +310,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
310
310
|
parameterCount: number;
|
|
311
311
|
}[] | undefined;
|
|
312
312
|
variableTypes?: {
|
|
313
|
-
type: string;
|
|
314
313
|
name: string;
|
|
314
|
+
type: string;
|
|
315
315
|
column: number;
|
|
316
316
|
line: number;
|
|
317
317
|
}[] | undefined;
|
|
@@ -64,8 +64,8 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
64
64
|
fieldOfStudy: string | null;
|
|
65
65
|
}>, "many">>;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
|
-
title: string | null;
|
|
68
67
|
name: string | null;
|
|
68
|
+
title: string | null;
|
|
69
69
|
summary: string | null;
|
|
70
70
|
role: "founder" | "cxo" | "decision_maker";
|
|
71
71
|
location: string | null;
|
|
@@ -95,8 +95,8 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
95
95
|
endDate: string | number | null;
|
|
96
96
|
}[] | null;
|
|
97
97
|
}, {
|
|
98
|
-
title: string | null;
|
|
99
98
|
name: string | null;
|
|
99
|
+
title: string | null;
|
|
100
100
|
summary: string | null;
|
|
101
101
|
role: "founder" | "cxo" | "decision_maker";
|
|
102
102
|
location: string | null;
|
|
@@ -202,8 +202,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
202
202
|
fieldOfStudy: string | null;
|
|
203
203
|
}>, "many">>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
title: string | null;
|
|
206
205
|
name: string | null;
|
|
206
|
+
title: string | null;
|
|
207
207
|
summary: string | null;
|
|
208
208
|
role: "founder" | "cxo" | "decision_maker";
|
|
209
209
|
location: string | null;
|
|
@@ -233,8 +233,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
233
233
|
endDate: string | number | null;
|
|
234
234
|
}[] | null;
|
|
235
235
|
}, {
|
|
236
|
-
title: string | null;
|
|
237
236
|
name: string | null;
|
|
237
|
+
title: string | null;
|
|
238
238
|
summary: string | null;
|
|
239
239
|
role: "founder" | "cxo" | "decision_maker";
|
|
240
240
|
location: string | null;
|
|
@@ -277,8 +277,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
277
277
|
fundingStage: z.ZodNullable<z.ZodString>;
|
|
278
278
|
totalFunding: z.ZodNullable<z.ZodString>;
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
|
-
description: string | null;
|
|
281
280
|
name: string | null;
|
|
281
|
+
description: string | null;
|
|
282
282
|
website: string | null;
|
|
283
283
|
industry: string | null;
|
|
284
284
|
headcount: number | null;
|
|
@@ -289,8 +289,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
289
289
|
fundingStage: string | null;
|
|
290
290
|
totalFunding: string | null;
|
|
291
291
|
}, {
|
|
292
|
-
description: string | null;
|
|
293
292
|
name: string | null;
|
|
293
|
+
description: string | null;
|
|
294
294
|
website: string | null;
|
|
295
295
|
industry: string | null;
|
|
296
296
|
headcount: number | null;
|
|
@@ -308,8 +308,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
308
308
|
success: boolean;
|
|
309
309
|
error: string;
|
|
310
310
|
company: {
|
|
311
|
-
description: string | null;
|
|
312
311
|
name: string | null;
|
|
312
|
+
description: string | null;
|
|
313
313
|
website: string | null;
|
|
314
314
|
industry: string | null;
|
|
315
315
|
headcount: number | null;
|
|
@@ -321,8 +321,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
321
321
|
totalFunding: string | null;
|
|
322
322
|
} | null;
|
|
323
323
|
contacts: {
|
|
324
|
-
title: string | null;
|
|
325
324
|
name: string | null;
|
|
325
|
+
title: string | null;
|
|
326
326
|
summary: string | null;
|
|
327
327
|
role: "founder" | "cxo" | "decision_maker";
|
|
328
328
|
location: string | null;
|
|
@@ -357,8 +357,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
357
357
|
success: boolean;
|
|
358
358
|
error: string;
|
|
359
359
|
company: {
|
|
360
|
-
description: string | null;
|
|
361
360
|
name: string | null;
|
|
361
|
+
description: string | null;
|
|
362
362
|
website: string | null;
|
|
363
363
|
industry: string | null;
|
|
364
364
|
headcount: number | null;
|
|
@@ -370,8 +370,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
370
370
|
totalFunding: string | null;
|
|
371
371
|
} | null;
|
|
372
372
|
contacts: {
|
|
373
|
-
title: string | null;
|
|
374
373
|
name: string | null;
|
|
374
|
+
title: string | null;
|
|
375
375
|
summary: string | null;
|
|
376
376
|
role: "founder" | "cxo" | "decision_maker";
|
|
377
377
|
location: string | null;
|
|
@@ -503,8 +503,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
503
503
|
fieldOfStudy: string | null;
|
|
504
504
|
}>, "many">>;
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
|
-
title: string | null;
|
|
507
506
|
name: string | null;
|
|
507
|
+
title: string | null;
|
|
508
508
|
summary: string | null;
|
|
509
509
|
role: "founder" | "cxo" | "decision_maker";
|
|
510
510
|
location: string | null;
|
|
@@ -534,8 +534,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
534
534
|
endDate: string | number | null;
|
|
535
535
|
}[] | null;
|
|
536
536
|
}, {
|
|
537
|
-
title: string | null;
|
|
538
537
|
name: string | null;
|
|
538
|
+
title: string | null;
|
|
539
539
|
summary: string | null;
|
|
540
540
|
role: "founder" | "cxo" | "decision_maker";
|
|
541
541
|
location: string | null;
|
|
@@ -578,8 +578,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
578
578
|
fundingStage: z.ZodNullable<z.ZodString>;
|
|
579
579
|
totalFunding: z.ZodNullable<z.ZodString>;
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
|
-
description: string | null;
|
|
582
581
|
name: string | null;
|
|
582
|
+
description: string | null;
|
|
583
583
|
website: string | null;
|
|
584
584
|
industry: string | null;
|
|
585
585
|
headcount: number | null;
|
|
@@ -590,8 +590,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
590
590
|
fundingStage: string | null;
|
|
591
591
|
totalFunding: string | null;
|
|
592
592
|
}, {
|
|
593
|
-
description: string | null;
|
|
594
593
|
name: string | null;
|
|
594
|
+
description: string | null;
|
|
595
595
|
website: string | null;
|
|
596
596
|
industry: string | null;
|
|
597
597
|
headcount: number | null;
|
|
@@ -609,8 +609,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
609
609
|
success: boolean;
|
|
610
610
|
error: string;
|
|
611
611
|
company: {
|
|
612
|
-
description: string | null;
|
|
613
612
|
name: string | null;
|
|
613
|
+
description: string | null;
|
|
614
614
|
website: string | null;
|
|
615
615
|
industry: string | null;
|
|
616
616
|
headcount: number | null;
|
|
@@ -622,8 +622,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
622
622
|
totalFunding: string | null;
|
|
623
623
|
} | null;
|
|
624
624
|
contacts: {
|
|
625
|
-
title: string | null;
|
|
626
625
|
name: string | null;
|
|
626
|
+
title: string | null;
|
|
627
627
|
summary: string | null;
|
|
628
628
|
role: "founder" | "cxo" | "decision_maker";
|
|
629
629
|
location: string | null;
|
|
@@ -658,8 +658,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
658
658
|
success: boolean;
|
|
659
659
|
error: string;
|
|
660
660
|
company: {
|
|
661
|
-
description: string | null;
|
|
662
661
|
name: string | null;
|
|
662
|
+
description: string | null;
|
|
663
663
|
website: string | null;
|
|
664
664
|
industry: string | null;
|
|
665
665
|
headcount: number | null;
|
|
@@ -671,8 +671,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
671
671
|
totalFunding: string | null;
|
|
672
672
|
} | null;
|
|
673
673
|
contacts: {
|
|
674
|
-
title: string | null;
|
|
675
674
|
name: string | null;
|
|
675
|
+
title: string | null;
|
|
676
676
|
summary: string | null;
|
|
677
677
|
role: "founder" | "cxo" | "decision_maker";
|
|
678
678
|
location: string | null;
|
|
@@ -607,9 +607,9 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
607
607
|
}>>;
|
|
608
608
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
|
+
id: string | null;
|
|
610
611
|
description: string | null;
|
|
611
612
|
title: string | null;
|
|
612
|
-
id: string | null;
|
|
613
613
|
url: string | null;
|
|
614
614
|
location: string | null;
|
|
615
615
|
postedAt: string | null;
|
|
@@ -629,9 +629,9 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
629
629
|
} | null;
|
|
630
630
|
skills: string[] | null;
|
|
631
631
|
}, {
|
|
632
|
+
id: string | null;
|
|
632
633
|
description: string | null;
|
|
633
634
|
title: string | null;
|
|
634
|
-
id: string | null;
|
|
635
635
|
url: string | null;
|
|
636
636
|
location: string | null;
|
|
637
637
|
postedAt: string | null;
|
|
@@ -734,9 +734,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
734
734
|
}>>;
|
|
735
735
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
736
736
|
}, "strip", z.ZodTypeAny, {
|
|
737
|
+
id: string | null;
|
|
737
738
|
description: string | null;
|
|
738
739
|
title: string | null;
|
|
739
|
-
id: string | null;
|
|
740
740
|
url: string | null;
|
|
741
741
|
location: string | null;
|
|
742
742
|
postedAt: string | null;
|
|
@@ -756,9 +756,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
756
756
|
} | null;
|
|
757
757
|
skills: string[] | null;
|
|
758
758
|
}, {
|
|
759
|
+
id: string | null;
|
|
759
760
|
description: string | null;
|
|
760
761
|
title: string | null;
|
|
761
|
-
id: string | null;
|
|
762
762
|
url: string | null;
|
|
763
763
|
location: string | null;
|
|
764
764
|
postedAt: string | null;
|
|
@@ -1398,9 +1398,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1398
1398
|
username?: string | undefined;
|
|
1399
1399
|
keyword?: string | undefined;
|
|
1400
1400
|
jobs?: {
|
|
1401
|
+
id: string | null;
|
|
1401
1402
|
description: string | null;
|
|
1402
1403
|
title: string | null;
|
|
1403
|
-
id: string | null;
|
|
1404
1404
|
url: string | null;
|
|
1405
1405
|
location: string | null;
|
|
1406
1406
|
postedAt: string | null;
|
|
@@ -1524,9 +1524,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1524
1524
|
username?: string | undefined;
|
|
1525
1525
|
keyword?: string | undefined;
|
|
1526
1526
|
jobs?: {
|
|
1527
|
+
id: string | null;
|
|
1527
1528
|
description: string | null;
|
|
1528
1529
|
title: string | null;
|
|
1529
|
-
id: string | null;
|
|
1530
1530
|
url: string | null;
|
|
1531
1531
|
location: string | null;
|
|
1532
1532
|
postedAt: string | null;
|
|
@@ -1657,9 +1657,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1657
1657
|
}>>;
|
|
1658
1658
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1659
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1660
|
+
id: string | null;
|
|
1660
1661
|
description: string | null;
|
|
1661
1662
|
title: string | null;
|
|
1662
|
-
id: string | null;
|
|
1663
1663
|
url: string | null;
|
|
1664
1664
|
location: string | null;
|
|
1665
1665
|
postedAt: string | null;
|
|
@@ -1679,9 +1679,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1679
1679
|
} | null;
|
|
1680
1680
|
skills: string[] | null;
|
|
1681
1681
|
}, {
|
|
1682
|
+
id: string | null;
|
|
1682
1683
|
description: string | null;
|
|
1683
1684
|
title: string | null;
|
|
1684
|
-
id: string | null;
|
|
1685
1685
|
url: string | null;
|
|
1686
1686
|
location: string | null;
|
|
1687
1687
|
postedAt: string | null;
|
|
@@ -2321,9 +2321,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2321
2321
|
username?: string | undefined;
|
|
2322
2322
|
keyword?: string | undefined;
|
|
2323
2323
|
jobs?: {
|
|
2324
|
+
id: string | null;
|
|
2324
2325
|
description: string | null;
|
|
2325
2326
|
title: string | null;
|
|
2326
|
-
id: string | null;
|
|
2327
2327
|
url: string | null;
|
|
2328
2328
|
location: string | null;
|
|
2329
2329
|
postedAt: string | null;
|
|
@@ -2447,9 +2447,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2447
2447
|
username?: string | undefined;
|
|
2448
2448
|
keyword?: string | undefined;
|
|
2449
2449
|
jobs?: {
|
|
2450
|
+
id: string | null;
|
|
2450
2451
|
description: string | null;
|
|
2451
2452
|
title: string | null;
|
|
2452
|
-
id: string | null;
|
|
2453
2453
|
url: string | null;
|
|
2454
2454
|
location: string | null;
|
|
2455
2455
|
postedAt: string | null;
|
|
@@ -13,14 +13,14 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
|
|
|
13
13
|
useCase: z.ZodString;
|
|
14
14
|
type: z.ZodString;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
|
-
type: string;
|
|
17
16
|
name: string;
|
|
17
|
+
type: string;
|
|
18
18
|
shortDescription: string;
|
|
19
19
|
useCase: string;
|
|
20
20
|
alias?: string | undefined;
|
|
21
21
|
}, {
|
|
22
|
-
type: string;
|
|
23
22
|
name: string;
|
|
23
|
+
type: string;
|
|
24
24
|
shortDescription: string;
|
|
25
25
|
useCase: string;
|
|
26
26
|
alias?: string | undefined;
|
|
@@ -32,8 +32,8 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
|
|
|
32
32
|
success: boolean;
|
|
33
33
|
error: string;
|
|
34
34
|
bubbles: {
|
|
35
|
-
type: string;
|
|
36
35
|
name: string;
|
|
36
|
+
type: string;
|
|
37
37
|
shortDescription: string;
|
|
38
38
|
useCase: string;
|
|
39
39
|
alias?: string | undefined;
|
|
@@ -43,8 +43,8 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
|
|
|
43
43
|
success: boolean;
|
|
44
44
|
error: string;
|
|
45
45
|
bubbles: {
|
|
46
|
-
type: string;
|
|
47
46
|
name: string;
|
|
47
|
+
type: string;
|
|
48
48
|
shortDescription: string;
|
|
49
49
|
useCase: string;
|
|
50
50
|
alias?: string | undefined;
|
|
@@ -62,14 +62,14 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
|
|
|
62
62
|
useCase: z.ZodString;
|
|
63
63
|
type: z.ZodString;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
-
type: string;
|
|
66
65
|
name: string;
|
|
66
|
+
type: string;
|
|
67
67
|
shortDescription: string;
|
|
68
68
|
useCase: string;
|
|
69
69
|
alias?: string | undefined;
|
|
70
70
|
}, {
|
|
71
|
-
type: string;
|
|
72
71
|
name: string;
|
|
72
|
+
type: string;
|
|
73
73
|
shortDescription: string;
|
|
74
74
|
useCase: string;
|
|
75
75
|
alias?: string | undefined;
|
|
@@ -81,8 +81,8 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
|
|
|
81
81
|
success: boolean;
|
|
82
82
|
error: string;
|
|
83
83
|
bubbles: {
|
|
84
|
-
type: string;
|
|
85
84
|
name: string;
|
|
85
|
+
type: string;
|
|
86
86
|
shortDescription: string;
|
|
87
87
|
useCase: string;
|
|
88
88
|
alias?: string | undefined;
|
|
@@ -92,8 +92,8 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
|
|
|
92
92
|
success: boolean;
|
|
93
93
|
error: string;
|
|
94
94
|
bubbles: {
|
|
95
|
-
type: string;
|
|
96
95
|
name: string;
|
|
96
|
+
type: string;
|
|
97
97
|
shortDescription: string;
|
|
98
98
|
useCase: string;
|
|
99
99
|
alias?: string | undefined;
|
|
@@ -107,8 +107,8 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
107
107
|
fieldOfStudy: string | null;
|
|
108
108
|
}>, "many">>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
title: string | null;
|
|
111
110
|
name: string | null;
|
|
111
|
+
title: string | null;
|
|
112
112
|
summary: string | null;
|
|
113
113
|
location: string | null;
|
|
114
114
|
headline: string | null;
|
|
@@ -159,8 +159,8 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
159
159
|
status?: string | undefined;
|
|
160
160
|
}[] | null | undefined;
|
|
161
161
|
}, {
|
|
162
|
-
title: string | null;
|
|
163
162
|
name: string | null;
|
|
163
|
+
title: string | null;
|
|
164
164
|
summary: string | null;
|
|
165
165
|
location: string | null;
|
|
166
166
|
headline: string | null;
|
|
@@ -426,8 +426,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
426
426
|
fieldOfStudy: string | null;
|
|
427
427
|
}>, "many">>;
|
|
428
428
|
}, "strip", z.ZodTypeAny, {
|
|
429
|
-
title: string | null;
|
|
430
429
|
name: string | null;
|
|
430
|
+
title: string | null;
|
|
431
431
|
summary: string | null;
|
|
432
432
|
location: string | null;
|
|
433
433
|
headline: string | null;
|
|
@@ -478,8 +478,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
478
478
|
status?: string | undefined;
|
|
479
479
|
}[] | null | undefined;
|
|
480
480
|
}, {
|
|
481
|
-
title: string | null;
|
|
482
481
|
name: string | null;
|
|
482
|
+
title: string | null;
|
|
483
483
|
summary: string | null;
|
|
484
484
|
location: string | null;
|
|
485
485
|
headline: string | null;
|
|
@@ -538,8 +538,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
538
538
|
success: boolean;
|
|
539
539
|
error: string;
|
|
540
540
|
people: {
|
|
541
|
-
title: string | null;
|
|
542
541
|
name: string | null;
|
|
542
|
+
title: string | null;
|
|
543
543
|
summary: string | null;
|
|
544
544
|
location: string | null;
|
|
545
545
|
headline: string | null;
|
|
@@ -596,8 +596,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
596
596
|
success: boolean;
|
|
597
597
|
error: string;
|
|
598
598
|
people: {
|
|
599
|
-
title: string | null;
|
|
600
599
|
name: string | null;
|
|
600
|
+
title: string | null;
|
|
601
601
|
summary: string | null;
|
|
602
602
|
location: string | null;
|
|
603
603
|
headline: string | null;
|
|
@@ -895,8 +895,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
895
895
|
fieldOfStudy: string | null;
|
|
896
896
|
}>, "many">>;
|
|
897
897
|
}, "strip", z.ZodTypeAny, {
|
|
898
|
-
title: string | null;
|
|
899
898
|
name: string | null;
|
|
899
|
+
title: string | null;
|
|
900
900
|
summary: string | null;
|
|
901
901
|
location: string | null;
|
|
902
902
|
headline: string | null;
|
|
@@ -947,8 +947,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
947
947
|
status?: string | undefined;
|
|
948
948
|
}[] | null | undefined;
|
|
949
949
|
}, {
|
|
950
|
-
title: string | null;
|
|
951
950
|
name: string | null;
|
|
951
|
+
title: string | null;
|
|
952
952
|
summary: string | null;
|
|
953
953
|
location: string | null;
|
|
954
954
|
headline: string | null;
|
|
@@ -1007,8 +1007,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1007
1007
|
success: boolean;
|
|
1008
1008
|
error: string;
|
|
1009
1009
|
people: {
|
|
1010
|
-
title: string | null;
|
|
1011
1010
|
name: string | null;
|
|
1011
|
+
title: string | null;
|
|
1012
1012
|
summary: string | null;
|
|
1013
1013
|
location: string | null;
|
|
1014
1014
|
headline: string | null;
|
|
@@ -1065,8 +1065,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1065
1065
|
success: boolean;
|
|
1066
1066
|
error: string;
|
|
1067
1067
|
people: {
|
|
1068
|
-
title: string | null;
|
|
1069
1068
|
name: string | null;
|
|
1069
|
+
title: string | null;
|
|
1070
1070
|
summary: string | null;
|
|
1071
1071
|
location: string | null;
|
|
1072
1072
|
headline: string | null;
|