@octokit/openapi 5.8.0 → 5.10.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 +393 -1
- package/generated/api.github.com.json +58 -4
- package/generated/ghes-2.22-diff-to-ghes-3.0.deref.json +1 -1
- package/generated/ghes-2.22-diff-to-ghes-3.0.json +1 -1
- package/generated/ghes-2.22.deref.json +1 -1
- package/generated/ghes-2.22.json +1 -1
- package/generated/ghes-3.0-diff-to-ghes-3.1.deref.json +1 -1
- package/generated/ghes-3.0-diff-to-ghes-3.1.json +1 -1
- package/generated/ghes-3.0.deref.json +4 -1
- package/generated/ghes-3.0.json +4 -1
- package/generated/ghes-3.1-diff-to-ghes-3.2.deref.json +1 -1
- package/generated/ghes-3.1-diff-to-ghes-3.2.json +1 -1
- package/generated/ghes-3.1.deref.json +4 -1
- package/generated/ghes-3.1.json +4 -1
- package/generated/ghes-3.2-anicca-diff-to-api.github.com.deref.json +3 -0
- 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.deref.json +18 -1
- package/generated/ghes-3.2.json +19 -4
- package/generated/github.ae-diff-to-api.github.com.deref.json +1 -1
- package/generated/github.ae-diff-to-api.github.com.json +1 -1
- package/generated/github.ae.deref.json +393 -1
- package/generated/github.ae.json +58 -4
- package/package.json +7 -5
package/generated/github.ae.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.10.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": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
|
|
@@ -11749,6 +11749,59 @@
|
|
|
11749
11749
|
"x-octokit": {}
|
|
11750
11750
|
}
|
|
11751
11751
|
},
|
|
11752
|
+
"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs": {
|
|
11753
|
+
"get": {
|
|
11754
|
+
"summary": "List jobs for a workflow run attempt",
|
|
11755
|
+
"description": "Lists jobs for a specific workflow run attempt. Anyone with read access to the repository can use this endpoint. If the repository is private you must use an access token with the `repo` scope. GitHub Apps must have the `actions:read` permission to use this endpoint. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#parameters).",
|
|
11756
|
+
"tags": ["actions"],
|
|
11757
|
+
"operationId": "actions/list-jobs-for-workflow-run-attempt",
|
|
11758
|
+
"externalDocs": {
|
|
11759
|
+
"description": "API method documentation",
|
|
11760
|
+
"url": "https://docs.github.com/github-ae@latest/rest/reference/actions#list-jobs-for-a-workflow-run-attempt"
|
|
11761
|
+
},
|
|
11762
|
+
"parameters": [
|
|
11763
|
+
{ "$ref": "#/components/parameters/owner" },
|
|
11764
|
+
{ "$ref": "#/components/parameters/repo" },
|
|
11765
|
+
{ "$ref": "#/components/parameters/run-id" },
|
|
11766
|
+
{ "$ref": "#/components/parameters/attempt-number" },
|
|
11767
|
+
{ "$ref": "#/components/parameters/per-page" },
|
|
11768
|
+
{ "$ref": "#/components/parameters/page" }
|
|
11769
|
+
],
|
|
11770
|
+
"responses": {
|
|
11771
|
+
"200": {
|
|
11772
|
+
"description": "Response",
|
|
11773
|
+
"content": {
|
|
11774
|
+
"application/json": {
|
|
11775
|
+
"schema": {
|
|
11776
|
+
"type": "object",
|
|
11777
|
+
"required": ["total_count", "jobs"],
|
|
11778
|
+
"properties": {
|
|
11779
|
+
"total_count": { "type": "integer" },
|
|
11780
|
+
"jobs": {
|
|
11781
|
+
"type": "array",
|
|
11782
|
+
"items": { "$ref": "#/components/schemas/job" }
|
|
11783
|
+
}
|
|
11784
|
+
}
|
|
11785
|
+
},
|
|
11786
|
+
"examples": {
|
|
11787
|
+
"default": { "$ref": "#/components/examples/job-paginated" }
|
|
11788
|
+
}
|
|
11789
|
+
}
|
|
11790
|
+
},
|
|
11791
|
+
"headers": { "Link": { "$ref": "#/components/headers/link" } }
|
|
11792
|
+
},
|
|
11793
|
+
"404": { "$ref": "#/components/responses/not_found" }
|
|
11794
|
+
},
|
|
11795
|
+
"x-github": {
|
|
11796
|
+
"githubCloudOnly": false,
|
|
11797
|
+
"enabledForGitHubApps": true,
|
|
11798
|
+
"previews": [],
|
|
11799
|
+
"category": "actions",
|
|
11800
|
+
"subcategory": "workflow-jobs"
|
|
11801
|
+
},
|
|
11802
|
+
"x-octokit": {}
|
|
11803
|
+
}
|
|
11804
|
+
},
|
|
11752
11805
|
"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs": {
|
|
11753
11806
|
"get": {
|
|
11754
11807
|
"summary": "Download workflow run attempt logs",
|
|
@@ -25936,6 +25989,9 @@
|
|
|
25936
25989
|
}
|
|
25937
25990
|
}
|
|
25938
25991
|
}
|
|
25992
|
+
},
|
|
25993
|
+
"422": {
|
|
25994
|
+
"description": "Response if you upload an asset with the same filename as another uploaded asset"
|
|
25939
25995
|
}
|
|
25940
25996
|
},
|
|
25941
25997
|
"x-github": {
|
|
@@ -32428,9 +32484,7 @@
|
|
|
32428
32484
|
"application/json": {
|
|
32429
32485
|
"schema": { "$ref": "#/components/schemas/code-of-conduct" },
|
|
32430
32486
|
"examples": {
|
|
32431
|
-
"default": {
|
|
32432
|
-
"$ref": "#/components/examples/code-of-conduct-2"
|
|
32433
|
-
}
|
|
32487
|
+
"default": { "$ref": "#/components/examples/code-of-conduct" }
|
|
32434
32488
|
}
|
|
32435
32489
|
}
|
|
32436
32490
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "5.
|
|
6
|
+
"version": "5.10.0",
|
|
7
7
|
"description": "GitHub's official OpenAPI spec with Octokit extensions",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"files": [
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"download": "node scripts/download.js",
|
|
15
|
-
"build": "node scripts/build.js"
|
|
15
|
+
"build": "node scripts/build.js",
|
|
16
|
+
"test": "node scripts/test.js"
|
|
16
17
|
},
|
|
17
18
|
"repository": "github:octokit/openapi",
|
|
18
19
|
"keywords": [
|
|
@@ -29,8 +30,8 @@
|
|
|
29
30
|
"github-enterprise-server-versions": "^1.1.0",
|
|
30
31
|
"lodash": "^4.17.21",
|
|
31
32
|
"map-obj": "^4.3.0",
|
|
32
|
-
"prettier": "^2.2
|
|
33
|
-
"semantic-release": "^
|
|
33
|
+
"prettier": "^2.6.2",
|
|
34
|
+
"semantic-release": "^19.0.3",
|
|
34
35
|
"semantic-release-plugin-update-version-in-files": "^1.1.0",
|
|
35
36
|
"sort-keys": "^4.2.0"
|
|
36
37
|
},
|
|
@@ -39,7 +40,8 @@
|
|
|
39
40
|
},
|
|
40
41
|
"release": {
|
|
41
42
|
"branches": [
|
|
42
|
-
"main"
|
|
43
|
+
"main",
|
|
44
|
+
"beta"
|
|
43
45
|
],
|
|
44
46
|
"plugins": [
|
|
45
47
|
"@semantic-release/commit-analyzer",
|