@octokit/openapi 7.2.0 → 7.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/api.github.com.deref.json +9605 -6
- package/generated/api.github.com.json +405 -33
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +119 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +111 -1
- package/generated/ghes-3.2.deref.json +348 -1
- package/generated/ghes-3.2.json +145 -10
- package/generated/ghes-3.3-anicca-diff-to-ghes-3.4.deref.json +16 -0
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +209 -1
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +9 -1
- package/generated/ghes-3.3.deref.json +348 -3
- package/generated/ghes-3.3.json +145 -11
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
- package/generated/ghes-3.4.deref.json +333 -3
- package/generated/ghes-3.4.json +146 -11
- package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +1548 -135
- package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +53558 -37094
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +8076 -3526
- package/generated/ghes-3.5.deref.json +427 -15
- package/generated/ghes-3.5.json +240 -23
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +88 -0
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +442 -1
- package/generated/ghes-3.6-diff-to-api.github.com.json +212 -1
- package/generated/ghes-3.6.deref.json +7923 -1
- package/generated/ghes-3.6.json +380 -10
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +733 -3
- package/generated/github.ae-diff-to-api.github.com.deref.json +751 -1
- package/generated/github.ae-diff-to-api.github.com.json +152 -4
- package/generated/github.ae.deref.json +926 -1
- package/generated/github.ae.json +184 -10
- package/package.json +1 -1
package/generated/github.ae.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.5.0",
|
|
5
5
|
"title": "GitHub's official OpenAPI spec + Octokit extension",
|
|
6
6
|
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
|
|
7
7
|
"license": {
|
|
@@ -7456,6 +7456,11 @@
|
|
|
7456
7456
|
"description": "Whether organization members can fork private organization repositories.",
|
|
7457
7457
|
"default": false
|
|
7458
7458
|
},
|
|
7459
|
+
"web_commit_signoff_required": {
|
|
7460
|
+
"type": "boolean",
|
|
7461
|
+
"description": "Whether contributors to organization repositories are required to sign off on commits they make through GitHub's web interface.",
|
|
7462
|
+
"default": false
|
|
7463
|
+
},
|
|
7459
7464
|
"blog": {
|
|
7460
7465
|
"type": "string",
|
|
7461
7466
|
"example": "\"http://github.blog\""
|
|
@@ -11489,6 +11494,40 @@
|
|
|
11489
11494
|
"type": "boolean",
|
|
11490
11495
|
"description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
|
|
11491
11496
|
"default": false
|
|
11497
|
+
},
|
|
11498
|
+
"squash_merge_commit_title": {
|
|
11499
|
+
"type": "string",
|
|
11500
|
+
"enum": [
|
|
11501
|
+
"PR_TITLE",
|
|
11502
|
+
"COMMIT_OR_PR_TITLE"
|
|
11503
|
+
],
|
|
11504
|
+
"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)."
|
|
11505
|
+
},
|
|
11506
|
+
"squash_merge_commit_message": {
|
|
11507
|
+
"type": "string",
|
|
11508
|
+
"enum": [
|
|
11509
|
+
"PR_BODY",
|
|
11510
|
+
"COMMIT_MESSAGES",
|
|
11511
|
+
"BLANK"
|
|
11512
|
+
],
|
|
11513
|
+
"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."
|
|
11514
|
+
},
|
|
11515
|
+
"merge_commit_title": {
|
|
11516
|
+
"type": "string",
|
|
11517
|
+
"enum": [
|
|
11518
|
+
"PR_TITLE",
|
|
11519
|
+
"MERGE_MESSAGE"
|
|
11520
|
+
],
|
|
11521
|
+
"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)."
|
|
11522
|
+
},
|
|
11523
|
+
"merge_commit_message": {
|
|
11524
|
+
"type": "string",
|
|
11525
|
+
"enum": [
|
|
11526
|
+
"PR_BODY",
|
|
11527
|
+
"PR_TITLE",
|
|
11528
|
+
"BLANK"
|
|
11529
|
+
],
|
|
11530
|
+
"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."
|
|
11492
11531
|
}
|
|
11493
11532
|
},
|
|
11494
11533
|
"required": [
|
|
@@ -15701,6 +15740,40 @@
|
|
|
15701
15740
|
"description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
|
|
15702
15741
|
"default": false
|
|
15703
15742
|
},
|
|
15743
|
+
"squash_merge_commit_title": {
|
|
15744
|
+
"type": "string",
|
|
15745
|
+
"enum": [
|
|
15746
|
+
"PR_TITLE",
|
|
15747
|
+
"COMMIT_OR_PR_TITLE"
|
|
15748
|
+
],
|
|
15749
|
+
"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)."
|
|
15750
|
+
},
|
|
15751
|
+
"squash_merge_commit_message": {
|
|
15752
|
+
"type": "string",
|
|
15753
|
+
"enum": [
|
|
15754
|
+
"PR_BODY",
|
|
15755
|
+
"COMMIT_MESSAGES",
|
|
15756
|
+
"BLANK"
|
|
15757
|
+
],
|
|
15758
|
+
"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."
|
|
15759
|
+
},
|
|
15760
|
+
"merge_commit_title": {
|
|
15761
|
+
"type": "string",
|
|
15762
|
+
"enum": [
|
|
15763
|
+
"PR_TITLE",
|
|
15764
|
+
"MERGE_MESSAGE"
|
|
15765
|
+
],
|
|
15766
|
+
"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)."
|
|
15767
|
+
},
|
|
15768
|
+
"merge_commit_message": {
|
|
15769
|
+
"type": "string",
|
|
15770
|
+
"enum": [
|
|
15771
|
+
"PR_BODY",
|
|
15772
|
+
"PR_TITLE",
|
|
15773
|
+
"BLANK"
|
|
15774
|
+
],
|
|
15775
|
+
"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."
|
|
15776
|
+
},
|
|
15704
15777
|
"archived": {
|
|
15705
15778
|
"type": "boolean",
|
|
15706
15779
|
"description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
|
|
@@ -15710,6 +15783,11 @@
|
|
|
15710
15783
|
"type": "boolean",
|
|
15711
15784
|
"description": "Either `true` to allow private forks, or `false` to prevent private forks.",
|
|
15712
15785
|
"default": false
|
|
15786
|
+
},
|
|
15787
|
+
"web_commit_signoff_required": {
|
|
15788
|
+
"type": "boolean",
|
|
15789
|
+
"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.",
|
|
15790
|
+
"default": false
|
|
15713
15791
|
}
|
|
15714
15792
|
}
|
|
15715
15793
|
},
|
|
@@ -17142,9 +17220,12 @@
|
|
|
17142
17220
|
"content": {
|
|
17143
17221
|
"application/json": {
|
|
17144
17222
|
"schema": {
|
|
17145
|
-
"
|
|
17146
|
-
|
|
17147
|
-
|
|
17223
|
+
"$ref": "#/components/schemas/empty-object"
|
|
17224
|
+
},
|
|
17225
|
+
"examples": {
|
|
17226
|
+
"default": {
|
|
17227
|
+
"value": null
|
|
17228
|
+
}
|
|
17148
17229
|
}
|
|
17149
17230
|
}
|
|
17150
17231
|
}
|
|
@@ -17367,6 +17448,11 @@
|
|
|
17367
17448
|
"schema": {
|
|
17368
17449
|
"type": "object",
|
|
17369
17450
|
"nullable": true
|
|
17451
|
+
},
|
|
17452
|
+
"examples": {
|
|
17453
|
+
"default": {
|
|
17454
|
+
"value": null
|
|
17455
|
+
}
|
|
17370
17456
|
}
|
|
17371
17457
|
}
|
|
17372
17458
|
}
|
|
@@ -17377,9 +17463,12 @@
|
|
|
17377
17463
|
"content": {
|
|
17378
17464
|
"application/json": {
|
|
17379
17465
|
"schema": {
|
|
17380
|
-
"
|
|
17381
|
-
|
|
17382
|
-
|
|
17466
|
+
"$ref": "#/components/schemas/empty-object"
|
|
17467
|
+
},
|
|
17468
|
+
"examples": {
|
|
17469
|
+
"default": {
|
|
17470
|
+
"value": null
|
|
17471
|
+
}
|
|
17383
17472
|
}
|
|
17384
17473
|
}
|
|
17385
17474
|
}
|
|
@@ -17672,9 +17761,12 @@
|
|
|
17672
17761
|
"content": {
|
|
17673
17762
|
"application/json": {
|
|
17674
17763
|
"schema": {
|
|
17675
|
-
"
|
|
17676
|
-
|
|
17677
|
-
|
|
17764
|
+
"$ref": "#/components/schemas/empty-object"
|
|
17765
|
+
},
|
|
17766
|
+
"examples": {
|
|
17767
|
+
"default": {
|
|
17768
|
+
"value": null
|
|
17769
|
+
}
|
|
17678
17770
|
}
|
|
17679
17771
|
}
|
|
17680
17772
|
}
|
|
@@ -44002,6 +44094,40 @@
|
|
|
44002
44094
|
"type": "boolean",
|
|
44003
44095
|
"example": false
|
|
44004
44096
|
},
|
|
44097
|
+
"squash_merge_commit_title": {
|
|
44098
|
+
"type": "string",
|
|
44099
|
+
"enum": [
|
|
44100
|
+
"PR_TITLE",
|
|
44101
|
+
"COMMIT_OR_PR_TITLE"
|
|
44102
|
+
],
|
|
44103
|
+
"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)."
|
|
44104
|
+
},
|
|
44105
|
+
"squash_merge_commit_message": {
|
|
44106
|
+
"type": "string",
|
|
44107
|
+
"enum": [
|
|
44108
|
+
"PR_BODY",
|
|
44109
|
+
"COMMIT_MESSAGES",
|
|
44110
|
+
"BLANK"
|
|
44111
|
+
],
|
|
44112
|
+
"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."
|
|
44113
|
+
},
|
|
44114
|
+
"merge_commit_title": {
|
|
44115
|
+
"type": "string",
|
|
44116
|
+
"enum": [
|
|
44117
|
+
"PR_TITLE",
|
|
44118
|
+
"MERGE_MESSAGE"
|
|
44119
|
+
],
|
|
44120
|
+
"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)."
|
|
44121
|
+
},
|
|
44122
|
+
"merge_commit_message": {
|
|
44123
|
+
"type": "string",
|
|
44124
|
+
"enum": [
|
|
44125
|
+
"PR_BODY",
|
|
44126
|
+
"PR_TITLE",
|
|
44127
|
+
"BLANK"
|
|
44128
|
+
],
|
|
44129
|
+
"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."
|
|
44130
|
+
},
|
|
44005
44131
|
"has_downloads": {
|
|
44006
44132
|
"description": "Whether downloads are enabled.",
|
|
44007
44133
|
"default": true,
|
|
@@ -51961,6 +52087,14 @@
|
|
|
51961
52087
|
"write"
|
|
51962
52088
|
]
|
|
51963
52089
|
},
|
|
52090
|
+
"organization_custom_roles": {
|
|
52091
|
+
"type": "string",
|
|
52092
|
+
"description": "The level of permission to grant the access token for custom roles management.",
|
|
52093
|
+
"enum": [
|
|
52094
|
+
"read",
|
|
52095
|
+
"write"
|
|
52096
|
+
]
|
|
52097
|
+
},
|
|
51964
52098
|
"deployments": {
|
|
51965
52099
|
"type": "string",
|
|
51966
52100
|
"description": "The level of permission to grant the access token for deployments and deployment statuses.",
|
|
@@ -53946,6 +54080,11 @@
|
|
|
53946
54080
|
"description": "Whether to allow forking this repo",
|
|
53947
54081
|
"type": "boolean"
|
|
53948
54082
|
},
|
|
54083
|
+
"web_commit_signoff_required": {
|
|
54084
|
+
"description": "Whether to require contributors to sign off on web-based commits",
|
|
54085
|
+
"default": false,
|
|
54086
|
+
"type": "boolean"
|
|
54087
|
+
},
|
|
53949
54088
|
"subscribers_count": {
|
|
53950
54089
|
"type": "integer"
|
|
53951
54090
|
},
|
|
@@ -57201,6 +57340,11 @@
|
|
|
57201
57340
|
"description": "Whether to allow forking this repo",
|
|
57202
57341
|
"type": "boolean"
|
|
57203
57342
|
},
|
|
57343
|
+
"web_commit_signoff_required": {
|
|
57344
|
+
"description": "Whether to require contributors to sign off on web-based commits",
|
|
57345
|
+
"default": false,
|
|
57346
|
+
"type": "boolean"
|
|
57347
|
+
},
|
|
57204
57348
|
"subscribers_count": {
|
|
57205
57349
|
"type": "integer"
|
|
57206
57350
|
},
|
|
@@ -57670,6 +57814,10 @@
|
|
|
57670
57814
|
},
|
|
57671
57815
|
"allow_forking": {
|
|
57672
57816
|
"type": "boolean"
|
|
57817
|
+
},
|
|
57818
|
+
"web_commit_signoff_required": {
|
|
57819
|
+
"type": "boolean",
|
|
57820
|
+
"example": false
|
|
57673
57821
|
}
|
|
57674
57822
|
},
|
|
57675
57823
|
"required": [
|
|
@@ -58061,6 +58209,10 @@
|
|
|
58061
58209
|
"example": false,
|
|
58062
58210
|
"nullable": true
|
|
58063
58211
|
},
|
|
58212
|
+
"web_commit_signoff_required": {
|
|
58213
|
+
"type": "boolean",
|
|
58214
|
+
"example": false
|
|
58215
|
+
},
|
|
58064
58216
|
"updated_at": {
|
|
58065
58217
|
"type": "string",
|
|
58066
58218
|
"format": "date-time"
|
|
@@ -59794,6 +59946,12 @@
|
|
|
59794
59946
|
"type": "boolean",
|
|
59795
59947
|
"example": false
|
|
59796
59948
|
},
|
|
59949
|
+
"web_commit_signoff_required": {
|
|
59950
|
+
"description": "Whether to require contributors to sign off on web-based commits",
|
|
59951
|
+
"default": false,
|
|
59952
|
+
"type": "boolean",
|
|
59953
|
+
"example": false
|
|
59954
|
+
},
|
|
59797
59955
|
"subscribers_count": {
|
|
59798
59956
|
"type": "integer"
|
|
59799
59957
|
},
|
|
@@ -60565,6 +60723,10 @@
|
|
|
60565
60723
|
"type": "boolean",
|
|
60566
60724
|
"example": true
|
|
60567
60725
|
},
|
|
60726
|
+
"web_commit_signoff_required": {
|
|
60727
|
+
"type": "boolean",
|
|
60728
|
+
"example": false
|
|
60729
|
+
},
|
|
60568
60730
|
"subscribers_count": {
|
|
60569
60731
|
"type": "integer",
|
|
60570
60732
|
"example": 42
|
|
@@ -70582,6 +70744,9 @@
|
|
|
70582
70744
|
},
|
|
70583
70745
|
"is_template": {
|
|
70584
70746
|
"type": "boolean"
|
|
70747
|
+
},
|
|
70748
|
+
"web_commit_signoff_required": {
|
|
70749
|
+
"type": "boolean"
|
|
70585
70750
|
}
|
|
70586
70751
|
},
|
|
70587
70752
|
"required": [
|
|
@@ -71156,6 +71321,9 @@
|
|
|
71156
71321
|
},
|
|
71157
71322
|
"allow_forking": {
|
|
71158
71323
|
"type": "boolean"
|
|
71324
|
+
},
|
|
71325
|
+
"web_commit_signoff_required": {
|
|
71326
|
+
"type": "boolean"
|
|
71159
71327
|
}
|
|
71160
71328
|
},
|
|
71161
71329
|
"required": [
|
|
@@ -73264,6 +73432,10 @@
|
|
|
73264
73432
|
},
|
|
73265
73433
|
"is_template": {
|
|
73266
73434
|
"type": "boolean"
|
|
73435
|
+
},
|
|
73436
|
+
"web_commit_signoff_required": {
|
|
73437
|
+
"type": "boolean",
|
|
73438
|
+
"example": false
|
|
73267
73439
|
}
|
|
73268
73440
|
},
|
|
73269
73441
|
"required": [
|
|
@@ -78358,6 +78530,7 @@
|
|
|
78358
78530
|
"members_can_create_public_pages": true,
|
|
78359
78531
|
"members_can_create_private_pages": true,
|
|
78360
78532
|
"members_can_fork_private_repositories": false,
|
|
78533
|
+
"web_commit_signoff_required": false,
|
|
78361
78534
|
"updated_at": "2014-03-03T18:58:10Z"
|
|
78362
78535
|
}
|
|
78363
78536
|
},
|
|
@@ -81516,6 +81689,7 @@
|
|
|
81516
81689
|
"delete_branch_on_merge": true,
|
|
81517
81690
|
"allow_merge_commit": true,
|
|
81518
81691
|
"allow_forking": true,
|
|
81692
|
+
"web_commit_signoff_required": false,
|
|
81519
81693
|
"subscribers_count": 42,
|
|
81520
81694
|
"network_count": 0,
|
|
81521
81695
|
"organization": {
|