Skip to content

Commit 124e42d

Browse files
agtravesoclaude
andcommitted
Remove process dependencies endpoints
GET/PUT /processes/{identifier}/dependencies have been removed from the OpenAPI spec. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4056888 commit 124e42d

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

src/api/yepcodeApi.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ import {
4646
ProgrammingLanguage,
4747
ProgrammingLanguageManifest,
4848
UpdateTeamDependenciesInput,
49-
ProcessManifest,
50-
ProcessManifestInput,
5149
} from "./types";
5250
import { Readable } from "stream";
5351

@@ -856,17 +854,4 @@ export class YepCodeApi {
856854
): Promise<ProgrammingLanguageManifest> {
857855
return this.request("DELETE", `/dependencies/${language}/install`);
858856
}
859-
860-
async getProcessDependencies(identifier: string): Promise<ProcessManifest> {
861-
return this.request("GET", `/processes/${identifier}/dependencies`);
862-
}
863-
864-
async updateProcessDependencies(
865-
identifier: string,
866-
data: ProcessManifestInput
867-
): Promise<ProcessManifest> {
868-
return this.request("PUT", `/processes/${identifier}/dependencies`, {
869-
data,
870-
});
871-
}
872857
}

0 commit comments

Comments
 (0)