Skip to content

Commit 29aa98b

Browse files
fix: remove empty path objects (#90)
Co-authored-by: squash-commit-app[bot] <83693605+squash-commit-app[bot]@users.noreply.github.com>
1 parent f69efff commit 29aa98b

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

cache/openapi-schema.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"openapi": "3.0.3",
33
"info": {
4-
"version": "2.21.0",
4+
"version": "2.21.1",
55
"title": "GitHub's official OpenAPI spec + Octokit extension",
66
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
77
"license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
@@ -29402,7 +29402,6 @@
2940229402
"x-octokit": {}
2940329403
}
2940429404
},
29405-
"/repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}": {},
2940629405
"/repos/{owner}/{repo}/secret-scanning/alerts": {
2940729406
"get": {
2940829407
"summary": "List secret scanning alerts for a repository",
@@ -37761,7 +37760,6 @@
3776137760
"x-octokit": {}
3776237761
}
3776337762
},
37764-
"/user/tokens/reset": {},
3776537763
"/users": {
3776637764
"get": {
3776737765
"summary": "List users",
@@ -38988,8 +38986,7 @@
3898838986
"category": "repos",
3898938987
"subcategory": "commits"
3899038988
},
38991-
"x-octokit": {},
38992-
"deprecated": true
38989+
"x-octokit": {}
3899338990
}
3899438991
},
3899538992
"/repos/{owner}/{repo}/content_references/{content_reference_id}/attachments": {
@@ -39166,8 +39163,7 @@
3916639163
"category": "apps",
3916739164
"subcategory": "installations"
3916839165
},
39169-
"x-octokit": {},
39170-
"deprecated": true
39166+
"x-octokit": {}
3917139167
}
3917239168
}
3917339169
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
]
5454
},
5555
"octokit": {
56-
"openapi-version": "2.21.0"
56+
"openapi-version": "2.21.1"
5757
},
5858
"@pika/pack": {
5959
"pipeline": [

src/generated/types.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3836,7 +3836,6 @@ export interface paths {
38363836
/** Create a reaction to a [release](https://docs.github.com/rest/reference/repos#releases). A response with a `Status: 200 OK` means that you already added the reaction type to this release. */
38373837
post: operations["reactions/create-for-release"];
38383838
};
3839-
"/repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}": {};
38403839
"/repos/{owner}/{repo}/secret-scanning/alerts": {
38413840
/**
38423841
* Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.
@@ -4980,7 +4979,6 @@ export interface paths {
49804979
/** List all of the teams across all of the organizations to which the authenticated user belongs. This method requires `user`, `repo`, or `read:org` [scope](https://docs.github.com/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/) when authenticating via [OAuth](https://docs.github.com/apps/building-oauth-apps/). */
49814980
get: operations["teams/list-for-authenticated-user"];
49824981
};
4983-
"/user/tokens/reset": {};
49844982
"/users": {
49854983
/**
49864984
* Lists all users, in the order that they signed up on GitHub. This list includes personal user accounts and organization accounts.

0 commit comments

Comments
 (0)