@fiberai/sdk 0.0.8 → 0.0.10
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.cjs.map +1 -1
- package/dist/index.d.cts +11 -5
- package/dist/index.d.ts +11 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -8835,6 +8835,12 @@ type GetIndustriesResponses = {
|
|
|
8835
8835
|
* Crunchbase's list of industries
|
|
8836
8836
|
*/
|
|
8837
8837
|
crunchbaseIndustries: Array<string>;
|
|
8838
|
+
/**
|
|
8839
|
+
* Crunchbase's industry groups mapped to their constituent industries. Keys are industry group names, values are arrays of industry names belonging to that group.
|
|
8840
|
+
*/
|
|
8841
|
+
crunchbaseIndustryGroups: {
|
|
8842
|
+
[key: string]: Array<string>;
|
|
8843
|
+
};
|
|
8838
8844
|
/**
|
|
8839
8845
|
* LinkedIn's list of industries
|
|
8840
8846
|
*/
|
|
@@ -80169,7 +80175,7 @@ declare const getSubdivisions: <ThrowOnError extends boolean = false>(options: O
|
|
|
80169
80175
|
/**
|
|
80170
80176
|
* Create a new audience
|
|
80171
80177
|
*
|
|
80172
|
-
* Creates a new audience in DRAFT status. After creation, use the update-search-params endpoint to set filters, then use the build endpoint to populate the audience with companies and prospects
|
|
80178
|
+
* Creates a new audience in DRAFT status. After creation, use the update-search-params endpoint to set filters, then use the build endpoint to populate the audience with companies and prospects.
|
|
80173
80179
|
*
|
|
80174
80180
|
* <span>⚡ <strong>Rate limit:</strong> 50 requests per 1 minute</span>
|
|
80175
80181
|
*
|
|
@@ -80401,7 +80407,7 @@ declare const combinedSearchCount: <ThrowOnError extends boolean = false>(option
|
|
|
80401
80407
|
/**
|
|
80402
80408
|
* Reveal contact details (turbo)
|
|
80403
80409
|
*
|
|
80404
|
-
* Fastest synchronous contact reveal — optimized for speed at a higher credit cost. Uses a premium enrichment stack for the lowest possible latency. For a cheaper option with slightly longer response times, use the standard /contact-details/single endpoint. For maximum coverage
|
|
80410
|
+
* Fastest synchronous contact reveal — optimized for speed at a higher credit cost. Uses a premium enrichment stack for the lowest possible latency. For a cheaper option with slightly longer response times, use the standard /contact-details/single endpoint. For maximum coverage (async, slower), use the /contact-details/exhaustive/start endpoint.
|
|
80405
80411
|
*
|
|
80406
80412
|
* <span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>
|
|
80407
80413
|
*
|
|
@@ -80413,7 +80419,7 @@ declare const syncTurboContactEnrichment: <ThrowOnError extends boolean = false>
|
|
|
80413
80419
|
/**
|
|
80414
80420
|
* Reveal contact details (standard)
|
|
80415
80421
|
*
|
|
80416
|
-
* Standard synchronous contact reveal — the best balance of speed, cost, and coverage. Only requires a LinkedIn URL; profile details are resolved automatically. For faster results at a higher credit cost, use the /contact-details/turbo/sync endpoint. For maximum coverage
|
|
80422
|
+
* Standard synchronous contact reveal — the best balance of speed, cost, and coverage. Only requires a LinkedIn URL; profile details are resolved automatically. For faster results at a higher credit cost, use the /contact-details/turbo/sync endpoint. For maximum coverage (async, slower, higher cost), use the /contact-details/exhaustive/start endpoint.
|
|
80417
80423
|
*
|
|
80418
80424
|
* <span>⚡ <strong>Rate limit:</strong> 200 requests per 1 minute</span>
|
|
80419
80425
|
*
|
|
@@ -80425,7 +80431,7 @@ declare const syncQuickContactReveal: <ThrowOnError extends boolean = false>(opt
|
|
|
80425
80431
|
/**
|
|
80426
80432
|
* Start exhaustive contact details reveal
|
|
80427
80433
|
*
|
|
80428
|
-
* Maximum-coverage contact reveal — runs all
|
|
80434
|
+
* Maximum-coverage contact reveal — runs all waterfall steps in parallel to get the most comprehensive results. This is asynchronous: call this endpoint to start the task, then poll /contact-details/exhaustive/poll with the returned task ID. Slower and more expensive than the synchronous endpoints, but returns more emails and phone numbers on average. For faster synchronous results, use /contact-details/single (standard) or /contact-details/turbo/sync (fastest).
|
|
80429
80435
|
*
|
|
80430
80436
|
* <span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>
|
|
80431
80437
|
*
|
|
@@ -80657,7 +80663,7 @@ declare const locationTypeahead: <ThrowOnError extends boolean = false>(options:
|
|
|
80657
80663
|
/**
|
|
80658
80664
|
* Validate a single email
|
|
80659
80665
|
*
|
|
80660
|
-
* Checks if a given email is likely to bounce using
|
|
80666
|
+
* Checks if a given email is likely to bounce using multiple validation strategies. Works for catch-all email addresses, which are increasingly common yet hard for other APIs to validate.
|
|
80661
80667
|
*
|
|
80662
80668
|
* <span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>
|
|
80663
80669
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -8835,6 +8835,12 @@ type GetIndustriesResponses = {
|
|
|
8835
8835
|
* Crunchbase's list of industries
|
|
8836
8836
|
*/
|
|
8837
8837
|
crunchbaseIndustries: Array<string>;
|
|
8838
|
+
/**
|
|
8839
|
+
* Crunchbase's industry groups mapped to their constituent industries. Keys are industry group names, values are arrays of industry names belonging to that group.
|
|
8840
|
+
*/
|
|
8841
|
+
crunchbaseIndustryGroups: {
|
|
8842
|
+
[key: string]: Array<string>;
|
|
8843
|
+
};
|
|
8838
8844
|
/**
|
|
8839
8845
|
* LinkedIn's list of industries
|
|
8840
8846
|
*/
|
|
@@ -80169,7 +80175,7 @@ declare const getSubdivisions: <ThrowOnError extends boolean = false>(options: O
|
|
|
80169
80175
|
/**
|
|
80170
80176
|
* Create a new audience
|
|
80171
80177
|
*
|
|
80172
|
-
* Creates a new audience in DRAFT status. After creation, use the update-search-params endpoint to set filters, then use the build endpoint to populate the audience with companies and prospects
|
|
80178
|
+
* Creates a new audience in DRAFT status. After creation, use the update-search-params endpoint to set filters, then use the build endpoint to populate the audience with companies and prospects.
|
|
80173
80179
|
*
|
|
80174
80180
|
* <span>⚡ <strong>Rate limit:</strong> 50 requests per 1 minute</span>
|
|
80175
80181
|
*
|
|
@@ -80401,7 +80407,7 @@ declare const combinedSearchCount: <ThrowOnError extends boolean = false>(option
|
|
|
80401
80407
|
/**
|
|
80402
80408
|
* Reveal contact details (turbo)
|
|
80403
80409
|
*
|
|
80404
|
-
* Fastest synchronous contact reveal — optimized for speed at a higher credit cost. Uses a premium enrichment stack for the lowest possible latency. For a cheaper option with slightly longer response times, use the standard /contact-details/single endpoint. For maximum coverage
|
|
80410
|
+
* Fastest synchronous contact reveal — optimized for speed at a higher credit cost. Uses a premium enrichment stack for the lowest possible latency. For a cheaper option with slightly longer response times, use the standard /contact-details/single endpoint. For maximum coverage (async, slower), use the /contact-details/exhaustive/start endpoint.
|
|
80405
80411
|
*
|
|
80406
80412
|
* <span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>
|
|
80407
80413
|
*
|
|
@@ -80413,7 +80419,7 @@ declare const syncTurboContactEnrichment: <ThrowOnError extends boolean = false>
|
|
|
80413
80419
|
/**
|
|
80414
80420
|
* Reveal contact details (standard)
|
|
80415
80421
|
*
|
|
80416
|
-
* Standard synchronous contact reveal — the best balance of speed, cost, and coverage. Only requires a LinkedIn URL; profile details are resolved automatically. For faster results at a higher credit cost, use the /contact-details/turbo/sync endpoint. For maximum coverage
|
|
80422
|
+
* Standard synchronous contact reveal — the best balance of speed, cost, and coverage. Only requires a LinkedIn URL; profile details are resolved automatically. For faster results at a higher credit cost, use the /contact-details/turbo/sync endpoint. For maximum coverage (async, slower, higher cost), use the /contact-details/exhaustive/start endpoint.
|
|
80417
80423
|
*
|
|
80418
80424
|
* <span>⚡ <strong>Rate limit:</strong> 200 requests per 1 minute</span>
|
|
80419
80425
|
*
|
|
@@ -80425,7 +80431,7 @@ declare const syncQuickContactReveal: <ThrowOnError extends boolean = false>(opt
|
|
|
80425
80431
|
/**
|
|
80426
80432
|
* Start exhaustive contact details reveal
|
|
80427
80433
|
*
|
|
80428
|
-
* Maximum-coverage contact reveal — runs all
|
|
80434
|
+
* Maximum-coverage contact reveal — runs all waterfall steps in parallel to get the most comprehensive results. This is asynchronous: call this endpoint to start the task, then poll /contact-details/exhaustive/poll with the returned task ID. Slower and more expensive than the synchronous endpoints, but returns more emails and phone numbers on average. For faster synchronous results, use /contact-details/single (standard) or /contact-details/turbo/sync (fastest).
|
|
80429
80435
|
*
|
|
80430
80436
|
* <span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>
|
|
80431
80437
|
*
|
|
@@ -80657,7 +80663,7 @@ declare const locationTypeahead: <ThrowOnError extends boolean = false>(options:
|
|
|
80657
80663
|
/**
|
|
80658
80664
|
* Validate a single email
|
|
80659
80665
|
*
|
|
80660
|
-
* Checks if a given email is likely to bounce using
|
|
80666
|
+
* Checks if a given email is likely to bounce using multiple validation strategies. Works for catch-all email addresses, which are increasingly common yet hard for other APIs to validate.
|
|
80661
80667
|
*
|
|
80662
80668
|
* <span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>
|
|
80663
80669
|
*
|