@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.
Files changed (35) hide show
  1. package/generated/api.github.com.deref.json +9605 -6
  2. package/generated/api.github.com.json +405 -33
  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 +119 -1
  6. package/generated/ghes-3.2-diff-to-ghes-3.3.json +111 -1
  7. package/generated/ghes-3.2.deref.json +348 -1
  8. package/generated/ghes-3.2.json +145 -10
  9. package/generated/ghes-3.3-anicca-diff-to-ghes-3.4.deref.json +16 -0
  10. package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +209 -1
  11. package/generated/ghes-3.3-diff-to-ghes-3.4.json +9 -1
  12. package/generated/ghes-3.3.deref.json +348 -3
  13. package/generated/ghes-3.3.json +145 -11
  14. package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
  15. package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
  16. package/generated/ghes-3.4.deref.json +333 -3
  17. package/generated/ghes-3.4.json +146 -11
  18. package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +1548 -135
  19. package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
  20. package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
  21. package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +53558 -37094
  22. package/generated/ghes-3.5-diff-to-ghes-3.6.json +8076 -3526
  23. package/generated/ghes-3.5.deref.json +427 -15
  24. package/generated/ghes-3.5.json +240 -23
  25. package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +88 -0
  26. package/generated/ghes-3.6-diff-to-api.github.com.deref.json +442 -1
  27. package/generated/ghes-3.6-diff-to-api.github.com.json +212 -1
  28. package/generated/ghes-3.6.deref.json +7923 -1
  29. package/generated/ghes-3.6.json +380 -10
  30. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +733 -3
  31. package/generated/github.ae-diff-to-api.github.com.deref.json +751 -1
  32. package/generated/github.ae-diff-to-api.github.com.json +152 -4
  33. package/generated/github.ae.deref.json +926 -1
  34. package/generated/github.ae.json +184 -10
  35. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.2.0",
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": {
@@ -6938,6 +6938,7 @@
6938
6938
  "parameters": [
6939
6939
  {
6940
6940
  "name": "organization_id",
6941
+ "description": "The unique identifier of the organization.",
6941
6942
  "in": "path",
6942
6943
  "required": true,
6943
6944
  "schema": {
@@ -7145,6 +7146,11 @@
7145
7146
  "description": "Whether organization members can fork private organization repositories.",
7146
7147
  "default": false
7147
7148
  },
7149
+ "web_commit_signoff_required": {
7150
+ "type": "boolean",
7151
+ "description": "Whether contributors to organization repositories are required to sign off on commits they make through GitHub's web interface.",
7152
+ "default": false
7153
+ },
7148
7154
  "blog": {
7149
7155
  "type": "string",
7150
7156
  "example": "\"http://github.blog\""
@@ -14467,6 +14473,40 @@
14467
14473
  "type": "boolean",
14468
14474
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
14469
14475
  "default": false
14476
+ },
14477
+ "squash_merge_commit_title": {
14478
+ "type": "string",
14479
+ "enum": [
14480
+ "PR_TITLE",
14481
+ "COMMIT_OR_PR_TITLE"
14482
+ ],
14483
+ "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)."
14484
+ },
14485
+ "squash_merge_commit_message": {
14486
+ "type": "string",
14487
+ "enum": [
14488
+ "PR_BODY",
14489
+ "COMMIT_MESSAGES",
14490
+ "BLANK"
14491
+ ],
14492
+ "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."
14493
+ },
14494
+ "merge_commit_title": {
14495
+ "type": "string",
14496
+ "enum": [
14497
+ "PR_TITLE",
14498
+ "MERGE_MESSAGE"
14499
+ ],
14500
+ "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)."
14501
+ },
14502
+ "merge_commit_message": {
14503
+ "type": "string",
14504
+ "enum": [
14505
+ "PR_BODY",
14506
+ "PR_TITLE",
14507
+ "BLANK"
14508
+ ],
14509
+ "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."
14470
14510
  }
14471
14511
  },
14472
14512
  "required": [
@@ -19304,6 +19344,40 @@
19304
19344
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
19305
19345
  "default": false
19306
19346
  },
19347
+ "squash_merge_commit_title": {
19348
+ "type": "string",
19349
+ "enum": [
19350
+ "PR_TITLE",
19351
+ "COMMIT_OR_PR_TITLE"
19352
+ ],
19353
+ "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)."
19354
+ },
19355
+ "squash_merge_commit_message": {
19356
+ "type": "string",
19357
+ "enum": [
19358
+ "PR_BODY",
19359
+ "COMMIT_MESSAGES",
19360
+ "BLANK"
19361
+ ],
19362
+ "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."
19363
+ },
19364
+ "merge_commit_title": {
19365
+ "type": "string",
19366
+ "enum": [
19367
+ "PR_TITLE",
19368
+ "MERGE_MESSAGE"
19369
+ ],
19370
+ "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)."
19371
+ },
19372
+ "merge_commit_message": {
19373
+ "type": "string",
19374
+ "enum": [
19375
+ "PR_BODY",
19376
+ "PR_TITLE",
19377
+ "BLANK"
19378
+ ],
19379
+ "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."
19380
+ },
19307
19381
  "archived": {
19308
19382
  "type": "boolean",
19309
19383
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -19313,6 +19387,11 @@
19313
19387
  "type": "boolean",
19314
19388
  "description": "Either `true` to allow private forks, or `false` to prevent private forks.",
19315
19389
  "default": false
19390
+ },
19391
+ "web_commit_signoff_required": {
19392
+ "type": "boolean",
19393
+ "description": "Either `true` to require contributors to sign off on web-based commits, or `false` to not require contributors to sign off on web-based commits.",
19394
+ "default": false
19316
19395
  }
19317
19396
  }
