@octokit/openapi 7.2.0 → 7.5.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 +9605 -6
- package/generated/api.github.com.json +405 -33
- 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 +119 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +111 -1
- package/generated/ghes-3.2.deref.json +348 -1
- package/generated/ghes-3.2.json +145 -10
- 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 +348 -3
- package/generated/ghes-3.3.json +145 -11
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
- package/generated/ghes-3.4.deref.json +333 -3
- package/generated/ghes-3.4.json +146 -11
- package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +1548 -135
- 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 +53558 -37094
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +8076 -3526
- package/generated/ghes-3.5.deref.json +427 -15
- package/generated/ghes-3.5.json +240 -23
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +88 -0
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +442 -1
- package/generated/ghes-3.6-diff-to-api.github.com.json +212 -1
- package/generated/ghes-3.6.deref.json +7923 -1
- package/generated/ghes-3.6.json +380 -10
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +733 -3
- package/generated/github.ae-diff-to-api.github.com.deref.json +751 -1
- package/generated/github.ae-diff-to-api.github.com.json +152 -4
- package/generated/github.ae.deref.json +926 -1
- package/generated/github.ae.json +184 -10
- 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.5.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": {
|
|
@@ -4303,6 +4303,11 @@
|
|
|
4303
4303
|
"description": "Whether organization members can fork private organization repositories.",
|
|
4304
4304
|
"default": false
|
|
4305
4305
|
},
|
|
4306
|
+
"web_commit_signoff_required": {
|
|
4307
|
+
"type": "boolean",
|
|
4308
|
+
"description": "Whether contributors to organization repositories are required to sign off on commits they make through GitHub's web interface.",
|
|
4309
|
+
"default": false
|
|
4310
|
+
},
|
|
4306
4311
|
"blog": {
|
|
4307
4312
|
"type": "string",
|
|
4308
4313
|
"example": "\"http://github.blog\""
|
|
@@ -9756,6 +9761,10 @@
|
|
|
9756
9761
|
"example": false,
|
|
9757
9762
|
"nullable": true
|
|
9758
9763
|
},
|
|
9764
|
+
"web_commit_signoff_required": {
|
|
9765
|
+
"type": "boolean",
|
|
9766
|
+
"example": false
|
|
9767
|
+
},
|
|
9759
9768
|
"updated_at": {
|
|
9760
9769
|
"type": "string",
|
|
9761
9770
|
"format": "date-time"
|
|
@@ -10861,10 +10870,52 @@
|
|
|
10861
10870
|
"type": "boolean",
|
|
10862
10871
|
"example": false
|
|
10863
10872
|
},
|
|
10873
|
+
"squash_merge_commit_title": {
|
|
10874
|
+
"type": "string",
|
|
10875
|
+
"example": "PR_TITLE",
|
|
10876
|
+
"enum": [
|
|
10877
|
+
"PR_TITLE",
|
|
10878
|
+
"COMMIT_OR_PR_TITLE"
|
|
10879
|
+
],
|
|
10880
|
+
"description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
|
|
10881
|
+
},
|
|
10882
|
+
"squash_merge_commit_message": {
|
|
10883
|
+
"type": "string",
|
|
10884
|
+
"example": "PR_BODY",
|
|
10885
|
+
"enum": [
|
|
10886
|
+
"PR_BODY",
|
|
10887
|
+
"COMMIT_MESSAGES",
|
|
10888
|
+
"BLANK"
|
|
10889
|
+
],
|
|
10890
|
+
"description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
|
|
10891
|
+
},
|
|
10892
|
+
"merge_commit_title": {
|
|
10893
|
+
"type": "string",
|
|
10894
|
+
"example": "PR_TITLE",
|
|
10895
|
+
"enum": [
|
|
10896
|
+
"PR_TITLE",
|
|
10897
|
+
"MERGE_MESSAGE"
|
|
10898
|
+
],
|
|
10899
|
+
"description": "The default value for a merge commit title.\n\n - `PR_TITLE` - default to the pull request's title.\n - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
|
|
10900
|
+
},
|
|
10901
|
+
"merge_commit_message": {
|
|
10902
|
+
"type": "string",
|
|
10903
|
+
"example": "PR_BODY",
|
|
10904
|
+
"enum": [
|
|
10905
|
+
"PR_BODY",
|
|
10906
|
+
"PR_TITLE",
|
|
10907
|
+
"BLANK"
|
|
10908
|
+
],
|
|
10909
|
+
"description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
|
|
10910
|
+
},
|
|
10864
10911
|
"allow_forking": {
|
|
10865
10912
|
"type": "boolean",
|
|
10866
10913
|
"example": true
|
|
10867
10914
|
},
|
|
10915
|
+
"web_commit_signoff_required": {
|
|
10916
|
+
"type": "boolean",
|
|
10917
|
+
"example": false
|
|
10918
|
+
},
|
|
10868
10919
|
"subscribers_count": {
|
|
10869
10920
|
"type": "integer",
|
|
10870
10921
|
"example": 42
|
|
@@ -11594,6 +11645,10 @@
|
|
|
11594
11645
|
},
|
|
11595
11646
|
"allow_forking": {
|
|
11596
11647
|
"type": "boolean"
|
|
11648
|
+
},
|
|
11649
|
+
"web_commit_signoff_required": {
|
|
11650
|
+
"type": "boolean",
|
|
11651
|
+
"example": false
|
|
11597
11652
|
}
|
|
11598
11653
|
},
|
|
11599
11654
|
"required": [
|
|
@@ -12349,6 +12404,14 @@
|
|
|
12349
12404
|
"write"
|
|
12350
12405
|
]
|
|
12351
12406
|
},
|
|
12407
|
+
"organization_custom_roles": {
|
|
12408
|
+
"type": "string",
|
|
12409
|
+
"description": "The level of permission to grant the access token for custom roles management.",
|
|
12410
|
+
"enum": [
|
|
12411
|
+
"read",
|
|
12412
|
+
"write"
|
|
12413
|
+
]
|
|
12414
|
+
},
|
|
12352
12415
|
"deployments": {
|
|
12353
12416
|
"type": "string",
|
|
12354
12417
|
"description": "The level of permission to grant the access token for deployments and deployment statuses.",
|
|
@@ -13886,6 +13949,40 @@
|
|
|
13886
13949
|
"use_squash_pr_title_as_default": {
|
|
13887
13950
|
"type": "boolean"
|
|
13888
13951
|
},
|
|
13952
|
+
"squash_merge_commit_title": {
|
|
13953
|
+
"type": "string",
|
|
13954
|
+
"enum": [
|
|
13955
|
+
"PR_TITLE",
|
|
13956
|
+
"COMMIT_OR_PR_TITLE"
|
|
13957
|
+
],
|
|
13958
|
+
"description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
|
|
13959
|
+
},
|
|
13960
|
+
"squash_merge_commit_message": {
|
|
13961
|
+
"type": "string",
|
|
13962
|
+
"enum": [
|
|
13963
|
+
"PR_BODY",
|
|
13964
|
+
"COMMIT_MESSAGES",
|
|
13965
|
+
"BLANK"
|
|
13966
|
+
],
|
|
13967
|
+
"description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
|
|
13968
|
+
},
|
|
13969
|
+
"merge_commit_title": {
|
|
13970
|
+
"type": "string",
|
|
13971
|
+
"enum": [
|
|
13972
|
+
"PR_TITLE",
|
|
13973
|
+
"MERGE_MESSAGE"
|
|
13974
|
+
],
|
|
13975
|
+
"description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
|
|
13976
|
+
},
|
|
13977
|
+
"merge_commit_message": {
|
|
13978
|
+
"type": "string",
|
|
13979
|
+
"enum": [
|
|
13980
|
+
"PR_BODY",
|
|
13981
|
+
"PR_TITLE",
|
|
13982
|
+
"BLANK"
|
|
13983
|
+
],
|
|
13984
|
+
"description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
|
|
13985
|
+
},
|
|
13889
13986
|
"allow_merge_commit": {
|
|
13890
13987
|
"type": "boolean"
|
|
13891
13988
|
},
|
|
@@ -13929,6 +14026,40 @@
|
|
|
13929
14026
|
"description": "Whether a squash merge commit can use the pull request title as default.",
|
|
13930
14027
|
"default": false
|
|
13931
14028
|
},
|
|
14029
|
+
"squash_merge_commit_title": {
|
|
14030
|
+
"type": "string",
|
|
14031
|
+
"enum": [
|
|
14032
|
+
"PR_TITLE",
|
|
14033
|
+
"COMMIT_OR_PR_TITLE"
|
|
14034
|
+
],
|
|
14035
|
+
"description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
|
|
14036
|
+
},
|
|
14037
|
+
"squash_merge_commit_message": {
|
|
14038
|
+
"type": "string",
|
|
14039
|
+
"enum": [
|
|
14040
|
+
"PR_BODY",
|
|
14041
|
+
"COMMIT_MESSAGES",
|
|
14042
|
+
"BLANK"
|
|
14043
|
+
],
|
|
14044
|
+
"description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
|
|
14045
|
+
},
|
|
14046
|
+
"merge_commit_title": {
|
|
14047
|
+
"type": "string",
|
|
14048
|
+
"enum": [
|
|
14049
|
+
"PR_TITLE",
|
|
14050
|
+
"MERGE_MESSAGE"
|
|
14051
|
+
],
|
|
14052
|
+
"description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
|
|
14053
|
+
},
|
|
14054
|
+
"merge_commit_message": {
|
|
14055
|
+
"type": "string",
|
|
14056
|
+
"enum": [
|
|
14057
|
+
"PR_BODY",
|
|
14058
|
+
"PR_TITLE",
|
|
14059
|
+
"BLANK"
|
|
14060
|
+
],
|
|
14061
|
+
"description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
|
|
14062
|
+
},
|
|
13932
14063
|
"allow_merge_commit": {
|
|
13933
14064
|
"description": "Whether to allow merge commits for pull requests.",
|
|
13934
14065
|
"default": true,
|
|
@@ -13939,6 +14070,11 @@
|
|
|
13939
14070
|
"description": "Whether to allow forking this repo",
|
|
13940
14071
|
"type": "boolean"
|
|
13941
14072
|
},
|
|
14073
|
+
"web_commit_signoff_required": {
|
|
14074
|
+
"description": "Whether to require contributors to sign off on web-based commits",
|
|
14075
|
+
"default": false,
|
|
14076
|
+
"type": "boolean"
|
|
14077
|
+
},
|
|
13942
14078
|
"subscribers_count": {
|
|
13943
14079
|
"type": "integer"
|
|
13944
14080
|
},
|
|
@@ -14773,6 +14909,40 @@
|
|
|
14773
14909
|
"use_squash_pr_title_as_default": {
|
|
14774
14910
|
"type": "boolean"
|
|
14775
14911
|
},
|
|
14912
|
+
"squash_merge_commit_title": {
|
|
14913
|
+
"type": "string",
|
|
14914
|
+
"enum": [
|
|
14915
|
+
"PR_TITLE",
|
|
14916
|
+
"COMMIT_OR_PR_TITLE"
|
|
14917
|
+
],
|
|
14918
|
+
"description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
|
|
14919
|
+
},
|
|
14920
|
+
"squash_merge_commit_message": {
|
|
14921
|
+
"type": "string",
|
|
14922
|
+
"enum": [
|
|
14923
|
+
"PR_BODY",
|
|
14924
|
+
"COMMIT_MESSAGES",
|
|
14925
|
+
"BLANK"
|
|
14926
|
+
],
|
|
14927
|
+
"description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
|
|
14928
|
+
},
|
|
14929
|
+
"merge_commit_title": {
|
|
14930
|
+
"type": "string",
|
|
14931
|
+
"enum": [
|
|
14932
|
+
"PR_TITLE",
|
|
14933
|
+
"MERGE_MESSAGE"
|
|
14934
|
+
],
|
|
14935
|
+
"description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
|
|
14936
|
+
},
|
|
14937
|
+
"merge_commit_message": {
|
|
14938
|
+
"type": "string",
|
|
14939
|
+
"enum": [
|
|
14940
|
+
"PR_BODY",
|
|
14941
|
+
"PR_TITLE",
|
|
14942
|
+
"BLANK"
|
|
14943
|
+
],
|
|
14944
|
+
"description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
|
|
14945
|
+
},
|
|
14776
14946
|
"allow_merge_commit": {
|
|
14777
14947
|
"type": "boolean"
|
|
14778
14948
|
},
|
|
@@ -14816,6 +14986,40 @@
|
|
|
14816
14986
|
"description": "Whether a squash merge commit can use the pull request title as default.",
|
|
14817
14987
|
"default": false
|
|
14818
14988
|
},
|
|
14989
|
+
"squash_merge_commit_title": {
|
|
14990
|
+
"type": "string",
|
|
14991
|
+
"enum": [
|
|
14992
|
+
"PR_TITLE",
|
|
14993
|
+
"COMMIT_OR_PR_TITLE"
|
|
14994
|
+
],
|
|
14995
|
+
"description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
|
|
14996
|
+
},
|
|
14997
|
+
"squash_merge_commit_message": {
|
|
14998
|
+
"type": "string",
|
|
14999
|
+
"enum": [
|
|
15000
|
+
"PR_BODY",
|
|
15001
|
+
"COMMIT_MESSAGES",
|
|
15002
|
+
"BLANK"
|
|
15003
|
+
],
|
|
15004
|
+
"description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
|
|
15005
|
+
},
|
|
15006
|
+
"merge_commit_title": {
|
|
15007
|
+
"type": "string",
|
|
15008
|
+
"enum": [
|
|
15009
|
+
"PR_TITLE",
|
|
15010
|
+
"MERGE_MESSAGE"
|
|
15011
|
+
],
|
|
15012
|
+
"description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
|
|
15013
|
+
},
|
|
15014
|
+
"merge_commit_message": {
|
|
15015
|
+
"type": "string",
|
|
15016
|
+
"enum": [
|
|
15017
|
+
"PR_BODY",
|
|
15018
|
+
"PR_TITLE",
|
|
15019
|
+
"BLANK"
|
|
15020
|
+
],
|
|
15021
|
+
"description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
|
|
15022
|
+
},
|
|
14819
15023
|
"allow_merge_commit": {
|
|
14820
15024
|
"description": "Whether to allow merge commits for pull requests.",
|
|
14821
15025
|
"default": true,
|
|
@@ -14826,6 +15030,11 @@
|
|
|
14826
15030
|
"description": "Whether to allow forking this repo",
|
|
14827
15031
|
"type": "boolean"
|
|
14828
15032
|
},
|
|
15033
|
+
"web_commit_signoff_required": {
|
|
15034
|
+
"description": "Whether to require contributors to sign off on web-based commits",
|
|
15035
|
+
"default": false,
|
|
15036
|
+
"type": "boolean"
|
|
15037
|
+
},
|
|
14829
15038
|
"subscribers_count": {
|
|
14830
15039
|
"type": "integer"
|
|
14831
15040
|
},
|
|
@@ -15914,6 +16123,7 @@
|
|
|
15914
16123
|
"members_can_create_public_pages": true,
|
|
15915
16124
|
"members_can_create_private_pages": true,
|
|
15916
16125
|
"members_can_fork_private_repositories": false,
|
|
16126
|
+
"web_commit_signoff_required": false,
|
|
15917
16127
|
"updated_at": "2014-03-03T18:58:10Z"
|
|
15918
16128
|
}
|
|
15919
16129
|
},
|
|
@@ -16706,6 +16916,7 @@
|
|
|
16706
16916
|
"delete_branch_on_merge": true,
|
|
16707
16917
|
"allow_merge_commit": true,
|
|
16708
16918
|
"allow_forking": true,
|
|
16919
|
+
"web_commit_signoff_required": false,
|
|
16709
16920
|
"subscribers_count": 42,
|
|
16710
16921
|
"network_count": 0,
|
|
16711
16922
|
"organization": {
|