feat(integrations): add five enrichment providers - #7165
Open
TheodoreSpeaks wants to merge 8 commits into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Review completed against the latest diff
Tip: cubic used a learning from your PR history. Let your coding agent read cubic learnings directly with the cubic MCP.
Re-trigger cubic
Contributor
Greptile SummaryAdds hosted-key integrations for SMARTe, Kitt, Forager, FullEnrich, and Zeliq across workflow blocks, tool execution, BYOK configuration, documentation, and generated catalogs.
Confidence Score: 5/5The pull request appears safe to merge because no blocking failure remains within the eligible follow-up-review scope. No blocking failure remains.
|
| Filename | Overview |
|---|---|
| apps/sim/blocks/blocks/forager.ts | Defines Forager operations, lookup requirements, parameter coercion, and workflow-facing outputs. |
| apps/sim/blocks/blocks/fullenrich.ts | Exposes FullEnrich lookup, search, and asynchronous enrichment operations through workflow block mappings. |
| apps/sim/blocks/blocks/kitt.ts | Adds operation-specific parameter mapping for Kitt email finding and verification. |
| apps/sim/blocks/blocks/smarte.ts | Defines SMARTe person, company, contact, funding, and technographic enrichment operations. |
| apps/sim/blocks/blocks/zeliq.ts | Adds workflow configuration and lookup-method routing for asynchronous Zeliq enrichment. |
| apps/sim/tools/forager/hosting.ts | Configures hosted Forager credentials, pricing behavior, and request limits. |
| apps/sim/tools/fullenrich/schemas.ts | Defines FullEnrich request validation for lookup, search, pagination, webhooks, and asynchronous batches. |
| apps/sim/tools/kitt/hosting.ts | Configures outcome-aware hosted pricing and limits for Kitt operations. |
| apps/sim/tools/smarte/response.ts | Normalizes SMARTe responses with bounded body reading and JSON validation. |
| apps/sim/tools/zeliq/validation.ts | Validates Zeliq callback URLs and operation-specific identity requirements. |
| packages/deployment-config/src/integrations.json | Registers deployment metadata, credentials, pricing, and rate limits for the five providers. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart LR
User[Workflow user] --> Block[Provider block]
Block --> Validation[Parameter mapping and validation]
Validation --> Tool[Provider tool handler]
Tool --> Auth{Credential source}
Auth -->|BYOK| UserKey[User API key]
Auth -->|Hosted| HostedKey[Hosted API key]
UserKey --> API[Enrichment provider API]
HostedKey --> API
API --> Normalize[Response normalization]
Normalize --> Billing[Deterministic hosted billing]
Billing --> Output[Workflow output]
Reviews (2): Last reviewed commit: "fix(integrations): address enrichment re..." | Re-trigger Greptile
Collaborator
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds complete hosted-key integrations for SMARTe, Kitt, Forager, FullEnrich, and Zeliq, including tools, blocks, provider icons, BYOK registration, documentation, and generated catalogs.
Hosted pricing follows each provider’s lowest sustainable self-serve paid tier, with provider-specific rate limits and deterministic billing metadata.
Type of Change
Testing
bun run lintandbun run lint:checkbun run apps/sim/scripts/check-block-registry.ts origin/stagingbun run check:audits(36/36)Reviewers should focus on hosted-key pricing assumptions, request/response validation, and block parameter mappings.
Checklist
Screenshots/Videos
Not applicable; this is integration configuration, tool execution, and generated documentation work.