feat(commerce): add stripeapps connector#273
Open
andrei-hasna wants to merge 1 commit into
Open
Conversation
Add a first-class Stripe Apps connector package under connectors/stripeapps, rebuilt against open-connectors patterns (modeled on connectors/exa's fetch-based api_key client). Real Bearer-auth REST client with typed error handling, multi-profile config, and CLI entry points for the upstream command surface: list-items, create-item, get-item, list-events, search, raw-request, plus config/profile management. - @hasna namespace, Apache-2.0, deps limited to commander + chalk - default base https://api.stripeapps.com/v1, override via STRIPEAPPS_BASE_URL - placeholder-only .env.example; no secrets, internal references, or scraper deps - register ConnectorMeta 'stripeapps' under Commerce & Finance - focused client/api unit tests (11 tests) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
Author
|
Worker review result: not safe to merge yet. Blockers:
Validation run in isolated OpenLoops worktree:
I did not merge this PR. |
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 the Alumia registry connector
stripe-appsas a first-class open-connectors package:connectors/stripeapps(@hasna/connect-stripeapps). Rebuilt against the public Stripe Apps REST API surface and existing open-connectors patterns (modeled onconnectors/exa's fetch-basedapi_keyclient) — no platform-alumia code was copied.What's included
src/api/client.ts): fetch-based,Authorization: Bearer <key>, default basehttps://api.stripeapps.com/v1(override viaSTRIPEAPPS_BASE_URL), typedStripeAppsApiErrorhandling.raw()escape hatch.connect-stripeapps):list-items,create-item,get-item,list-events,search,raw-request, plusconfig/profilemanagement with json/pretty output.src/types, multi-profile config under~/.hasna/connectors/stripeapps, output formatting..env.example(STRIPEAPPS_API_KEY, optionalSTRIPEAPPS_BASE_URL) — no secrets.ConnectorMetastripeapps(displayName "Stripe Apps") under Commerce & Finance.src/api/client.test.ts).Constraints honored
@hasnanamespace, Apache-2.0, deps limited tocommander+chalk.Validation
bun run typecheck(package) ✅bun test(package): 11 pass ✅bun run build(package) ✅bun run typecheck✅bun test src/lib/registry.test.ts: 28 pass ✅--help,--version, missing-key error path) ✅🤖 Generated with Claude Code