@octokit/openapi 7.3.0 → 7.4.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.
Files changed (33) hide show
  1. package/generated/api.github.com.deref.json +8561 -1
  2. package/generated/api.github.com.json +322 -10
  3. package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
  4. package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
  5. package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +103 -1
  6. package/generated/ghes-3.2-diff-to-ghes-3.3.json +103 -1
  7. package/generated/ghes-3.2.deref.json +140 -1
  8. package/generated/ghes-3.2.json +137 -10
  9. package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +1 -1
  10. package/generated/ghes-3.3-diff-to-ghes-3.4.json +1 -1
  11. package/generated/ghes-3.3.deref.json +140 -1
  12. package/generated/ghes-3.3.json +137 -10
  13. package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
  14. package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
  15. package/generated/ghes-3.4.deref.json +141 -1
  16. package/generated/ghes-3.4.json +138 -10
  17. package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +764 -0
  18. package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
  19. package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
  20. package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +125 -1
  21. package/generated/ghes-3.5-diff-to-ghes-3.6.json +124 -4
  22. package/generated/ghes-3.5.deref.json +151 -1
  23. package/generated/ghes-3.5.json +148 -10
  24. package/generated/ghes-3.6-diff-to-api.github.com.deref.json +311 -1
  25. package/generated/ghes-3.6-diff-to-api.github.com.json +175 -1
  26. package/generated/ghes-3.6.deref.json +6997 -1
  27. package/generated/ghes-3.6.json +322 -10
  28. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +701 -3
  29. package/generated/github.ae-diff-to-api.github.com.deref.json +115 -1
  30. package/generated/github.ae-diff-to-api.github.com.json +114 -4
  31. package/generated/github.ae.deref.json +129 -1
  32. package/generated/github.ae.json +126 -10
  33. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.3.0",
4
+ "version": "7.4.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": {
@@ -10861,6 +10861,44 @@
10861
10861
  "type": "boolean",
10862
10862
  "example": false
10863
10863
  },
10864
+ "squash_merge_commit_title": {
10865
+ "type": "string",
10866
+ "example": "PR_TITLE",
10867
+ "enum": [
10868
+ "PR_TITLE",
10869
+ "COMMIT_OR_PR_TITLE"
10870
+ ],
10871
+ "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)."
10872
+ },
10873
+ "squash_merge_commit_message": {
10874
+ "type": "string",
10875
+ "example": "PR_BODY",
10876
+ "enum": [
10877
+ "PR_BODY",
10878
+ "COMMIT_MESSAGES",
10879
+ "BLANK"
10880
+ ],
10881
+ "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."
10882
+ },
10883
+ "merge_commit_title": {
10884
+ "type": "string",
10885
+ "example": "PR_TITLE",
10886
+ "enum": [
10887
+ "PR_TITLE",
10888
+ "MERGE_MESSAGE"
10889
+ ],
10890
+ "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)."
10891
+ },
10892
+ "merge_commit_message": {
10893
+ "type": "string",
10894
+ "example": "PR_BODY",
10895
+ "enum": [
10896
+ "PR_BODY",
10897
+ "PR_TITLE",
10898
+ "BLANK"
10899
+ ],
10900
+ "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."
10901
+ },
10864
10902
  "allow_forking": {
10865
10903
  "type": "boolean",
10866
10904
  "example": true
@@ -13894,6 +13932,40 @@
13894
13932
  "use_squash_pr_title_as_default": {
13895
13933
  "type": "boolean"
13896
13934
  },
13935
+ "squash_merge_commit_title": {
13936
+ "type": "string",
13937
+ "enum": [
13938
+ "PR_TITLE",
13939
+ "COMMIT_OR_PR_TITLE"
13940
+ ],
13941
+ "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)."
13942
+ },
13943
+ "squash_merge_commit_message": {
13944
+ "type": "string",
13945
+ "enum": [
13946
+ "PR_BODY",
13947
+ "COMMIT_MESSAGES",
13948
+ "BLANK"
13949
+ ],
13950
+ "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."
13951
+ },
13952
+ "merge_commit_title": {
13953
+ "type": "string",
13954
+ "enum": [
13955
+ "PR_TITLE",
13956
+ "MERGE_MESSAGE"
13957
+ ],
13958
+ "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)."
13959
+ },
13960
+ "merge_commit_message": {
13961
+ "type": "string",
13962
+ "enum": [
13963
+ "PR_BODY",
13964
+ "PR_TITLE",
13965
+ "BLANK"
13966
+ ],
13967
+ "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."
13968
+ },
13897
13969
  "allow_merge_commit": {
13898
13970
  "type": "boolean"
13899
13971
  },
@@ -13937,6 +14009,40 @@
13937
14009
  "description": "Whether a squash merge commit can use the pull request title as default.",
13938
14010
  "default": false
13939
14011
  },
