@bubblelab/bubble-core 0.1.44 → 0.1.46
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 +65 -65
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +5 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.js +29 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +10 -10
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +168 -168
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +32 -32
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +36 -36
- package/dist/bubbles/service-bubble/gmail.d.ts +384 -384
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +160 -160
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -138,14 +138,14 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
139
|
type: string;
|
|
140
140
|
name: string;
|
|
141
|
+
x: number;
|
|
142
|
+
y: number;
|
|
141
143
|
id: number;
|
|
142
144
|
width: number;
|
|
143
145
|
height: number;
|
|
144
146
|
label: string;
|
|
145
147
|
page: number;
|
|
146
148
|
choices: string[];
|
|
147
|
-
x: number;
|
|
148
|
-
y: number;
|
|
149
149
|
field_type: string;
|
|
150
150
|
current_value: string;
|
|
151
151
|
rect: [number, number, number, number];
|
|
@@ -154,14 +154,14 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
154
154
|
}, {
|
|
155
155
|
type: string;
|
|
156
156
|
name: string;
|
|
157
|
+
x: number;
|
|
158
|
+
y: number;
|
|
157
159
|
id: number;
|
|
158
160
|
width: number;
|
|
159
161
|
height: number;
|
|
160
162
|
label: string;
|
|
161
163
|
page: number;
|
|
162
164
|
choices: string[];
|
|
163
|
-
x: number;
|
|
164
|
-
y: number;
|
|
165
165
|
field_type: string;
|
|
166
166
|
current_value: string;
|
|
167
167
|
rect: [number, number, number, number];
|
|
@@ -178,14 +178,14 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
178
178
|
fields: {
|
|
179
179
|
type: string;
|
|
180
180
|
name: string;
|
|
181
|
+
x: number;
|
|
182
|
+
y: number;
|
|
181
183
|
id: number;
|
|
182
184
|
width: number;
|
|
183
185
|
height: number;
|
|
184
186
|
label: string;
|
|
185
187
|
page: number;
|
|
186
188
|
choices: string[];
|
|
187
|
-
x: number;
|
|
188
|
-
y: number;
|
|
189
189
|
field_type: string;
|
|
190
190
|
current_value: string;
|
|
191
191
|
rect: [number, number, number, number];
|
|
@@ -200,14 +200,14 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
200
200
|
fields: {
|
|
201
201
|
type: string;
|
|
202
202
|
name: string;
|
|
203
|
+
x: number;
|
|
204
|
+
y: number;
|
|
203
205
|
id: number;
|
|
204
206
|
width: number;
|
|
205
207
|
height: number;
|
|
206
208
|
label: string;
|
|
207
209
|
page: number;
|
|
208
210
|
choices: string[];
|
|
209
|
-
x: number;
|
|
210
|
-
y: number;
|
|
211
211
|
field_type: string;
|
|
212
212
|
current_value: string;
|
|
213
213
|
rect: [number, number, number, number];
|
|
@@ -411,16 +411,16 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
411
411
|
value: string;
|
|
412
412
|
type: string;
|
|
413
413
|
name: string;
|
|
414
|
-
id: number;
|
|
415
414
|
x: number;
|
|
416
415
|
y: number;
|
|
416
|
+
id: number;
|
|
417
417
|
}, {
|
|
418
418
|
value: string;
|
|
419
419
|
type: string;
|
|
420
420
|
name: string;
|
|
421
|
-
id: number;
|
|
422
421
|
x: number;
|
|
423
422
|
y: number;
|
|
423
|
+
id: number;
|
|
424
424
|
}>, "many">>;
|
|
425
425
|
}, "strip", z.ZodTypeAny, {
|
|
426
426
|
pageNumber: number;
|
|
@@ -429,9 +429,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
429
429
|
value: string;
|
|
430
430
|
type: string;
|
|
431
431
|
name: string;
|
|
432
|
-
id: number;
|
|
433
432
|
x: number;
|
|
434
433
|
y: number;
|
|
434
|
+
id: number;
|
|
435
435
|
}[] | undefined;
|
|
436
436
|
}, {
|
|
437
437
|
pageNumber: number;
|
|
@@ -440,9 +440,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
440
440
|
value: string;
|
|
441
441
|
type: string;
|
|
442
442
|
name: string;
|
|
443
|
-
id: number;
|
|
444
443
|
x: number;
|
|
445
444
|
y: number;
|
|
445
|
+
id: number;
|
|
446
446
|
}[] | undefined;
|
|
447
447
|
}>, "many">;
|
|
448
448
|
totalPages: z.ZodNumber;
|
|
@@ -460,9 +460,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
460
460
|
value: string;
|
|
461
461
|
type: string;
|
|
462
462
|
name: string;
|
|
463
|
-
id: number;
|
|
464
463
|
x: number;
|
|
465
464
|
y: number;
|
|
465
|
+
id: number;
|
|
466
466
|
}[] | undefined;
|
|
467
467
|
}[];
|
|
468
468
|
markdown: string;
|
|
@@ -479,9 +479,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
479
479
|
value: string;
|
|
480
480
|
type: string;
|
|
481
481
|
name: string;
|
|
482
|
-
id: number;
|
|
483
482
|
x: number;
|
|
484
483
|
y: number;
|
|
484
|
+
id: number;
|
|
485
485
|
}[] | undefined;
|
|
486
486
|
}[];
|
|
487
487
|
markdown: string;
|
|
@@ -617,14 +617,14 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
617
617
|
}, "strip", z.ZodTypeAny, {
|
|
618
618
|
type: string;
|
|
619
619
|
name: string;
|
|
620
|
+
x: number;
|
|
621
|
+
y: number;
|
|
620
622
|
id: number;
|
|
621
623
|
width: number;
|
|
622
624
|
height: number;
|
|
623
625
|
label: string;
|
|
624
626
|
page: number;
|
|
625
627
|
choices: string[];
|
|
626
|
-
x: number;
|
|
627
|
-
y: number;
|
|
628
628
|
field_type: string;
|
|
629
629
|
current_value: string;
|
|
630
630
|
rect: [number, number, number, number];
|
|
@@ -633,14 +633,14 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
633
633
|
}, {
|
|
634
634
|
type: string;
|
|
635
635
|
name: string;
|
|
636
|
+
x: number;
|
|
637
|
+
y: number;
|
|
636
638
|
id: number;
|
|
637
639
|
width: number;
|
|
638
640
|
height: number;
|
|
639
641
|
label: string;
|
|
640
642
|
page: number;
|
|
641
643
|
choices: string[];
|
|
642
|
-
x: number;
|
|
643
|
-
y: number;
|
|
644
644
|
field_type: string;
|
|
645
645
|
current_value: string;
|
|
646
646
|
rect: [number, number, number, number];
|
|
@@ -657,14 +657,14 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
657
657
|
fields: {
|
|
658
658
|
type: string;
|
|
659
659
|
name: string;
|
|
660
|
+
x: number;
|
|
661
|
+
y: number;
|
|
660
662
|
id: number;
|
|
661
663
|
width: number;
|
|
662
664
|
height: number;
|
|
663
665
|
label: string;
|
|
664
666
|
page: number;
|
|
665
667
|
choices: string[];
|
|
666
|
-
x: number;
|
|
667
|
-
y: number;
|
|
668
668
|
field_type: string;
|
|
669
669
|
current_value: string;
|
|
670
670
|
rect: [number, number, number, number];
|
|
@@ -679,14 +679,14 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
679
679
|
fields: {
|
|
680
680
|
type: string;
|
|
681
681
|
name: string;
|
|
682
|
+
x: number;
|
|
683
|
+
y: number;
|
|
682
684
|
id: number;
|
|
683
685
|
width: number;
|
|
684
686
|
height: number;
|
|
685
687
|
label: string;
|
|
686
688
|
page: number;
|
|
687
689
|
choices: string[];
|
|
688
|
-
x: number;
|
|
689
|
-
y: number;
|
|
690
690
|
field_type: string;
|
|
691
691
|
current_value: string;
|
|
692
692
|
rect: [number, number, number, number];
|
|
@@ -890,16 +890,16 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
890
890
|
value: string;
|
|
891
891
|
type: string;
|
|
892
892
|
name: string;
|
|
893
|
-
id: number;
|
|
894
893
|
x: number;
|
|
895
894
|
y: number;
|
|
895
|
+
id: number;
|
|
896
896
|
}, {
|
|
897
897
|
value: string;
|
|
898
898
|
type: string;
|
|
899
899
|
name: string;
|
|
900
|
-
id: number;
|
|
901
900
|
x: number;
|
|
902
901
|
y: number;
|
|
902
|
+
id: number;
|
|
903
903
|
}>, "many">>;
|
|
904
904
|
}, "strip", z.ZodTypeAny, {
|
|
905
905
|
pageNumber: number;
|
|
@@ -908,9 +908,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
908
908
|
value: string;
|
|
909
909
|
type: string;
|
|
910
910
|
name: string;
|
|
911
|
-
id: number;
|
|
912
911
|
x: number;
|
|
913
912
|
y: number;
|
|
913
|
+
id: number;
|
|
914
914
|
}[] | undefined;
|
|
915
915
|
}, {
|
|
916
916
|
pageNumber: number;
|
|
@@ -919,9 +919,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
919
919
|
value: string;
|
|
920
920
|
type: string;
|
|
921
921
|
name: string;
|
|
922
|
-
id: number;
|
|
923
922
|
x: number;
|
|
924
923
|
y: number;
|
|
924
|
+
id: number;
|
|
925
925
|
}[] | undefined;
|
|
926
926
|
}>, "many">;
|
|
927
927
|
totalPages: z.ZodNumber;
|
|
@@ -939,9 +939,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
939
939
|
value: string;
|
|
940
940
|
type: string;
|
|
941
941
|
name: string;
|
|
942
|
-
id: number;
|
|
943
942
|
x: number;
|
|
944
943
|
y: number;
|
|
944
|
+
id: number;
|
|
945
945
|
}[] | undefined;
|
|
946
946
|
}[];
|
|
947
947
|
markdown: string;
|
|
@@ -958,9 +958,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
958
958
|
value: string;
|
|
959
959
|
type: string;
|
|
960
960
|
name: string;
|
|
961
|
-
id: number;
|
|
962
961
|
x: number;
|
|
963
962
|
y: number;
|
|
963
|
+
id: number;
|
|
964
964
|
}[] | undefined;
|
|
965
965
|
}[];
|
|
966
966
|
markdown: string;
|
|
@@ -166,7 +166,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
166
166
|
emoji?: boolean | undefined;
|
|
167
167
|
verbatim?: boolean | undefined;
|
|
168
168
|
} | undefined;
|
|
169
|
-
element?: unknown;
|
|
170
169
|
image_url?: string | undefined;
|
|
171
170
|
optional?: boolean | undefined;
|
|
172
171
|
fields?: {
|
|
@@ -184,6 +183,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
184
183
|
}[] | undefined;
|
|
185
184
|
block_id?: string | undefined;
|
|
186
185
|
accessory?: unknown;
|
|
186
|
+
element?: unknown;
|
|
187
187
|
label?: unknown;
|
|
188
188
|
hint?: unknown;
|
|
189
189
|
}, {
|
|
@@ -199,7 +199,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
199
199
|
emoji?: boolean | undefined;
|
|
200
200
|
verbatim?: boolean | undefined;
|
|
201
201
|
} | undefined;
|
|
202
|
-
element?: unknown;
|
|
203
202
|
image_url?: string | undefined;
|
|
204
203
|
optional?: boolean | undefined;
|
|
205
204
|
fields?: {
|
|
@@ -217,6 +216,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
217
216
|
}[] | undefined;
|
|
218
217
|
block_id?: string | undefined;
|
|
219
218
|
accessory?: unknown;
|
|
219
|
+
element?: unknown;
|
|
220
220
|
label?: unknown;
|
|
221
221
|
hint?: unknown;
|
|
222
222
|
}>, "many">>;
|
|
@@ -281,7 +281,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
281
281
|
emoji?: boolean | undefined;
|
|
282
282
|
verbatim?: boolean | undefined;
|
|
283
283
|
} | undefined;
|
|
284
|
-
element?: unknown;
|
|
285
284
|
image_url?: string | undefined;
|
|
286
285
|
optional?: boolean | undefined;
|
|
287
286
|
fields?: {
|
|
@@ -299,6 +298,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
299
298
|
}[] | undefined;
|
|
300
299
|
block_id?: string | undefined;
|
|
301
300
|
accessory?: unknown;
|
|
301
|
+
element?: unknown;
|
|
302
302
|
label?: unknown;
|
|
303
303
|
hint?: unknown;
|
|
304
304
|
}[] | undefined;
|
|
@@ -331,7 +331,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
331
331
|
emoji?: boolean | undefined;
|
|
332
332
|
verbatim?: boolean | undefined;
|
|
333
333
|
} | undefined;
|
|
334
|
-
element?: unknown;
|
|
335
334
|
image_url?: string | undefined;
|
|
336
335
|
optional?: boolean | undefined;
|
|
337
336
|
fields?: {
|
|
@@ -349,6 +348,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
349
348
|
}[] | undefined;
|
|
350
349
|
block_id?: string | undefined;
|
|
351
350
|
accessory?: unknown;
|
|
351
|
+
element?: unknown;
|
|
352
352
|
label?: unknown;
|
|
353
353
|
hint?: unknown;
|
|
354
354
|
}[] | undefined;
|
|
@@ -524,7 +524,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
524
524
|
emoji?: boolean | undefined;
|
|
525
525
|
verbatim?: boolean | undefined;
|
|
526
526
|
} | undefined;
|
|
527
|
-
element?: unknown;
|
|
528
527
|
image_url?: string | undefined;
|
|
529
528
|
optional?: boolean | undefined;
|
|
530
529
|
fields?: {
|
|
@@ -542,6 +541,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
542
541
|
}[] | undefined;
|
|
543
542
|
block_id?: string | undefined;
|
|
544
543
|
accessory?: unknown;
|
|
544
|
+
element?: unknown;
|
|
545
545
|
label?: unknown;
|
|
546
546
|
hint?: unknown;
|
|
547
547
|
}, {
|
|
@@ -557,7 +557,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
557
557
|
emoji?: boolean | undefined;
|
|
558
558
|
verbatim?: boolean | undefined;
|
|
559
559
|
} | undefined;
|
|
560
|
-
element?: unknown;
|
|
561
560
|
image_url?: string | undefined;
|
|
562
561
|
optional?: boolean | undefined;
|
|
563
562
|
fields?: {
|
|
@@ -575,6 +574,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
575
574
|
}[] | undefined;
|
|
576
575
|
block_id?: string | undefined;
|
|
577
576
|
accessory?: unknown;
|
|
577
|
+
element?: unknown;
|
|
578
578
|
label?: unknown;
|
|
579
579
|
hint?: unknown;
|
|
580
580
|
}>, "many">>;
|
|
@@ -639,7 +639,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
639
639
|
emoji?: boolean | undefined;
|
|
640
640
|
verbatim?: boolean | undefined;
|
|
641
641
|
} | undefined;
|
|
642
|
-
element?: unknown;
|
|
643
642
|
image_url?: string | undefined;
|
|
644
643
|
optional?: boolean | undefined;
|
|
645
644
|
fields?: {
|
|
@@ -657,6 +656,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
657
656
|
}[] | undefined;
|
|
658
657
|
block_id?: string | undefined;
|
|
659
658
|
accessory?: unknown;
|
|
659
|
+
element?: unknown;
|
|
660
660
|
label?: unknown;
|
|
661
661
|
hint?: unknown;
|
|
662
662
|
}[] | undefined;
|
|
@@ -689,7 +689,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
689
689
|
emoji?: boolean | undefined;
|
|
690
690
|
verbatim?: boolean | undefined;
|
|
691
691
|
} | undefined;
|
|
692
|
-
element?: unknown;
|
|
693
692
|
image_url?: string | undefined;
|
|
694
693
|
optional?: boolean | undefined;
|
|
695
694
|
fields?: {
|
|
@@ -707,6 +706,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
707
706
|
}[] | undefined;
|
|
708
707
|
block_id?: string | undefined;
|
|
709
708
|
accessory?: unknown;
|
|
709
|
+
element?: unknown;
|
|
710
710
|
label?: unknown;
|
|
711
711
|
hint?: unknown;
|
|
712
712
|
}[] | undefined;
|
package/dist/bubbles.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bubblelab/bubble-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.46",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"puppeteer-core": "^24.10.0",
|
|
41
41
|
"resend": "^4.8.0",
|
|
42
42
|
"zod": "^3.24.1",
|
|
43
|
-
"@bubblelab/shared-schemas": "0.1.
|
|
43
|
+
"@bubblelab/shared-schemas": "0.1.47"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"zod-to-json-schema": "^3.24.6",
|