@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": {
@@ -86732,6 +86732,40 @@
86732
86732
  "type": "boolean",
86733
86733
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
86734
86734
  "default": false
86735
+ },
86736
+ "squash_merge_commit_title": {
86737
+ "type": "string",
86738
+ "enum": [
86739
+ "PR_TITLE",
86740
+ "COMMIT_OR_PR_TITLE"
86741
+ ],
86742
+ "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)."
86743
+ },
86744
+ "squash_merge_commit_message": {
86745
+ "type": "string",
86746
+ "enum": [
86747
+ "PR_BODY",
86748
+ "COMMIT_MESSAGES",
86749
+ "BLANK"
86750
+ ],
86751
+ "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."
86752
+ },
86753
+ "merge_commit_title": {
86754
+ "type": "string",
86755
+ "enum": [
86756
+ "PR_TITLE",
86757
+ "MERGE_MESSAGE"
86758
+ ],
86759
+ "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)."
86760
+ },
86761
+ "merge_commit_message": {
86762
+ "type": "string",
86763
+ "enum": [
86764
+ "PR_BODY",
86765
+ "PR_TITLE",
86766
+ "BLANK"
86767
+ ],
86768
+ "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."
86735
86769
  }
86736
86770
  },
86737
86771
  "required": [
@@ -112557,6 +112591,40 @@
112557
112591
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
112558
112592
  "default": false
112559
112593
  },
112594
+ "squash_merge_commit_title": {
112595
+ "type": "string",
112596
+ "enum": [
112597
+ "PR_TITLE",
112598
+ "COMMIT_OR_PR_TITLE"
112599
+ ],
112600
+ "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)."
112601
+ },
112602
+ "squash_merge_commit_message": {
112603
+ "type": "string",
112604
+ "enum": [
112605
+ "PR_BODY",
112606
+ "COMMIT_MESSAGES",
112607
+ "BLANK"
112608
+ ],
112609
+ "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."
112610
+ },
112611
+ "merge_commit_title": {
112612
+ "type": "string",
112613
+ "enum": [
112614
+ "PR_TITLE",
112615
+ "MERGE_MESSAGE"
112616
+ ],
112617
+ "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)."
112618
+ },
112619
+ "merge_commit_message": {
112620
+ "type": "string",
112621
+ "enum": [
112622
+ "PR_BODY",
112623
+ "PR_TITLE",
112624
+ "BLANK"
112625
+ ],
112626
+ "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."
112627
+ },
112560
112628
  "archived": {
112561
112629
  "type": "boolean",
112562
112630
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -130338,9 +130406,16 @@
130338
130406
  "content": {
130339
130407
  "application/json": {
130340
130408
  "schema": {
130409
+ "title": "Empty Object",
130410
+ "description": "An object without any properties.",
130341
130411
  "type": "object",
130342
130412
  "properties": {},
130343
130413
  "additionalProperties": false
130414
+ },
130415
+ "examples": {
130416
+ "default": {
130417
+ "value": null
130418
+ }
130344
130419
  }
130345
130420
  }
130346
130421
  }
@@ -131533,6 +131608,17 @@
131533
131608
  "state",
131534
131609
  "comment"
131535
131610
  ]
131611
+ },
131612
+ "examples": {
131613
+ "default": {
131614
+ "value": {
131615
+ "environment_ids": [
131616
+ 161171787
131617
+ ],
131618
+ "state": "approved",
131619
+ "comment": "Ship it!"
131620
+ }
131621
+ }
131536
131622
  }
131537
131623
  }
131538
131624
  }
@@ -132122,6 +132208,11 @@
132122
132208
  "schema": {
132123
132209
  "type": "object",
132124
132210
  "nullable": true
132211
+ },
132212
+ "examples": {
132213
+ "default": {
132214
+ "value": null
132215
+ }
132125
132216
  }
132126
132217
  }
132127
132218
  }
@@ -132132,9 +132223,16 @@
132132
132223
  "content": {
132133
132224
  "application/json": {
132134
132225
  "schema": {
132226
+ "title": "Empty Object",
132227
+ "description": "An object without any properties.",
132135
132228
  "type": "object",
132136
132229
  "properties": {},
132137
132230
  "additionalProperties": false
132231
+ },
132232
+ "examples": {
132233
+ "default": {
132234
+ "value": null
132235
+ }
132138
132236
  }
132139
132237
  }
132140
132238
  }
@@ -132546,9 +132644,16 @@
132546
132644
  "content": {
132547
132645
  "application/json": {
132548
132646
  "schema": {
132647
+ "title": "Empty Object",
132648
+ "description": "An object without any properties.",
132549
132649
  "type": "object",
132550
132650
  "properties": {},
132551
132651
  "additionalProperties": false
132652
+ },
132653
+ "examples": {
132654
+ "default": {
132655
+ "value": null
132656
+ }
132552
132657
  }
132553
132658
  }
132554
132659
  }
