@octokit/openapi 7.1.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 (35) hide show
  1. package/generated/api.github.com.deref.json +9058 -8
  2. package/generated/api.github.com.json +669 -35
  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 +354 -1
  8. package/generated/ghes-3.2.json +151 -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 +354 -1
  13. package/generated/ghes-3.3.json +151 -10
  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 +339 -1
  17. package/generated/ghes-3.4.json +152 -10
  18. package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +764 -0
  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 +141 -1
  22. package/generated/ghes-3.5-diff-to-ghes-3.6.json +132 -4
  23. package/generated/ghes-3.5.deref.json +349 -1
  24. package/generated/ghes-3.5.json +162 -10
  25. package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +94 -0
  26. package/generated/ghes-3.6-diff-to-api.github.com.deref.json +399 -1
  27. package/generated/ghes-3.6-diff-to-api.github.com.json +183 -1
  28. package/generated/ghes-3.6.deref.json +7239 -1
  29. package/generated/ghes-3.6.json +380 -10
  30. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +739 -3
  31. package/generated/github.ae-diff-to-api.github.com.deref.json +163 -1
  32. package/generated/github.ae-diff-to-api.github.com.json +122 -4
  33. package/generated/github.ae.deref.json +299 -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.1.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": {
@@ -13897,6 +13897,40 @@
13897
13897
  "type": "boolean",
13898
13898
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
13899
13899
  "default": false
13900
+ },
13901
+ "squash_merge_commit_title": {
13902
+ "type": "string",
13903
+ "enum": [
13904
+ "PR_TITLE",
13905
+ "COMMIT_OR_PR_TITLE"
13906
+ ],
13907
+ "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)."
13908
+ },
13909
+ "squash_merge_commit_message": {
13910
+ "type": "string",
13911
+ "enum": [
13912
+ "PR_BODY",
13913
+ "COMMIT_MESSAGES",
13914
+ "BLANK"
13915
+ ],
13916
+ "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."
13917
+ },
13918
+ "merge_commit_title": {
13919
+ "type": "string",
13920
+ "enum": [
13921
+ "PR_TITLE",
13922
+ "MERGE_MESSAGE"
13923
+ ],
13924
+ "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)."
13925
+ },
13926
+ "merge_commit_message": {
13927
+ "type": "string",
13928
+ "enum": [
13929
+ "PR_BODY",
13930
+ "PR_TITLE",
13931
+ "BLANK"
13932
+ ],
13933
+ "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."
13900
13934
  }
13901
13935
  },
13902
13936
  "required": [
@@ -18278,6 +18312,40 @@
18278
18312
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
18279
18313
  "default": false
18280
18314
  },
18315
+ "squash_merge_commit_title": {
18316
+ "type": "string",
18317
+ "enum": [
18318
+ "PR_TITLE",
18319
+ "COMMIT_OR_PR_TITLE"
18320
+ ],
18321
+ "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)."
18322
+ },
18323
+ "squash_merge_commit_message": {
18324
+ "type": "string",
18325
+ "enum": [
18326
+ "PR_BODY",
18327
+ "COMMIT_MESSAGES",
18328
+ "BLANK"
18329
+ ],
18330
+ "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."
18331
+ },
18332
+ "merge_commit_title": {
18333
+ "type": "string",
18334
+ "enum": [
18335
+ "PR_TITLE",
18336
+ "MERGE_MESSAGE"
18337
+ ],
18338
+ "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)."
18339
+ },
18340
+ "merge_commit_message": {
18341
+ "type": "string",
18342
+ "enum": [
18343
+ "PR_BODY",
18344
+ "PR_TITLE",
18345
+ "BLANK"
18346
+ ],
18347
+ "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."
18348
+ },
18281
18349
  "archived": {
18282
18350
  "type": "boolean",
18283
18351
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -19598,9 +19666,12 @@
19598
19666
  "content": {
19599
19667
  "application/json": {
19600
19668
  "schema": {
19601
- "type": "object",
19602
- "properties": {},
19603
- "additionalProperties": false
19669
+ "$ref": "#/components/schemas/empty-object"
19670
+ },
19671
+ "examples": {
19672
+ "default": {
19673
+ "value": null
19674
+ }
19604
19675
  }
19605
19676
  }
19606
19677
  }
@@ -19911,6 +19982,17 @@
19911
19982
  "state",
19912
19983
  "comment"
19913
19984
  ]
