feat(integration-toolkit): add pricing-file import operations - #425
Closed
paulofph wants to merge 1 commit into
Closed
feat(integration-toolkit): add pricing-file import operations#425paulofph wants to merge 1 commit into
paulofph wants to merge 1 commit into
Conversation
Regenerates @epilot/integration-toolkit-client and @epilot/sdk from the now-current live spec to pick up five operations merged in erp-integration-api MR !145 under /v2/erp/imports: createErpImport, listErpImports, getErpImport, executeErpImport, abortErpImport. Purely additive — no existing operations changed or removed (verified by diff). Client and aggregator both rebuilt clean; lint clean. Not yet released: changeset is included but version-packages/ publish-packages has deliberately not been run. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018KNRiHh2NL8KHqudrexZRZ
Member
Author
|
Closing — superseded by #424 + #426, both already merged, which regenerate the exact same five This PR was prepared without visibility into #424/#426, which were merged in the same window. No action needed on this one. Generated by Claude Code Generated by Claude Code |
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
Regenerates
@epilot/integration-toolkit-clientand@epilot/sdkfrom the current live spec (https://docs.api.epilot.io/integration-toolkit.yaml) to pick up five operations merged inerp-integration-apiMR !145 under/v2/erp/imports:createErpImport—POST /v2/erp/imports, create a pricing-file import job from an uploaded file, starts the validate phaselistErpImports—GET /v2/erp/imports, list recent import jobs for the org, cursor-paginatedgetErpImport—GET /v2/erp/imports/{importId}, poll a job's status, validation summary, and progressexecuteErpImport—POST /v2/erp/imports/{importId}:execute, confirm and run the write phase of a validated (READY) jobabortErpImport—POST /v2/erp/imports/{importId}:abort, cooperatively stop a running jobPurely additive — diffed the spec change and confirmed no existing operations were removed or renamed.
Scope of the diff
Only
integration-toolkit-related generated files: the client'sopenapi.json/openapi.d.ts/openapi-runtime.json, and the aggregator's corresponding definitions/types/docs for that one API. Nothing else in either package was touched —integration-toolkitwas already a registered API, so this only adds operations to it, not a new subpath.Not yet released
A changeset is included (
@epilot/integration-toolkit-clientminor,@epilot/sdkminor), butchangeset version/changeset publishhas deliberately not been run. This repo's registry auth is live in the environment this PR was prepared in, so that step is left for a maintainer to run as its own explicit action.Test plan
npm run openapi && npm run typegen && npm run buildinclients/integration-toolkit-client— clean,openapi.d.tsnow contains all five new operationspnpm generate-sdkat the repo root — regenerated only theintegration-toolkitentry, confirmed viagit statuspnpm buildinpackages/epilot-sdk-v2— cleanpnpm lintinpackages/epilot-sdk-v2— clean, no fixes neededpnpm testinpackages/epilot-sdk-v2— 25 failures, all inoperations.test.ts(generic custom-API/override mechanics unrelated tointegration-toolkit), allERR_INVALID_URLfrom the sandbox's proxy env var interacting withmsw's request interceptor. Confirmed pre-existing viagit stash+ rerun against unmodifiedmain— identical 25 failures, same tests. Left untouched as out of scope for this change.Generated by Claude Code