19318
19397
  },
@@ -19977,6 +20056,11 @@
19977
20056
  "description": "Whether to enable debug logging for the re-run."
19978
20057
  }
19979
20058
  }
20059
+ },
20060
+ "examples": {
20061
+ "default": {
20062
+ "value": null
20063
+ }
19980
20064
  }
19981
20065
  }
19982
20066
  }
@@ -21674,9 +21758,12 @@
21674
21758
  "content": {
21675
21759
  "application/json": {
21676
21760
  "schema": {
21677
- "type": "object",
21678
- "properties": {},
21679
- "additionalProperties": false
21761
+ "$ref": "#/components/schemas/empty-object"
21762
+ },
21763
+ "examples": {
21764
+ "default": {
21765
+ "value": null
21766
+ }
21680
21767
  }
21681
21768
  }
21682
21769
  }
@@ -21981,6 +22068,17 @@
21981
22068
  "state",
21982
22069
  "comment"
21983
22070
  ]
22071
+ },
22072
+ "examples": {
22073
+ "default": {
22074
+ "value": {
22075
+ "environment_ids": [
22076
+ 161171787
22077
+ ],
22078
+ "state": "approved",
22079
+ "comment": "Ship it!"
22080
+ }
22081
+ }
21984
22082
  }
21985
22083
  }
21986
22084
  }
@@ -22051,6 +22149,11 @@
22051
22149
  "description": "Whether to enable debug logging for the re-run."
22052
22150
  }
22053
22151
  }
22152
+ },
22153
+ "examples": {
22154
+ "default": {
22155
+ "value": null
22156
+ }
22054
22157
  }
22055
22158
  }
22056
22159
  }
@@ -22061,9 +22164,12 @@
22061
22164
  "content": {
22062
22165
  "application/json": {
22063
22166
  "schema": {
22064
- "type": "object",
22065
- "properties": {},
22066
- "additionalProperties": false
22167
+ "$ref": "#/components/schemas/empty-object"
22168
+ },
22169
+ "examples": {
22170
+ "default": {
22171
+ "value": null
22172
+ }
22067
22173
  }
22068
22174
  }
22069
22175
  }
@@ -22115,6 +22221,11 @@
22115
22221
  "description": "Whether to enable debug logging for the re-run."
22116
22222
  }
22117
22223
  }
22224
+ },
22225
+ "examples": {
22226
+ "default": {
22227
+ "value": null
22228
+ }
22118
22229
  }
22119
22230
  }
22120
22231
  }
