Skip to content

Commit

Permalink
feat: add new Security Managers APIs (`GET /orgs/{org}/security-manag…
Browse files Browse the repository at this point in the history
…ers`, `PUT /orgs/{org}/security-managers/teams/{team_slug}` and `DELETE /orgs/{org}/security-managers/teams/{team_slug}`)
  • Loading branch information
timrogers committed Aug 15, 2022
1 parent b9bfdae commit 0d21aa3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/generated/Endpoints.ts
Expand Up @@ -383,6 +383,13 @@ export interface Endpoints {
"/orgs/{org}/public_members/{username}",
"delete"
>;
/**
* @see https://docs.github.com/rest/reference/orgs#remove-a-security-manager-team
*/
"DELETE /orgs/{org}/security-managers/teams/{team_slug}": Operation<
"/orgs/{org}/security-managers/teams/{team_slug}",
"delete"
>;
/**
* @see https://docs.github.com/rest/reference/teams#delete-a-team
*/
Expand Down Expand Up @@ -1835,6 +1842,13 @@ export interface Endpoints {
"/orgs/{org}/secret-scanning/alerts",
"get"
>;
/**
* @see https://docs.github.com/rest/reference/orgs#list-security-manager-teams
*/
"GET /orgs/{org}/security-managers": Operation<
"/orgs/{org}/security-managers",
"get"
>;
/**
* @see https://docs.github.com/rest/reference/billing#get-github-actions-billing-for-an-organization
*/
Expand Down Expand Up @@ -5429,6 +5443,13 @@ export interface Endpoints {
"/orgs/{org}/public_members/{username}",
"put"
>;
/**
* @see https://docs.github.com/rest/reference/orgs#add-a-security-manager-team
*/
"PUT /orgs/{org}/security-managers/teams/{team_slug}": Operation<
"/orgs/{org}/security-managers/teams/{team_slug}",
"put"
>;
/**
* @see https://docs.github.com/rest/reference/teams#add-or-update-team-membership-for-a-user
*/
Expand Down

0 comments on commit 0d21aa3

Please sign in to comment.