@@ -370227,6 +370332,40 @@
370227
370332
  "type": "boolean",
370228
370333
  "example": false
370229
370334
  },
370335
+ "squash_merge_commit_title": {
370336
+ "type": "string",
370337
+ "enum": [
370338
+ "PR_TITLE",
370339
+ "COMMIT_OR_PR_TITLE"
370340
+ ],
370341
+ "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)."
370342
+ },
370343
+ "squash_merge_commit_message": {
370344
+ "type": "string",
370345
+ "enum": [
370346
+ "PR_BODY",
370347
+ "COMMIT_MESSAGES",
370348
+ "BLANK"
370349
+ ],
370350
+ "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."
370351
+ },
370352
+ "merge_commit_title": {
370353
+ "type": "string",
370354
+ "enum": [
370355
+ "PR_TITLE",
370356
+ "MERGE_MESSAGE"
370357
+ ],
370358
+ "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)."
370359
+ },
370360
+ "merge_commit_message": {
370361
+ "type": "string",
370362
+ "enum": [
370363
+ "PR_BODY",
370364
+ "PR_TITLE",
370365
+ "BLANK"
370366
+ ],
370367
+ "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."
370368
+ },
370230
370369
  "has_downloads": {
370231
370370
  "description": "Whether downloads are enabled.",
370232
370371
  "default": true,
@@ -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": {
@@ -13812,6 +13812,40 @@
13812
13812
  "type": "boolean",
13813
13813
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
13814
13814
  "default": false
13815
+ },
13816
+ "squash_merge_commit_title": {
13817
+ "type": "string",
13818
+ "enum": [
13819
+ "PR_TITLE",
13820
+ "COMMIT_OR_PR_TITLE"
13821
+ ],
13822
+ "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)."
13823
+ },
13824
+ "squash_merge_commit_message": {
13825
+ "type": "string",
13826
+ "enum": [
13827
+ "PR_BODY",
13828
+ "COMMIT_MESSAGES",
13829
+ "BLANK"
13830
+ ],
13831
+ "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."
13832
+ },
13833
+ "merge_commit_title": {
13834
+ "type": "string",
13835
+ "enum": [
13836
+ "PR_TITLE",
13837
+ "MERGE_MESSAGE"
13838
+ ],
13839
+ "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)."
13840
+ },
13841
+ "merge_commit_message": {
13842
+ "type": "string",
13843
+ "enum": [
13844
+ "PR_BODY",
13845
+ "PR_TITLE",
13846
+ "BLANK"
13847
+ ],
13848
+ "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."
13815
13849
  }
13816
13850
  },
13817
13851
  "required": [
@@ -17993,6 +18027,40 @@
17993
18027
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
17994
18028
  "default": false
17995
18029
  },
18030
+ "squash_merge_commit_title": {
18031
+ "type": "string",
18032
+ "enum": [
18033
+ "PR_TITLE",
18034
+ "COMMIT_OR_PR_TITLE"
18035
+ ],
18036
+ "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)."
18037
+ },
18038
+ "squash_merge_commit_message": {
18039
+ "type": "string",
18040
+ "enum": [
18041
+ "PR_BODY",
18042
+ "COMMIT_MESSAGES",
18043
+ "BLANK"
18044
+ ],
18045
+ "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."
18046
+ },
18047
+ "merge_commit_title": {
18048
+ "type": "string",
18049
+ "enum": [
18050
+ "PR_TITLE",
18051
+ "MERGE_MESSAGE"
18052
+ ],
18053
+ "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)."
18054
+ },
18055
+ "merge_commit_message": {
18056
+ "type": "string",
18057
+ "enum": [
18058
+ "PR_BODY",
18059
+ "PR_TITLE",
18060
+ "BLANK"
18061
+ ],
18062
+ "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."
18063
+ },
17996
18064
  "archived": {
17997
18065
  "type": "boolean",
17998
18066
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -19266,9 +19334,12 @@
19266
19334
  "content": {
19267
19335
  "application/json": {
19268
19336
  "schema": {
19269
- "type": "object",
19270
- "properties": {},
19271
- "additionalProperties": false
19337
+ "$ref": "#/components/schemas/empty-object"
19338
+ },
19339
+ "examples": {
19340
+ "default": {
19341
+ "value": null
19342
+ }
19272
19343
  }
19273
19344
  }
19274
19345
  }
@@ -19573,6 +19644,17 @@
19573
19644
  "state",
19574
19645
  "comment"
19575
19646
  ]