@@ -22417,9 +22528,12 @@
22417
22528
  "content": {
22418
22529
  "application/json": {
22419
22530
  "schema": {
22420
- "type": "object",
22421
- "properties": {},
22422
- "additionalProperties": false
22531
+ "$ref": "#/components/schemas/empty-object"
22532
+ },
22533
+ "examples": {
22534
+ "default": {
22535
+ "value": null
22536
+ }
22423
22537
  }
22424
22538
  }
22425
22539
  }
@@ -56337,6 +56451,40 @@
56337
56451
  "type": "boolean",
56338
56452
  "example": false
56339
56453
  },
56454
+ "squash_merge_commit_title": {
56455
+ "type": "string",
56456
+ "enum": [
56457
+ "PR_TITLE",
56458
+ "COMMIT_OR_PR_TITLE"
56459
+ ],
56460
+ "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)."
56461
+ },
56462
+ "squash_merge_commit_message": {
56463
+ "type": "string",
56464
+ "enum": [
56465
+ "PR_BODY",
56466
+ "COMMIT_MESSAGES",
56467
+ "BLANK"
56468
+ ],
56469
+ "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."
56470
+ },
56471
+ "merge_commit_title": {
56472
+ "type": "string",
56473
+ "enum": [
56474
+ "PR_TITLE",
56475
+ "MERGE_MESSAGE"
56476
+ ],
56477
+ "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)."
56478
+ },
56479
+ "merge_commit_message": {
56480
+ "type": "string",
56481
+ "enum": [
56482
+ "PR_BODY",
56483
+ "PR_TITLE",
56484
+ "BLANK"
56485
+ ],
56486
+ "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."
56487
+ },
56340
56488
  "has_downloads": {
56341
56489
  "description": "Whether downloads are enabled.",
56342
56490
  "default": true,
@@ -59823,6 +59971,14 @@
59823
59971
  "write"
59824
59972
  ]
59825
59973
  },
59974
+ "organization_custom_roles": {
59975
+ "type": "string",
59976
+ "description": "The level of permission to grant the access token for custom roles management.",
59977
+ "enum": [
59978
+ "read",
59979
+ "write"
59980
+ ]
59981
+ },
59826
59982
  "deployments": {
59827
59983
  "type": "string",
59828
59984
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -60906,6 +61062,40 @@
60906
61062
  "use_squash_pr_title_as_default": {
60907
61063
  "type": "boolean"
60908
61064
  },
61065
+ "squash_merge_commit_title": {
61066
+ "type": "string",
61067
+ "enum": [
61068
+ "PR_TITLE",
61069
+ "COMMIT_OR_PR_TITLE"
61070
+ ],
61071
+ "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)."
61072
+ },
61073
+ "squash_merge_commit_message": {
61074
+ "type": "string",
61075
+ "enum": [
61076
+ "PR_BODY",
61077
+ "COMMIT_MESSAGES",
61078
+ "BLANK"
61079
+ ],
61080
+ "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."
61081
+ },
61082
+ "merge_commit_title": {
61083
+ "type": "string",
61084
+ "enum": [
61085
+ "PR_TITLE",
61086
+ "MERGE_MESSAGE"
61087
+ ],
61088
+ "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)."
61089
+ },
61090
+ "merge_commit_message": {
61091
+ "type": "string",
61092
+ "enum": [
61093
+ "PR_BODY",
61094
+ "PR_TITLE",
61095
+ "BLANK"
61096
+ ],
61097
+ "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."
61098
+ },
60909
61099
  "allow_merge_commit": {
60910
61100
  "type": "boolean"
60911
61101
  },
@@ -60949,6 +61139,40 @@
60949
61139
  "description": "Whether a squash merge commit can use the pull request title as default.",
60950
61140
  "default": false
60951
61141
  },
