@octokit/openapi 7.0.0 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/api.github.com.deref.json +1523 -250
- package/generated/api.github.com.json +803 -61
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +17 -8
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +9 -8
- package/generated/ghes-3.2.deref.json +1108 -313
- package/generated/ghes-3.2.json +451 -31
- package/generated/ghes-3.3-anicca-diff-to-ghes-3.4.deref.json +16 -0
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +209 -1
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +9 -1
- package/generated/ghes-3.3.deref.json +1108 -313
- package/generated/ghes-3.3.json +451 -31
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -8
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -8
- package/generated/ghes-3.4.deref.json +1092 -313
- package/generated/ghes-3.4.json +451 -31
- package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +17 -8
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +9 -8
- package/generated/ghes-3.5.deref.json +1094 -315
- package/generated/ghes-3.5.json +453 -33
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +94 -56
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +89 -164
- package/generated/ghes-3.6-diff-to-api.github.com.json +9 -130
- package/generated/ghes-3.6.deref.json +1299 -488
- package/generated/ghes-3.6.json +499 -47
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +38 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +49 -8
- package/generated/github.ae-diff-to-api.github.com.json +9 -8
- package/generated/github.ae.deref.json +783 -32
- package/generated/github.ae.json +495 -31
- package/index.js +2 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.3.0",
|
|
5
5
|
"title": "GitHub's official OpenAPI spec + Octokit extension",
|
|
6
6
|
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
|
|
7
7
|
"license": {
|
|
@@ -5185,113 +5185,6 @@
|
|
|
5185
5185
|
}
|
|
5186
5186
|
}
|
|
5187
5187
|
},
|
|
5188
|
-
"/repos/{owner}/{repo}/actions/permissions/access": {
|
|
5189
|
-
"get": {
|
|
5190
|
-
"summary": "Get the level of access for workflows outside of the repository",
|
|
5191
|
-
"description": "Gets the level of access that workflows outside of the repository have to actions and reusable workflows in the repository.\nThis endpoint only applies to internal repositories.\nFor more information, see \"[Managing GitHub Actions settings for a repository](https://docs.github.com/enterprise-server@3.6/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-an-internal-repository).\"\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the\nrepository `administration` permission to use this endpoint.",
|
|
5192
|
-
"tags": [
|
|
5193
|
-
"actions"
|
|
5194
|
-
],
|
|
5195
|
-
"operationId": "actions/get-workflow-access-to-repository",
|
|
5196
|
-
"externalDocs": {
|
|
5197
|
-
"description": "API method documentation",
|
|
5198
|
-
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/actions#get-workflow-access-level-to-a-repository"
|
|
5199
|
-
},
|
|
5200
|
-
"parameters": [
|
|
5201
|
-
{
|
|
5202
|
-
"$ref": "#/components/parameters/owner"
|
|
5203
|
-
},
|
|
5204
|
-
{
|
|
5205
|
-
"$ref": "#/components/parameters/repo"
|
|
5206
|
-
}
|
|
5207
|
-
],
|
|
5208
|
-
"responses": {
|
|
5209
|
-
"200": {
|
|
5210
|
-
"description": "Response",
|
|
5211
|
-
"content": {
|
|
5212
|
-
"application/json": {
|
|
5213
|
-
"schema": {
|
|
5214
|
-
"$ref": "#/components/schemas/actions-workflow-access-to-repository"
|
|
5215
|
-
},
|
|
5216
|
-
"examples": {
|
|
5217
|
-
"default": {
|
|
5218
|
-
"$ref": "#/components/examples/actions-workflow-access-to-repository"
|
|
5219
|
-
}
|
|
5220
|
-
}
|
|
5221
|
-
}
|
|
5222
|
-
}
|
|
5223
|
-
}
|
|
5224
|
-
},
|
|
5225
|
-
"x-github": {
|
|
5226
|
-
"githubCloudOnly": false,
|
|
5227
|
-
"enabledForGitHubApps": true,
|
|
5228
|
-
"previews": [],
|
|
5229
|
-
"category": "actions",
|
|
5230
|
-
"subcategory": "permissions"
|
|
5231
|
-
},
|
|
5232
|
-
"x-octokit": {
|
|
5233
|
-
"diff": {
|
|
5234
|
-
"api.github.com": {
|
|
5235
|
-
"type": "changed"
|
|
5236
|
-
}
|
|
5237
|
-
}
|
|
5238
|
-
}
|
|
5239
|
-
},
|
|
5240
|
-
"put": {
|
|
5241
|
-
"summary": "Set the level of access for workflows outside of the repository",
|
|
5242
|
-
"description": "Sets the level of access that workflows outside of the repository have to actions and reusable workflows in the repository.\nThis endpoint only applies to internal repositories.\nFor more information, see \"[Managing GitHub Actions settings for a repository](https://docs.github.com/enterprise-server@3.6/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-an-internal-repository).\"\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the\nrepository `administration` permission to use this endpoint.",
|
|
5243
|
-
"tags": [
|
|
5244
|
-
"actions"
|
|
5245
|
-
],
|
|
5246
|
-
"operationId": "actions/set-workflow-access-to-repository",
|
|
5247
|
-
"externalDocs": {
|
|
5248
|
-
"description": "API method documentation",
|
|
5249
|
-
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/actions#set-workflow-access-to-a-repository"
|
|
5250
|
-
},
|
|
5251
|
-
"parameters": [
|
|
5252
|
-
{
|
|
5253
|
-
"$ref": "#/components/parameters/owner"
|
|
5254
|
-
},
|
|
5255
|
-
{
|
|
5256
|
-
"$ref": "#/components/parameters/repo"
|
|
5257
|
-
}
|
|
5258
|
-
],
|
|
5259
|
-
"requestBody": {
|
|
5260
|
-
"required": true,
|
|
5261
|
-
"content": {
|
|
5262
|
-
"application/json": {
|
|
5263
|
-
"schema": {
|
|
5264
|
-
"$ref": "#/components/schemas/actions-workflow-access-to-repository"
|
|
5265
|
-
},
|
|
5266
|
-
"examples": {
|
|
5267
|
-
"default": {
|
|
5268
|
-
"$ref": "#/components/examples/actions-workflow-access-to-repository"
|
|
5269
|
-
}
|
|
5270
|
-
}
|
|
5271
|
-
}
|
|
5272
|
-
}
|
|
5273
|
-
},
|
|
5274
|
-
"responses": {
|
|
5275
|
-
"204": {
|
|
5276
|
-
"description": "Response"
|
|
5277
|
-
}
|
|
5278
|
-
},
|
|
5279
|
-
"x-github": {
|
|
5280
|
-
"githubCloudOnly": false,
|
|
5281
|
-
"enabledForGitHubApps": true,
|
|
5282
|
-
"previews": [],
|
|
5283
|
-
"category": "actions",
|
|
5284
|
-
"subcategory": "permissions"
|
|
5285
|
-
},
|
|
5286
|
-
"x-octokit": {
|
|
5287
|
-
"diff": {
|
|
5288
|
-
"api.github.com": {
|
|
5289
|
-
"type": "changed"
|
|
5290
|
-
}
|
|
5291
|
-
}
|
|
5292
|
-
}
|
|
5293
|
-
}
|
|
5294
|
-
},
|
|
5295
5188
|
"/repos/{owner}/{repo}/actions/permissions/selected-actions": {
|
|
5296
5189
|
"get": {
|
|
5297
5190
|
"summary": "Get allowed actions for a repository",
|
|
@@ -10395,23 +10288,6 @@
|
|
|
10395
10288
|
"repo_cache_size_limit_in_gb"
|
|
10396
10289
|
]
|
|
10397
10290
|
},
|
|
10398
|
-
"actions-workflow-access-to-repository": {
|
|
10399
|
-
"type": "object",
|
|
10400
|
-
"properties": {
|
|
10401
|
-
"access_level": {
|
|
10402
|
-
"type": "string",
|
|
10403
|
-
"description": "Defines the level of access that workflows outside of the repository have to actions and reusable workflows within the\nrepository. `none` means access is only possible from workflows in this repository.",
|
|
10404
|
-
"enum": [
|
|
10405
|
-
"none",
|
|
10406
|
-
"organization",
|
|
10407
|
-
"enterprise"
|
|
10408
|
-
]
|
|
10409
|
-
}
|
|
10410
|
-
},
|
|
10411
|
-
"required": [
|
|
10412
|
-
"access_level"
|
|
10413
|
-
]
|
|
10414
|
-
},
|
|
10415
10291
|
"autolink": {
|
|
10416
10292
|
"title": "Autolink reference",
|
|
10417
10293
|
"description": "An autolink reference.",
|
|
@@ -12473,6 +12349,14 @@
|
|
|
12473
12349
|
"write"
|
|
12474
12350
|
]
|
|
12475
12351
|
},
|
|
12352
|
+
"organization_custom_roles": {
|
|
12353
|
+
"type": "string",
|
|
12354
|
+
"description": "The level of permission to grant the access token for custom roles management.",
|
|
12355
|
+
"enum": [
|
|
12356
|
+
"read",
|
|
12357
|
+
"write"
|
|
12358
|
+
]
|
|
12359
|
+
},
|
|
12476
12360
|
"deployments": {
|
|
12477
12361
|
"type": "string",
|
|
12478
12362
|
"description": "The level of permission to grant the access token for deployments and deployment statuses.",
|
|
@@ -16513,11 +16397,6 @@
|
|
|
16513
16397
|
"repo_cache_size_limit_in_gb": 14
|
|
16514
16398
|
}
|
|
16515
16399
|
},
|
|
16516
|
-
"actions-workflow-access-to-repository": {
|
|
16517
|
-
"value": {
|
|
16518
|
-
"access_level": "organization"
|
|
16519
|
-
}
|
|
16520
|
-
},
|
|
16521
16400
|
"autolink-items": {
|
|
16522
16401
|
"value": [
|
|
16523
16402
|
{
|