19647
+ },
19648
+ "examples": {
19649
+ "default": {
19650
+ "value": {
19651
+ "environment_ids": [
19652
+ 161171787
19653
+ ],
19654
+ "state": "approved",
19655
+ "comment": "Ship it!"
19656
+ }
19657
+ }
19576
19658
  }
19577
19659
  }
19578
19660
  }
@@ -19636,6 +19718,11 @@
19636
19718
  "schema": {
19637
19719
  "type": "object",
19638
19720
  "nullable": true
19721
+ },
19722
+ "examples": {
19723
+ "default": {
19724
+ "value": null
19725
+ }
19639
19726
  }
19640
19727
  }
19641
19728
  }
@@ -19646,9 +19733,12 @@
19646
19733
  "content": {
19647
19734
  "application/json": {
19648
19735
  "schema": {
19649
- "type": "object",
19650
- "properties": {},
19651
- "additionalProperties": false
19736
+ "$ref": "#/components/schemas/empty-object"
19737
+ },
19738
+ "examples": {
19739
+ "default": {
19740
+ "value": null
19741
+ }
19652
19742
  }
19653
19743
  }
19654
19744
  }
@@ -19886,9 +19976,12 @@
19886
19976
  "content": {
19887
19977
  "application/json": {
19888
19978
  "schema": {
19889
- "type": "object",
19890
- "properties": {},
19891
- "additionalProperties": false
19979
+ "$ref": "#/components/schemas/empty-object"
19980
+ },
19981
+ "examples": {
19982
+ "default": {
19983
+ "value": null
19984
+ }
19892
19985
  }
19893
19986
  }
19894
19987
  }
@@ -47287,6 +47380,40 @@
47287
47380
  "type": "boolean",
47288
47381
  "example": false
47289
47382
  },
47383
+ "squash_merge_commit_title": {
47384
+ "type": "string",
47385
+ "enum": [
47386
+ "PR_TITLE",
47387
+ "COMMIT_OR_PR_TITLE"
47388
+ ],
47389
+ "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)."
47390
+ },
47391
+ "squash_merge_commit_message": {
47392
+ "type": "string",
47393
+ "enum": [
47394
+ "PR_BODY",
47395
+ "COMMIT_MESSAGES",
47396
+ "BLANK"
47397
+ ],
47398
+ "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."
47399
+ },
47400
+ "merge_commit_title": {
47401
+ "type": "string",
47402
+ "enum": [
47403
+ "PR_TITLE",
47404
+ "MERGE_MESSAGE"
47405
+ ],
47406
+ "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)."
47407
+ },
47408
+ "merge_commit_message": {
47409
+ "type": "string",
47410
+ "enum": [
47411
+ "PR_BODY",
47412
+ "PR_TITLE",
47413
+ "BLANK"
47414
+ ],
47415
+ "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."
47416
+ },
47290
47417
  "has_downloads": {
47291
47418
  "description": "Whether downloads are enabled.",
47292
47419
  "default": true,
@@ -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": {
@@ -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": {
@@ -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": {
@@ -59848,6 +59848,7 @@
59848
59848
  "parameters": [
59849
59849
  {
59850
59850
  "name": "organization_id",
59851
+ "description": "The unique identifier of the organization.",
59851
59852
  "in": "path",
59852
59853
  "required": true,
59853
59854
  "schema": {
@@ -95282,6 +95283,40 @@
95282
95283
  "type": "boolean",
95283
95284
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
95284
95285
  "default": false
95286
+ },
95287
+ "squash_merge_commit_title": {
95288
+ "type": "string",
95289
+ "enum": [
95290
+ "PR_TITLE",
95291
+ "COMMIT_OR_PR_TITLE"
95292
+ ],
95293
+ "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)."
95294
+ },
95295
+ "squash_merge_commit_message": {
95296
+ "type": "string",
95297
+ "enum": [
95298
+ "PR_BODY",
95299
+ "COMMIT_MESSAGES",
95300
+ "BLANK"
95301
+ ],
95302
+ "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."
95303
+ },
95304
+ "merge_commit_title": {
95305
+ "type": "string",
95306
+ "enum": [
95307
+ "PR_TITLE",
95308
+ "MERGE_MESSAGE"
95309
+ ],
95310
+ "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)."
95311
+ },
95312
+ "merge_commit_message": {
95313
+ "type": "string",
95314
+ "enum": [
95315
+ "PR_BODY",
95316
+ "PR_TITLE",
95317
+ "BLANK"
95318
+ ],
95319
+ "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."
95285
95320
  }
95286
95321
  },
95287
95322
  "required": [
@@ -121303,6 +121338,40 @@
121303
121338
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
121304
121339
  "default": false
121305
121340
  },
121341
+ "squash_merge_commit_title": {
121342
+ "type": "string",
121343
+ "enum": [
121344
+ "PR_TITLE",
121345
+ "COMMIT_OR_PR_TITLE"
121346
+ ],
121347
+ "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)."
121348
+ },
121349
+ "squash_merge_commit_message": {
121350
+ "type": "string",
121351
+ "enum": [
121352
+ "PR_BODY",
121353
+ "COMMIT_MESSAGES",
121354
+ "BLANK"
121355
+ ],
121356
+ "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."
121357
+ },
121358
+ "merge_commit_title": {
121359
+ "type": "string",
121360
+ "enum": [
121361
+ "PR_TITLE",
121362
+ "MERGE_MESSAGE"
121363
+ ],
121364
+ "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)."
121365
+ },
121366
+ "merge_commit_message": {
121367
+ "type": "string",
121368
+ "enum": [
121369
+ "PR_BODY",
121370
+ "PR_TITLE",
121371
+ "BLANK"
121372
+ ],
121373
+ "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."
121374
+ },
121306
121375
  "archived": {
121307
121376
  "type": "boolean",
121308
121377
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -140027,9 +140096,16 @@
140027
140096
  "content": {
140028
140097
  "application/json": {
140029
140098
  "schema": {
140099
+ "title": "Empty Object",
140100
+ "description": "An object without any properties.",
140030
140101
  "type": "object",
140031
140102
  "properties": {},
140032
140103
  "additionalProperties": false
140104
+ },
140105
+ "examples": {
140106
+ "default": {
140107
+ "value": null
140108
+ }
140033
140109
  }
140034
140110
  }
140035
140111
  }
@@ -141222,6 +141298,17 @@
141222
141298
  "state",
141223
141299
  "comment"
141224
141300
  ]
141301
+ },
141302
+ "examples": {
141303
+ "default": {
141304
+ "value": {
141305
+ "environment_ids": [
141306
+ 161171787
141307
+ ],
141308
+ "state": "approved",
141309
+ "comment": "Ship it!"
141310
+ }
141311
+ }
141225
141312
  }
141226
141313
  }
