@octokit/openapi 7.7.0 → 7.8.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 +619 -24
- package/generated/api.github.com.json +44 -20
- 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 +356 -4
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +19 -4
- package/generated/ghes-3.2.deref.json +460 -15
- package/generated/ghes-3.2.json +31 -15
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +19 -3
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +14 -3
- package/generated/ghes-3.3.deref.json +467 -16
- package/generated/ghes-3.3.json +38 -16
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +145 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +5 -1
- package/generated/ghes-3.4.deref.json +495 -16
- package/generated/ghes-3.4.json +38 -16
- 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 +418 -4
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +22 -4
- package/generated/ghes-3.5.deref.json +508 -16
- package/generated/ghes-3.5.json +38 -16
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +15 -0
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +28 -2
- package/generated/ghes-3.6-diff-to-api.github.com.json +16 -2
- package/generated/ghes-3.6.deref.json +508 -16
- package/generated/ghes-3.6.json +38 -16
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +15 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +363 -5
- package/generated/github.ae-diff-to-api.github.com.json +26 -5
- package/generated/github.ae.deref.json +467 -16
- package/generated/github.ae.json +38 -16
- 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.8.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": {
|
|
@@ -6396,6 +6396,9 @@
|
|
|
6396
6396
|
},
|
|
6397
6397
|
"500": {
|
|
6398
6398
|
"$ref": "#/components/responses/internal_error"
|
|
6399
|
+
},
|
|
6400
|
+
"503": {
|
|
6401
|
+
"$ref": "#/components/responses/service_unavailable"
|
|
6399
6402
|
}
|
|
6400
6403
|
},
|
|
6401
6404
|
"x-github": {
|
|
@@ -6954,7 +6957,7 @@
|
|
|
6954
6957
|
"/repos/{template_owner}/{template_repo}/generate": {
|
|
6955
6958
|
"post": {
|
|
6956
6959
|
"summary": "Create a repository using a template",
|
|
6957
|
-
"description": "Creates a new repository using a repository template. Use the `template_owner` and `template_repo` route parameters to specify the repository to use as the template.
|
|
6960
|
+
"description": "Creates a new repository using a repository template. Use the `template_owner` and `template_repo` route parameters to specify the repository to use as the template. If the repository is not public, the authenticated user must own or be a member of an organization that owns the repository. To check if a repository is available to use as a template, get the repository's information using the [Get a repository](https://docs.github.com/enterprise-server@3.5/rest/reference/repos#get-a-repository) endpoint and check that the `is_template` key is `true`.\n\n**OAuth scope requirements**\n\nWhen using [OAuth](https://docs.github.com/enterprise-server@3.5/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/), authorizations must include:\n\n* `public_repo` scope or `repo` scope to create a public repository. Note: For GitHub AE, use `repo` scope to create an internal repository.\n* `repo` scope to create a private repository",
|
|
6958
6961
|
"tags": [
|
|
6959
6962
|
"repos"
|
|
6960
6963
|
],
|
|
@@ -11638,6 +11641,10 @@
|
|
|
11638
11641
|
"starred_at": {
|
|
11639
11642
|
"type": "string",
|
|
11640
11643
|
"example": "\"2020-07-09T00:17:42Z\""
|
|
11644
|
+
},
|
|
11645
|
+
"anonymous_access_enabled": {
|
|
11646
|
+
"type": "boolean",
|
|
11647
|
+
"description": "Whether anonymous git access is enabled for this repository"
|
|
11641
11648
|
}
|
|
11642
11649
|
},
|
|
11643
11650
|
"required": [
|
|
@@ -19451,6 +19458,10 @@
|
|
|
19451
19458
|
"starred_at": {
|
|
19452
19459
|
"type": "string",
|
|
19453
19460
|
"example": "\"2020-07-09T00:17:42Z\""
|
|
19461
|
+
},
|
|
19462
|
+
"anonymous_access_enabled": {
|
|
19463
|
+
"type": "boolean",
|
|
19464
|
+
"description": "Whether anonymous git access is enabled for this repository"
|
|
19454
19465
|
}
|
|
19455
19466
|
},
|
|
19456
19467
|
"required": [
|
|
@@ -19654,6 +19665,11 @@
|
|
|
19654
19665
|
"nullable": true,
|
|
19655
19666
|
"type": "string",
|
|
19656
19667
|
"description": "Detailed documentation for the rule as GitHub Flavored Markdown."
|
|
19668
|
+
},
|
|
19669
|
+
"help_uri": {
|
|
19670
|
+
"nullable": true,
|
|
19671
|
+
"type": "string",
|
|
19672
|
+
"description": "A link to the documentation for the rule used to detect the alert."
|
|
19657
19673
|
}
|
|
19658
19674
|
}
|
|
19659
19675
|
},
|
|
@@ -26189,7 +26205,8 @@
|
|
|
26189
26205
|
"security",
|
|
26190
26206
|
"external/cwe/cwe-022"
|
|
26191
26207
|
],
|
|
26192
|
-
"help": "# Arbitrary file write during zip extraction (\"Zip Slip\")\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ..."
|
|
26208
|
+
"help": "# Arbitrary file write during zip extraction (\"Zip Slip\")\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...",
|
|
26209
|
+
"help_uri": "https://codeql.github.com/"
|
|
26193
26210
|
},
|
|
26194
26211
|
"tool": {
|
|
26195
26212
|
"name": "CodeQL",
|
|
@@ -26259,7 +26276,8 @@
|
|
|
26259
26276
|
"security",
|
|
26260
26277
|
"external/cwe/cwe-022"
|
|
26261
26278
|
],
|
|
26262
|
-
"help": "# Arbitrary file write during zip extraction (\"Zip Slip\")\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ..."
|
|
26279
|
+
"help": "# Arbitrary file write during zip extraction (\"Zip Slip\")\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...",
|
|
26280
|
+
"help_uri": "https://codeql.github.com/"
|
|
26263
26281
|
},
|
|
26264
26282
|
"tool": {
|
|
26265
26283
|
"name": "CodeQL",
|