19985
+ },
19986
+ "examples": {
19987
+ "default": {
19988
+ "value": {
19989
+ "environment_ids": [
19990
+ 161171787
19991
+ ],
19992
+ "state": "approved",
19993
+ "comment": "Ship it!"
19994
+ }
19995
+ }
19914
19996
  }
19915
19997
  }
19916
19998
  }
@@ -19974,6 +20056,11 @@
19974
20056
  "schema": {
19975
20057
  "type": "object",
19976
20058
  "nullable": true
20059
+ },
20060
+ "examples": {
20061
+ "default": {
20062
+ "value": null
20063
+ }
19977
20064
  }
19978
20065
  }
19979
20066
  }
@@ -19984,9 +20071,12 @@
19984
20071
  "content": {
19985
20072
  "application/json": {
19986
20073
  "schema": {
19987
- "type": "object",
19988
- "properties": {},
19989
- "additionalProperties": false
20074
+ "$ref": "#/components/schemas/empty-object"
20075
+ },
20076
+ "examples": {
20077
+ "default": {
20078
+ "value": null
20079
+ }
19990
20080
  }
19991
20081
  }
19992
20082
  }
@@ -20224,9 +20314,12 @@
20224
20314
  "content": {
20225
20315
  "application/json": {
20226
20316
  "schema": {
20227
- "type": "object",
20228
- "properties": {},
20229
- "additionalProperties": false
20317
+ "$ref": "#/components/schemas/empty-object"
20318
+ },
20319
+ "examples": {
20320
+ "default": {
20321
+ "value": null
20322
+ }
20230
20323
  }
20231
20324
  }
20232
20325
  }
@@ -47756,6 +47849,40 @@
47756
47849
  "type": "boolean",
47757
47850
  "example": false
47758
47851
  },
47852
+ "squash_merge_commit_title": {
47853
+ "type": "string",
47854
+ "enum": [
47855
+ "PR_TITLE",
47856
+ "COMMIT_OR_PR_TITLE"
47857
+ ],
47858
+ "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)."
47859
+ },
47860
+ "squash_merge_commit_message": {
47861
+ "type": "string",
47862
+ "enum": [
47863
+ "PR_BODY",
47864
+ "COMMIT_MESSAGES",
47865
+ "BLANK"
47866
+ ],
47867
+ "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."
47868
+ },
47869
+ "merge_commit_title": {
47870
+ "type": "string",
47871
+ "enum": [
47872
+ "PR_TITLE",
47873
+ "MERGE_MESSAGE"
47874
+ ],
47875
+ "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)."
47876
+ },
47877
+ "merge_commit_message": {
47878
+ "type": "string",
47879
+ "enum": [
47880
+ "PR_BODY",
47881
+ "PR_TITLE",
47882
+ "BLANK"
47883
+ ],
47884
+ "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."
47885
+ },
47759
47886
  "has_downloads": {
47760
47887
  "description": "Whether downloads are enabled.",
47761
47888
  "default": true,
@@ -49784,6 +49911,12 @@
49784
49911
  "text/plain": {
49785
49912
  "schema": {
49786
49913
  "type": "string"
49914
+ },
49915
+ "examples": {
49916
+ "default": {
49917
+ "summary": "Example response",
49918
+ "value": "Responsive is better than fast"
49919
+ }
49787
49920
  }
49788
49921
  }
49789
49922
  }
@@ -51307,6 +51440,14 @@
51307
51440
  "write"
51308
51441
  ]
51309
51442
  },
51443
+ "organization_custom_roles": {
51444
+ "type": "string",
51445
+ "description": "The level of permission to grant the access token for custom roles management.",
51446
+ "enum": [
51447
+ "read",
51448
+ "write"
51449
+ ]
51450
+ },
51310
51451
  "deployments": {
51311
51452
  "type": "string",
51312
51453
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -458,6 +458,14 @@
458
458
  ],
459
459
  "type": "string"
460
460
  },
