@bubblelab/bubble-core 0.1.107 → 0.1.109
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 +110 -33
- package/dist/bubbles/service-bubble/ai-agent.d.ts +51 -0
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +122 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +8 -4
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/actors/instagram-hashtag-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/instagram-scraper.d.ts +8 -8
- package/dist/bubbles/service-bubble/apify/actors/linkedin-posts-search.d.ts +4 -4
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-posts.d.ts +14 -14
- package/dist/bubbles/service-bubble/apify/actors/twitter-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/actors/youtube-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
- package/dist/bubbles/service-bubble/firecrawl.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +24 -24
- package/dist/bubbles/service-bubble/notion/property-schemas.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +22 -22
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +26 -26
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +74 -74
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles.json +51 -6
- package/dist/capabilities/define-capability.d.ts +53 -0
- package/dist/capabilities/define-capability.d.ts.map +1 -0
- package/dist/capabilities/define-capability.js +50 -0
- package/dist/capabilities/define-capability.js.map +1 -0
- package/dist/capabilities/index.d.ts +3 -0
- package/dist/capabilities/index.d.ts.map +1 -0
- package/dist/capabilities/index.js +3 -0
- package/dist/capabilities/index.js.map +1 -0
- package/dist/capabilities/registry.d.ts +13 -0
- package/dist/capabilities/registry.d.ts.map +1 -0
- package/dist/capabilities/registry.js +26 -0
- package/dist/capabilities/registry.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -64,12 +64,12 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
64
64
|
timestamp: z.ZodNullable<z.ZodNumber>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
66
|
date: string | null;
|
|
67
|
-
timestamp: number | null;
|
|
68
67
|
relative: string | null;
|
|
68
|
+
timestamp: number | null;
|
|
69
69
|
}, {
|
|
70
70
|
date: string | null;
|
|
71
|
-
timestamp: number | null;
|
|
72
71
|
relative: string | null;
|
|
72
|
+
timestamp: number | null;
|
|
73
73
|
}>>;
|
|
74
74
|
text: z.ZodNullable<z.ZodString>;
|
|
75
75
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -203,12 +203,12 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
203
203
|
timestamp: z.ZodNullable<z.ZodNumber>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
date: string | null;
|
|
206
|
-
timestamp: number | null;
|
|
207
206
|
relative: string | null;
|
|
207
|
+
timestamp: number | null;
|
|
208
208
|
}, {
|
|
209
209
|
date: string | null;
|
|
210
|
-
timestamp: number | null;
|
|
211
210
|
relative: string | null;
|
|
211
|
+
timestamp: number | null;
|
|
212
212
|
}>>;
|
|
213
213
|
text: z.ZodNullable<z.ZodString>;
|
|
214
214
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -314,8 +314,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
314
314
|
reposts: number | null;
|
|
315
315
|
totalReactions: number | null;
|
|
316
316
|
} | null;
|
|
317
|
-
url: string | null;
|
|
318
317
|
text: string | null;
|
|
318
|
+
url: string | null;
|
|
319
319
|
urn: string | null;
|
|
320
320
|
author: {
|
|
321
321
|
username: string | null;
|
|
@@ -337,8 +337,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
337
337
|
} | null;
|
|
338
338
|
postedAt: {
|
|
339
339
|
date: string | null;
|
|
340
|
-
timestamp: number | null;
|
|
341
340
|
relative: string | null;
|
|
341
|
+
timestamp: number | null;
|
|
342
342
|
} | null;
|
|
343
343
|
postType: string | null;
|
|
344
344
|
}, {
|
|
@@ -353,8 +353,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
353
353
|
reposts: number | null;
|
|
354
354
|
totalReactions: number | null;
|
|
355
355
|
} | null;
|
|
356
|
-
url: string | null;
|
|
357
356
|
text: string | null;
|
|
357
|
+
url: string | null;
|
|
358
358
|
urn: string | null;
|
|
359
359
|
author: {
|
|
360
360
|
username: string | null;
|
|
@@ -376,8 +376,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
376
376
|
} | null;
|
|
377
377
|
postedAt: {
|
|
378
378
|
date: string | null;
|
|
379
|
-
timestamp: number | null;
|
|
380
379
|
relative: string | null;
|
|
380
|
+
timestamp: number | null;
|
|
381
381
|
} | null;
|
|
382
382
|
postType: string | null;
|
|
383
383
|
}>>;
|
|
@@ -393,8 +393,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
393
393
|
reposts: number | null;
|
|
394
394
|
totalReactions: number | null;
|
|
395
395
|
} | null;
|
|
396
|
-
url: string | null;
|
|
397
396
|
text: string | null;
|
|
397
|
+
url: string | null;
|
|
398
398
|
document: {
|
|
399
399
|
title: string | null;
|
|
400
400
|
url: string | null;
|
|
@@ -428,8 +428,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
428
428
|
} | null;
|
|
429
429
|
postedAt: {
|
|
430
430
|
date: string | null;
|
|
431
|
-
timestamp: number | null;
|
|
432
431
|
relative: string | null;
|
|
432
|
+
timestamp: number | null;
|
|
433
433
|
} | null;
|
|
434
434
|
fullUrn: string | null;
|
|
435
435
|
postType: string | null;
|
|
@@ -445,8 +445,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
445
445
|
reposts: number | null;
|
|
446
446
|
totalReactions: number | null;
|
|
447
447
|
} | null;
|
|
448
|
-
url: string | null;
|
|
449
448
|
text: string | null;
|
|
449
|
+
url: string | null;
|
|
450
450
|
urn: string | null;
|
|
451
451
|
author: {
|
|
452
452
|
username: string | null;
|
|
@@ -468,8 +468,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
468
468
|
} | null;
|
|
469
469
|
postedAt: {
|
|
470
470
|
date: string | null;
|
|
471
|
-
timestamp: number | null;
|
|
472
471
|
relative: string | null;
|
|
472
|
+
timestamp: number | null;
|
|
473
473
|
} | null;
|
|
474
474
|
postType: string | null;
|
|
475
475
|
} | null;
|
|
@@ -485,8 +485,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
485
485
|
reposts: number | null;
|
|
486
486
|
totalReactions: number | null;
|
|
487
487
|
} | null;
|
|
488
|
-
url: string | null;
|
|
489
488
|
text: string | null;
|
|
489
|
+
url: string | null;
|
|
490
490
|
document: {
|
|
491
491
|
title: string | null;
|
|
492
492
|
url: string | null;
|
|
@@ -520,8 +520,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
520
520
|
} | null;
|
|
521
521
|
postedAt: {
|
|
522
522
|
date: string | null;
|
|
523
|
-
timestamp: number | null;
|
|
524
523
|
relative: string | null;
|
|
524
|
+
timestamp: number | null;
|
|
525
525
|
} | null;
|
|
526
526
|
fullUrn: string | null;
|
|
527
527
|
postType: string | null;
|
|
@@ -537,8 +537,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
537
537
|
reposts: number | null;
|
|
538
538
|
totalReactions: number | null;
|
|
539
539
|
} | null;
|
|
540
|
-
url: string | null;
|
|
541
540
|
text: string | null;
|
|
541
|
+
url: string | null;
|
|
542
542
|
urn: string | null;
|
|
543
543
|
author: {
|
|
544
544
|
username: string | null;
|
|
@@ -560,8 +560,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
560
560
|
} | null;
|
|
561
561
|
postedAt: {
|
|
562
562
|
date: string | null;
|
|
563
|
-
timestamp: number | null;
|
|
564
563
|
relative: string | null;
|
|
564
|
+
timestamp: number | null;
|
|
565
565
|
} | null;
|
|
566
566
|
postType: string | null;
|
|
567
567
|
} | null;
|
|
@@ -609,8 +609,8 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
610
|
description: string | null;
|
|
611
611
|
title: string | null;
|
|
612
|
-
url: string | null;
|
|
613
612
|
id: string | null;
|
|
613
|
+
url: string | null;
|
|
614
614
|
location: string | null;
|
|
615
615
|
postedAt: string | null;
|
|
616
616
|
applyUrl: string | null;
|
|
@@ -631,8 +631,8 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
631
631
|
}, {
|
|
632
632
|
description: string | null;
|
|
633
633
|
title: string | null;
|
|
634
|
-
url: string | null;
|
|
635
634
|
id: string | null;
|
|
635
|
+
url: string | null;
|
|
636
636
|
location: string | null;
|
|
637
637
|
postedAt: string | null;
|
|
638
638
|
applyUrl: string | null;
|
|
@@ -736,8 +736,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
736
736
|
}, "strip", z.ZodTypeAny, {
|
|
737
737
|
description: string | null;
|
|
738
738
|
title: string | null;
|
|
739
|
-
url: string | null;
|
|
740
739
|
id: string | null;
|
|
740
|
+
url: string | null;
|
|
741
741
|
location: string | null;
|
|
742
742
|
postedAt: string | null;
|
|
743
743
|
applyUrl: string | null;
|
|
@@ -758,8 +758,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
758
758
|
}, {
|
|
759
759
|
description: string | null;
|
|
760
760
|
title: string | null;
|
|
761
|
-
url: string | null;
|
|
762
761
|
id: string | null;
|
|
762
|
+
url: string | null;
|
|
763
763
|
location: string | null;
|
|
764
764
|
postedAt: string | null;
|
|
765
765
|
applyUrl: string | null;
|
|
@@ -787,12 +787,12 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
787
787
|
timestamp: z.ZodNullable<z.ZodNumber>;
|
|
788
788
|
}, "strip", z.ZodTypeAny, {
|
|
789
789
|
date: string | null;
|
|
790
|
-
timestamp: number | null;
|
|
791
790
|
relative: string | null;
|
|
791
|
+
timestamp: number | null;
|
|
792
792
|
}, {
|
|
793
793
|
date: string | null;
|
|
794
|
-
timestamp: number | null;
|
|
795
794
|
relative: string | null;
|
|
795
|
+
timestamp: number | null;
|
|
796
796
|
}>>;
|
|
797
797
|
text: z.ZodNullable<z.ZodString>;
|
|
798
798
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -926,12 +926,12 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
926
926
|
timestamp: z.ZodNullable<z.ZodNumber>;
|
|
927
927
|
}, "strip", z.ZodTypeAny, {
|
|
928
928
|
date: string | null;
|
|
929
|
-
timestamp: number | null;
|
|
930
929
|
relative: string | null;
|
|
930
|
+
timestamp: number | null;
|
|
931
931
|
}, {
|
|
932
932
|
date: string | null;
|
|
933
|
-
timestamp: number | null;
|
|
934
933
|
relative: string | null;
|
|
934
|
+
timestamp: number | null;
|
|
935
935
|
}>>;
|
|
936
936
|
text: z.ZodNullable<z.ZodString>;
|
|
937
937
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1037,8 +1037,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1037
1037
|
reposts: number | null;
|
|
1038
1038
|
totalReactions: number | null;
|
|
1039
1039
|
} | null;
|
|
1040
|
-
url: string | null;
|
|
1041
1040
|
text: string | null;
|
|
1041
|
+
url: string | null;
|
|
1042
1042
|
urn: string | null;
|
|
1043
1043
|
author: {
|
|
1044
1044
|
username: string | null;
|
|
@@ -1060,8 +1060,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1060
1060
|
} | null;
|
|
1061
1061
|
postedAt: {
|
|
1062
1062
|
date: string | null;
|
|
1063
|
-
timestamp: number | null;
|
|
1064
1063
|
relative: string | null;
|
|
1064
|
+
timestamp: number | null;
|
|
1065
1065
|
} | null;
|
|
1066
1066
|
postType: string | null;
|
|
1067
1067
|
}, {
|
|
@@ -1076,8 +1076,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1076
1076
|
reposts: number | null;
|
|
1077
1077
|
totalReactions: number | null;
|
|
1078
1078
|
} | null;
|
|
1079
|
-
url: string | null;
|
|
1080
1079
|
text: string | null;
|
|
1080
|
+
url: string | null;
|
|
1081
1081
|
urn: string | null;
|
|
1082
1082
|
author: {
|
|
1083
1083
|
username: string | null;
|
|
@@ -1099,8 +1099,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1099
1099
|
} | null;
|
|
1100
1100
|
postedAt: {
|
|
1101
1101
|
date: string | null;
|
|
1102
|
-
timestamp: number | null;
|
|
1103
1102
|
relative: string | null;
|
|
1103
|
+
timestamp: number | null;
|
|
1104
1104
|
} | null;
|
|
1105
1105
|
postType: string | null;
|
|
1106
1106
|
}>>;
|
|
@@ -1116,8 +1116,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1116
1116
|
reposts: number | null;
|
|
1117
1117
|
totalReactions: number | null;
|
|
1118
1118
|
} | null;
|
|
1119
|
-
url: string | null;
|
|
1120
1119
|
text: string | null;
|
|
1120
|
+
url: string | null;
|
|
1121
1121
|
document: {
|
|
1122
1122
|
title: string | null;
|
|
1123
1123
|
url: string | null;
|
|
@@ -1151,8 +1151,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1151
1151
|
} | null;
|
|
1152
1152
|
postedAt: {
|
|
1153
1153
|
date: string | null;
|
|
1154
|
-
timestamp: number | null;
|
|
1155
1154
|
relative: string | null;
|
|
1155
|
+
timestamp: number | null;
|
|
1156
1156
|
} | null;
|
|
1157
1157
|
fullUrn: string | null;
|
|
1158
1158
|
postType: string | null;
|
|
@@ -1168,8 +1168,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1168
1168
|
reposts: number | null;
|
|
1169
1169
|
totalReactions: number | null;
|
|
1170
1170
|
} | null;
|
|
1171
|
-
url: string | null;
|
|
1172
1171
|
text: string | null;
|
|
1172
|
+
url: string | null;
|
|
1173
1173
|
urn: string | null;
|
|
1174
1174
|
author: {
|
|
1175
1175
|
username: string | null;
|
|
@@ -1191,8 +1191,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1191
1191
|
} | null;
|
|
1192
1192
|
postedAt: {
|
|
1193
1193
|
date: string | null;
|
|
1194
|
-
timestamp: number | null;
|
|
1195
1194
|
relative: string | null;
|
|
1195
|
+
timestamp: number | null;
|
|
1196
1196
|
} | null;
|
|
1197
1197
|
postType: string | null;
|
|
1198
1198
|
} | null;
|
|
@@ -1208,8 +1208,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1208
1208
|
reposts: number | null;
|
|
1209
1209
|
totalReactions: number | null;
|
|
1210
1210
|
} | null;
|
|
1211
|
-
url: string | null;
|
|
1212
1211
|
text: string | null;
|
|
1212
|
+
url: string | null;
|
|
1213
1213
|
document: {
|
|
1214
1214
|
title: string | null;
|
|
1215
1215
|
url: string | null;
|
|
@@ -1243,8 +1243,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1243
1243
|
} | null;
|
|
1244
1244
|
postedAt: {
|
|
1245
1245
|
date: string | null;
|
|
1246
|
-
timestamp: number | null;
|
|
1247
1246
|
relative: string | null;
|
|
1247
|
+
timestamp: number | null;
|
|
1248
1248
|
} | null;
|
|
1249
1249
|
fullUrn: string | null;
|
|
1250
1250
|
postType: string | null;
|
|
@@ -1260,8 +1260,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1260
1260
|
reposts: number | null;
|
|
1261
1261
|
totalReactions: number | null;
|
|
1262
1262
|
} | null;
|
|
1263
|
-
url: string | null;
|
|
1264
1263
|
text: string | null;
|
|
1264
|
+
url: string | null;
|
|
1265
1265
|
urn: string | null;
|
|
1266
1266
|
author: {
|
|
1267
1267
|
username: string | null;
|
|
@@ -1283,8 +1283,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1283
1283
|
} | null;
|
|
1284
1284
|
postedAt: {
|
|
1285
1285
|
date: string | null;
|
|
1286
|
-
timestamp: number | null;
|
|
1287
1286
|
relative: string | null;
|
|
1287
|
+
timestamp: number | null;
|
|
1288
1288
|
} | null;
|
|
1289
1289
|
postType: string | null;
|
|
1290
1290
|
} | null;
|
|
@@ -1313,8 +1313,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1313
1313
|
reposts: number | null;
|
|
1314
1314
|
totalReactions: number | null;
|
|
1315
1315
|
} | null;
|
|
1316
|
-
url: string | null;
|
|
1317
1316
|
text: string | null;
|
|
1317
|
+
url: string | null;
|
|
1318
1318
|
document: {
|
|
1319
1319
|
title: string | null;
|
|
1320
1320
|
url: string | null;
|
|
@@ -1348,8 +1348,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1348
1348
|
} | null;
|
|
1349
1349
|
postedAt: {
|
|
1350
1350
|
date: string | null;
|
|
1351
|
-
timestamp: number | null;
|
|
1352
1351
|
relative: string | null;
|
|
1352
|
+
timestamp: number | null;
|
|
1353
1353
|
} | null;
|
|
1354
1354
|
fullUrn: string | null;
|
|
1355
1355
|
postType: string | null;
|
|
@@ -1365,8 +1365,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1365
1365
|
reposts: number | null;
|
|
1366
1366
|
totalReactions: number | null;
|
|
1367
1367
|
} | null;
|
|
1368
|
-
url: string | null;
|
|
1369
1368
|
text: string | null;
|
|
1369
|
+
url: string | null;
|
|
1370
1370
|
urn: string | null;
|
|
1371
1371
|
author: {
|
|
1372
1372
|
username: string | null;
|
|
@@ -1388,8 +1388,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1388
1388
|
} | null;
|
|
1389
1389
|
postedAt: {
|
|
1390
1390
|
date: string | null;
|
|
1391
|
-
timestamp: number | null;
|
|
1392
1391
|
relative: string | null;
|
|
1392
|
+
timestamp: number | null;
|
|
1393
1393
|
} | null;
|
|
1394
1394
|
postType: string | null;
|
|
1395
1395
|
} | null;
|
|
@@ -1400,8 +1400,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1400
1400
|
jobs?: {
|
|
1401
1401
|
description: string | null;
|
|
1402
1402
|
title: string | null;
|
|
1403
|
-
url: string | null;
|
|
1404
1403
|
id: string | null;
|
|
1404
|
+
url: string | null;
|
|
1405
1405
|
location: string | null;
|
|
1406
1406
|
postedAt: string | null;
|
|
1407
1407
|
applyUrl: string | null;
|
|
@@ -1439,8 +1439,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1439
1439
|
reposts: number | null;
|
|
1440
1440
|
totalReactions: number | null;
|
|
1441
1441
|
} | null;
|
|
1442
|
-
url: string | null;
|
|
1443
1442
|
text: string | null;
|
|
1443
|
+
url: string | null;
|
|
1444
1444
|
document: {
|
|
1445
1445
|
title: string | null;
|
|
1446
1446
|
url: string | null;
|
|
@@ -1474,8 +1474,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1474
1474
|
} | null;
|
|
1475
1475
|
postedAt: {
|
|
1476
1476
|
date: string | null;
|
|
1477
|
-
timestamp: number | null;
|
|
1478
1477
|
relative: string | null;
|
|
1478
|
+
timestamp: number | null;
|
|
1479
1479
|
} | null;
|
|
1480
1480
|
fullUrn: string | null;
|
|
1481
1481
|
postType: string | null;
|
|
@@ -1491,8 +1491,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1491
1491
|
reposts: number | null;
|
|
1492
1492
|
totalReactions: number | null;
|
|
1493
1493
|
} | null;
|
|
1494
|
-
url: string | null;
|
|
1495
1494
|
text: string | null;
|
|
1495
|
+
url: string | null;
|
|
1496
1496
|
urn: string | null;
|
|
1497
1497
|
author: {
|
|
1498
1498
|
username: string | null;
|
|
@@ -1514,8 +1514,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1514
1514
|
} | null;
|
|
1515
1515
|
postedAt: {
|
|
1516
1516
|
date: string | null;
|
|
1517
|
-
timestamp: number | null;
|
|
1518
1517
|
relative: string | null;
|
|
1518
|
+
timestamp: number | null;
|
|
1519
1519
|
} | null;
|
|
1520
1520
|
postType: string | null;
|
|
1521
1521
|
} | null;
|
|
@@ -1526,8 +1526,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1526
1526
|
jobs?: {
|
|
1527
1527
|
description: string | null;
|
|
1528
1528
|
title: string | null;
|
|
1529
|
-
url: string | null;
|
|
1530
1529
|
id: string | null;
|
|
1530
|
+
url: string | null;
|
|
1531
1531
|
location: string | null;
|
|
1532
1532
|
postedAt: string | null;
|
|
1533
1533
|
applyUrl: string | null;
|
|
@@ -1659,8 +1659,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1659
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1660
1660
|
description: string | null;
|
|
1661
1661
|
title: string | null;
|
|
1662
|
-
url: string | null;
|
|
1663
1662
|
id: string | null;
|
|
1663
|
+
url: string | null;
|
|
1664
1664
|
location: string | null;
|
|
1665
1665
|
postedAt: string | null;
|
|
1666
1666
|
applyUrl: string | null;
|
|
@@ -1681,8 +1681,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1681
1681
|
}, {
|
|
1682
1682
|
description: string | null;
|
|
1683
1683
|
title: string | null;
|
|
1684
|
-
url: string | null;
|
|
1685
1684
|
id: string | null;
|
|
1685
|
+
url: string | null;
|
|
1686
1686
|
location: string | null;
|
|
1687
1687
|
postedAt: string | null;
|
|
1688
1688
|
applyUrl: string | null;
|
|
@@ -1710,12 +1710,12 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1710
1710
|
timestamp: z.ZodNullable<z.ZodNumber>;
|
|
1711
1711
|
}, "strip", z.ZodTypeAny, {
|
|
1712
1712
|
date: string | null;
|
|
1713
|
-
timestamp: number | null;
|
|
1714
1713
|
relative: string | null;
|
|
1714
|
+
timestamp: number | null;
|
|
1715
1715
|
}, {
|
|
1716
1716
|
date: string | null;
|
|
1717
|
-
timestamp: number | null;
|
|
1718
1717
|
relative: string | null;
|
|
1718
|
+
timestamp: number | null;
|
|
1719
1719
|
}>>;
|
|
1720
1720
|
text: z.ZodNullable<z.ZodString>;
|
|
1721
1721
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1849,12 +1849,12 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1849
1849
|
timestamp: z.ZodNullable<z.ZodNumber>;
|
|
1850
1850
|
}, "strip", z.ZodTypeAny, {
|
|
1851
1851
|
date: string | null;
|
|
1852
|
-
timestamp: number | null;
|
|
1853
1852
|
relative: string | null;
|
|
1853
|
+
timestamp: number | null;
|
|
1854
1854
|
}, {
|
|
1855
1855
|
date: string | null;
|
|
1856
|
-
timestamp: number | null;
|
|
1857
1856
|
relative: string | null;
|
|
1857
|
+
timestamp: number | null;
|
|
1858
1858
|
}>>;
|
|
1859
1859
|
text: z.ZodNullable<z.ZodString>;
|
|
1860
1860
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1960,8 +1960,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1960
1960
|
reposts: number | null;
|
|
1961
1961
|
totalReactions: number | null;
|
|
1962
1962
|
} | null;
|
|
1963
|
-
url: string | null;
|
|
1964
1963
|
text: string | null;
|
|
1964
|
+
url: string | null;
|
|
1965
1965
|
urn: string | null;
|
|
1966
1966
|
author: {
|
|
1967
1967
|
username: string | null;
|
|
@@ -1983,8 +1983,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1983
1983
|
} | null;
|
|
1984
1984
|
postedAt: {
|
|
1985
1985
|
date: string | null;
|
|
1986
|
-
timestamp: number | null;
|
|
1987
1986
|
relative: string | null;
|
|
1987
|
+
timestamp: number | null;
|
|
1988
1988
|
} | null;
|
|
1989
1989
|
postType: string | null;
|
|
1990
1990
|
}, {
|
|
@@ -1999,8 +1999,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1999
1999
|
reposts: number | null;
|
|
2000
2000
|
totalReactions: number | null;
|
|
2001
2001
|
} | null;
|
|
2002
|
-
url: string | null;
|
|
2003
2002
|
text: string | null;
|
|
2003
|
+
url: string | null;
|
|
2004
2004
|
urn: string | null;
|
|
2005
2005
|
author: {
|
|
2006
2006
|
username: string | null;
|
|
@@ -2022,8 +2022,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2022
2022
|
} | null;
|
|
2023
2023
|
postedAt: {
|
|
2024
2024
|
date: string | null;
|
|
2025
|
-
timestamp: number | null;
|
|
2026
2025
|
relative: string | null;
|
|
2026
|
+
timestamp: number | null;
|
|
2027
2027
|
} | null;
|
|
2028
2028
|
postType: string | null;
|
|
2029
2029
|
}>>;
|
|
@@ -2039,8 +2039,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2039
2039
|
reposts: number | null;
|
|
2040
2040
|
totalReactions: number | null;
|
|
2041
2041
|
} | null;
|
|
2042
|
-
url: string | null;
|
|
2043
2042
|
text: string | null;
|
|
2043
|
+
url: string | null;
|
|
2044
2044
|
document: {
|
|
2045
2045
|
title: string | null;
|
|
2046
2046
|
url: string | null;
|
|
@@ -2074,8 +2074,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2074
2074
|
} | null;
|
|
2075
2075
|
postedAt: {
|
|
2076
2076
|
date: string | null;
|
|
2077
|
-
timestamp: number | null;
|
|
2078
2077
|
relative: string | null;
|
|
2078
|
+
timestamp: number | null;
|
|
2079
2079
|
} | null;
|
|
2080
2080
|
fullUrn: string | null;
|
|
2081
2081
|
postType: string | null;
|
|
@@ -2091,8 +2091,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2091
2091
|
reposts: number | null;
|
|
2092
2092
|
totalReactions: number | null;
|
|
2093
2093
|
} | null;
|
|
2094
|
-
url: string | null;
|
|
2095
2094
|
text: string | null;
|
|
2095
|
+
url: string | null;
|
|
2096
2096
|
urn: string | null;
|
|
2097
2097
|
author: {
|
|
2098
2098
|
username: string | null;
|
|
@@ -2114,8 +2114,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2114
2114
|
} | null;
|
|
2115
2115
|
postedAt: {
|
|
2116
2116
|
date: string | null;
|
|
2117
|
-
timestamp: number | null;
|
|
2118
2117
|
relative: string | null;
|
|
2118
|
+
timestamp: number | null;
|
|
2119
2119
|
} | null;
|
|
2120
2120
|
postType: string | null;
|
|
2121
2121
|
} | null;
|
|
@@ -2131,8 +2131,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2131
2131
|
reposts: number | null;
|
|
2132
2132
|
totalReactions: number | null;
|
|
2133
2133
|
} | null;
|
|
2134
|
-
url: string | null;
|
|
2135
2134
|
text: string | null;
|
|
2135
|
+
url: string | null;
|
|
2136
2136
|
document: {
|
|
2137
2137
|
title: string | null;
|
|
2138
2138
|
url: string | null;
|
|
@@ -2166,8 +2166,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2166
2166
|
} | null;
|
|
2167
2167
|
postedAt: {
|
|
2168
2168
|
date: string | null;
|
|
2169
|
-
timestamp: number | null;
|
|
2170
2169
|
relative: string | null;
|
|
2170
|
+
timestamp: number | null;
|
|
2171
2171
|
} | null;
|
|
2172
2172
|
fullUrn: string | null;
|
|
2173
2173
|
postType: string | null;
|
|
@@ -2183,8 +2183,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2183
2183
|
reposts: number | null;
|
|
2184
2184
|
totalReactions: number | null;
|
|
2185
2185
|
} | null;
|
|
2186
|
-
url: string | null;
|
|
2187
2186
|
text: string | null;
|
|
2187
|
+
url: string | null;
|
|
2188
2188
|
urn: string | null;
|
|
2189
2189
|
author: {
|
|
2190
2190
|
username: string | null;
|
|
@@ -2206,8 +2206,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2206
2206
|
} | null;
|
|
2207
2207
|
postedAt: {
|
|
2208
2208
|
date: string | null;
|
|
2209
|
-
timestamp: number | null;
|
|
2210
2209
|
relative: string | null;
|
|
2210
|
+
timestamp: number | null;
|
|
2211
2211
|
} | null;
|
|
2212
2212
|
postType: string | null;
|
|
2213
2213
|
} | null;
|
|
@@ -2236,8 +2236,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2236
2236
|
reposts: number | null;
|
|
2237
2237
|
totalReactions: number | null;
|
|
2238
2238
|
} | null;
|
|
2239
|
-
url: string | null;
|
|
2240
2239
|
text: string | null;
|
|
2240
|
+
url: string | null;
|
|
2241
2241
|
document: {
|
|
2242
2242
|
title: string | null;
|
|
2243
2243
|
url: string | null;
|
|
@@ -2271,8 +2271,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2271
2271
|
} | null;
|
|
2272
2272
|
postedAt: {
|
|
2273
2273
|
date: string | null;
|
|
2274
|
-
timestamp: number | null;
|
|
2275
2274
|
relative: string | null;
|
|
2275
|
+
timestamp: number | null;
|
|
2276
2276
|
} | null;
|
|
2277
2277
|
fullUrn: string | null;
|
|
2278
2278
|
postType: string | null;
|
|
@@ -2288,8 +2288,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2288
2288
|
reposts: number | null;
|
|
2289
2289
|
totalReactions: number | null;
|
|
2290
2290
|
} | null;
|
|
2291
|
-
url: string | null;
|
|
2292
2291
|
text: string | null;
|
|
2292
|
+
url: string | null;
|
|
2293
2293
|
urn: string | null;
|
|
2294
2294
|
author: {
|
|
2295
2295
|
username: string | null;
|
|
@@ -2311,8 +2311,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2311
2311
|
} | null;
|
|
2312
2312
|
postedAt: {
|
|
2313
2313
|
date: string | null;
|
|
2314
|
-
timestamp: number | null;
|
|
2315
2314
|
relative: string | null;
|
|
2315
|
+
timestamp: number | null;
|
|
2316
2316
|
} | null;
|
|
2317
2317
|
postType: string | null;
|
|
2318
2318
|
} | null;
|
|
@@ -2323,8 +2323,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2323
2323
|
jobs?: {
|
|
2324
2324
|
description: string | null;
|
|
2325
2325
|
title: string | null;
|
|
2326
|
-
url: string | null;
|
|
2327
2326
|
id: string | null;
|
|
2327
|
+
url: string | null;
|
|
2328
2328
|
location: string | null;
|
|
2329
2329
|
postedAt: string | null;
|
|
2330
2330
|
applyUrl: string | null;
|
|
@@ -2362,8 +2362,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2362
2362
|
reposts: number | null;
|
|
2363
2363
|
totalReactions: number | null;
|
|
2364
2364
|
} | null;
|
|
2365
|
-
url: string | null;
|
|
2366
2365
|
text: string | null;
|
|
2366
|
+
url: string | null;
|
|
2367
2367
|
document: {
|
|
2368
2368
|
title: string | null;
|
|
2369
2369
|
url: string | null;
|
|
@@ -2397,8 +2397,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2397
2397
|
} | null;
|
|
2398
2398
|
postedAt: {
|
|
2399
2399
|
date: string | null;
|
|
2400
|
-
timestamp: number | null;
|
|
2401
2400
|
relative: string | null;
|
|
2401
|
+
timestamp: number | null;
|
|
2402
2402
|
} | null;
|
|
2403
2403
|
fullUrn: string | null;
|
|
2404
2404
|
postType: string | null;
|
|
@@ -2414,8 +2414,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2414
2414
|
reposts: number | null;
|
|
2415
2415
|
totalReactions: number | null;
|
|
2416
2416
|
} | null;
|
|
2417
|
-
url: string | null;
|
|
2418
2417
|
text: string | null;
|
|
2418
|
+
url: string | null;
|
|
2419
2419
|
urn: string | null;
|
|
2420
2420
|
author: {
|
|
2421
2421
|
username: string | null;
|
|
@@ -2437,8 +2437,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2437
2437
|
} | null;
|
|
2438
2438
|
postedAt: {
|
|
2439
2439
|
date: string | null;
|
|
2440
|
-
timestamp: number | null;
|
|
2441
2440
|
relative: string | null;
|
|
2441
|
+
timestamp: number | null;
|
|
2442
2442
|
} | null;
|
|
2443
2443
|
postType: string | null;
|
|
2444
2444
|
} | null;
|
|
@@ -2449,8 +2449,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2449
2449
|
jobs?: {
|
|
2450
2450
|
description: string | null;
|
|
2451
2451
|
title: string | null;
|
|
2452
|
-
url: string | null;
|
|
2453
2452
|
id: string | null;
|
|
2453
|
+
url: string | null;
|
|
2454
2454
|
location: string | null;
|
|
2455
2455
|
postedAt: string | null;
|
|
2456
2456
|
applyUrl: string | null;
|