61142
+ "squash_merge_commit_title": {
61143
+ "type": "string",
61144
+ "enum": [
61145
+ "PR_TITLE",
61146
+ "COMMIT_OR_PR_TITLE"
61147
+ ],
61148
+ "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)."
61149
+ },
61150
+ "squash_merge_commit_message": {
61151
+ "type": "string",
61152
+ "enum": [
61153
+ "PR_BODY",
61154
+ "COMMIT_MESSAGES",
61155
+ "BLANK"
61156
+ ],
61157
+ "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."
61158
+ },
61159
+ "merge_commit_title": {
61160
+ "type": "string",
61161
+ "enum": [
61162
+ "PR_TITLE",
61163
+ "MERGE_MESSAGE"
61164
+ ],
61165
+ "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)."
61166
+ },
61167
+ "merge_commit_message": {
61168
+ "type": "string",
61169
+ "enum": [
61170
+ "PR_BODY",
61171
+ "PR_TITLE",
61172
+ "BLANK"
61173
+ ],
61174
+ "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."
61175
+ },
60952
61176
  "allow_merge_commit": {
60953
61177
  "description": "Whether to allow merge commits for pull requests.",
60954
61178
  "default": true,
@@ -60959,6 +61183,11 @@
60959
61183
  "description": "Whether to allow forking this repo",
60960
61184
  "type": "boolean"
60961
61185
  },
61186
+ "web_commit_signoff_required": {
61187
+ "description": "Whether to require contributors to sign off on web-based commits",
61188
+ "default": false,
61189
+ "type": "boolean"
61190
+ },
60962
61191
  "subscribers_count": {
60963
61192
  "type": "integer"
60964
61193
  },
@@ -65777,6 +66006,40 @@
65777
66006
  "use_squash_pr_title_as_default": {
65778
66007
  "type": "boolean"
65779
66008
  },
66009
+ "squash_merge_commit_title": {
66010
+ "type": "string",
66011
+ "enum": [
66012
+ "PR_TITLE",
66013
+ "COMMIT_OR_PR_TITLE"
66014
+ ],
66015
+ "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)."
66016
+ },
66017
+ "squash_merge_commit_message": {
66018
+ "type": "string",
66019
+ "enum": [
66020
+ "PR_BODY",
66021
+ "COMMIT_MESSAGES",
66022
+ "BLANK"
66023
+ ],
66024
+ "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."
66025
+ },
66026
+ "merge_commit_title": {
66027
+ "type": "string",
66028
+ "enum": [
66029
+ "PR_TITLE",
66030
+ "MERGE_MESSAGE"
66031
+ ],
66032
+ "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)."
66033
+ },
66034
+ "merge_commit_message": {
66035
+ "type": "string",
66036
+ "enum": [
66037
+ "PR_BODY",
66038
+ "PR_TITLE",
66039
+ "BLANK"
66040
+ ],
66041
+ "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."
66042
+ },
65780
66043
  "allow_merge_commit": {
65781
66044
  "type": "boolean"
65782
66045
  },
@@ -65820,6 +66083,40 @@
65820
66083
  "description": "Whether a squash merge commit can use the pull request title as default.",
65821
66084
  "default": false
65822
66085
  },
66086
+ "squash_merge_commit_title": {
66087
+ "type": "string",
66088
+ "enum": [
66089
+ "PR_TITLE",
66090
+ "COMMIT_OR_PR_TITLE"
66091
+ ],
66092
+ "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)."
66093
+ },
66094
+ "squash_merge_commit_message": {
66095
+ "type": "string",
66096
+ "enum": [
66097
+ "PR_BODY",
66098
+ "COMMIT_MESSAGES",
66099
+ "BLANK"
66100
+ ],
66101
+ "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."
66102
+ },
66103
+ "merge_commit_title": {
66104
+ "type": "string",
66105
+ "enum": [
66106
+ "PR_TITLE",
66107
+ "MERGE_MESSAGE"
66108
+ ],
66109
+ "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)."
66110
+ },
66111
+ "merge_commit_message": {
66112
+ "type": "string",
66113
+ "enum": [
66114
+ "PR_BODY",
66115
+ "PR_TITLE",
66116
+ "BLANK"
66117
+ ],
66118
+ "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."
66119
+ },
65823
66120
  "allow_merge_commit": {
65824
66121
  "description": "Whether to allow merge commits for pull requests.",
65825
66122
  "default": true,
@@ -65830,6 +66127,11 @@
65830
66127
  "description": "Whether to allow forking this repo",
65831
66128
  "type": "boolean"
65832
66129
  },
66130
+ "web_commit_signoff_required": {
66131
+ "description": "Whether to require contributors to sign off on web-based commits",
66132
+ "default": false,
66133
+ "type": "boolean"
66134
+ },
65833
66135
  "subscribers_count": {
65834
66136
  "type": "integer"
65835
66137
  },