141227
141314
  }
@@ -141811,6 +141898,11 @@
141811
141898
  "schema": {
141812
141899
  "type": "object",
141813
141900
  "nullable": true
141901
+ },
141902
+ "examples": {
141903
+ "default": {
141904
+ "value": null
141905
+ }
141814
141906
  }
141815
141907
  }
141816
141908
  }
@@ -141821,9 +141913,16 @@
141821
141913
  "content": {
141822
141914
  "application/json": {
141823
141915
  "schema": {
141916
+ "title": "Empty Object",
141917
+ "description": "An object without any properties.",
141824
141918
  "type": "object",
141825
141919
  "properties": {},
141826
141920
  "additionalProperties": false
141921
+ },
141922
+ "examples": {
141923
+ "default": {
141924
+ "value": null
141925
+ }
141827
141926
  }
141828
141927
  }
141829
141928
  }
@@ -142235,9 +142334,16 @@
142235
142334
  "content": {
142236
142335
  "application/json": {
142237
142336
  "schema": {
142337
+ "title": "Empty Object",
142338
+ "description": "An object without any properties.",
142238
142339
  "type": "object",
142239
142340
  "properties": {},
142240
142341
  "additionalProperties": false
142342
+ },
142343
+ "examples": {
142344
+ "default": {
142345
+ "value": null
142346
+ }
142241
142347
  }
142242
142348
  }
142243
142349
  }
@@ -389736,6 +389842,40 @@
389736
389842
  "type": "boolean",
389737
389843
  "example": false
389738
389844
  },
389845
+ "squash_merge_commit_title": {
389846
+ "type": "string",
389847
+ "enum": [
389848
+ "PR_TITLE",
389849
+ "COMMIT_OR_PR_TITLE"
389850
+ ],
389851
+ "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)."
389852
+ },
389853
+ "squash_merge_commit_message": {
389854
+ "type": "string",
389855
+ "enum": [
389856
+ "PR_BODY",
389857
+ "COMMIT_MESSAGES",
389858
+ "BLANK"
389859
+ ],
389860
+ "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."
389861
+ },
389862
+ "merge_commit_title": {
389863
+ "type": "string",
389864
+ "enum": [
389865
+ "PR_TITLE",
389866
+ "MERGE_MESSAGE"
389867
+ ],
389868
+ "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)."
389869
+ },
389870
+ "merge_commit_message": {
389871
+ "type": "string",
389872
+ "enum": [
389873
+ "PR_BODY",
389874
+ "PR_TITLE",
389875
+ "BLANK"
389876
+ ],
389877
+ "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."
389878
+ },
389739
389879
  "has_downloads": {
389740
389880
  "description": "Whether downloads are enabled.",
389741
389881
  "default": true,