@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": {
@@ -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": {
@@ -44058,6 +44058,40 @@
44058
44058
  "type": "boolean",
44059
44059
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
44060
44060
  "default": false
44061
+ },
44062
+ "squash_merge_commit_title": {
44063
+ "type": "string",
44064
+ "enum": [
44065
+ "PR_TITLE",
44066
+ "COMMIT_OR_PR_TITLE"
44067
+ ],
44068
+ "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)."
44069
+ },
44070
+ "squash_merge_commit_message": {
44071
+ "type": "string",
44072
+ "enum": [
44073
+ "PR_BODY",
44074
+ "COMMIT_MESSAGES",
44075
+ "BLANK"
44076
+ ],
44077
+ "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."
44078
+ },
44079
+ "merge_commit_title": {
44080
+ "type": "string",
44081
+ "enum": [
44082
+ "PR_TITLE",
44083
+ "MERGE_MESSAGE"
44084
+ ],
44085
+ "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)."
44086
+ },
44087
+ "merge_commit_message": {
44088
+ "type": "string",
44089
+ "enum": [
44090
+ "PR_BODY",
44091
+ "PR_TITLE",
44092
+ "BLANK"
44093
+ ],
44094
+ "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."
44061
44095
  }
44062
44096
  },
44063
44097
  "required": [
@@ -55330,6 +55364,40 @@
55330
55364
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
55331
55365
  "default": false
55332
55366
  },
55367
+ "squash_merge_commit_title": {
55368
+ "type": "string",
55369
+ "enum": [
55370
+ "PR_TITLE",
55371
+ "COMMIT_OR_PR_TITLE"
55372
+ ],
55373
+ "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)."
55374
+ },
55375
+ "squash_merge_commit_message": {
55376
+ "type": "string",
55377
+ "enum": [
55378
+ "PR_BODY",
55379
+ "COMMIT_MESSAGES",
55380
+ "BLANK"
55381
+ ],
55382
+ "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."
55383
+ },
55384
+ "merge_commit_title": {
55385
+ "type": "string",
55386
+ "enum": [
55387
+ "PR_TITLE",
55388
+ "MERGE_MESSAGE"
55389
+ ],
55390
+ "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)."
55391
+ },
55392
+ "merge_commit_message": {
55393
+ "type": "string",
55394
+ "enum": [
55395
+ "PR_BODY",
55396
+ "PR_TITLE",
55397
+ "BLANK"
55398
+ ],
55399
+ "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."
55400
+ },
55333
55401
  "archived": {
55334
55402
  "type": "boolean",
55335
55403
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -60249,6 +60317,11 @@
60249
60317
  "schema": {
60250
60318
  "type": "object",
60251
60319
  "nullable": true
60320
+ },
60321
+ "examples": {
60322
+ "default": {
60323
+ "value": null
60324
+ }
60252
60325
  }
60253
60326
  }
60254
60327
  }
@@ -75549,6 +75622,11 @@
75549
75622
  "schema": {
75550
75623
  "type": "object",
75551
75624
  "nullable": true
75625
+ },
75626
+ "examples": {
75627
+ "default": {
75628
+ "value": null
75629
+ }
75552
75630
  }
75553
75631
  }
75554
75632
  }
@@ -75559,9 +75637,16 @@
75559
75637
  "content": {
75560
75638
  "application/json": {
75561
75639
  "schema": {
75640
+ "title": "Empty Object",
75641
+ "description": "An object without any properties.",
75562
75642
  "type": "object",
75563
75643
  "properties": {},
75564
75644
  "additionalProperties": false
75645
+ },
75646
+ "examples": {
75647
+ "default": {
75648
+ "value": null
75649
+ }
75565
75650
  }
75566
75651
  }
75567
75652
  }
@@ -75630,6 +75715,11 @@
75630
75715
  "schema": {
75631
75716
  "type": "object",
75632
75717
  "nullable": true
75718
+ },
75719
+ "examples": {
75720
+ "default": {
75721
+ "value": null
75722
+ }
75633
75723
  }
75634
75724
  }
75635
75725
  }
@@ -178332,6 +178422,40 @@
178332
178422
  "type": "boolean",
178333
178423
  "example": false
178334
178424
  },
