Skip to content

Commit

Permalink
fix: source parameter enum values (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot committed Jun 14, 2020
1 parent 828c4c9 commit 9bca7fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/update-endpoints/generated/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -30900,7 +30900,7 @@
"allowNull": false,
"deprecated": null,
"description": "Update the source for the repository. Must include the branch name, and may optionally specify the subdirectory `/docs`. Possible values are `\"gh-pages\"`, `\"master\"`, and `\"master /docs\"`.",
"enum": ["\"gh-pages\"", "\"master\"", "\"master /docs\""],
"enum": ["gh-pages", "master", "master /docs"],
"name": "source",
"type": "string",
"required": false
Expand Down
2 changes: 1 addition & 1 deletion src/generated/Endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26297,7 +26297,7 @@ type ReposUpdateInformationAboutPagesSiteEndpoint = {
/**
* Update the source for the repository. Must include the branch name, and may optionally specify the subdirectory `/docs`. Possible values are `"gh-pages"`, `"master"`, and `"master /docs"`.
*/
source?: '"gh-pages"' | '"master"' | '"master /docs"';
source?: "gh-pages" | "master" | "master /docs";
};

type ReposUpdateInformationAboutPagesSiteRequestOptions = {
Expand Down

0 comments on commit 9bca7fa

Please sign in to comment.