@getanyapi/sdk 0.13.0 → 0.13.1
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1791,6 +1791,9 @@ interface ApolloOrganizationsBulkEnrichInput {
|
|
|
1791
1791
|
*/
|
|
1792
1792
|
domains: string[];
|
|
1793
1793
|
}
|
|
1794
|
+
/**
|
|
1795
|
+
* The enriched organization for the domain at this index, or null when that domain had no match.
|
|
1796
|
+
*/
|
|
1794
1797
|
interface ApolloOrganizationsBulkEnrichOrganization {
|
|
1795
1798
|
/**
|
|
1796
1799
|
* Estimated annual revenue in USD.
|
|
@@ -1908,9 +1911,9 @@ interface ApolloOrganizationsBulkEnrichData {
|
|
|
1908
1911
|
*/
|
|
1909
1912
|
missing: number;
|
|
1910
1913
|
/**
|
|
1911
|
-
* Enriched organizations.
|
|
1914
|
+
* Enriched organizations, positionally aligned with the requested domains: index i of this array is the result for index i of the domains input, and the array is always the same length as that input. An entry is null when the domain had no match, so a partial batch still returns every domain it did resolve.
|
|
1912
1915
|
*/
|
|
1913
|
-
organizations: ApolloOrganizationsBulkEnrichOrganization[];
|
|
1916
|
+
organizations: (ApolloOrganizationsBulkEnrichOrganization | null)[];
|
|
1914
1917
|
/**
|
|
1915
1918
|
* Number of requested domains.
|
|
1916
1919
|
* Range: minimum 0.
|
|
@@ -2460,7 +2463,7 @@ declare class ApolloNamespace {
|
|
|
2460
2463
|
/**
|
|
2461
2464
|
* Apollo Bulk Organization Enrichment
|
|
2462
2465
|
*
|
|
2463
|
-
* Enrich up to 10 organization domains in one request with normalized company profile, industry, employee, revenue,
|
|
2466
|
+
* Enrich up to 10 organization domains in one request with normalized company profile, industry, employee, revenue, and location data. Priced per request rather than per domain, so a full batch of 10 costs the same as a batch of 1. Results are positionally aligned with the domains you send, and a domain with no match returns null in its slot.
|
|
2464
2467
|
*
|
|
2465
2468
|
* Price: $0.06 per request.
|
|
2466
2469
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -1791,6 +1791,9 @@ interface ApolloOrganizationsBulkEnrichInput {
|
|
|
1791
1791
|
*/
|
|
1792
1792
|
domains: string[];
|
|
1793
1793
|
}
|
|
1794
|
+
/**
|
|
1795
|
+
* The enriched organization for the domain at this index, or null when that domain had no match.
|
|
1796
|
+
*/
|
|
1794
1797
|
interface ApolloOrganizationsBulkEnrichOrganization {
|
|
1795
1798
|
/**
|
|
1796
1799
|
* Estimated annual revenue in USD.
|
|
@@ -1908,9 +1911,9 @@ interface ApolloOrganizationsBulkEnrichData {
|
|
|
1908
1911
|
*/
|
|
1909
1912
|
missing: number;
|
|
1910
1913
|
/**
|
|
1911
|
-
* Enriched organizations.
|
|
1914
|
+
* Enriched organizations, positionally aligned with the requested domains: index i of this array is the result for index i of the domains input, and the array is always the same length as that input. An entry is null when the domain had no match, so a partial batch still returns every domain it did resolve.
|
|
1912
1915
|
*/
|
|
1913
|
-
organizations: ApolloOrganizationsBulkEnrichOrganization[];
|
|
1916
|
+
organizations: (ApolloOrganizationsBulkEnrichOrganization | null)[];
|
|
1914
1917
|
/**
|
|
1915
1918
|
* Number of requested domains.
|
|
1916
1919
|
* Range: minimum 0.
|
|
@@ -2460,7 +2463,7 @@ declare class ApolloNamespace {
|
|
|
2460
2463
|
/**
|
|
2461
2464
|
* Apollo Bulk Organization Enrichment
|
|
2462
2465
|
*
|
|
2463
|
-
* Enrich up to 10 organization domains in one request with normalized company profile, industry, employee, revenue,
|
|
2466
|
+
* Enrich up to 10 organization domains in one request with normalized company profile, industry, employee, revenue, and location data. Priced per request rather than per domain, so a full batch of 10 costs the same as a batch of 1. Results are positionally aligned with the domains you send, and a domain with no match returns null in its slot.
|
|
2464
2467
|
*
|
|
2465
2468
|
* Price: $0.06 per request.
|
|
2466
2469
|
*
|
package/dist/index.js
CHANGED
|
@@ -1101,7 +1101,7 @@ var ApolloNamespace = class {
|
|
|
1101
1101
|
/**
|
|
1102
1102
|
* Apollo Bulk Organization Enrichment
|
|
1103
1103
|
*
|
|
1104
|
-
* Enrich up to 10 organization domains in one request with normalized company profile, industry, employee, revenue,
|
|
1104
|
+
* Enrich up to 10 organization domains in one request with normalized company profile, industry, employee, revenue, and location data. Priced per request rather than per domain, so a full batch of 10 costs the same as a batch of 1. Results are positionally aligned with the domains you send, and a domain with no match returns null in its slot.
|
|
1105
1105
|
*
|
|
1106
1106
|
* Price: $0.06 per request.
|
|
1107
1107
|
*
|