178425
+ "squash_merge_commit_title": {
178426
+ "type": "string",
178427
+ "enum": [
178428
+ "PR_TITLE",
178429
+ "COMMIT_OR_PR_TITLE"
178430
+ ],
178431
+ "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)."
178432
+ },
178433
+ "squash_merge_commit_message": {
178434
+ "type": "string",
178435
+ "enum": [
178436
+ "PR_BODY",
178437
+ "COMMIT_MESSAGES",
178438
+ "BLANK"
178439
+ ],
178440
+ "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."
178441
+ },
178442
+ "merge_commit_title": {
178443
+ "type": "string",
178444
+ "enum": [
178445
+ "PR_TITLE",
178446
+ "MERGE_MESSAGE"
178447
+ ],
178448
+ "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)."
178449
+ },
178450
+ "merge_commit_message": {
178451
+ "type": "string",
178452
+ "enum": [
178453
+ "PR_BODY",
178454
+ "PR_TITLE",
178455
+ "BLANK"
178456
+ ],
178457
+ "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."
178458
+ },
178335
178459
  "has_downloads": {
178336
178460
  "description": "Whether downloads are enabled.",
178337
178461
  "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": {
@@ -2319,6 +2319,40 @@
2319
2319
  "type": "boolean",
2320
2320
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
2321
2321
  "default": false
2322
+ },
2323
+ "squash_merge_commit_title": {
2324
+ "type": "string",
2325
+ "enum": [
2326
+ "PR_TITLE",
2327
+ "COMMIT_OR_PR_TITLE"
2328
+ ],
2329
+ "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)."
2330
+ },
2331
+ "squash_merge_commit_message": {
2332
+ "type": "string",
2333
+ "enum": [
2334
+ "PR_BODY",
2335
+ "COMMIT_MESSAGES",
2336
+ "BLANK"
2337
+ ],
2338
+ "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."
2339
+ },
2340
+ "merge_commit_title": {
2341
+ "type": "string",
2342
+ "enum": [
2343
+ "PR_TITLE",
2344
+ "MERGE_MESSAGE"
2345
+ ],
2346
+ "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)."
2347
+ },
2348
+ "merge_commit_message": {
2349
+ "type": "string",
2350
+ "enum": [
2351
+ "PR_BODY",
2352
+ "PR_TITLE",
2353
+ "BLANK"
2354
+ ],
2355
+ "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."
2322
2356
  }
2323
2357
  },
2324
2358
  "required": [
@@ -2803,6 +2837,40 @@
2803
2837
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
2804
2838
  "default": false
2805
2839
  },
2840
+ "squash_merge_commit_title": {
2841
+ "type": "string",
2842
+ "enum": [
2843
+ "PR_TITLE",
2844
+ "COMMIT_OR_PR_TITLE"
2845
+ ],
2846
+ "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)."
2847
+ },
2848
+ "squash_merge_commit_message": {
2849
+ "type": "string",
2850
+ "enum": [
2851
+ "PR_BODY",
2852
+ "COMMIT_MESSAGES",
2853
+ "BLANK"
2854
+ ],
2855
+ "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."
2856
+ },
2857
+ "merge_commit_title": {
2858
+ "type": "string",
2859
+ "enum": [
2860
+ "PR_TITLE",
2861
+ "MERGE_MESSAGE"
2862
+ ],
2863
+ "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)."
2864
+ },
2865
+ "merge_commit_message": {
2866
+ "type": "string",
2867
+ "enum": [
2868
+ "PR_BODY",
2869
+ "PR_TITLE",
2870
+ "BLANK"
2871
+ ],
2872
+ "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."
2873
+ },
2806
2874
  "archived": {
2807
2875
  "type": "boolean",
2808
2876
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -2905,6 +2973,11 @@
2905
2973
  "schema": {
2906
2974
  "type": "object",
2907
2975
  "nullable": true
2976
+ },
2977
+ "examples": {
2978
+ "default": {
2979
+ "value": null
2980
+ }
2908
2981
  }
2909
2982
  }
2910
2983
  }
@@ -3296,6 +3369,11 @@
3296
3369
  "schema": {
3297
3370
  "type": "object",
3298
3371
  "nullable": true
3372
+ },
3373
+ "examples": {
3374
+ "default": {
3375
+ "value": null
3376
+ }
3299
3377
  }
3300
3378
  }
3301
3379
  }
@@ -3306,9 +3384,12 @@
3306
3384
  "content": {
3307
3385
  "application/json": {
3308
3386
  "schema": {
3309
- "type": "object",
3310
- "properties": {},
3311
- "additionalProperties": false
3387
+ "$ref": "#/components/schemas/empty-object"
3388
+ },
3389
+ "examples": {
3390
+ "default": {
3391
+ "value": null
3392
+ }
3312
3393
  }
3313
3394
  }
3314
3395
  }