@@ -66299,6 +66601,10 @@
66299
66601
  },
66300
66602
  "allow_forking": {
66301
66603
  "type": "boolean"
66604
+ },
66605
+ "web_commit_signoff_required": {
66606
+ "type": "boolean",
66607
+ "example": false
66302
66608
  }
66303
66609
  },
66304
66610
  "required": [
@@ -66709,6 +67015,10 @@
66709
67015
  "example": false,
66710
67016
  "nullable": true
66711
67017
  },
67018
+ "web_commit_signoff_required": {
67019
+ "type": "boolean",
67020
+ "example": false
67021
+ },
66712
67022
  "updated_at": {
66713
67023
  "type": "string",
66714
67024
  "format": "date-time"
@@ -68464,6 +68774,10 @@
68464
68774
  },
68465
68775
  "allow_forking": {
68466
68776
  "type": "boolean"
68777
+ },
68778
+ "web_commit_signoff_required": {
68779
+ "type": "boolean",
68780
+ "example": false
68467
68781
  }
68468
68782
  },
68469
68783
  "required": [
@@ -69815,6 +70129,12 @@
69815
70129
  "type": "boolean",
69816
70130
  "example": false
69817
70131
  },
70132
+ "web_commit_signoff_required": {
70133
+ "description": "Whether to require contributors to sign off on web-based commits",
70134
+ "default": false,
70135
+ "type": "boolean",
70136
+ "example": false
70137
+ },
69818
70138
  "subscribers_count": {
69819
70139
  "type": "integer"
69820
70140
  },
@@ -70585,10 +70905,52 @@
70585
70905
  "type": "boolean",
70586
70906
  "example": false
70587
70907
  },
70908
+ "squash_merge_commit_title": {
70909
+ "type": "string",
70910
+ "example": "PR_TITLE",
70911
+ "enum": [
70912
+ "PR_TITLE",
70913
+ "COMMIT_OR_PR_TITLE"
70914
+ ],
70915
+ "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)."
70916
+ },
70917
+ "squash_merge_commit_message": {
70918
+ "type": "string",
70919
+ "example": "PR_BODY",
70920
+ "enum": [
70921
+ "PR_BODY",
70922
+ "COMMIT_MESSAGES",
70923
+ "BLANK"
70924
+ ],
70925
+ "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."
70926
+ },
70927
+ "merge_commit_title": {
70928
+ "type": "string",
70929
+ "example": "PR_TITLE",
70930
+ "enum": [
70931
+ "PR_TITLE",
70932
+ "MERGE_MESSAGE"
70933
+ ],
70934
+ "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)."
70935
+ },
70936
+ "merge_commit_message": {
70937
+ "type": "string",
70938
+ "example": "PR_BODY",
70939
+ "enum": [
70940
+ "PR_BODY",
70941
+ "PR_TITLE",
70942
+ "BLANK"
70943
+ ],
70944
+ "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."
70945
+ },
70588
70946
  "allow_forking": {
70589
70947
  "type": "boolean",
70590
70948
  "example": true
70591
70949
  },
70950
+ "web_commit_signoff_required": {
70951
+ "type": "boolean",
70952
+ "example": false
70953
+ },
70592
70954
  "subscribers_count": {
70593
70955
  "type": "integer",
70594
70956
  "example": 42
@@ -76340,8 +76702,6 @@
76340
76702
  }
76341
76703
  },
