@fiberai/sdk 0.0.13 → 0.0.15

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/index.js CHANGED
@@ -832,6 +832,7 @@ var client = createClient(createConfig({ baseUrl: "https://api.fiber.ai" }));
832
832
  var getOpenApi = (options) => (options?.client ?? client).get({ url: "/openapi.json", ...options });
833
833
  var healthCheck = (options) => (options?.client ?? client).get({ url: "/health", ...options });
834
834
  var getOrgCredits = (options) => (options.client ?? client).get({ url: "/v1/get-org-credits", ...options });
835
+ var getRateLimits = (options) => (options.client ?? client).get({ url: "/v1/rate-limits", ...options });
835
836
  var getAutoTopupSettings = (options) => (options.client ?? client).get({ url: "/v1/auto-topup/settings", ...options });
836
837
  var updateAutoTopupSettings = (options) => (options.client ?? client).post({
837
838
  url: "/v1/auto-topup/configure",
@@ -857,8 +858,24 @@ var pollExhaustiveContactEnrichmentResult = (options) => (options.client ?? clie
857
858
  ...options.headers
858
859
  }
859
860
  });
860
- var pollBatchContactEnrichment = (options) => (options.client ?? client).post({
861
- url: "/v1/contact-enrich/batch/poll",
861
+ var pollDepthChart = (options) => (options.client ?? client).post({
862
+ url: "/v1/depth-chart/poll",
863
+ ...options,
864
+ headers: {
865
+ "Content-Type": "application/json",
866
+ ...options.headers
867
+ }
868
+ });
869
+ var pollBatchContactDetails = (options) => (options.client ?? client).post({
870
+ url: "/v1/contact-details/batch/poll",
871
+ ...options,
872
+ headers: {
873
+ "Content-Type": "application/json",
874
+ ...options.headers
875
+ }
876
+ });
877
+ var pollBatchLiveEnrich = (options) => (options.client ?? client).post({
878
+ url: "/v1/linkedin-live-fetch/batch/poll",
862
879
  ...options,
863
880
  headers: {
864
881
  "Content-Type": "application/json",
@@ -897,8 +914,8 @@ var domainLookupPolling = (options) => (options.client ?? client).post({
897
914
  ...options.headers
898
915
  }
899
916
  });
900
- var githubLookupPolling = (options) => (options.client ?? client).post({
901
- url: "/v1/github-lookup/polling",
917
+ var githubLookupPoll = (options) => (options.client ?? client).post({
918
+ url: "/v1/github-lookup/poll",
902
919
  ...options,
903
920
  headers: {
904
921
  "Content-Type": "application/json",
@@ -1041,6 +1058,7 @@ var getTags = (options) => (options.client ?? client).get({ url: "/v1/enums/tags
1041
1058
  var getNaicsCodes = (options) => (options.client ?? client).get({ url: "/v1/enums/naics-codes", ...options });
1042
1059
  var getAccelerators = (options) => (options.client ?? client).get({ url: "/v1/enums/accelerators", ...options });
1043
1060
  var getSubdivisions = (options) => (options.client ?? client).get({ url: "/v1/enums/subdivisions", ...options });
1061
+ var getTechnologies = (options) => (options.client ?? client).get({ url: "/v1/enums/technologies", ...options });
1044
1062
  var createAudience = (options) => (options.client ?? client).post({
1045
1063
  url: "/v1/audiences/create",
1046
1064
  ...options,
@@ -1103,22 +1121,6 @@ var companyCount = (options) => (options.client ?? client).post({
1103
1121
  ...options.headers
1104
1122
  }
1105
1123
  });
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
1124
  var jobPostingSearch = (options) => (options.client ?? client).post({
1123
1125
  url: "/v1/job-search",
1124
1126
  ...options,
@@ -1151,8 +1153,8 @@ var peopleSearchCount = (options) => (options.client ?? client).post({
1151
1153
  ...options.headers
1152
1154
  }
1153
1155
  });
1154
- var syncCombinedSearch = (options) => (options.client ?? client).post({
1155
- url: "/v1/combined-search/sync",
1156
+ var paginatedCombinedSearch = (options) => (options.client ?? client).post({
1157
+ url: "/v1/combined-search/paginated",
1156
1158
  ...options,
1157
1159
  headers: {
1158
1160
  "Content-Type": "application/json",
@@ -1183,6 +1185,22 @@ var combinedSearchCount = (options) => (options.client ?? client).post({
1183
1185
  ...options.headers
1184
1186
  }
1185
1187
  });
1188
+ var stealthFoundersSearch = (options) => (options.client ?? client).post({
1189
+ url: "/v1/stealth-founders/search",
1190
+ ...options,
1191
+ headers: {
1192
+ "Content-Type": "application/json",
1193
+ ...options.headers
1194
+ }
1195
+ });
1196
+ var stealthFoundersCount = (options) => (options.client ?? client).post({
1197
+ url: "/v1/stealth-founders/count",
1198
+ ...options,
1199
+ headers: {
1200
+ "Content-Type": "application/json",
1201
+ ...options.headers
1202
+ }
1203
+ });
1186
1204
  var syncTurboContactEnrichment = (options) => (options.client ?? client).post({
1187
1205
  url: "/v1/contact-details/turbo/sync",
1188
1206
  ...options,
@@ -1199,6 +1217,14 @@ var syncQuickContactReveal = (options) => (options.client ?? client).post({
1199
1217
  ...options.headers
1200
1218
  }
1201
1219
  });
1220
+ var startDepthChart = (options) => (options.client ?? client).post({
1221
+ url: "/v1/depth-chart/start",
1222
+ ...options,
1223
+ headers: {
1224
+ "Content-Type": "application/json",
1225
+ ...options.headers
1226
+ }
1227
+ });
1202
1228
  var triggerExhaustiveContactEnrichment = (options) => (options.client ?? client).post({
1203
1229
  url: "/v1/contact-details/exhaustive/start",
1204
1230
  ...options,
@@ -1207,8 +1233,8 @@ var triggerExhaustiveContactEnrichment = (options) => (options.client ?? client)
1207
1233
  ...options.headers
1208
1234
  }
1209
1235
  });
1210
- var startBatchContactEnrichment = (options) => (options.client ?? client).post({
1211
- url: "/v1/contact-enrich/batch/start",
1236
+ var startBatchContactDetails = (options) => (options.client ?? client).post({
1237
+ url: "/v1/contact-details/batch/start",
1212
1238
  ...options,
1213
1239
  headers: {
1214
1240
  "Content-Type": "application/json",
@@ -1231,6 +1257,22 @@ var companyLiveEnrich = (options) => (options.client ?? client).post({
1231
1257
  ...options.headers
1232
1258
  }
1233
1259
  });
1260
+ var webpageScreenshot = (options) => (options.client ?? client).post({
1261
+ url: "/v1/live-fetch/webpage/screenshot",
1262
+ ...options,
1263
+ headers: {
1264
+ "Content-Type": "application/json",
1265
+ ...options.headers
1266
+ }
1267
+ });
1268
+ var startBatchLiveEnrich = (options) => (options.client ?? client).post({
1269
+ url: "/v1/linkedin-live-fetch/batch/start",
1270
+ ...options,
1271
+ headers: {
1272
+ "Content-Type": "application/json",
1273
+ ...options.headers
1274
+ }
1275
+ });
1234
1276
  var profilePostsLiveFetch = (options) => (options.client ?? client).post({
1235
1277
  url: "/v1/linkedin-live-fetch/profile-posts",
1236
1278
  ...options,
@@ -1311,6 +1353,14 @@ var reverseEmailLookup = (options) => (options.client ?? client).post({
1311
1353
  ...options.headers
1312
1354
  }
1313
1355
  });
1356
+ var twitterHandleToLinkedinUrl = (options) => (options.client ?? client).post({
1357
+ url: "/v1/twitter-handle-to-linkedin/single",
1358
+ ...options,
1359
+ headers: {
1360
+ "Content-Type": "application/json",
1361
+ ...options.headers
1362
+ }
1363
+ });
1314
1364
  var googleMapsSearch = (options) => (options.client ?? client).post({
1315
1365
  url: "/v1/google-maps-search/start",
1316
1366
  ...options,
@@ -1359,6 +1409,14 @@ var companyTypeahead = (options) => (options.client ?? client).post({
1359
1409
  ...options.headers
1360
1410
  }
1361
1411
  });
1412
+ var jobTitleRewrite = (options) => (options.client ?? client).post({
1413
+ url: "/v1/typeahead/job-title",
1414
+ ...options,
1415
+ headers: {
1416
+ "Content-Type": "application/json",
1417
+ ...options.headers
1418
+ }
1419
+ });
1362
1420
  var locationTypeahead = (options) => (options.client ?? client).post({
1363
1421
  url: "/v1/typeahead/location",
1364
1422
  ...options,
@@ -1407,280 +1465,384 @@ var textToCombinedSearchParam = (options) => (options.client ?? client).post({
1407
1465
  ...options.headers
1408
1466
  }
1409
1467
  });
1410
- var createSavedSearch = (options) => (options.client ?? client).post({
1411
- url: "/v1/saved-search/create",
1468
+ var startLocalBusinessSearch = (options) => (options.client ?? client).post({
1469
+ url: "/v1/local-business-search/start",
1412
1470
  ...options,
1413
1471
  headers: {
1414
1472
  "Content-Type": "application/json",
1415
1473
  ...options.headers
1416
1474
  }
1417
1475
  });
1418
- var getSavedSearch = (options) => (options.client ?? client).post({
1419
- url: "/v1/saved-search/get",
1476
+ var domainLookupTrigger = (options) => (options.client ?? client).post({
1477
+ url: "/v1/domain-lookup/trigger",
1420
1478
  ...options,
1421
1479
  headers: {
1422
1480
  "Content-Type": "application/json",
1423
1481
  ...options.headers
1424
1482
  }
1425
1483
  });
1426
- var getSavedSearchRun = (options) => (options.client ?? client).post({
1427
- url: "/v1/saved-search/run/get",
1484
+ var multiSourceSearch = (options) => (options.client ?? client).post({
1485
+ url: "/v1/multi-source/search",
1428
1486
  ...options,
1429
1487
  headers: {
1430
1488
  "Content-Type": "application/json",
1431
1489
  ...options.headers
1432
1490
  }
1433
1491
  });
1434
- var manuallySpawnSavedSearchRun = (options) => (options.client ?? client).post({
1435
- url: "/v1/saved-search/spawn",
1492
+ var buildAudience = (options) => (options.client ?? client).post({
1493
+ url: "/v1/audiences/{audienceId}/build",
1436
1494
  ...options,
1437
1495
  headers: {
1438
1496
  "Content-Type": "application/json",
1439
1497
  ...options.headers
1440
1498
  }
1441
1499
  });
1442
- var updateSavedSearch = (options) => (options.client ?? client).post({
1443
- url: "/v1/saved-search/update",
1500
+ var triggerEnrichment = (options) => (options.client ?? client).post({
1501
+ url: "/v1/audiences/{audienceId}/enrich",
1444
1502
  ...options,
1445
1503
  headers: {
1446
1504
  "Content-Type": "application/json",
1447
1505
  ...options.headers
1448
1506
  }
1449
1507
  });
1450
- var listSavedSearchRuns = (options) => (options.client ?? client).post({
1451
- url: "/v1/saved-search/run/list",
1508
+ var githubLookupTrigger = (options) => (options.client ?? client).post({
1509
+ url: "/v1/github-lookup/trigger",
1452
1510
  ...options,
1453
1511
  headers: {
1454
1512
  "Content-Type": "application/json",
1455
1513
  ...options.headers
1456
1514
  }
1457
1515
  });
1458
- var listSavedSearch = (options) => (options.client ?? client).post({
1459
- url: "/v1/saved-search/list",
1516
+ var githubToLinkedInTrigger = (options) => (options.client ?? client).post({
1517
+ url: "/v1/github-to-linkedin/trigger",
1460
1518
  ...options,
1461
1519
  headers: {
1462
1520
  "Content-Type": "application/json",
1463
1521
  ...options.headers
1464
1522
  }
1465
1523
  });
1466
- var getSavedSearchRunStatus = (options) => (options.client ?? client).post({
1467
- url: "/v1/saved-search/run/status",
1524
+ var githubToLinkedinSingle = (options) => (options.client ?? client).post({
1525
+ url: "/v1/github-to-linkedin/single",
1468
1526
  ...options,
1469
1527
  headers: {
1470
1528
  "Content-Type": "application/json",
1471
1529
  ...options.headers
1472
1530
  }
1473
1531
  });
1474
- var getCurrentProfilesInSavedSearch = (options) => (options.client ?? client).post({
1475
- url: "/v1/saved-search/current/profiles",
1532
+ var socialMediaLookupTrigger = (options) => (options.client ?? client).post({
1533
+ url: "/v1/social-media-lookup/trigger",
1476
1534
  ...options,
1477
1535
  headers: {
1478
1536
  "Content-Type": "application/json",
1479
1537
  ...options.headers
1480
1538
  }
1481
1539
  });
1482
- var getCurrentCompaniesInSavedSearch = (options) => (options.client ?? client).post({
1483
- url: "/v1/saved-search/current/companies",
1540
+ var youtubeTranscript = (options) => (options.client ?? client).post({
1541
+ url: "/v1/youtube/transcript",
1484
1542
  ...options,
1485
1543
  headers: {
1486
1544
  "Content-Type": "application/json",
1487
1545
  ...options.headers
1488
1546
  }
1489
1547
  });
1490
- var getSavedSearchRunProfiles = (options) => (options.client ?? client).post({
1491
- url: "/v1/saved-search/run/profiles",
1548
+ var youtubeVideoDetails = (options) => (options.client ?? client).post({
1549
+ url: "/v1/youtube/video-details",
1492
1550
  ...options,
1493
1551
  headers: {
1494
1552
  "Content-Type": "application/json",
1495
1553
  ...options.headers
1496
1554
  }
1497
1555
  });
1498
- var getSavedSearchRunCompanies = (options) => (options.client ?? client).post({
1499
- url: "/v1/saved-search/run/companies",
1556
+ var youtubeVideoComments = (options) => (options.client ?? client).post({
1557
+ url: "/v1/youtube/video-comments",
1500
1558
  ...options,
1501
1559
  headers: {
1502
1560
  "Content-Type": "application/json",
1503
1561
  ...options.headers
1504
1562
  }
1505
1563
  });
1506
- var getLatestSavedSearchRun = (options) => (options.client ?? client).post({
1507
- url: "/v1/saved-search/run/get-latest",
1564
+ var youtubeSearch = (options) => (options.client ?? client).post({
1565
+ url: "/v1/youtube/search",
1508
1566
  ...options,
1509
1567
  headers: {
1510
1568
  "Content-Type": "application/json",
1511
1569
  ...options.headers
1512
1570
  }
1513
1571
  });
1514
- var startLocalBusinessSearch = (options) => (options.client ?? client).post({
1515
- url: "/v1/local-business-search/start",
1572
+ var youtubeChannel = (options) => (options.client ?? client).post({
1573
+ url: "/v1/youtube/channel",
1516
1574
  ...options,
1517
1575
  headers: {
1518
1576
  "Content-Type": "application/json",
1519
1577
  ...options.headers
1520
1578
  }
1521
1579
  });
1522
- var domainLookupTrigger = (options) => (options.client ?? client).post({
1523
- url: "/v1/domain-lookup/trigger",
1580
+ var fetchRealEstateListings = (options) => (options.client ?? client).post({
1581
+ url: "/v1/real-estate/listings",
1524
1582
  ...options,
1525
1583
  headers: {
1526
1584
  "Content-Type": "application/json",
1527
1585
  ...options.headers
1528
1586
  }
1529
1587
  });
1530
- var multiSourceSearch = (options) => (options.client ?? client).post({
1531
- url: "/v1/multi-source/search",
1588
+ var getScoutingReport = (options) => (options.client ?? client).post({
1589
+ url: "/v1/scouting-report",
1532
1590
  ...options,
1533
1591
  headers: {
1534
1592
  "Content-Type": "application/json",
1535
1593
  ...options.headers
1536
1594
  }
1537
1595
  });
1538
- var buildAudience = (options) => (options.client ?? client).post({
1539
- url: "/v1/audiences/{audienceId}/build",
1596
+ var createJobChangeList = (options) => (options.client ?? client).post({
1597
+ url: "/v1/job-changes/create-list",
1540
1598
  ...options,
1541
1599
  headers: {
1542
1600
  "Content-Type": "application/json",
1543
1601
  ...options.headers
1544
1602
  }
1545
1603
  });
1546
- var triggerEnrichment = (options) => (options.client ?? client).post({
1547
- url: "/v1/audiences/{audienceId}/enrich",
1604
+ var getJourneymanList = (options) => (options.client ?? client).post({
1605
+ url: "/v1/job-changes/get-list",
1548
1606
  ...options,
1549
1607
  headers: {
1550
1608
  "Content-Type": "application/json",
1551
1609
  ...options.headers
1552
1610
  }
1553
1611
  });
1554
- var githubLookupTrigger = (options) => (options.client ?? client).post({
1555
- url: "/v1/github-lookup/trigger",
1612
+ var updateJobChangeList = (options) => (options.client ?? client).post({
1613
+ url: "/v1/job-changes/update-list",
1556
1614
  ...options,
1557
1615
  headers: {
1558
1616
  "Content-Type": "application/json",
1559
1617
  ...options.headers
1560
1618
  }
1561
1619
  });
1562
- var githubToLinkedInTrigger = (options) => (options.client ?? client).post({
1563
- url: "/v1/github-to-linkedin/trigger",
1620
+ var deleteJobChangeList = (options) => (options.client ?? client).post({
1621
+ url: "/v1/job-changes/delete-list",
1564
1622
  ...options,
1565
1623
  headers: {
1566
1624
  "Content-Type": "application/json",
1567
1625
  ...options.headers
1568
1626
  }
1569
1627
  });
1570
- var socialMediaLookupTrigger = (options) => (options.client ?? client).post({
1571
- url: "/v1/social-media-lookup/trigger",
1628
+ var addProfilesToList = (options) => (options.client ?? client).post({
1629
+ url: "/v1/job-changes/add-profiles",
1572
1630
  ...options,
1573
1631
  headers: {
1574
1632
  "Content-Type": "application/json",
1575
1633
  ...options.headers
1576
1634
  }
1577
1635
  });
1578
- var youtubeTranscript = (options) => (options.client ?? client).post({
1579
- url: "/v1/youtube/transcript",
1636
+ var deleteProfilesFromJobChangeList = (options) => (options.client ?? client).post({
1637
+ url: "/v1/job-changes/delete-profiles",
1580
1638
  ...options,
1581
1639
  headers: {
1582
1640
  "Content-Type": "application/json",
1583
1641
  ...options.headers
1584
1642
  }
1585
1643
  });
1586
- var youtubeVideoDetails = (options) => (options.client ?? client).post({
1587
- url: "/v1/youtube/video-details",
1644
+ var listAllJourneymanLists = (options) => (options.client ?? client).post({
1645
+ url: "/v1/job-changes/list-all",
1588
1646
  ...options,
1589
1647
  headers: {
1590
1648
  "Content-Type": "application/json",
1591
1649
  ...options.headers
1592
1650
  }
1593
1651
  });
1594
- var youtubeVideoComments = (options) => (options.client ?? client).post({
1595
- url: "/v1/youtube/video-comments",
1652
+ var listAllProfilesFromJourneymanList = (options) => (options.client ?? client).post({
1653
+ url: "/v1/job-changes/list-all-profiles",
1596
1654
  ...options,
1597
1655
  headers: {
1598
1656
  "Content-Type": "application/json",
1599
1657
  ...options.headers
1600
1658
  }
1601
1659
  });
1602
- var youtubeSearch = (options) => (options.client ?? client).post({
1603
- url: "/v1/youtube/search",
1660
+ var tiktokProfile = (options) => (options.client ?? client).post({
1661
+ url: "/v1/tiktok/profile",
1604
1662
  ...options,
1605
1663
  headers: {
1606
1664
  "Content-Type": "application/json",
1607
1665
  ...options.headers
1608
1666
  }
1609
1667
  });
1610
- var youtubeChannel = (options) => (options.client ?? client).post({
1611
- url: "/v1/youtube/channel",
1668
+ var tiktokUserVideos = (options) => (options.client ?? client).post({
1669
+ url: "/v1/tiktok/user-videos",
1612
1670
  ...options,
1613
1671
  headers: {
1614
1672
  "Content-Type": "application/json",
1615
1673
  ...options.headers
1616
1674
  }
1617
1675
  });
1618
- var getScoutingReport = (options) => (options.client ?? client).post({
1619
- url: "/v1/scouting-report",
1676
+ var tiktokUserFollowers = (options) => (options.client ?? client).post({
1677
+ url: "/v1/tiktok/user-followers",
1620
1678
  ...options,
1621
1679
  headers: {
1622
1680
  "Content-Type": "application/json",
1623
1681
  ...options.headers
1624
1682
  }
1625
1683
  });
1626
- var createJobChangeList = (options) => (options.client ?? client).post({
1627
- url: "/v1/job-changes/create-list",
1684
+ var tiktokUserFollowing = (options) => (options.client ?? client).post({
1685
+ url: "/v1/tiktok/user-following",
1628
1686
  ...options,
1629
1687
  headers: {
1630
1688
  "Content-Type": "application/json",
1631
1689
  ...options.headers
1632
1690
  }
1633
1691
  });
1634
- var getJourneymanList = (options) => (options.client ?? client).post({
1635
- url: "/v1/job-changes/get-list",
1692
+ var tiktokVideoDetails = (options) => (options.client ?? client).post({
1693
+ url: "/v1/tiktok/video-details",
1636
1694
  ...options,
1637
1695
  headers: {
1638
1696
  "Content-Type": "application/json",
1639
1697
  ...options.headers
1640
1698
  }
1641
1699
  });
1642
- var updateJobChangeList = (options) => (options.client ?? client).post({
1643
- url: "/v1/job-changes/update-list",
1700
+ var tiktokVideoComments = (options) => (options.client ?? client).post({
1701
+ url: "/v1/tiktok/video-comments",
1644
1702
  ...options,
1645
1703
  headers: {
1646
1704
  "Content-Type": "application/json",
1647
1705
  ...options.headers
1648
1706
  }
1649
1707
  });
1650
- var deleteJobChangeList = (options) => (options.client ?? client).post({
1651
- url: "/v1/job-changes/delete-list",
1708
+ var tiktokCommentReplies = (options) => (options.client ?? client).post({
1709
+ url: "/v1/tiktok/comment-replies",
1652
1710
  ...options,
1653
1711
  headers: {
1654
1712
  "Content-Type": "application/json",
1655
1713
  ...options.headers
1656
1714
  }
1657
1715
  });
1658
- var addProfilesToList = (options) => (options.client ?? client).post({
1659
- url: "/v1/job-changes/add-profiles",
1716
+ var tiktokVideoTranscript = (options) => (options.client ?? client).post({
1717
+ url: "/v1/tiktok/video-transcript",
1660
1718
  ...options,
1661
1719
  headers: {
1662
1720
  "Content-Type": "application/json",
1663
1721
  ...options.headers
1664
1722
  }
1665
1723
  });
1666
- var deleteProfilesFromJobChangeList = (options) => (options.client ?? client).post({
1667
- url: "/v1/job-changes/delete-profiles",
1724
+ var tiktokSearchUsers = (options) => (options.client ?? client).post({
1725
+ url: "/v1/tiktok/search-users",
1668
1726
  ...options,
1669
1727
  headers: {
1670
1728
  "Content-Type": "application/json",
1671
1729
  ...options.headers
1672
1730
  }
1673
1731
  });
1674
- var listAllJourneymanLists = (options) => (options.client ?? client).post({
1675
- url: "/v1/job-changes/list-all",
1732
+ var tiktokSearchKeyword = (options) => (options.client ?? client).post({
1733
+ url: "/v1/tiktok/search-keyword",
1676
1734
  ...options,
1677
1735
  headers: {
1678
1736
  "Content-Type": "application/json",
1679
1737
  ...options.headers
1680
1738
  }
1681
1739
  });
1682
- var listAllProfilesFromJourneymanList = (options) => (options.client ?? client).post({
1683
- url: "/v1/job-changes/list-all-profiles",
1740
+ var tiktokSearchHashtag = (options) => (options.client ?? client).post({
1741
+ url: "/v1/tiktok/search-hashtag",
1742
+ ...options,
1743
+ headers: {
1744
+ "Content-Type": "application/json",
1745
+ ...options.headers
1746
+ }
1747
+ });
1748
+ var tiktokUnifiedSearch = (options) => (options.client ?? client).post({
1749
+ url: "/v1/tiktok/unified-search",
1750
+ ...options,
1751
+ headers: {
1752
+ "Content-Type": "application/json",
1753
+ ...options.headers
1754
+ }
1755
+ });
1756
+ var tiktokPopularCreators = (options) => (options.client ?? client).post({
1757
+ url: "/v1/tiktok/popular-creators",
1758
+ ...options,
1759
+ headers: {
1760
+ "Content-Type": "application/json",
1761
+ ...options.headers
1762
+ }
1763
+ });
1764
+ var tiktokPopularVideos = (options) => (options.client ?? client).post({
1765
+ url: "/v1/tiktok/popular-videos",
1766
+ ...options,
1767
+ headers: {
1768
+ "Content-Type": "application/json",
1769
+ ...options.headers
1770
+ }
1771
+ });
1772
+ var tiktokPopularHashtags = (options) => (options.client ?? client).post({
1773
+ url: "/v1/tiktok/popular-hashtags",
1774
+ ...options,
1775
+ headers: {
1776
+ "Content-Type": "application/json",
1777
+ ...options.headers
1778
+ }
1779
+ });
1780
+ var tiktokPopularSongs = (options) => (options.client ?? client).post({
1781
+ url: "/v1/tiktok/popular-songs",
1782
+ ...options,
1783
+ headers: {
1784
+ "Content-Type": "application/json",
1785
+ ...options.headers
1786
+ }
1787
+ });
1788
+ var tiktokTrendingFeed = (options) => (options.client ?? client).post({
1789
+ url: "/v1/tiktok/trending-feed",
1790
+ ...options,
1791
+ headers: {
1792
+ "Content-Type": "application/json",
1793
+ ...options.headers
1794
+ }
1795
+ });
1796
+ var tiktokSongDetails = (options) => (options.client ?? client).post({
1797
+ url: "/v1/tiktok/song-details",
1798
+ ...options,
1799
+ headers: {
1800
+ "Content-Type": "application/json",
1801
+ ...options.headers
1802
+ }
1803
+ });
1804
+ var tiktokSongVideos = (options) => (options.client ?? client).post({
1805
+ url: "/v1/tiktok/song-videos",
1806
+ ...options,
1807
+ headers: {
1808
+ "Content-Type": "application/json",
1809
+ ...options.headers
1810
+ }
1811
+ });
1812
+ var instagramProfile = (options) => (options.client ?? client).post({
1813
+ url: "/v1/instagram/profile",
1814
+ ...options,
1815
+ headers: {
1816
+ "Content-Type": "application/json",
1817
+ ...options.headers
1818
+ }
1819
+ });
1820
+ var instagramUserPosts = (options) => (options.client ?? client).post({
1821
+ url: "/v1/instagram/user-posts",
1822
+ ...options,
1823
+ headers: {
1824
+ "Content-Type": "application/json",
1825
+ ...options.headers
1826
+ }
1827
+ });
1828
+ var instagramUserReels = (options) => (options.client ?? client).post({
1829
+ url: "/v1/instagram/user-reels",
1830
+ ...options,
1831
+ headers: {
1832
+ "Content-Type": "application/json",
1833
+ ...options.headers
1834
+ }
1835
+ });
1836
+ var instagramPostDetails = (options) => (options.client ?? client).post({
1837
+ url: "/v1/instagram/post-details",
1838
+ ...options,
1839
+ headers: {
1840
+ "Content-Type": "application/json",
1841
+ ...options.headers
1842
+ }
1843
+ });
1844
+ var instagramPostComments = (options) => (options.client ?? client).post({
1845
+ url: "/v1/instagram/post-comments",
1684
1846
  ...options,
1685
1847
  headers: {
1686
1848
  "Content-Type": "application/json",
@@ -1799,7 +1961,6 @@ export {
1799
1961
  createJobChangeList,
1800
1962
  createProspectExclusionList,
1801
1963
  createProspectExclusionListFromAudience,
1802
- createSavedSearch,
1803
1964
  deleteAudience,
1804
1965
  deleteCompanyExclusionList,
1805
1966
  deleteJobChangeList,
@@ -1811,6 +1972,7 @@ export {
1811
1972
  estimateEnrichmentCost,
1812
1973
  exportCompanies,
1813
1974
  exportProspects,
1975
+ fetchRealEstateListings,
1814
1976
  getAccelerators,
1815
1977
  getAudienceCompanies,
1816
1978
  getAudienceProspects,
@@ -1818,40 +1980,39 @@ export {
1818
1980
  getAutoTopupSettings,
1819
1981
  getCompanyExclusionLists,
1820
1982
  getCompanyRevenue,
1821
- getCurrentCompaniesInSavedSearch,
1822
- getCurrentProfilesInSavedSearch,
1823
1983
  getEnrichmentStatus,
1824
1984
  getExcludedCompaniesForExclusionList,
1825
1985
  getExcludedProspectsForExclusionList,
1826
1986
  getIndustries,
1827
1987
  getJourneymanList,
1828
1988
  getLanguages,
1829
- getLatestSavedSearchRun,
1830
1989
  getNaicsCodes,
1831
1990
  getOpenApi,
1832
1991
  getOrgCredits,
1833
1992
  getProspectExclusionLists,
1993
+ getRateLimits,
1834
1994
  getRegions,
1835
- getSavedSearch,
1836
- getSavedSearchRun,
1837
- getSavedSearchRunCompanies,
1838
- getSavedSearchRunProfiles,
1839
- getSavedSearchRunStatus,
1840
1995
  getScoutingReport,
1841
1996
  getSubdivisions,
1842
1997
  getTags,
1998
+ getTechnologies,
1843
1999
  getTimeZones,
1844
- githubLookupPolling,
2000
+ githubLookupPoll,
1845
2001
  githubLookupTrigger,
1846
2002
  githubToLinkedInPolling,
1847
2003
  githubToLinkedInTrigger,
2004
+ githubToLinkedinSingle,
1848
2005
  googleMapsSearch,
1849
2006
  healthCheck,
1850
- investmentSearch,
1851
- investorSearch,
2007
+ instagramPostComments,
2008
+ instagramPostDetails,
2009
+ instagramProfile,
2010
+ instagramUserPosts,
2011
+ instagramUserReels,
1852
2012
  jdToProfileSearch,
1853
2013
  jobPostingSearch,
1854
2014
  jobPostingSearchCount,
2015
+ jobTitleRewrite,
1855
2016
  kitchenSinkBulkCompany,
1856
2017
  kitchenSinkBulkProfile,
1857
2018
  kitchenSinkCompany,
@@ -1859,14 +2020,14 @@ export {
1859
2020
  listAllJourneymanLists,
1860
2021
  listAllProfilesFromJourneymanList,
1861
2022
  listAudiences,
1862
- listSavedSearch,
1863
- listSavedSearchRuns,
1864
2023
  locationTypeahead,
1865
- manuallySpawnSavedSearchRun,
1866
2024
  multiSourceSearch,
2025
+ paginatedCombinedSearch,
1867
2026
  peopleSearch,
1868
2027
  peopleSearchCount,
1869
- pollBatchContactEnrichment,
2028
+ pollBatchContactDetails,
2029
+ pollBatchLiveEnrich,
2030
+ pollDepthChart,
1870
2031
  pollExhaustiveContactEnrichmentResult,
1871
2032
  pollGoogleMapsResults,
1872
2033
  pollLocalBusinessSearch,
@@ -1884,15 +2045,38 @@ export {
1884
2045
  socialMediaLookupTrigger,
1885
2046
  standardizeCompany,
1886
2047
  standardizeProfile,
1887
- startBatchContactEnrichment,
2048
+ startBatchContactDetails,
2049
+ startBatchLiveEnrich,
2050
+ startDepthChart,
1888
2051
  startLocalBusinessSearch,
1889
- syncCombinedSearch,
2052
+ stealthFoundersCount,
2053
+ stealthFoundersSearch,
1890
2054
  syncQuickContactReveal,
1891
2055
  syncTurboContactEnrichment,
1892
2056
  textToCombinedSearch,
1893
2057
  textToCombinedSearchParam,
2058
+ tiktokCommentReplies,
2059
+ tiktokPopularCreators,
2060
+ tiktokPopularHashtags,
2061
+ tiktokPopularSongs,
2062
+ tiktokPopularVideos,
2063
+ tiktokProfile,
2064
+ tiktokSearchHashtag,
2065
+ tiktokSearchKeyword,
2066
+ tiktokSearchUsers,
2067
+ tiktokSongDetails,
2068
+ tiktokSongVideos,
2069
+ tiktokTrendingFeed,
2070
+ tiktokUnifiedSearch,
2071
+ tiktokUserFollowers,
2072
+ tiktokUserFollowing,
2073
+ tiktokUserVideos,
2074
+ tiktokVideoComments,
2075
+ tiktokVideoDetails,
2076
+ tiktokVideoTranscript,
1894
2077
  triggerEnrichment,
1895
2078
  triggerExhaustiveContactEnrichment,
2079
+ twitterHandleToLinkedinUrl,
1896
2080
  twitterProfile,
1897
2081
  twitterSearch,
1898
2082
  twitterTweetDetails,
@@ -1906,8 +2090,8 @@ export {
1906
2090
  updateAudienceSearchParams,
1907
2091
  updateAutoTopupSettings,
1908
2092
  updateJobChangeList,
1909
- updateSavedSearch,
1910
2093
  validatePhoneNumber,
2094
+ webpageScreenshot,
1911
2095
  youtubeChannel,
1912
2096
  youtubeSearch,
1913
2097
  youtubeTranscript,