14012
+ "squash_merge_commit_title": {
14013
+ "type": "string",
14014
+ "enum": [
14015
+ "PR_TITLE",
14016
+ "COMMIT_OR_PR_TITLE"
14017
+ ],
14018
+ "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)."
14019
+ },
14020
+ "squash_merge_commit_message": {
14021
+ "type": "string",
14022
+ "enum": [
14023
+ "PR_BODY",
14024
+ "COMMIT_MESSAGES",
14025
+ "BLANK"
14026
+ ],
14027
+ "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."
14028
+ },
14029
+ "merge_commit_title": {
14030
+ "type": "string",
14031
+ "enum": [
14032
+ "PR_TITLE",
14033
+ "MERGE_MESSAGE"
14034
+ ],
14035
+ "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)."
14036
+ },
14037
+ "merge_commit_message": {
14038
+ "type": "string",
14039
+ "enum": [
14040
+ "PR_BODY",
14041
+ "PR_TITLE",
14042
+ "BLANK"
14043
+ ],
14044
+ "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."
14045
+ },
13940
14046
  "allow_merge_commit": {
13941
14047
  "description": "Whether to allow merge commits for pull requests.",
13942
14048
  "default": true,
@@ -14781,6 +14887,40 @@
14781
14887
  "use_squash_pr_title_as_default": {
14782
14888
  "type": "boolean"
14783
14889
  },
14890
+ "squash_merge_commit_title": {
14891
+ "type": "string",
14892
+ "enum": [
14893
+ "PR_TITLE",
14894
+ "COMMIT_OR_PR_TITLE"
14895
+ ],
14896
+ "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)."
14897
+ },
14898
+ "squash_merge_commit_message": {
14899
+ "type": "string",
14900
+ "enum": [
14901
+ "PR_BODY",
14902
+ "COMMIT_MESSAGES",
14903
+ "BLANK"
14904
+ ],
14905
+ "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."
14906
+ },
14907
+ "merge_commit_title": {
14908
+ "type": "string",
14909
+ "enum": [
14910
+ "PR_TITLE",
14911
+ "MERGE_MESSAGE"
14912
+ ],
14913
+ "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)."
14914
+ },
14915
+ "merge_commit_message": {
14916
+ "type": "string",
14917
+ "enum": [
14918
+ "PR_BODY",
14919
+ "PR_TITLE",
14920
+ "BLANK"
14921
+ ],
14922
+ "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."
14923
+ },
14784
14924
  "allow_merge_commit": {
14785
14925
  "type": "boolean"
14786
14926
  },
@@ -14824,6 +14964,40 @@
14824
14964
  "description": "Whether a squash merge commit can use the pull request title as default.",
14825
14965
  "default": false
14826
14966
  },
14967
+ "squash_merge_commit_title": {
14968
+ "type": "string",
14969
+ "enum": [
14970
+ "PR_TITLE",
14971
+ "COMMIT_OR_PR_TITLE"
14972
+ ],
14973
+ "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)."
14974
+ },
14975
+ "squash_merge_commit_message": {
14976
+ "type": "string",
14977
+ "enum": [
14978
+ "PR_BODY",
14979
+ "COMMIT_MESSAGES",
14980
+ "BLANK"
14981
+ ],
14982
+ "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."
14983
+ },
14984
+ "merge_commit_title": {
14985
+ "type": "string",
14986
+ "enum": [
14987
+ "PR_TITLE",
14988
+ "MERGE_MESSAGE"
14989
+ ],
14990
+ "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)."
14991
+ },
14992
+ "merge_commit_message": {
14993
+ "type": "string",
14994
+ "enum": [
14995
+ "PR_BODY",
14996
+ "PR_TITLE",
14997
+ "BLANK"
14998
+ ],
14999
+ "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."
15000
+ },
14827
15001
  "allow_merge_commit": {
14828
15002
  "description": "Whether to allow merge commits for pull requests.",
14829
15003
  "default": true,