461
+ "organization_custom_roles": {
462
+ "description": "The level of permission to grant the access token for custom roles management.",
463
+ "enum": [
464
+ "read",
465
+ "write"
466
+ ],
467
+ "type": "string"
468
+ },
461
469
  "organization_hooks": {
462
470
  "description": "The level of permission to grant the access token to manage the post-receive hooks for an organization.",
463
471
  "enum": [
@@ -1225,6 +1233,14 @@
1225
1233
  ],
1226
1234
  "type": "string"
1227
1235
  },
1236
+ "organization_custom_roles": {
1237
+ "description": "The level of permission to grant the access token for custom roles management.",
1238
+ "enum": [
1239
+ "read",
1240
+ "write"
1241
+ ],
1242
+ "type": "string"
1243
+ },
1228
1244
  "organization_hooks": {
1229
1245
  "description": "The level of permission to grant the access token to manage the post-receive hooks for an organization.",
1230
1246
  "enum": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.1.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": {
@@ -452,6 +452,14 @@
452
452
  "write"
453
453
  ]
454
454
  },
455
+ "organization_custom_roles": {
456
+ "type": "string",
457
+ "description": "The level of permission to grant the access token for custom roles management.",
458
+ "enum": [
459
+ "read",
460
+ "write"
461
+ ]
462
+ },
455
463
  "deployments": {
456
464
  "type": "string",
457
465
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -1186,6 +1194,14 @@
1186
1194
  "write"
1187
1195
  ]
1188
1196
  },
1197
+ "organization_custom_roles": {
1198
+ "type": "string",
1199
+ "description": "The level of permission to grant the access token for custom roles management.",
1200
+ "enum": [
1201
+ "read",
1202
+ "write"
1203
+ ]
1204
+ },
1189
1205
  "deployments": {
1190
1206
  "type": "string",
1191
1207
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -1858,6 +1874,14 @@
1858
1874
  "write"
1859
1875
  ]
1860
1876
  },
1877
+ "organization_custom_roles": {
1878
+ "type": "string",
1879
+ "description": "The level of permission to grant the access token for custom roles management.",
1880
+ "enum": [
1881
+ "read",
1882
+ "write"
1883
+ ]
1884
+ },
1861
1885
  "deployments": {
1862
1886
  "type": "string",
1863
1887
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -2659,6 +2683,14 @@
2659
2683
  "write"
2660
2684
  ]
2661
2685
  },
2686
+ "organization_custom_roles": {
2687
+ "type": "string",
2688
+ "description": "The level of permission to grant the access token for custom roles management.",
2689
+ "enum": [
2690
+ "read",
2691
+ "write"
2692
+ ]
2693
+ },
2662
2694
  "deployments": {
2663
2695
  "type": "string",
2664
2696
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -3462,6 +3494,14 @@
3462
3494
  "write"
3463
3495
  ]
3464
3496
  },
3497
+ "organization_custom_roles": {
3498
+ "type": "string",
3499
+ "description": "The level of permission to grant the access token for custom roles management.",
3500
+ "enum": [
3501
+ "read",
3502
+ "write"
3503
+ ]
3504
+ },
3465
3505
  "deployments": {
3466
3506
  "type": "string",
3467
3507
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -4063,6 +4103,14 @@
4063
4103
  "write"
4064
4104
  ]
4065
4105
  },
4106
+ "organization_custom_roles": {
4107
+ "type": "string",
4108
+ "description": "The level of permission to grant the access token for custom roles management.",
4109
+ "enum": [
4110
+ "read",
4111
+ "write"
4112
+ ]
4113
+ },
4066
4114
  "deployments": {
4067
4115
  "type": "string",
4068
4116
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -4356,6 +4404,14 @@
4356
4404
  "write"
4357
4405
  ]
4358
4406
  },
4407
+ "organization_custom_roles": {
4408
+ "type": "string",
4409
+ "description": "The level of permission to grant the access token for custom roles management.",
4410
+ "enum": [
4411
+ "read",
4412
+ "write"
4413
+ ]
4414
+ },
4359
4415
  "deployments": {
4360
4416
  "type": "string",
4361
4417
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -6377,6 +6433,14 @@
6377
6433
  "write"
6378
6434
  ]
6379
6435
  },
