orangeslice 1.8.2 → 1.8.3
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 +1 -0
- package/dist/api.js +1 -1
- package/dist/cli.js +0 -0
- package/docs/services/builtWith/index.md +6 -5
- package/docs/services/builtWith/searchByTech.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,6 +67,7 @@ All service calls go through `post()` in `src/api.ts`.
|
|
|
67
67
|
- Polling split for pending/`202`:
|
|
68
68
|
- `batch-native` (`b2b`, `batchserp`, `generateObject`) polls batch-service result endpoint.
|
|
69
69
|
- `bridge` functions poll `https://orangeslice.ai/api/function/bridge-result`.
|
|
70
|
+
- Polling timeout supports long-running enrichment workflows (up to 10 minutes).
|
|
70
71
|
- Inngest secrets are server-side only (Next.js route env vars), never in the npm package.
|
|
71
72
|
|
|
72
73
|
The current endpoint-to-backend mapping is documented in `docs/runtime-routing.md`.
|
package/dist/api.js
CHANGED
|
@@ -15,7 +15,7 @@ exports.post = post;
|
|
|
15
15
|
const BASE_URL = "https://enrichly-production.up.railway.app/function";
|
|
16
16
|
const DIRECT_BASE_URL = "https://orangeslice.ai/api/function";
|
|
17
17
|
const BRIDGE_POLL_URL = "https://orangeslice.ai/api/function/bridge-result";
|
|
18
|
-
const POLL_TIMEOUT_MS =
|
|
18
|
+
const POLL_TIMEOUT_MS = 600000;
|
|
19
19
|
const DEFAULT_POLL_INTERVAL_MS = 1000;
|
|
20
20
|
exports.BATCH_NATIVE_FUNCTION_IDS = new Set(["b2b", "batchserp", "generateObject"]);
|
|
21
21
|
const BRIDGE_RESULT_EVENT_BY_FUNCTION_ID = {
|
package/dist/cli.js
CHANGED
|
File without changes
|
|
@@ -7,11 +7,11 @@ description: Technographic data enrichment — discover what technologies, frame
|
|
|
7
7
|
|
|
8
8
|
## Available Methods
|
|
9
9
|
|
|
10
|
-
| Method | Description | Credits
|
|
11
|
-
| --------------- | -------------------------------------- |
|
|
12
|
-
| `lookupDomain` | Get full technology stack for a domain | 1
|
|
13
|
-
| `relationships` | Find related/connected domains | 1
|
|
14
|
-
| `searchByTech` | Find companies using a specific tech | 1/result |
|
|
10
|
+
| Method | Description | Credits |
|
|
11
|
+
| --------------- | -------------------------------------- | ---------------------------- |
|
|
12
|
+
| `lookupDomain` | Get full technology stack for a domain | 1 |
|
|
13
|
+
| `relationships` | Find related/connected domains | 1 |
|
|
14
|
+
| `searchByTech` | Find companies using a specific tech | 1/result (up to 900/page) |
|
|
15
15
|
|
|
16
16
|
## Use Cases
|
|
17
17
|
|
|
@@ -31,6 +31,7 @@ description: Technographic data enrichment — discover what technologies, frame
|
|
|
31
31
|
|
|
32
32
|
- **Case-sensitive**: Use "Hubspot" not "HubSpot"
|
|
33
33
|
- **Find exact names**: Use `lookupDomain` on a site to see correct tech names
|
|
34
|
+
- **Pagination**: Each page returns up to 900 results (= 900 credits per page). Use `offset` from previous response to get next page.
|
|
34
35
|
|
|
35
36
|
## Example Workflows
|
|
36
37
|
|