@bubblelab/bubble-core 0.1.211 → 0.1.213
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 +58 -58
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.js +15 -1
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.js.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +192 -25
- package/dist/bubbles/service-bubble/ai-agent.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-jobs-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/linkedin-posts-search.d.ts +22 -22
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +38 -38
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-posts.d.ts +52 -52
- package/dist/bubbles/service-bubble/apify/actors/tiktok-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/actors/twitter-scraper.d.ts +12 -12
- package/dist/bubbles/service-bubble/apify/actors/youtube-scraper.d.ts +12 -12
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +126 -126
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/assembled/assembled.schema.d.ts +6 -6
- package/dist/bubbles/service-bubble/attio/attio.d.ts +4 -4
- package/dist/bubbles/service-bubble/attio/attio.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/firecrawl.d.ts +12 -12
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/jira/jira.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +14 -14
- package/dist/bubbles/service-bubble/notion/notion.d.ts +244 -244
- package/dist/bubbles/service-bubble/notion/property-schemas.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.d.ts +4 -0
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.js +4 -0
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.js.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.d.ts +154 -154
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +53 -7
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/storage.js +5 -3
- package/dist/bubbles/service-bubble/storage.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +4 -4
- 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/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +80 -80
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -314,8 +314,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
314
314
|
reposts: number | null;
|
|
315
315
|
totalReactions: number | null;
|
|
316
316
|
} | null;
|
|
317
|
-
text: string | null;
|
|
318
317
|
url: string | null;
|
|
318
|
+
text: string | null;
|
|
319
319
|
urn: string | null;
|
|
320
320
|
author: {
|
|
321
321
|
username: string | null;
|
|
@@ -353,8 +353,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
353
353
|
reposts: number | null;
|
|
354
354
|
totalReactions: number | null;
|
|
355
355
|
} | null;
|
|
356
|
-
text: string | null;
|
|
357
356
|
url: string | null;
|
|
357
|
+
text: string | null;
|
|
358
358
|
urn: string | null;
|
|
359
359
|
author: {
|
|
360
360
|
username: string | null;
|
|
@@ -393,8 +393,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
393
393
|
reposts: number | null;
|
|
394
394
|
totalReactions: number | null;
|
|
395
395
|
} | null;
|
|
396
|
-
text: string | null;
|
|
397
396
|
url: string | null;
|
|
397
|
+
text: string | null;
|
|
398
398
|
document: {
|
|
399
399
|
title: string | null;
|
|
400
400
|
url: 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
|
-
text: string | null;
|
|
449
448
|
url: string | null;
|
|
449
|
+
text: string | null;
|
|
450
450
|
urn: string | null;
|
|
451
451
|
author: {
|
|
452
452
|
username: string | null;
|
|
@@ -485,8 +485,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
485
485
|
reposts: number | null;
|
|
486
486
|
totalReactions: number | null;
|
|
487
487
|
} | null;
|
|
488
|
-
text: string | null;
|
|
489
488
|
url: string | null;
|
|
489
|
+
text: string | null;
|
|
490
490
|
document: {
|
|
491
491
|
title: string | null;
|
|
492
492
|
url: 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
|
-
text: string | null;
|
|
541
540
|
url: string | null;
|
|
541
|
+
text: string | null;
|
|
542
542
|
urn: string | null;
|
|
543
543
|
author: {
|
|
544
544
|
username: string | null;
|
|
@@ -878,13 +878,10 @@ declare const LinkedInProfileSchema: z.ZodObject<{
|
|
|
878
878
|
city: string | null;
|
|
879
879
|
} | null;
|
|
880
880
|
headline: string | null;
|
|
881
|
-
skills: {
|
|
882
|
-
name: string | null;
|
|
883
|
-
}[] | null;
|
|
884
|
-
firstName: string | null;
|
|
885
|
-
lastName: string | null;
|
|
886
881
|
publicIdentifier: string | null;
|
|
887
882
|
linkedinUrl: string | null;
|
|
883
|
+
firstName: string | null;
|
|
884
|
+
lastName: string | null;
|
|
888
885
|
about: string | null;
|
|
889
886
|
openToWork: boolean | null;
|
|
890
887
|
hiring: boolean | null;
|
|
@@ -896,6 +893,9 @@ declare const LinkedInProfileSchema: z.ZodObject<{
|
|
|
896
893
|
currentPosition: {
|
|
897
894
|
companyName: string | null;
|
|
898
895
|
}[] | null;
|
|
896
|
+
skills: {
|
|
897
|
+
name: string | null;
|
|
898
|
+
}[] | null;
|
|
899
899
|
experience: {
|
|
900
900
|
duration: string | null;
|
|
901
901
|
description: string | null;
|
|
@@ -955,13 +955,10 @@ declare const LinkedInProfileSchema: z.ZodObject<{
|
|
|
955
955
|
city: string | null;
|
|
956
956
|
} | null;
|
|
957
957
|
headline: string | null;
|
|
958
|
-
skills: {
|
|
959
|
-
name: string | null;
|
|
960
|
-
}[] | null;
|
|
961
|
-
firstName: string | null;
|
|
962
|
-
lastName: string | null;
|
|
963
958
|
publicIdentifier: string | null;
|
|
964
959
|
linkedinUrl: string | null;
|
|
960
|
+
firstName: string | null;
|
|
961
|
+
lastName: string | null;
|
|
965
962
|
about: string | null;
|
|
966
963
|
openToWork: boolean | null;
|
|
967
964
|
hiring: boolean | null;
|
|
@@ -973,6 +970,9 @@ declare const LinkedInProfileSchema: z.ZodObject<{
|
|
|
973
970
|
currentPosition: {
|
|
974
971
|
companyName: string | null;
|
|
975
972
|
}[] | null;
|
|
973
|
+
skills: {
|
|
974
|
+
name: string | null;
|
|
975
|
+
}[] | null;
|
|
976
976
|
experience: {
|
|
977
977
|
duration: string | null;
|
|
978
978
|
description: string | null;
|
|
@@ -1043,8 +1043,8 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
1043
1043
|
pageNumber?: number | undefined;
|
|
1044
1044
|
location?: string | undefined;
|
|
1045
1045
|
keyword?: string | undefined;
|
|
1046
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1047
1046
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
1047
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1048
1048
|
profileUrl?: string | undefined;
|
|
1049
1049
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
1050
1050
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
@@ -1057,8 +1057,8 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
1057
1057
|
pageNumber?: number | undefined;
|
|
1058
1058
|
location?: string | undefined;
|
|
1059
1059
|
keyword?: string | undefined;
|
|
1060
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1061
1060
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
1061
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1062
1062
|
profileUrl?: string | undefined;
|
|
1063
1063
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
1064
1064
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
@@ -1293,13 +1293,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1293
1293
|
city: string | null;
|
|
1294
1294
|
} | null;
|
|
1295
1295
|
headline: string | null;
|
|
1296
|
-
skills: {
|
|
1297
|
-
name: string | null;
|
|
1298
|
-
}[] | null;
|
|
1299
|
-
firstName: string | null;
|
|
1300
|
-
lastName: string | null;
|
|
1301
1296
|
publicIdentifier: string | null;
|
|
1302
1297
|
linkedinUrl: string | null;
|
|
1298
|
+
firstName: string | null;
|
|
1299
|
+
lastName: string | null;
|
|
1303
1300
|
about: string | null;
|
|
1304
1301
|
openToWork: boolean | null;
|
|
1305
1302
|
hiring: boolean | null;
|
|
@@ -1311,6 +1308,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1311
1308
|
currentPosition: {
|
|
1312
1309
|
companyName: string | null;
|
|
1313
1310
|
}[] | null;
|
|
1311
|
+
skills: {
|
|
1312
|
+
name: string | null;
|
|
1313
|
+
}[] | null;
|
|
1314
1314
|
experience: {
|
|
1315
1315
|
duration: string | null;
|
|
1316
1316
|
description: string | null;
|
|
@@ -1370,13 +1370,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1370
1370
|
city: string | null;
|
|
1371
1371
|
} | null;
|
|
1372
1372
|
headline: string | null;
|
|
1373
|
-
skills: {
|
|
1374
|
-
name: string | null;
|
|
1375
|
-
}[] | null;
|
|
1376
|
-
firstName: string | null;
|
|
1377
|
-
lastName: string | null;
|
|
1378
1373
|
publicIdentifier: string | null;
|
|
1379
1374
|
linkedinUrl: string | null;
|
|
1375
|
+
firstName: string | null;
|
|
1376
|
+
lastName: string | null;
|
|
1380
1377
|
about: string | null;
|
|
1381
1378
|
openToWork: boolean | null;
|
|
1382
1379
|
hiring: boolean | null;
|
|
@@ -1388,6 +1385,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1388
1385
|
currentPosition: {
|
|
1389
1386
|
companyName: string | null;
|
|
1390
1387
|
}[] | null;
|
|
1388
|
+
skills: {
|
|
1389
|
+
name: string | null;
|
|
1390
|
+
}[] | null;
|
|
1391
1391
|
experience: {
|
|
1392
1392
|
duration: string | null;
|
|
1393
1393
|
description: string | null;
|
|
@@ -1780,8 +1780,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1780
1780
|
reposts: number | null;
|
|
1781
1781
|
totalReactions: number | null;
|
|
1782
1782
|
} | null;
|
|
1783
|
-
text: string | null;
|
|
1784
1783
|
url: string | null;
|
|
1784
|
+
text: string | null;
|
|
1785
1785
|
urn: string | null;
|
|
1786
1786
|
author: {
|
|
1787
1787
|
username: string | null;
|
|
@@ -1819,8 +1819,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1819
1819
|
reposts: number | null;
|
|
1820
1820
|
totalReactions: number | null;
|
|
1821
1821
|
} | null;
|
|
1822
|
-
text: string | null;
|
|
1823
1822
|
url: string | null;
|
|
1823
|
+
text: string | null;
|
|
1824
1824
|
urn: string | null;
|
|
1825
1825
|
author: {
|
|
1826
1826
|
username: string | null;
|
|
@@ -1859,8 +1859,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1859
1859
|
reposts: number | null;
|
|
1860
1860
|
totalReactions: number | null;
|
|
1861
1861
|
} | null;
|
|
1862
|
-
text: string | null;
|
|
1863
1862
|
url: string | null;
|
|
1863
|
+
text: string | null;
|
|
1864
1864
|
document: {
|
|
1865
1865
|
title: string | null;
|
|
1866
1866
|
url: string | null;
|
|
@@ -1911,8 +1911,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1911
1911
|
reposts: number | null;
|
|
1912
1912
|
totalReactions: number | null;
|
|
1913
1913
|
} | null;
|
|
1914
|
-
text: string | null;
|
|
1915
1914
|
url: string | null;
|
|
1915
|
+
text: string | null;
|
|
1916
1916
|
urn: string | null;
|
|
1917
1917
|
author: {
|
|
1918
1918
|
username: string | null;
|
|
@@ -1951,8 +1951,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1951
1951
|
reposts: number | null;
|
|
1952
1952
|
totalReactions: number | null;
|
|
1953
1953
|
} | null;
|
|
1954
|
-
text: string | null;
|
|
1955
1954
|
url: string | null;
|
|
1955
|
+
text: string | null;
|
|
1956
1956
|
document: {
|
|
1957
1957
|
title: string | null;
|
|
1958
1958
|
url: string | null;
|
|
@@ -2003,8 +2003,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2003
2003
|
reposts: number | null;
|
|
2004
2004
|
totalReactions: number | null;
|
|
2005
2005
|
} | null;
|
|
2006
|
-
text: string | null;
|
|
2007
2006
|
url: string | null;
|
|
2007
|
+
text: string | null;
|
|
2008
2008
|
urn: string | null;
|
|
2009
2009
|
author: {
|
|
2010
2010
|
username: string | null;
|
|
@@ -2056,8 +2056,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2056
2056
|
reposts: number | null;
|
|
2057
2057
|
totalReactions: number | null;
|
|
2058
2058
|
} | null;
|
|
2059
|
-
text: string | null;
|
|
2060
2059
|
url: string | null;
|
|
2060
|
+
text: string | null;
|
|
2061
2061
|
document: {
|
|
2062
2062
|
title: string | null;
|
|
2063
2063
|
url: string | null;
|
|
@@ -2108,8 +2108,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2108
2108
|
reposts: number | null;
|
|
2109
2109
|
totalReactions: number | null;
|
|
2110
2110
|
} | null;
|
|
2111
|
-
text: string | null;
|
|
2112
2111
|
url: string | null;
|
|
2112
|
+
text: string | null;
|
|
2113
2113
|
urn: string | null;
|
|
2114
2114
|
author: {
|
|
2115
2115
|
username: string | null;
|
|
@@ -2150,13 +2150,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2150
2150
|
city: string | null;
|
|
2151
2151
|
} | null;
|
|
2152
2152
|
headline: string | null;
|
|
2153
|
-
skills: {
|
|
2154
|
-
name: string | null;
|
|
2155
|
-
}[] | null;
|
|
2156
|
-
firstName: string | null;
|
|
2157
|
-
lastName: string | null;
|
|
2158
2153
|
publicIdentifier: string | null;
|
|
2159
2154
|
linkedinUrl: string | null;
|
|
2155
|
+
firstName: string | null;
|
|
2156
|
+
lastName: string | null;
|
|
2160
2157
|
about: string | null;
|
|
2161
2158
|
openToWork: boolean | null;
|
|
2162
2159
|
hiring: boolean | null;
|
|
@@ -2168,6 +2165,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2168
2165
|
currentPosition: {
|
|
2169
2166
|
companyName: string | null;
|
|
2170
2167
|
}[] | null;
|
|
2168
|
+
skills: {
|
|
2169
|
+
name: string | null;
|
|
2170
|
+
}[] | null;
|
|
2171
2171
|
experience: {
|
|
2172
2172
|
duration: string | null;
|
|
2173
2173
|
description: string | null;
|
|
@@ -2260,8 +2260,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2260
2260
|
reposts: number | null;
|
|
2261
2261
|
totalReactions: number | null;
|
|
2262
2262
|
} | null;
|
|
2263
|
-
text: string | null;
|
|
2264
2263
|
url: string | null;
|
|
2264
|
+
text: string | null;
|
|
2265
2265
|
document: {
|
|
2266
2266
|
title: string | null;
|
|
2267
2267
|
url: string | null;
|
|
@@ -2312,8 +2312,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2312
2312
|
reposts: number | null;
|
|
2313
2313
|
totalReactions: number | null;
|
|
2314
2314
|
} | null;
|
|
2315
|
-
text: string | null;
|
|
2316
2315
|
url: string | null;
|
|
2316
|
+
text: string | null;
|
|
2317
2317
|
urn: string | null;
|
|
2318
2318
|
author: {
|
|
2319
2319
|
username: string | null;
|
|
@@ -2354,13 +2354,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2354
2354
|
city: string | null;
|
|
2355
2355
|
} | null;
|
|
2356
2356
|
headline: string | null;
|
|
2357
|
-
skills: {
|
|
2358
|
-
name: string | null;
|
|
2359
|
-
}[] | null;
|
|
2360
|
-
firstName: string | null;
|
|
2361
|
-
lastName: string | null;
|
|
2362
2357
|
publicIdentifier: string | null;
|
|
2363
2358
|
linkedinUrl: string | null;
|
|
2359
|
+
firstName: string | null;
|
|
2360
|
+
lastName: string | null;
|
|
2364
2361
|
about: string | null;
|
|
2365
2362
|
openToWork: boolean | null;
|
|
2366
2363
|
hiring: boolean | null;
|
|
@@ -2372,6 +2369,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
2372
2369
|
currentPosition: {
|
|
2373
2370
|
companyName: string | null;
|
|
2374
2371
|
}[] | null;
|
|
2372
|
+
skills: {
|
|
2373
|
+
name: string | null;
|
|
2374
|
+
}[] | null;
|
|
2375
2375
|
experience: {
|
|
2376
2376
|
duration: string | null;
|
|
2377
2377
|
description: string | null;
|
|
@@ -2496,8 +2496,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2496
2496
|
pageNumber?: number | undefined;
|
|
2497
2497
|
location?: string | undefined;
|
|
2498
2498
|
keyword?: string | undefined;
|
|
2499
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2500
2499
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
2500
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2501
2501
|
profileUrl?: string | undefined;
|
|
2502
2502
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
2503
2503
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
@@ -2510,8 +2510,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2510
2510
|
pageNumber?: number | undefined;
|
|
2511
2511
|
location?: string | undefined;
|
|
2512
2512
|
keyword?: string | undefined;
|
|
2513
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2514
2513
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
2514
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2515
2515
|
profileUrl?: string | undefined;
|
|
2516
2516
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
2517
2517
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
@@ -2746,13 +2746,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2746
2746
|
city: string | null;
|
|
2747
2747
|
} | null;
|
|
2748
2748
|
headline: string | null;
|
|
2749
|
-
skills: {
|
|
2750
|
-
name: string | null;
|
|
2751
|
-
}[] | null;
|
|
2752
|
-
firstName: string | null;
|
|
2753
|
-
lastName: string | null;
|
|
2754
2749
|
publicIdentifier: string | null;
|
|
2755
2750
|
linkedinUrl: string | null;
|
|
2751
|
+
firstName: string | null;
|
|
2752
|
+
lastName: string | null;
|
|
2756
2753
|
about: string | null;
|
|
2757
2754
|
openToWork: boolean | null;
|
|
2758
2755
|
hiring: boolean | null;
|
|
@@ -2764,6 +2761,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2764
2761
|
currentPosition: {
|
|
2765
2762
|
companyName: string | null;
|
|
2766
2763
|
}[] | null;
|
|
2764
|
+
skills: {
|
|
2765
|
+
name: string | null;
|
|
2766
|
+
}[] | null;
|
|
2767
2767
|
experience: {
|
|
2768
2768
|
duration: string | null;
|
|
2769
2769
|
description: string | null;
|
|
@@ -2823,13 +2823,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2823
2823
|
city: string | null;
|
|
2824
2824
|
} | null;
|
|
2825
2825
|
headline: string | null;
|
|
2826
|
-
skills: {
|
|
2827
|
-
name: string | null;
|
|
2828
|
-
}[] | null;
|
|
2829
|
-
firstName: string | null;
|
|
2830
|
-
lastName: string | null;
|
|
2831
2826
|
publicIdentifier: string | null;
|
|
2832
2827
|
linkedinUrl: string | null;
|
|
2828
|
+
firstName: string | null;
|
|
2829
|
+
lastName: string | null;
|
|
2833
2830
|
about: string | null;
|
|
2834
2831
|
openToWork: boolean | null;
|
|
2835
2832
|
hiring: boolean | null;
|
|
@@ -2841,6 +2838,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2841
2838
|
currentPosition: {
|
|
2842
2839
|
companyName: string | null;
|
|
2843
2840
|
}[] | null;
|
|
2841
|
+
skills: {
|
|
2842
|
+
name: string | null;
|
|
2843
|
+
}[] | null;
|
|
2844
2844
|
experience: {
|
|
2845
2845
|
duration: string | null;
|
|
2846
2846
|
description: string | null;
|
|
@@ -3233,8 +3233,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3233
3233
|
reposts: number | null;
|
|
3234
3234
|
totalReactions: number | null;
|
|
3235
3235
|
} | null;
|
|
3236
|
-
text: string | null;
|
|
3237
3236
|
url: string | null;
|
|
3237
|
+
text: string | null;
|
|
3238
3238
|
urn: string | null;
|
|
3239
3239
|
author: {
|
|
3240
3240
|
username: string | null;
|
|
@@ -3272,8 +3272,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3272
3272
|
reposts: number | null;
|
|
3273
3273
|
totalReactions: number | null;
|
|
3274
3274
|
} | null;
|
|
3275
|
-
text: string | null;
|
|
3276
3275
|
url: string | null;
|
|
3276
|
+
text: string | null;
|
|
3277
3277
|
urn: string | null;
|
|
3278
3278
|
author: {
|
|
3279
3279
|
username: string | null;
|
|
@@ -3312,8 +3312,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3312
3312
|
reposts: number | null;
|
|
3313
3313
|
totalReactions: number | null;
|
|
3314
3314
|
} | null;
|
|
3315
|
-
text: string | null;
|
|
3316
3315
|
url: string | null;
|
|
3316
|
+
text: string | null;
|
|
3317
3317
|
document: {
|
|
3318
3318
|
title: string | null;
|
|
3319
3319
|
url: string | null;
|
|
@@ -3364,8 +3364,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3364
3364
|
reposts: number | null;
|
|
3365
3365
|
totalReactions: number | null;
|
|
3366
3366
|
} | null;
|
|
3367
|
-
text: string | null;
|
|
3368
3367
|
url: string | null;
|
|
3368
|
+
text: string | null;
|
|
3369
3369
|
urn: string | null;
|
|
3370
3370
|
author: {
|
|
3371
3371
|
username: string | null;
|
|
@@ -3404,8 +3404,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3404
3404
|
reposts: number | null;
|
|
3405
3405
|
totalReactions: number | null;
|
|
3406
3406
|
} | null;
|
|
3407
|
-
text: string | null;
|
|
3408
3407
|
url: string | null;
|
|
3408
|
+
text: string | null;
|
|
3409
3409
|
document: {
|
|
3410
3410
|
title: string | null;
|
|
3411
3411
|
url: string | null;
|
|
@@ -3456,8 +3456,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3456
3456
|
reposts: number | null;
|
|
3457
3457
|
totalReactions: number | null;
|
|
3458
3458
|
} | null;
|
|
3459
|
-
text: string | null;
|
|
3460
3459
|
url: string | null;
|
|
3460
|
+
text: string | null;
|
|
3461
3461
|
urn: string | null;
|
|
3462
3462
|
author: {
|
|
3463
3463
|
username: string | null;
|
|
@@ -3509,8 +3509,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3509
3509
|
reposts: number | null;
|
|
3510
3510
|
totalReactions: number | null;
|
|
3511
3511
|
} | null;
|
|
3512
|
-
text: string | null;
|
|
3513
3512
|
url: string | null;
|
|
3513
|
+
text: string | null;
|
|
3514
3514
|
document: {
|
|
3515
3515
|
title: string | null;
|
|
3516
3516
|
url: string | null;
|
|
@@ -3561,8 +3561,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3561
3561
|
reposts: number | null;
|
|
3562
3562
|
totalReactions: number | null;
|
|
3563
3563
|
} | null;
|
|
3564
|
-
text: string | null;
|
|
3565
3564
|
url: string | null;
|
|
3565
|
+
text: string | null;
|
|
3566
3566
|
urn: string | null;
|
|
3567
3567
|
author: {
|
|
3568
3568
|
username: string | null;
|
|
@@ -3603,13 +3603,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3603
3603
|
city: string | null;
|
|
3604
3604
|
} | null;
|
|
3605
3605
|
headline: string | null;
|
|
3606
|
-
skills: {
|
|
3607
|
-
name: string | null;
|
|
3608
|
-
}[] | null;
|
|
3609
|
-
firstName: string | null;
|
|
3610
|
-
lastName: string | null;
|
|
3611
3606
|
publicIdentifier: string | null;
|
|
3612
3607
|
linkedinUrl: string | null;
|
|
3608
|
+
firstName: string | null;
|
|
3609
|
+
lastName: string | null;
|
|
3613
3610
|
about: string | null;
|
|
3614
3611
|
openToWork: boolean | null;
|
|
3615
3612
|
hiring: boolean | null;
|
|
@@ -3621,6 +3618,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3621
3618
|
currentPosition: {
|
|
3622
3619
|
companyName: string | null;
|
|
3623
3620
|
}[] | null;
|
|
3621
|
+
skills: {
|
|
3622
|
+
name: string | null;
|
|
3623
|
+
}[] | null;
|
|
3624
3624
|
experience: {
|
|
3625
3625
|
duration: string | null;
|
|
3626
3626
|
description: string | null;
|
|
@@ -3713,8 +3713,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3713
3713
|
reposts: number | null;
|
|
3714
3714
|
totalReactions: number | null;
|
|
3715
3715
|
} | null;
|
|
3716
|
-
text: string | null;
|
|
3717
3716
|
url: string | null;
|
|
3717
|
+
text: string | null;
|
|
3718
3718
|
document: {
|
|
3719
3719
|
title: string | null;
|
|
3720
3720
|
url: string | null;
|
|
@@ -3765,8 +3765,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3765
3765
|
reposts: number | null;
|
|
3766
3766
|
totalReactions: number | null;
|
|
3767
3767
|
} | null;
|
|
3768
|
-
text: string | null;
|
|
3769
3768
|
url: string | null;
|
|
3769
|
+
text: string | null;
|
|
3770
3770
|
urn: string | null;
|
|
3771
3771
|
author: {
|
|
3772
3772
|
username: string | null;
|
|
@@ -3807,13 +3807,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3807
3807
|
city: string | null;
|
|
3808
3808
|
} | null;
|
|
3809
3809
|
headline: string | null;
|
|
3810
|
-
skills: {
|
|
3811
|
-
name: string | null;
|
|
3812
|
-
}[] | null;
|
|
3813
|
-
firstName: string | null;
|
|
3814
|
-
lastName: string | null;
|
|
3815
3810
|
publicIdentifier: string | null;
|
|
3816
3811
|
linkedinUrl: string | null;
|
|
3812
|
+
firstName: string | null;
|
|
3813
|
+
lastName: string | null;
|
|
3817
3814
|
about: string | null;
|
|
3818
3815
|
openToWork: boolean | null;
|
|
3819
3816
|
hiring: boolean | null;
|
|
@@ -3825,6 +3822,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
3825
3822
|
currentPosition: {
|
|
3826
3823
|
companyName: string | null;
|
|
3827
3824
|
}[] | null;
|
|
3825
|
+
skills: {
|
|
3826
|
+
name: string | null;
|
|
3827
|
+
}[] | null;
|
|
3828
3828
|
experience: {
|
|
3829
3829
|
duration: string | null;
|
|
3830
3830
|
description: string | null;
|
|
@@ -113,8 +113,8 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
113
113
|
location: string | null;
|
|
114
114
|
headline: string | null;
|
|
115
115
|
seniorityLevel: string | null;
|
|
116
|
-
skills: string[] | null;
|
|
117
116
|
linkedinUrl: string | null;
|
|
117
|
+
skills: string[] | null;
|
|
118
118
|
education: {
|
|
119
119
|
fieldOfStudy: string | null;
|
|
120
120
|
instituteName: string | null;
|
|
@@ -165,8 +165,8 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
165
165
|
location: string | null;
|
|
166
166
|
headline: string | null;
|
|
167
167
|
seniorityLevel: string | null;
|
|
168
|
-
skills: string[] | null;
|
|
169
168
|
linkedinUrl: string | null;
|
|
169
|
+
skills: string[] | null;
|
|
170
170
|
education: {
|
|
171
171
|
fieldOfStudy: string | null;
|
|
172
172
|
instituteName: string | null;
|
|
@@ -432,8 +432,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
432
432
|
location: string | null;
|
|
433
433
|
headline: string | null;
|
|
434
434
|
seniorityLevel: string | null;
|
|
435
|
-
skills: string[] | null;
|
|
436
435
|
linkedinUrl: string | null;
|
|
436
|
+
skills: string[] | null;
|
|
437
437
|
education: {
|
|
438
438
|
fieldOfStudy: string | null;
|
|
439
439
|
instituteName: string | null;
|
|
@@ -484,8 +484,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
484
484
|
location: string | null;
|
|
485
485
|
headline: string | null;
|
|
486
486
|
seniorityLevel: string | null;
|
|
487
|
-
skills: string[] | null;
|
|
488
487
|
linkedinUrl: string | null;
|
|
488
|
+
skills: string[] | null;
|
|
489
489
|
education: {
|
|
490
490
|
fieldOfStudy: string | null;
|
|
491
491
|
instituteName: string | null;
|
|
@@ -544,8 +544,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
544
544
|
location: string | null;
|
|
545
545
|
headline: string | null;
|
|
546
546
|
seniorityLevel: string | null;
|
|
547
|
-
skills: string[] | null;
|
|
548
547
|
linkedinUrl: string | null;
|
|
548
|
+
skills: string[] | null;
|
|
549
549
|
education: {
|
|
550
550
|
fieldOfStudy: string | null;
|
|
551
551
|
instituteName: string | null;
|
|
@@ -602,8 +602,8 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
602
602
|
location: string | null;
|
|
603
603
|
headline: string | null;
|
|
604
604
|
seniorityLevel: string | null;
|
|
605
|
-
skills: string[] | null;
|
|
606
605
|
linkedinUrl: string | null;
|
|
606
|
+
skills: string[] | null;
|
|
607
607
|
education: {
|
|
608
608
|
fieldOfStudy: string | null;
|
|
609
609
|
instituteName: string | null;
|
|
@@ -901,8 +901,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
901
901
|
location: string | null;
|
|
902
902
|
headline: string | null;
|
|
903
903
|
seniorityLevel: string | null;
|
|
904
|
-
skills: string[] | null;
|
|
905
904
|
linkedinUrl: string | null;
|
|
905
|
+
skills: string[] | null;
|
|
906
906
|
education: {
|
|
907
907
|
fieldOfStudy: string | null;
|
|
908
908
|
instituteName: string | null;
|
|
@@ -953,8 +953,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
953
953
|
location: string | null;
|
|
954
954
|
headline: string | null;
|
|
955
955
|
seniorityLevel: string | null;
|
|
956
|
-
skills: string[] | null;
|
|
957
956
|
linkedinUrl: string | null;
|
|
957
|
+
skills: string[] | null;
|
|
958
958
|
education: {
|
|
959
959
|
fieldOfStudy: string | null;
|
|
960
960
|
instituteName: string | null;
|
|
@@ -1013,8 +1013,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1013
1013
|
location: string | null;
|
|
1014
1014
|
headline: string | null;
|
|
1015
1015
|
seniorityLevel: string | null;
|
|
1016
|
-
skills: string[] | null;
|
|
1017
1016
|
linkedinUrl: string | null;
|
|
1017
|
+
skills: string[] | null;
|
|
1018
1018
|
education: {
|
|
1019
1019
|
fieldOfStudy: string | null;
|
|
1020
1020
|
instituteName: string | null;
|
|
@@ -1071,8 +1071,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1071
1071
|
location: string | null;
|
|
1072
1072
|
headline: string | null;
|
|
1073
1073
|
seniorityLevel: string | null;
|
|
1074
|
-
skills: string[] | null;
|
|
1075
1074
|
linkedinUrl: string | null;
|
|
1075
|
+
skills: string[] | null;
|
|
1076
1076
|
education: {
|
|
1077
1077
|
fieldOfStudy: string | null;
|
|
1078
1078
|
instituteName: string | null;
|