@@ -3359,6 +3440,11 @@
3359
3440
  "schema": {
3360
3441
  "type": "object",
3361
3442
  "nullable": true
3443
+ },
3444
+ "examples": {
3445
+ "default": {
3446
+ "value": null
3447
+ }
3362
3448
  }
3363
3449
  }
3364
3450
  }
@@ -7688,6 +7774,40 @@
7688
7774
  "type": "boolean",
7689
7775
  "example": false
7690
7776
  },
7777
+ "squash_merge_commit_title": {
7778
+ "type": "string",
7779
+ "enum": [
7780
+ "PR_TITLE",
7781
+ "COMMIT_OR_PR_TITLE"
7782
+ ],
7783
+ "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)."
7784
+ },
7785
+ "squash_merge_commit_message": {
7786
+ "type": "string",
7787
+ "enum": [
7788
+ "PR_BODY",
7789
+ "COMMIT_MESSAGES",
7790
+ "BLANK"
7791
+ ],
7792
+ "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."
7793
+ },
7794
+ "merge_commit_title": {
7795
+ "type": "string",
7796
+ "enum": [
7797
+ "PR_TITLE",
7798
+ "MERGE_MESSAGE"
7799
+ ],
7800
+ "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)."
7801
+ },
7802
+ "merge_commit_message": {
7803
+ "type": "string",
7804
+ "enum": [
7805
+ "PR_BODY",
7806
+ "PR_TITLE",
7807
+ "BLANK"
7808
+ ],
7809
+ "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."
7810
+ },
7691
7811
  "has_downloads": {
7692
7812
  "description": "Whether downloads are enabled.",
7693
7813
  "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": {
@@ -60231,6 +60231,7 @@
60231
60231
  "parameters": [
60232
60232
  {
60233
60233
  "name": "organization_id",
60234
+ "description": "The unique identifier of the organization.",
60234
60235
  "in": "path",
60235
60236
  "required": true,
60236
60237
  "schema": {
@@ -97448,6 +97449,40 @@
97448
97449
  "type": "boolean",
97449
97450
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
97450
97451
  "default": false
97452
+ },
97453
+ "squash_merge_commit_title": {
97454
+ "type": "string",
97455
+ "enum": [
97456
+ "PR_TITLE",
97457
+ "COMMIT_OR_PR_TITLE"
97458
+ ],
97459
+ "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)."
97460
+ },
97461
+ "squash_merge_commit_message": {
97462
+ "type": "string",
97463
+ "enum": [
97464
+ "PR_BODY",
97465
+ "COMMIT_MESSAGES",
97466
+ "BLANK"
97467
+ ],
97468
+ "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."
97469
+ },
97470
+ "merge_commit_title": {
97471
+ "type": "string",
97472
+ "enum": [
97473
+ "PR_TITLE",
97474
+ "MERGE_MESSAGE"
97475
+ ],
97476
+ "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)."
97477
+ },
97478
+ "merge_commit_message": {
97479
+ "type": "string",
97480
+ "enum": [
97481
+ "PR_BODY",
97482
+ "PR_TITLE",
97483
+ "BLANK"
97484
+ ],
97485
+ "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."
97451
97486
  }
97452
97487
  },
97453
97488
  "required": [
@@ -123368,6 +123403,40 @@
123368
123403
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
123369
123404
  "default": false
123370
123405
  },
123406
+ "squash_merge_commit_title": {
123407
+ "type": "string",
123408
+ "enum": [
123409
+ "PR_TITLE",
123410
+ "COMMIT_OR_PR_TITLE"
123411
+ ],
123412
+ "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)."
123413
+ },
123414
+ "squash_merge_commit_message": {
123415
+ "type": "string",
123416
+ "enum": [
123417
+ "PR_BODY",
123418
+ "COMMIT_MESSAGES",
123419
+ "BLANK"
123420
+ ],
123421
+ "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."
123422
+ },
123423
+ "merge_commit_title": {
123424
+ "type": "string",
123425
+ "enum": [
123426
+ "PR_TITLE",
123427
+ "MERGE_MESSAGE"
123428
+ ],
123429
+ "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)."
123430
+ },
123431
+ "merge_commit_message": {
123432
+ "type": "string",
123433
+ "enum": [
123434
+ "PR_BODY",
123435
+ "PR_TITLE",
123436
+ "BLANK"
123437
+ ],
123438
+ "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."
123439
+ },
123371
123440
  "archived": {
123372
123441
  "type": "boolean",
123373
123442
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -129593,6 +129662,11 @@
129593
129662
  "schema": {
129594
129663
  "type": "object",
129595
129664
  "nullable": true
129665
+ },
129666
+ "examples": {
129667
+ "default": {
129668
+ "value": null
129669
+ }
129596
129670
  }
129597
129671
  }
129598
129672
  }
@@ -147958,9 +148032,16 @@
147958
148032
  "content": {
147959
148033
  "application/json": {
147960
148034
  "schema": {
148035
+ "title": "Empty Object",
148036
+ "description": "An object without any properties.",
147961
148037
  "type": "object",
147962
148038
  "properties": {},
147963
148039
  "additionalProperties": false
148040
+ },
148041
+ "examples": {
148042
+ "default": {
148043
+ "value": null
148044
+ }
147964
148045
  }
147965
148046
  }
147966
148047
  }
@@ -149153,6 +149234,17 @@
149153
149234
  "state",
149154
149235
  "comment"
149155
149236
  ]
149237
+ },
149238
+ "examples": {
149239
+ "default": {
149240
+ "value": {
149241
+ "environment_ids": [
149242
+ 161171787
149243
+ ],
149244
+ "state": "approved",
149245
+ "comment": "Ship it!"
149246
+ }
149247
+ }
149156
149248
  }
