@fiberai/sdk 0.0.13 → 0.0.14
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/README.md +575 -495
- package/dist/index.cjs +3 -153
- package/dist/index.d.cts +2460 -23037
- package/dist/index.d.ts +2460 -23037
- package/dist/index.js +0 -135
- package/dist/zod.cjs +114974 -0
- package/dist/zod.d.cts +90814 -0
- package/dist/zod.d.ts +90814 -0
- package/dist/zod.js +114711 -0
- package/package.json +16 -2
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1103,22 +1103,6 @@ var companyCount = (options) => (options.client ?? client).post({
|
|
|
1103
1103
|
...options.headers
|
|
1104
1104
|
}
|
|
1105
1105
|
});
|
|
1106
|
-
var investorSearch = (options) => (options.client ?? client).post({
|
|
1107
|
-
url: "/v1/investor-search",
|
|
1108
|
-
...options,
|
|
1109
|
-
headers: {
|
|
1110
|
-
"Content-Type": "application/json",
|
|
1111
|
-
...options.headers
|
|
1112
|
-
}
|
|
1113
|
-
});
|
|
1114
|
-
var investmentSearch = (options) => (options.client ?? client).post({
|
|
1115
|
-
url: "/v1/investment-search",
|
|
1116
|
-
...options,
|
|
1117
|
-
headers: {
|
|
1118
|
-
"Content-Type": "application/json",
|
|
1119
|
-
...options.headers
|
|
1120
|
-
}
|
|
1121
|
-
});
|
|
1122
1106
|
var jobPostingSearch = (options) => (options.client ?? client).post({
|
|
1123
1107
|
url: "/v1/job-search",
|
|
1124
1108
|
...options,
|
|
@@ -1407,110 +1391,6 @@ var textToCombinedSearchParam = (options) => (options.client ?? client).post({
|
|
|
1407
1391
|
...options.headers
|
|
1408
1392
|
}
|
|
1409
1393
|
});
|
|
1410
|
-
var createSavedSearch = (options) => (options.client ?? client).post({
|
|
1411
|
-
url: "/v1/saved-search/create",
|
|
1412
|
-
...options,
|
|
1413
|
-
headers: {
|
|
1414
|
-
"Content-Type": "application/json",
|
|
1415
|
-
...options.headers
|
|
1416
|
-
}
|
|
1417
|
-
});
|
|
1418
|
-
var getSavedSearch = (options) => (options.client ?? client).post({
|
|
1419
|
-
url: "/v1/saved-search/get",
|
|
1420
|
-
...options,
|
|
1421
|
-
headers: {
|
|
1422
|
-
"Content-Type": "application/json",
|
|
1423
|
-
...options.headers
|
|
1424
|
-
}
|
|
1425
|
-
});
|
|
1426
|
-
var getSavedSearchRun = (options) => (options.client ?? client).post({
|
|
1427
|
-
url: "/v1/saved-search/run/get",
|
|
1428
|
-
...options,
|
|
1429
|
-
headers: {
|
|
1430
|
-
"Content-Type": "application/json",
|
|
1431
|
-
...options.headers
|
|
1432
|
-
}
|
|
1433
|
-
});
|
|
1434
|
-
var manuallySpawnSavedSearchRun = (options) => (options.client ?? client).post({
|
|
1435
|
-
url: "/v1/saved-search/spawn",
|
|
1436
|
-
...options,
|
|
1437
|
-
headers: {
|
|
1438
|
-
"Content-Type": "application/json",
|
|
1439
|
-
...options.headers
|
|
1440
|
-
}
|
|
1441
|
-
});
|
|
1442
|
-
var updateSavedSearch = (options) => (options.client ?? client).post({
|
|
1443
|
-
url: "/v1/saved-search/update",
|
|
1444
|
-
...options,
|
|
1445
|
-
headers: {
|
|
1446
|
-
"Content-Type": "application/json",
|
|
1447
|
-
...options.headers
|
|
1448
|
-
}
|
|
1449
|
-
});
|
|
1450
|
-
var listSavedSearchRuns = (options) => (options.client ?? client).post({
|
|
1451
|
-
url: "/v1/saved-search/run/list",
|
|
1452
|
-
...options,
|
|
1453
|
-
headers: {
|
|
1454
|
-
"Content-Type": "application/json",
|
|
1455
|
-
...options.headers
|
|
1456
|
-
}
|
|
1457
|
-
});
|
|
1458
|
-
var listSavedSearch = (options) => (options.client ?? client).post({
|
|
1459
|
-
url: "/v1/saved-search/list",
|
|
1460
|
-
...options,
|
|
1461
|
-
headers: {
|
|
1462
|
-
"Content-Type": "application/json",
|
|
1463
|
-
...options.headers
|
|
1464
|
-
}
|
|
1465
|
-
});
|
|
1466
|
-
var getSavedSearchRunStatus = (options) => (options.client ?? client).post({
|
|
1467
|
-
url: "/v1/saved-search/run/status",
|
|
1468
|
-
...options,
|
|
1469
|
-
headers: {
|
|
1470
|
-
"Content-Type": "application/json",
|
|
1471
|
-
...options.headers
|
|
1472
|
-
}
|
|
1473
|
-
});
|
|
1474
|
-
var getCurrentProfilesInSavedSearch = (options) => (options.client ?? client).post({
|
|
1475
|
-
url: "/v1/saved-search/current/profiles",
|
|
1476
|
-
...options,
|
|
1477
|
-
headers: {
|
|
1478
|
-
"Content-Type": "application/json",
|
|
1479
|
-
...options.headers
|
|
1480
|
-
}
|
|
1481
|
-
});
|
|
1482
|
-
var getCurrentCompaniesInSavedSearch = (options) => (options.client ?? client).post({
|
|
1483
|
-
url: "/v1/saved-search/current/companies",
|
|
1484
|
-
...options,
|
|
1485
|
-
headers: {
|
|
1486
|
-
"Content-Type": "application/json",
|
|
1487
|
-
...options.headers
|
|
1488
|
-
}
|
|
1489
|
-
});
|
|
1490
|
-
var getSavedSearchRunProfiles = (options) => (options.client ?? client).post({
|
|
1491
|
-
url: "/v1/saved-search/run/profiles",
|
|
1492
|
-
...options,
|
|
1493
|
-
headers: {
|
|
1494
|
-
"Content-Type": "application/json",
|
|
1495
|
-
...options.headers
|
|
1496
|
-
}
|
|
1497
|
-
});
|
|
1498
|
-
var getSavedSearchRunCompanies = (options) => (options.client ?? client).post({
|
|
1499
|
-
url: "/v1/saved-search/run/companies",
|
|
1500
|
-
...options,
|
|
1501
|
-
headers: {
|
|
1502
|
-
"Content-Type": "application/json",
|
|
1503
|
-
...options.headers
|
|
1504
|
-
}
|
|
1505
|
-
});
|
|
1506
|
-
var getLatestSavedSearchRun = (options) => (options.client ?? client).post({
|
|
1507
|
-
url: "/v1/saved-search/run/get-latest",
|
|
1508
|
-
...options,
|
|
1509
|
-
headers: {
|
|
1510
|
-
"Content-Type": "application/json",
|
|
1511
|
-
...options.headers
|
|
1512
|
-
}
|
|
1513
|
-
});
|
|
1514
1394
|
var startLocalBusinessSearch = (options) => (options.client ?? client).post({
|
|
1515
1395
|
url: "/v1/local-business-search/start",
|
|
1516
1396
|
...options,
|
|
@@ -1799,7 +1679,6 @@ export {
|
|
|
1799
1679
|
createJobChangeList,
|
|
1800
1680
|
createProspectExclusionList,
|
|
1801
1681
|
createProspectExclusionListFromAudience,
|
|
1802
|
-
createSavedSearch,
|
|
1803
1682
|
deleteAudience,
|
|
1804
1683
|
deleteCompanyExclusionList,
|
|
1805
1684
|
deleteJobChangeList,
|
|
@@ -1818,25 +1697,17 @@ export {
|
|
|
1818
1697
|
getAutoTopupSettings,
|
|
1819
1698
|
getCompanyExclusionLists,
|
|
1820
1699
|
getCompanyRevenue,
|
|
1821
|
-
getCurrentCompaniesInSavedSearch,
|
|
1822
|
-
getCurrentProfilesInSavedSearch,
|
|
1823
1700
|
getEnrichmentStatus,
|
|
1824
1701
|
getExcludedCompaniesForExclusionList,
|
|
1825
1702
|
getExcludedProspectsForExclusionList,
|
|
1826
1703
|
getIndustries,
|
|
1827
1704
|
getJourneymanList,
|
|
1828
1705
|
getLanguages,
|
|
1829
|
-
getLatestSavedSearchRun,
|
|
1830
1706
|
getNaicsCodes,
|
|
1831
1707
|
getOpenApi,
|
|
1832
1708
|
getOrgCredits,
|
|
1833
1709
|
getProspectExclusionLists,
|
|
1834
1710
|
getRegions,
|
|
1835
|
-
getSavedSearch,
|
|
1836
|
-
getSavedSearchRun,
|
|
1837
|
-
getSavedSearchRunCompanies,
|
|
1838
|
-
getSavedSearchRunProfiles,
|
|
1839
|
-
getSavedSearchRunStatus,
|
|
1840
1711
|
getScoutingReport,
|
|
1841
1712
|
getSubdivisions,
|
|
1842
1713
|
getTags,
|
|
@@ -1847,8 +1718,6 @@ export {
|
|
|
1847
1718
|
githubToLinkedInTrigger,
|
|
1848
1719
|
googleMapsSearch,
|
|
1849
1720
|
healthCheck,
|
|
1850
|
-
investmentSearch,
|
|
1851
|
-
investorSearch,
|
|
1852
1721
|
jdToProfileSearch,
|
|
1853
1722
|
jobPostingSearch,
|
|
1854
1723
|
jobPostingSearchCount,
|
|
@@ -1859,10 +1728,7 @@ export {
|
|
|
1859
1728
|
listAllJourneymanLists,
|
|
1860
1729
|
listAllProfilesFromJourneymanList,
|
|
1861
1730
|
listAudiences,
|
|
1862
|
-
listSavedSearch,
|
|
1863
|
-
listSavedSearchRuns,
|
|
1864
1731
|
locationTypeahead,
|
|
1865
|
-
manuallySpawnSavedSearchRun,
|
|
1866
1732
|
multiSourceSearch,
|
|
1867
1733
|
peopleSearch,
|
|
1868
1734
|
peopleSearchCount,
|
|
@@ -1906,7 +1772,6 @@ export {
|
|
|
1906
1772
|
updateAudienceSearchParams,
|
|
1907
1773
|
updateAutoTopupSettings,
|
|
1908
1774
|
updateJobChangeList,
|
|
1909
|
-
updateSavedSearch,
|
|
1910
1775
|
validatePhoneNumber,
|
|
1911
1776
|
youtubeChannel,
|
|
1912
1777
|
youtubeSearch,
|