feat: add iHerb providers (Partnerize, Impact, Apify) - #16
Merged
Conversation
Add three new providers for iHerb affiliate and scraper APIs: - iherb_partnerize: 8 operations (campaigns, commissions, conversions, product feeds, tracking links, click/performance reports) - iherb_impact: 8 operations (campaigns, actions, catalogs, tracking links, promo codes) - iherb_apify: 7 operations (product search, details, reviews, price monitoring, run management) Total: 24 providers, 301 operations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0176k7T6i3B197hY6TqPdWqj
CodeWithJuber
marked this pull request as ready for review
August 13, 2026 03:33
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
Add iHerb as provider #22–24. Since iHerb has no public first-party API, coverage comes from three independent sources — each a separate provider with its own auth and base URL:
iherb_partnerize— Partnerize affiliate network API (8 operations): campaigns, commissions, conversions, product feeds, tracking links, click reports, performance stats. HTTP Basic auth (IHERB_PARTNERIZE_APP_KEY+IHERB_PARTNERIZE_USER_KEY).iherb_impact— Impact affiliate network API (8 operations): campaigns, actions, catalogs, catalog items, tracking links, promo codes. HTTP Basic auth (IHERB_IMPACT_ACCOUNT_SID+IHERB_IMPACT_AUTH_TOKEN).iherb_apify— Apify iHerb scraper API (7 operations): product search, product details, reviews, price monitoring, run status, dataset results, run history. Bearer token auth (IHERB_APIFY_TOKEN).Totals move from 21 → 24 providers and 278 → 301 operations.
Changes
specs/iherb_partnerize.jsonspecs/iherb_impact.jsonspecs/iherb_apify.jsoncrates/hub-auth/src/store.rsfrom_env()README.mdValidation
connector-hub validateconfirms: 301 operations across 24 providers, all specs parse, no duplicate IDs, plugin manifests at version 2.0.0.Security and operations
.envfiles are included.No breaking changes. All three providers use the existing
NetClientHTTP path (SSRF-validated, IP-pinned, bounded retries). Auth follows established patterns (Basic / Bearer).Generated by Claude Code