YEP-3134 Update yepcode-run with new endpoints#17
Merged
Conversation
- Add ProgrammingLanguage type alias and use it across all interfaces - Add Team, UpdateTeamInput, ErrorHandlerConfig/Input types - Add ProgrammingLanguageManifest, UpdateTeamDependenciesInput types - Add getTeam, updateTeam methods - Add getTeamDependencies, updateTeamDependencies, installTeamDependencies, discardTeamDependenciesInstallation methods - Add getProcessDependencies, updateProcessDependencies methods Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
GET/PUT /processes/{identifier}/dependencies have been removed from the OpenAPI spec.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
sergio-rs
approved these changes
Apr 13, 2026
sergio-rs
approved these changes
Apr 13, 2026
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
ProgrammingLanguage = "JAVASCRIPT" | "PYTHON"type alias and replaced all inline union literals acrosstypes.tsfor consistencyTeam,UpdateTeamInput,ErrorHandlerConfig,ErrorHandlerConfigInput,ProgrammingLanguageManifest,ProgrammingLanguageManifestInstallation,UpdateTeamDependenciesInputYepCodeApimatching the latest OpenAPI spec:GET /team→getTeam()PATCH /team→updateTeam(data)GET /dependencies/{language}→getTeamDependencies(language)PUT /dependencies/{language}→updateTeamDependencies(language, data)POST /dependencies/{language}/install→installTeamDependencies(language)DELETE /dependencies/{language}/install→discardTeamDependenciesInstallation(language)GET /processes/{identifier}/dependencies→getProcessDependencies(identifier)PUT /processes/{identifier}/dependencies→updateProcessDependencies(identifier, data)CLAUDE.mdwith build/test/lint commands, architecture overview, and OpenAPI spec URL for future referenceTest plan
npm run buildpasses with no TypeScript errorsthis.request(...)pattern and are consistent with other endpointsProgrammingLanguagetype enforced on all dependency methodlanguageparameters🤖 Generated with Claude Code