Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: replace missing component with inline definition #446

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 26 additions & 3 deletions cache/api.github.com.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.0.3",
"info": {
"version": "17.1.0",
"version": "17.1.1",
"title": "GitHub's official OpenAPI spec + Octokit extension",
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
"license": {
Expand Down Expand Up @@ -70656,12 +70656,35 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/organization-fine-grained-permission"
"title": "Organization Fine-Grained Permission",
"description": "A fine-grained permission that protects organization resources.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"name",
"description"
]
}
},
"examples": {
"default": {
"$ref": "#/components/examples/organization-fine-grained-permission-example"
"value": [
{
"name": "read_organization_custom_org_role",
"description": "View organization roles"
},
{
"name": "write_organization_custom_org_role",
"description": "Manage custom organization roles"
}
]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion cache/ghec.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.0.3",
"info": {
"version": "17.1.0",
"version": "17.1.1",
"title": "GitHub's official OpenAPI spec + Octokit extension",
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
"license": {
Expand Down
29 changes: 26 additions & 3 deletions cache/ghes-3.10.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.0.3",
"info": {
"version": "17.1.0",
"version": "17.1.1",
"title": "GitHub's official OpenAPI spec + Octokit extension",
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
"license": {
Expand Down Expand Up @@ -63757,12 +63757,35 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/organization-fine-grained-permission"
"title": "Organization Fine-Grained Permission",
"description": "A fine-grained permission that protects organization resources.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"name",
"description"
]
}
},
"examples": {
"default": {
"$ref": "#/components/examples/organization-fine-grained-permission-example"
"value": [
{
"name": "read_organization_custom_org_role",
"description": "View organization roles"
},
{
"name": "write_organization_custom_org_role",
"description": "Manage custom organization roles"
}
]
}
}
}
Expand Down
29 changes: 26 additions & 3 deletions cache/ghes-3.11.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.0.3",
"info": {
"version": "17.1.0",
"version": "17.1.1",
"title": "GitHub's official OpenAPI spec + Octokit extension",
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
"license": {
Expand Down Expand Up @@ -65260,12 +65260,35 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/organization-fine-grained-permission"
"title": "Organization Fine-Grained Permission",
"description": "A fine-grained permission that protects organization resources.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"name",
"description"
]
}
},
"examples": {
"default": {
"$ref": "#/components/examples/organization-fine-grained-permission-example"
"value": [
{
"name": "read_organization_custom_org_role",
"description": "View organization roles"
},
{
"name": "write_organization_custom_org_role",
"description": "Manage custom organization roles"
}
]
}
}
}
Expand Down
Loading
Loading