@octokit/openapi 7.12.1 → 7.14.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 +739 -6
- package/generated/api.github.com.json +290 -4
- 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 +5 -2
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +3 -2
- package/generated/ghes-3.2.deref.json +9 -6
- package/generated/ghes-3.2.json +5 -4
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +2 -2
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +2 -2
- package/generated/ghes-3.3.deref.json +9 -6
- package/generated/ghes-3.3.json +5 -4
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +4 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +2 -1
- package/generated/ghes-3.4.deref.json +9 -6
- package/generated/ghes-3.4.json +5 -4
- package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +11 -0
- 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 +6 -2
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +3 -2
- package/generated/ghes-3.5.deref.json +116 -6
- package/generated/ghes-3.5.json +111 -4
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +106 -11
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +8888 -1
- package/generated/ghes-3.6-diff-to-api.github.com.json +376 -1
- package/generated/ghes-3.6.deref.json +779 -116
- package/generated/ghes-3.6.json +542 -113
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +6 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +28 -2
- package/generated/github.ae-diff-to-api.github.com.json +9 -2
- package/generated/github.ae.deref.json +76 -6
- package/generated/github.ae.json +55 -4
- package/package.json +1 -1
package/generated/ghes-3.5.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.14.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": {
|
|
@@ -30100,7 +30100,7 @@
|
|
|
30100
30100
|
},
|
|
30101
30101
|
"put": {
|
|
30102
30102
|
"summary": "Create or update file contents",
|
|
30103
|
-
"description": "Creates a new file or replaces an existing file in a repository. You must authenticate using an access token with the `workflow` scope to use this endpoint.",
|
|
30103
|
+
"description": "Creates a new file or replaces an existing file in a repository. You must authenticate using an access token with the `workflow` scope to use this endpoint.\n\n**Note:** If you use this endpoint and the \"[Delete a file](https://docs.github.com/enterprise-server@3.5/rest/reference/repos/#delete-file)\" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.",
|
|
30104
30104
|
"tags": [
|
|
30105
30105
|
"repos"
|
|
30106
30106
|
],
|
|
@@ -30279,7 +30279,7 @@
|
|
|
30279
30279
|
},
|
|
30280
30280
|
"delete": {
|
|
30281
30281
|
"summary": "Delete a file",
|
|
30282
|
-
"description": "Deletes a file in a repository.\n\nYou can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.\n\nThe `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.\n\nYou must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.",
|
|
30282
|
+
"description": "Deletes a file in a repository.\n\nYou can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.\n\nThe `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.\n\nYou must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.\n\n**Note:** If you use this endpoint and the \"[Create or update file contents](https://docs.github.com/enterprise-server@3.5/rest/reference/repos/#create-or-update-file-contents)\" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.",
|
|
30283
30283
|
"tags": [
|
|
30284
30284
|
"repos"
|
|
30285
30285
|
],
|
|
@@ -53641,6 +53641,112 @@
|
|
|
53641
53641
|
}
|
|
53642
53642
|
}
|
|
53643
53643
|
},
|
|
53644
|
+
"/orgs/{org}/external-group/{group_id}": {
|
|
53645
|
+
"get": {
|
|
53646
|
+
"summary": "Get an external group",
|
|
53647
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in 3.6",
|
|
53648
|
+
"tags": [
|
|
53649
|
+
"teams"
|
|
53650
|
+
],
|
|
53651
|
+
"operationId": "teams/external-idp-group-info-for-org",
|
|
53652
|
+
"externalDocs": {
|
|
53653
|
+
"description": "API method documentation",
|
|
53654
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#external-idp-group-info-for-an-organization"
|
|
53655
|
+
},
|
|
53656
|
+
"x-octokit": {
|
|
53657
|
+
"ghes-3.6": "removed"
|
|
53658
|
+
},
|
|
53659
|
+
"responses": {
|
|
53660
|
+
"501": {
|
|
53661
|
+
"description": "Not Implemented"
|
|
53662
|
+
}
|
|
53663
|
+
}
|
|
53664
|
+
}
|
|
53665
|
+
},
|
|
53666
|
+
"/orgs/{org}/external-groups": {
|
|
53667
|
+
"get": {
|
|
53668
|
+
"summary": "List external groups in an organization",
|
|
53669
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in 3.6",
|
|
53670
|
+
"tags": [
|
|
53671
|
+
"teams"
|
|
53672
|
+
],
|
|
53673
|
+
"operationId": "teams/list-external-idp-groups-for-org",
|
|
53674
|
+
"externalDocs": {
|
|
53675
|
+
"description": "API method documentation",
|
|
53676
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#list-external-idp-groups-for-an-organization"
|
|
53677
|
+
},
|
|
53678
|
+
"x-octokit": {
|
|
53679
|
+
"ghes-3.6": "removed"
|
|
53680
|
+
},
|
|
53681
|
+
"responses": {
|
|
53682
|
+
"501": {
|
|
53683
|
+
"description": "Not Implemented"
|
|
53684
|
+
}
|
|
53685
|
+
}
|
|
53686
|
+
}
|
|
53687
|
+
},
|
|
53688
|
+
"/orgs/{org}/teams/{team_slug}/external-groups": {
|
|
53689
|
+
"get": {
|
|
53690
|
+
"summary": "List a connection between an external group and a team",
|
|
53691
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in 3.6",
|
|
53692
|
+
"tags": [
|
|
53693
|
+
"teams"
|
|
53694
|
+
],
|
|
53695
|
+
"operationId": "teams/list-linked-external-idp-groups-to-team-for-org",
|
|
53696
|
+
"externalDocs": {
|
|
53697
|
+
"description": "API method documentation",
|
|
53698
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#list-external-idp-group-team-connection"
|
|
53699
|
+
},
|
|
53700
|
+
"x-octokit": {
|
|
53701
|
+
"ghes-3.6": "removed"
|
|
53702
|
+
},
|
|
53703
|
+
"responses": {
|
|
53704
|
+
"501": {
|
|
53705
|
+
"description": "Not Implemented"
|
|
53706
|
+
}
|
|
53707
|
+
}
|
|
53708
|
+
},
|
|
53709
|
+
"delete": {
|
|
53710
|
+
"summary": "Remove the connection between an external group and a team",
|
|
53711
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in 3.6",
|
|
53712
|
+
"tags": [
|
|
53713
|
+
"teams"
|
|
53714
|
+
],
|
|
53715
|
+
"operationId": "teams/unlink-external-idp-group-from-team-for-org",
|
|
53716
|
+
"externalDocs": {
|
|
53717
|
+
"description": "API method documentation",
|
|
53718
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#unlink-external-idp-group-team-connection"
|
|
53719
|
+
},
|
|
53720
|
+
"x-octokit": {
|
|
53721
|
+
"ghes-3.6": "removed"
|
|
53722
|
+
},
|
|
53723
|
+
"responses": {
|
|
53724
|
+
"501": {
|
|
53725
|
+
"description": "Not Implemented"
|
|
53726
|
+
}
|
|
53727
|
+
}
|
|
53728
|
+
},
|
|
53729
|
+
"patch": {
|
|
53730
|
+
"summary": "Update the connection between an external group and a team",
|
|
53731
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in 3.6",
|
|
53732
|
+
"tags": [
|
|
53733
|
+
"teams"
|
|
53734
|
+
],
|
|
53735
|
+
"operationId": "teams/link-external-idp-group-to-team-for-org",
|
|
53736
|
+
"externalDocs": {
|
|
53737
|
+
"description": "API method documentation",
|
|
53738
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#link-external-idp-group-team-connection"
|
|
53739
|
+
},
|
|
53740
|
+
"x-octokit": {
|
|
53741
|
+
"ghes-3.6": "removed"
|
|
53742
|
+
},
|
|
53743
|
+
"responses": {
|
|
53744
|
+
"501": {
|
|
53745
|
+
"description": "Not Implemented"
|
|
53746
|
+
}
|
|
53747
|
+
}
|
|
53748
|
+
}
|
|
53749
|
+
},
|
|
53644
53750
|
"/repos/{owner}/{repo}/actions/permissions/workflow": {
|
|
53645
53751
|
"get": {
|
|
53646
53752
|
"summary": "Get default workflow permissions for a repository",
|
|
@@ -65387,6 +65493,7 @@
|
|
|
65387
65493
|
"node_id",
|
|
65388
65494
|
"head_branch",
|
|
65389
65495
|
"run_number",
|
|
65496
|
+
"display_title",
|
|
65390
65497
|
"event",
|
|
65391
65498
|
"status",
|
|
65392
65499
|
"conclusion",
|
|
@@ -102062,7 +102169,7 @@
|
|
|
102062
102169
|
}
|
|
102063
102170
|
},
|
|
102064
102171
|
"code_scanning_forbidden_write": {
|
|
102065
|
-
"description": "Response if the repository is archived or if
|
|
102172
|
+
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository",
|
|
102066
102173
|
"content": {
|
|
102067
102174
|
"application/json": {
|
|
102068
102175
|
"schema": {
|
|
@@ -17966,6 +17966,79 @@
|
|
|
17966
17966
|
"style": "form"
|
|
17967
17967
|
}
|
|
17968
17968
|
]
|
|
17969
|
+
},
|
|
17970
|
+
"responses": {
|
|
17971
|
+
"changed": {
|
|
17972
|
+
"200": {
|
|
17973
|
+
"content": {
|
|
17974
|
+
"changed": {
|
|
17975
|
+
"application/json": {
|
|
17976
|
+
"schema_changed": {
|
|
17977
|
+
"properties_changed": {
|
|
17978
|
+
"changed": {
|
|
17979
|
+
"workflow_runs": {
|
|
17980
|
+
"items_changed": {
|
|
17981
|
+
"properties_changed": {
|
|
17982
|
+
"removed": [
|
|
17983
|
+
"display_title"
|
|
17984
|
+
]
|
|
17985
|
+
}
|
|
17986
|
+
}
|
|
17987
|
+
}
|
|
17988
|
+
}
|
|
17989
|
+
}
|
|
17990
|
+
}
|
|
17991
|
+
}
|
|
17992
|
+
}
|
|
17993
|
+
}
|
|
17994
|
+
}
|
|
17995
|
+
}
|
|
17996
|
+
}
|
|
17997
|
+
}
|
|
17998
|
+
},
|
|
17999
|
+
"/repos/{owner}/{repo}/actions/runs/{run_id}": {
|
|
18000
|
+
"get": {
|
|
18001
|
+
"responses": {
|
|
18002
|
+
"changed": {
|
|
18003
|
+
"200": {
|
|
18004
|
+
"content": {
|
|
18005
|
+
"changed": {
|
|
18006
|
+
"application/json": {
|
|
18007
|
+
"schema_changed": {
|
|
18008
|
+
"properties_changed": {
|
|
18009
|
+
"removed": [
|
|
18010
|
+
"display_title"
|
|
18011
|
+
]
|
|
18012
|
+
}
|
|
18013
|
+
}
|
|
18014
|
+
}
|
|
18015
|
+
}
|
|
18016
|
+
}
|
|
18017
|
+
}
|
|
18018
|
+
}
|
|
18019
|
+
}
|
|
18020
|
+
}
|
|
18021
|
+
},
|
|
18022
|
+
"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}": {
|
|
18023
|
+
"get": {
|
|
18024
|
+
"responses": {
|
|
18025
|
+
"changed": {
|
|
18026
|
+
"200": {
|
|
18027
|
+
"content": {
|
|
18028
|
+
"changed": {
|
|
18029
|
+
"application/json": {
|
|
18030
|
+
"schema_changed": {
|
|
18031
|
+
"properties_changed": {
|
|
18032
|
+
"removed": [
|
|
18033
|
+
"display_title"
|
|
18034
|
+
]
|
|
18035
|
+
}
|
|
18036
|
+
}
|
|
18037
|
+
}
|
|
18038
|
+
}
|
|
18039
|
+
}
|
|
18040
|
+
}
|
|
18041
|
+
}
|
|
17969
18042
|
}
|
|
17970
18043
|
}
|
|
17971
18044
|
},
|
|
@@ -17984,6 +18057,33 @@
|
|
|
17984
18057
|
"style": "form"
|
|
17985
18058
|
}
|
|
17986
18059
|
]
|
|
18060
|
+
},
|
|
18061
|
+
"responses": {
|
|
18062
|
+
"changed": {
|
|
18063
|
+
"200": {
|
|
18064
|
+
"content": {
|
|
18065
|
+
"changed": {
|
|
18066
|
+
"application/json": {
|
|
18067
|
+
"schema_changed": {
|
|
18068
|
+
"properties_changed": {
|
|
18069
|
+
"changed": {
|
|
18070
|
+
"workflow_runs": {
|
|
18071
|
+
"items_changed": {
|
|
18072
|
+
"properties_changed": {
|
|
18073
|
+
"removed": [
|
|
18074
|
+
"display_title"
|
|
18075
|
+
]
|
|
18076
|
+
}
|
|
18077
|
+
}
|
|
18078
|
+
}
|
|
18079
|
+
}
|
|
18080
|
+
}
|
|
18081
|
+
}
|
|
18082
|
+
}
|
|
18083
|
+
}
|
|
18084
|
+
}
|
|
18085
|
+
}
|
|
18086
|
+
}
|
|
17987
18087
|
}
|
|
17988
18088
|
}
|
|
17989
18089
|
},
|
|
@@ -18645,12 +18745,6 @@
|
|
|
18645
18745
|
"delete",
|
|
18646
18746
|
"patch"
|
|
18647
18747
|
],
|
|
18648
|
-
"/orgs/{org}/external-group/{group_id}": [
|
|
18649
|
-
"get"
|
|
18650
|
-
],
|
|
18651
|
-
"/orgs/{org}/external-groups": [
|
|
18652
|
-
"get"
|
|
18653
|
-
],
|
|
18654
18748
|
"/orgs/{org}/failed_invitations": [
|
|
18655
18749
|
"get"
|
|
18656
18750
|
],
|
|
@@ -18727,11 +18821,6 @@
|
|
|
18727
18821
|
"/orgs/{org}/team-sync/groups": [
|
|
18728
18822
|
"get"
|
|
18729
18823
|
],
|
|
18730
|
-
"/orgs/{org}/teams/{team_slug}/external-groups": [
|
|
18731
|
-
"get",
|
|
18732
|
-
"delete",
|
|
18733
|
-
"patch"
|
|
18734
|
-
],
|
|
18735
18824
|
"/orgs/{org}/teams/{team_slug}/invitations": [
|
|
18736
18825
|
"get"
|
|
18737
18826
|
],
|
|
@@ -18766,6 +18855,12 @@
|
|
|
18766
18855
|
"put",
|
|
18767
18856
|
"delete"
|
|
18768
18857
|
],
|
|
18858
|
+
"/repos/{owner}/{repo}/code-scanning/codeql/databases": [
|
|
18859
|
+
"get"
|
|
18860
|
+
],
|
|
18861
|
+
"/repos/{owner}/{repo}/code-scanning/codeql/databases/{language}": [
|
|
18862
|
+
"get"
|
|
18863
|
+
],
|
|
18769
18864
|
"/repos/{owner}/{repo}/codespaces": [
|
|
18770
18865
|
"get",
|
|
18771
18866
|
"post"
|