76342
76704
  "dependency": {
76343
- "title": "Dependency",
76344
- "description": "A single package dependency.",
76345
76705
  "type": "object",
76346
76706
  "properties": {
76347
76707
  "package_url": {
@@ -76383,8 +76743,6 @@
76383
76743
  "additionalProperties": false
76384
76744
  },
76385
76745
  "manifest": {
76386
- "title": "manifest",
76387
- "description": "A collection of related dependencies declared in a file or representing a logical group of dependencies.",
76388
76746
  "type": "object",
76389
76747
  "properties": {
76390
76748
  "name": {
@@ -76407,6 +76765,8 @@
76407
76765
  "$ref": "#/components/schemas/metadata"
76408
76766
  },
76409
76767
  "resolved": {
76768
+ "type": "object",
76769
+ "description": "A collection of resolved package dependencies.",
76410
76770
  "additionalProperties": {
76411
76771
  "$ref": "#/components/schemas/dependency"
76412
76772
  }
@@ -76495,7 +76855,7 @@
76495
76855
  },
76496
76856
  "manifests": {
76497
76857
  "type": "object",
76498
- "description": "A collection of package manifests",
76858
+ "description": "A collection of package manifests, which are a collection of related dependencies declared in a file or representing a logical group of dependencies.",
76499
76859
  "additionalProperties": {
76500
76860
  "$ref": "#/components/schemas/manifest"
76501
76861
  }
@@ -81367,6 +81727,9 @@
81367
81727
  },
81368
81728
  "is_template": {
81369
81729
  "type": "boolean"
81730
+ },
81731
+ "web_commit_signoff_required": {
81732
+ "type": "boolean"
81370
81733
  }
81371
81734
  },
81372
81735
  "required": [
@@ -81941,6 +82304,9 @@
81941
82304
  },
81942
82305
  "allow_forking": {
81943
82306
  "type": "boolean"
82307
+ },
82308
+ "web_commit_signoff_required": {
82309
+ "type": "boolean"
81944
82310
  }
81945
82311
  },
81946
82312
  "required": [
@@ -84730,6 +85096,10 @@
84730
85096
  },
84731
85097
  "is_template": {
84732
85098
  "type": "boolean"
85099
+ },
85100
+ "web_commit_signoff_required": {
85101
+ "type": "boolean",
85102
+ "example": false
84733
85103
  }
84734
85104
  },
84735
85105
  "required": [
@@ -85858,7 +86228,7 @@
85858
86228
  "node_id"
85859
86229
  ]
85860
86230
  },
85861
- "merge-group-checks-requested": {
86231
+ "webhook-merge-group-checks-requested": {
85862
86232
  "type": "object",
85863
86233
  "properties": {
85864
86234
  "action": {
@@ -85867,33 +86237,33 @@
85867
86237
  "installation": {
85868
86238
  "$ref": "#/components/schemas/simple-installation"
85869
86239
  },
85870
- "organization": {
85871
- "$ref": "#/components/schemas/organization-simple"
85872
- },
85873
- "repository": {
85874
- "$ref": "#/components/schemas/repository"
85875
- },
85876
- "sender": {
85877
- "$ref": "#/components/schemas/simple-user"
85878
- },
85879
86240
  "merge_group": {
85880
86241
  "type": "object",
85881
- "required": [
85882
- "head_sha",
85883
- "head_ref",
85884
- "base_ref"
85885
- ],
85886
86242
  "properties": {
85887
- "head_sha": {
86243
+ "base_ref": {
85888
86244
  "type": "string"
85889
86245
  },
85890
86246
  "head_ref": {
85891
86247
  "type": "string"
85892
86248
  },
85893
- "base_ref": {
86249
+ "head_sha": {
85894
86250
  "type": "string"
85895
86251
  }
85896
- }
86252
+ },
86253
+ "required": [
86254
+ "head_sha",
86255
+ "head_ref",
86256
+ "base_ref"
86257
+ ]
86258
+ },
86259
+ "organization": {
86260
+ "$ref": "#/components/schemas/organization-simple"
86261
+ },
86262
+ "repository": {
86263
+ "$ref": "#/components/schemas/repository"
86264
+ },
86265
+ "sender": {
86266
+ "$ref": "#/components/schemas/simple-user"
85897
86267
  }
85898
86268
  },
85899
86269
  "required": [
@@ -90844,6 +91214,7 @@
90844
91214
  "members_can_create_public_pages": true,
90845
91215
  "members_can_create_private_pages": true,
90846
91216
  "members_can_fork_private_repositories": false,
91217
+ "web_commit_signoff_required": false,
90847
91218
  "updated_at": "2014-03-03T18:58:10Z"
90848
91219
  }
90849
91220
  },
@@ -95268,6 +95639,7 @@
95268
95639
  "delete_branch_on_merge": true,
95269
95640
  "allow_merge_commit": true,
95270
95641
  "allow_forking": true,
95642
+ "web_commit_signoff_required": false,
95271
95643
  "subscribers_count": 42,
95272
95644
  "network_count": 0,
95273
95645
  "organization": {