6436
+ "organization_custom_roles": {
6437
+ "type": "string",
6438
+ "description": "The level of permission to grant the access token for custom roles management.",
6439
+ "enum": [
6440
+ "read",
6441
+ "write"
6442
+ ]
6443
+ },
6380
6444
  "deployments": {
6381
6445
  "type": "string",
6382
6446
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -7234,6 +7298,14 @@
7234
7298
  "write"
7235
7299
  ]
7236
7300
  },
7301
+ "organization_custom_roles": {
7302
+ "type": "string",
7303
+ "description": "The level of permission to grant the access token for custom roles management.",
7304
+ "enum": [
7305
+ "read",
7306
+ "write"
7307
+ ]
7308
+ },
7237
7309
  "deployments": {
7238
7310
  "type": "string",
7239
7311
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -7880,6 +7952,14 @@
7880
7952
  "write"
7881
7953
  ]
7882
7954
  },
7955
+ "organization_custom_roles": {
7956
+ "type": "string",
7957
+ "description": "The level of permission to grant the access token for custom roles management.",
7958
+ "enum": [
7959
+ "read",
7960
+ "write"
7961
+ ]
7962
+ },
7883
7963
  "deployments": {
7884
7964
  "type": "string",
7885
7965
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -8363,6 +8443,14 @@
8363
8443
  "write"
8364
8444
  ]
8365
8445
  },
8446
+ "organization_custom_roles": {
8447
+ "type": "string",
8448
+ "description": "The level of permission to grant the access token for custom roles management.",
8449
+ "enum": [
8450
+ "read",
8451
+ "write"
8452
+ ]
8453
+ },
8366
8454
  "deployments": {
8367
8455
  "type": "string",
8368
8456
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -9285,6 +9373,14 @@
9285
9373
  "write"
9286
9374
  ]
9287
9375
  },
9376
+ "organization_custom_roles": {
9377
+ "type": "string",
9378
+ "description": "The level of permission to grant the access token for custom roles management.",
9379
+ "enum": [
9380
+ "read",
9381
+ "write"
9382
+ ]
9383
+ },
9288
9384
  "deployments": {
9289
9385
  "type": "string",
9290
9386
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -10059,6 +10155,14 @@
10059
10155
  "write"
10060
10156
  ]
10061
10157
  },
10158
+ "organization_custom_roles": {
10159
+ "type": "string",
10160
+ "description": "The level of permission to grant the access token for custom roles management.",
10161
+ "enum": [
10162
+ "read",
10163
+ "write"
10164
+ ]
10165
+ },
10062
10166
  "deployments": {
10063
10167
  "type": "string",
10064
10168
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -10872,6 +10976,14 @@
10872
10976
  "write"
10873
10977
  ]
10874
10978
  },
10979
+ "organization_custom_roles": {
10980
+ "type": "string",
10981
+ "description": "The level of permission to grant the access token for custom roles management.",
10982
+ "enum": [
10983
+ "read",
10984
+ "write"
10985
+ ]
10986
+ },
10875
10987
  "deployments": {
10876
10988
  "type": "string",
10877
10989
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -11739,6 +11851,14 @@
11739
11851
  "write"
11740
11852
  ]
11741
11853
  },
11854
+ "organization_custom_roles": {
11855
+ "type": "string",
11856
+ "description": "The level of permission to grant the access token for custom roles management.",
11857
+ "enum": [
11858
+ "read",
11859
+ "write"
11860
+ ]
11861
+ },
11742
11862
  "deployments": {
11743
11863
  "type": "string",
11744
11864
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -12675,6 +12795,14 @@
12675
12795
  "write"
12676
12796
  ]
12677
12797
  },
12798
+ "organization_custom_roles": {
12799
+ "type": "string",
12800
+ "description": "The level of permission to grant the access token for custom roles management.",
12801
+ "enum": [
12802
+ "read",
12803
+ "write"
12804
+ ]
12805
+ },
12678
12806
  "deployments": {
12679
12807
  "type": "string",
12680
12808
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -13355,6 +13483,14 @@
13355
13483
  "write"
13356
13484
  ]
13357
13485
  },
13486
+ "organization_custom_roles": {
13487
+ "type": "string",
13488
+ "description": "The level of permission to grant the access token for custom roles management.",
13489
+ "enum": [
13490
+ "read",
13491
+ "write"
13492
+ ]
13493
+ },
13358
13494
  "deployments": {
13359
13495
  "type": "string",
13360
13496
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -14269,6 +14405,14 @@
14269
14405
  "write"
14270
14406
  ]