149157
149249
  }
149158
149250
  }
@@ -149742,6 +149834,11 @@
149742
149834
  "schema": {
149743
149835
  "type": "object",
149744
149836
  "nullable": true
149837
+ },
149838
+ "examples": {
149839
+ "default": {
149840
+ "value": null
149841
+ }
149745
149842
  }
149746
149843
  }
149747
149844
  }
@@ -149752,9 +149849,16 @@
149752
149849
  "content": {
149753
149850
  "application/json": {
149754
149851
  "schema": {
149852
+ "title": "Empty Object",
149853
+ "description": "An object without any properties.",
149755
149854
  "type": "object",
149756
149855
  "properties": {},
149757
149856
  "additionalProperties": false
149857
+ },
149858
+ "examples": {
149859
+ "default": {
149860
+ "value": null
149861
+ }
149758
149862
  }
149759
149863
  }
149760
149864
  }
@@ -149823,6 +149927,11 @@
149823
149927
  "schema": {
149824
149928
  "type": "object",
149825
149929
  "nullable": true
149930
+ },
149931
+ "examples": {
149932
+ "default": {
149933
+ "value": null
149934
+ }
149826
149935
  }
149827
149936
  }
149828
149937
  }
@@ -150260,9 +150369,16 @@
150260
150369
  "content": {
150261
150370
  "application/json": {
150262
150371
  "schema": {
150372
+ "title": "Empty Object",
150373
+ "description": "An object without any properties.",
150263
150374
  "type": "object",
150264
150375
  "properties": {},
150265
150376
  "additionalProperties": false
150377
+ },
150378
+ "examples": {
150379
+ "default": {
150380
+ "value": null
150381
+ }
150266
150382
  }
150267
150383
  }
150268
150384
  }
@@ -398871,6 +398987,40 @@
398871
398987
  "type": "boolean",
398872
398988
  "example": false
398873
398989
  },
398990
+ "squash_merge_commit_title": {
398991
+ "type": "string",
398992
+ "enum": [
398993
+ "PR_TITLE",
398994
+ "COMMIT_OR_PR_TITLE"
398995
+ ],
398996
+ "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)."
398997
+ },
398998
+ "squash_merge_commit_message": {
398999
+ "type": "string",
399000
+ "enum": [
399001
+ "PR_BODY",
399002
+ "COMMIT_MESSAGES",
399003
+ "BLANK"
399004
+ ],
399005
+ "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."
399006
+ },
399007
+ "merge_commit_title": {
399008
+ "type": "string",
399009
+ "enum": [
399010
+ "PR_TITLE",
399011
+ "MERGE_MESSAGE"
399012
+ ],
399013
+ "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)."
399014
+ },
399015
+ "merge_commit_message": {
399016
+ "type": "string",
399017
+ "enum": [
399018
+ "PR_BODY",
399019
+ "PR_TITLE",
399020
+ "BLANK"
399021
+ ],
399022
+ "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."
399023
+ },
398874
399024
  "has_downloads": {
398875
399025
  "description": "Whether downloads are enabled.",
398876
399026
  "default": true,