14271
14407
  },
14408
+ "organization_custom_roles": {
14409
+ "type": "string",
14410
+ "description": "The level of permission to grant the access token for custom roles management.",
14411
+ "enum": [
14412
+ "read",
14413
+ "write"
14414
+ ]
14415
+ },
14272
14416
  "deployments": {
14273
14417
  "type": "string",
14274
14418
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -14949,6 +15093,14 @@
14949
15093
  "write"
14950
15094
  ]
14951
15095
  },
15096
+ "organization_custom_roles": {
15097
+ "type": "string",
15098
+ "description": "The level of permission to grant the access token for custom roles management.",
15099
+ "enum": [
15100
+ "read",
15101
+ "write"
15102
+ ]
15103
+ },
14952
15104
  "deployments": {
14953
15105
  "type": "string",
14954
15106
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -15741,6 +15893,14 @@
15741
15893
  "write"
15742
15894
  ]
15743
15895
  },
15896
+ "organization_custom_roles": {
15897
+ "type": "string",
15898
+ "description": "The level of permission to grant the access token for custom roles management.",
15899
+ "enum": [
15900
+ "read",
15901
+ "write"
15902
+ ]
15903
+ },
15744
15904
  "deployments": {
15745
15905
  "type": "string",
15746
15906
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -16560,6 +16720,14 @@
16560
16720
  "write"
16561
16721
  ]
16562
16722
  },
16723
+ "organization_custom_roles": {
16724
+ "type": "string",
16725
+ "description": "The level of permission to grant the access token for custom roles management.",
16726
+ "enum": [
16727
+ "read",
16728
+ "write"
16729
+ ]
16730
+ },
16563
16731
  "deployments": {
16564
16732
  "type": "string",
16565
16733
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -19291,6 +19459,14 @@
19291
19459
  "write"
19292
19460
  ]
19293
19461
  },
19462
+ "organization_custom_roles": {
19463
+ "type": "string",
19464
+ "description": "The level of permission to grant the access token for custom roles management.",
19465
+ "enum": [
19466
+ "read",
19467
+ "write"
19468
+ ]
19469
+ },
19294
19470
  "deployments": {
19295
19471
  "type": "string",
19296
19472
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -20108,6 +20284,14 @@
20108
20284
  "write"
20109
20285
  ]
20110
20286
  },
20287
+ "organization_custom_roles": {
20288
+ "type": "string",
20289
+ "description": "The level of permission to grant the access token for custom roles management.",
20290
+ "enum": [
20291
+ "read",
20292
+ "write"
20293
+ ]
20294
+ },
20111
20295
  "deployments": {
20112
20296
  "type": "string",
20113
20297
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -34456,6 +34640,14 @@
34456
34640
  "write"
34457
34641
  ]
34458
34642
  },
34643
+ "organization_custom_roles": {
34644
+ "type": "string",
34645
+ "description": "The level of permission to grant the access token for custom roles management.",
34646
+ "enum": [
34647
+ "read",
34648
+ "write"
34649
+ ]
34650
+ },
34459
34651
  "deployments": {
34460
34652
  "type": "string",
34461
34653
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -37081,6 +37273,14 @@
37081
37273
  "write"
37082
37274
  ]
37083
37275
  },
37276
+ "organization_custom_roles": {
37277
+ "type": "string",
37278
+ "description": "The level of permission to grant the access token for custom roles management.",
37279
+ "enum": [
37280
+ "read",
37281
+ "write"
37282
+ ]
37283
+ },
37084
37284
  "deployments": {
37085
37285
  "type": "string",
37086
37286
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -38599,6 +38799,14 @@
38599
38799
  "write"
38600
38800
  ]
38601
38801
  },
38802
+ "organization_custom_roles": {
38803
+ "type": "string",
38804
+ "description": "The level of permission to grant the access token for custom roles management.",
38805
+ "enum": [
38806
+ "read",
38807
+ "write"
38808
+ ]
38809
+ },
38602
38810
  "deployments": {
38603
38811
  "type": "string",
38604
38812
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",