@octokit/openapi 6.6.0 → 6.6.3

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "6.6.0",
4
+ "version": "6.6.3",
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": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
@@ -13191,6 +13191,18 @@
13191
13191
  "type": "string"
13192
13192
  }
13193
13193
  }
13194
+ },
13195
+ "examples": {
13196
+ "default": {
13197
+ "summary": "Create an authorization",
13198
+ "value": {
13199
+ "scopes": ["public_repo"],
13200
+ "note": "optional note",
13201
+ "note_url": "http://optional/note/url",
13202
+ "client_id": "abcde12345fghij67890",
13203
+ "client_secret": "3ef4ad510c59ad37bac6bb4f80047fb3aee3cc7f"
13204
+ }
13205
+ }
13194
13206
  }
13195
13207
  }
13196
13208
  }
@@ -13819,9 +13831,9 @@
13819
13831
  "name": "client_id",
13820
13832
  "in": "path",
13821
13833
  "required": true,
13822
- "description": "The client ID of the GitHub app.",
13834
+ "description": "The client ID of the OAuth app.",
13823
13835
  "schema": { "type": "string" },
13824
- "examples": { "default": { "value": "Iv1.8a61f9b3a7aba766" } }
13836
+ "examples": { "default": { "value": "abcde12345fghij67890" } }
13825
13837
  }
13826
13838
  ],
13827
13839
  "requestBody": {
@@ -13858,6 +13870,17 @@
13858
13870
  },
13859
13871
  "required": ["client_secret"],
13860
13872
  "type": "object"
13873
+ },
13874
+ "examples": {
13875
+ "default": {
13876
+ "summary": "Create an authorization for an app",
13877
+ "value": {
13878
+ "client_secret": "3ef4ad510c59ad37bac6bb4f80047fb3aee3cc7f",
13879
+ "scopes": ["public_repo"],
13880
+ "note": "optional note",
13881
+ "note_url": "http://optional/note/url"
13882
+ }
13883
+ }
13861
13884
  }
13862
13885
  }
13863
13886
  }
@@ -14966,9 +14989,9 @@
14966
14989
  "name": "client_id",
14967
14990
  "in": "path",
14968
14991
  "required": true,
14969
- "description": "The client ID of the GitHub app.",
14992
+ "description": "The client ID of the OAuth app.",
14970
14993
  "schema": { "type": "string" },
14971
- "examples": { "default": { "value": "Iv1.8a61f9b3a7aba766" } }
14994
+ "examples": { "default": { "value": "abcde12345fghij67890" } }
14972
14995
  },
14973
14996
  {
14974
14997
  "name": "fingerprint",
@@ -15007,6 +15030,17 @@
15007
15030
  },
15008
15031
  "required": ["client_secret"],
15009
15032
  "type": "object"
15033
+ },
15034
+ "examples": {
15035
+ "default": {
15036
+ "summary": "Create an authorization for an app and fingerprint",
15037
+ "value": {
15038
+ "client_secret": "3ef4ad510c59ad37bac6bb4f80047fb3aee3cc7f",
15039
+ "scopes": ["public_repo"],
15040
+ "note": "optional note",
15041
+ "note_url": "http://optional/note/url"
15042
+ }
15043
+ }
15010
15044
  }
15011
15045
  }
15012
15046
  }
@@ -47896,7 +47930,7 @@
47896
47930
  },
47897
47931
  "members_allowed_repository_creation_type": {
47898
47932
  "type": "string",
47899
- "description": "Specifies which types of repositories non-admin organization members can create. `private` is only available to repositories that are part of an organization on GitHub Enterprise Cloud. \n**Note:** This parameter is deprecated and will be removed in the future. Its return value ignores internal repositories. Using this parameter overrides values set in `members_can_create_repositories`. See the parameter deprecation notice in the operation description for details.",
47933
+ "description": "Specifies which types of repositories non-admin organization members can create. \n**Note:** This parameter is deprecated and will be removed in the future. Its return value ignores internal repositories. Using this parameter overrides values set in `members_can_create_repositories`. See the parameter deprecation notice in the operation description for details.",
47900
47934
  "enum": ["all", "private", "none"]
47901
47935
  },
47902
47936
  "members_can_create_pages": {
@@ -71521,6 +71555,7 @@
71521
71555
  },
71522
71556
  "exclude": {
71523
71557
  "type": "array",
71558
+ "description": "Exclude related items from being returned in the response in order to improve performance of the request. The array can include any of: `\"repositories\"`.",
71524
71559
  "items": { "type": "string", "enum": ["repositories"] }
71525
71560
  }
71526
71561
  },
@@ -262694,7 +262729,7 @@
262694
262729
  "/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers": {
262695
262730
  "get": {
262696
262731
  "summary": "List requested reviewers for a pull request",
262697
- "description": "",
262732
+ "description": "Lists the users or teams whose review is requested for a pull request. Once a requested reviewer submits a review, they are no longer considered a requested reviewer. Their review will instead be returned by the [List reviews for a pull request](https://docs.github.com/enterprise-server@3.5/rest/pulls/reviews#list-reviews-for-a-pull-request) operation.",
262698
262733
  "tags": ["pulls"],
262699
262734
  "operationId": "pulls/list-requested-reviewers",
262700
262735
  "externalDocs": {
@@ -315573,6 +315608,14 @@
315573
315608
  },
315574
315609
  "required": ["repositories"],
315575
315610
  "type": "object"
315611
+ },
315612
+ "examples": {
315613
+ "default": {
315614
+ "value": {
315615
+ "repositories": ["octocat/Hello-World"],
315616
+ "lock_repositories": true
315617
+ }
315618
+ }
315576
315619
  }
315577
315620
  }
315578
315621
  }
@@ -350623,7 +350666,7 @@
350623
350666
  "/enterprise-installation/{enterprise_or_org}/server-statistics": {
350624
350667
  "get": {
350625
350668
  "summary": "Get GitHub Enterprise Server statistics",
350626
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350669
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350627
350670
  "operationId": "enterprise-admin/get-server-statistics",
350628
350671
  "tags": ["server-statistics", "enterprise-admin"],
350629
350672
  "externalDocs": {
@@ -350637,7 +350680,7 @@
350637
350680
  "/enterprises/{enterprise}/actions/oidc/customization/issuer": {
350638
350681
  "put": {
350639
350682
  "summary": "Set the GitHub Actions OIDC custom issuer policy for an enterprise",
350640
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350683
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350641
350684
  "tags": ["actions"],
350642
350685
  "operationId": "actions/set-actions-oidc-custom-issuer-policy-for-enterprise",
350643
350686
  "externalDocs": {
@@ -350651,7 +350694,7 @@
350651
350694
  "/enterprises/{enterprise}/actions/permissions/workflow": {
350652
350695
  "get": {
350653
350696
  "summary": "Get default workflow permissions for an enterprise",
350654
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350697
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350655
350698
  "tags": ["actions"],
350656
350699
  "operationId": "actions/get-github-actions-default-workflow-permissions-enterprise",
350657
350700
  "externalDocs": {
@@ -350663,7 +350706,7 @@
350663
350706
  },
350664
350707
  "put": {
350665
350708
  "summary": "Set default workflow permissions for an enterprise",
350666
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350709
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350667
350710
  "tags": ["actions"],
350668
350711
  "operationId": "actions/set-github-actions-default-workflow-permissions-enterprise",
350669
350712
  "externalDocs": {
@@ -350677,7 +350720,7 @@
350677
350720
  "/enterprises/{enterprise}/settings/billing/actions": {
350678
350721
  "get": {
350679
350722
  "summary": "Get GitHub Actions billing for an enterprise",
350680
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350723
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350681
350724
  "operationId": "billing/get-github-actions-billing-ghe",
350682
350725
  "tags": ["billing"],
350683
350726
  "externalDocs": {
@@ -350691,7 +350734,7 @@
350691
350734
  "/enterprises/{enterprise}/settings/billing/packages": {
350692
350735
  "get": {
350693
350736
  "summary": "Get GitHub Packages billing for an enterprise",
350694
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350737
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350695
350738
  "operationId": "billing/get-github-packages-billing-ghe",
350696
350739
  "tags": ["billing"],
350697
350740
  "externalDocs": {
@@ -350705,7 +350748,7 @@
350705
350748
  "/enterprises/{enterprise}/settings/billing/shared-storage": {
350706
350749
  "get": {
350707
350750
  "summary": "Get shared storage billing for an enterprise",
350708
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350751
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350709
350752
  "operationId": "billing/get-shared-storage-billing-ghe",
350710
350753
  "tags": ["billing"],
350711
350754
  "externalDocs": {
@@ -350719,7 +350762,7 @@
350719
350762
  "/marketplace_listing/accounts/{account_id}": {
350720
350763
  "get": {
350721
350764
  "summary": "Get a subscription plan for an account",
350722
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350765
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350723
350766
  "tags": ["apps"],
350724
350767
  "operationId": "apps/get-subscription-plan-for-account",
350725
350768
  "externalDocs": {
@@ -350733,7 +350776,7 @@
350733
350776
  "/marketplace_listing/plans": {
350734
350777
  "get": {
350735
350778
  "summary": "List plans",
350736
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350779
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350737
350780
  "tags": ["apps"],
350738
350781
  "operationId": "apps/list-plans",
350739
350782
  "externalDocs": {
@@ -350747,7 +350790,7 @@
350747
350790
  "/marketplace_listing/plans/{plan_id}/accounts": {
350748
350791
  "get": {
350749
350792
  "summary": "List accounts for a plan",
350750
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350793
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350751
350794
  "tags": ["apps"],
350752
350795
  "operationId": "apps/list-accounts-for-plan",
350753
350796
  "externalDocs": {
@@ -350761,7 +350804,7 @@
350761
350804
  "/marketplace_listing/stubbed/accounts/{account_id}": {
350762
350805
  "get": {
350763
350806
  "summary": "Get a subscription plan for an account (stubbed)",
350764
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350807
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350765
350808
  "tags": ["apps"],
350766
350809
  "operationId": "apps/get-subscription-plan-for-account-stubbed",
350767
350810
  "externalDocs": {
@@ -350775,7 +350818,7 @@
350775
350818
  "/marketplace_listing/stubbed/plans": {
350776
350819
  "get": {
350777
350820
  "summary": "List plans (stubbed)",
350778
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350821
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350779
350822
  "tags": ["apps"],
350780
350823
  "operationId": "apps/list-plans-stubbed",
350781
350824
  "externalDocs": {
@@ -350789,7 +350832,7 @@
350789
350832
  "/marketplace_listing/stubbed/plans/{plan_id}/accounts": {
350790
350833
  "get": {
350791
350834
  "summary": "List accounts for a plan (stubbed)",
350792
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350835
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350793
350836
  "tags": ["apps"],
350794
350837
  "operationId": "apps/list-accounts-for-plan-stubbed",
350795
350838
  "externalDocs": {
@@ -350803,7 +350846,7 @@
350803
350846
  "/orgs/{org}/actions/oidc/customization/sub": {
350804
350847
  "get": {
350805
350848
  "summary": "Get the customization template for an OIDC subject claim for an organization",
350806
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350849
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350807
350850
  "tags": ["oidc"],
350808
350851
  "operationId": "oidc/get-oidc-custom-sub-template-for-org",
350809
350852
  "externalDocs": {
@@ -350815,7 +350858,7 @@
350815
350858
  },
350816
350859
  "put": {
350817
350860
  "summary": "Set the customization template for an OIDC subject claim for an organization",
350818
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350861
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350819
350862
  "tags": ["oidc"],
350820
350863
  "operationId": "oidc/update-oidc-custom-sub-template-for-org",
350821
350864
  "externalDocs": {
@@ -350829,7 +350872,7 @@
350829
350872
  "/orgs/{org}/blocks": {
350830
350873
  "get": {
350831
350874
  "summary": "List users blocked by an organization",
350832
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350875
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350833
350876
  "tags": ["orgs"],
350834
350877
  "operationId": "orgs/list-blocked-users",
350835
350878
  "externalDocs": {
@@ -350843,7 +350886,7 @@
350843
350886
  "/orgs/{org}/blocks/{username}": {
350844
350887
  "get": {
350845
350888
  "summary": "Check if a user is blocked by an organization",
350846
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350889
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350847
350890
  "tags": ["orgs"],
350848
350891
  "operationId": "orgs/check-blocked-user",
350849
350892
  "externalDocs": {
@@ -350855,7 +350898,7 @@
350855
350898
  },
350856
350899
  "put": {
350857
350900
  "summary": "Block a user from an organization",
350858
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350901
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350859
350902
  "tags": ["orgs"],
350860
350903
  "operationId": "orgs/block-user",
350861
350904
  "externalDocs": {
@@ -350867,7 +350910,7 @@
350867
350910
  },
350868
350911
  "delete": {
350869
350912
  "summary": "Unblock a user from an organization",
350870
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350913
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350871
350914
  "tags": ["orgs"],
350872
350915
  "operationId": "orgs/unblock-user",
350873
350916
  "externalDocs": {
@@ -350881,7 +350924,7 @@
350881
350924
  "/orgs/{org}/codespaces": {
350882
350925
  "get": {
350883
350926
  "summary": "List codespaces for the organization",
350884
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350927
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350885
350928
  "tags": ["codespaces"],
350886
350929
  "operationId": "codespaces/list-in-organization",
350887
350930
  "externalDocs": {
@@ -350895,7 +350938,7 @@
350895
350938
  "/orgs/{org}/credential-authorizations": {
350896
350939
  "get": {
350897
350940
  "summary": "List SAML SSO authorizations for an organization",
350898
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350941
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350899
350942
  "tags": ["orgs"],
350900
350943
  "operationId": "orgs/list-saml-sso-authorizations",
350901
350944
  "externalDocs": {
@@ -350909,7 +350952,7 @@
350909
350952
  "/orgs/{org}/credential-authorizations/{credential_id}": {
350910
350953
  "delete": {
350911
350954
  "summary": "Remove a SAML SSO authorization for an organization",
350912
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350955
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350913
350956
  "tags": ["orgs"],
350914
350957
  "operationId": "orgs/remove-saml-sso-authorization",
350915
350958
  "externalDocs": {
@@ -350923,7 +350966,7 @@
350923
350966
  "/orgs/{org}/external-group/{group_id}": {
350924
350967
  "get": {
350925
350968
  "summary": "Get an external group",
350926
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350969
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350927
350970
  "tags": ["teams"],
350928
350971
  "operationId": "teams/external-idp-group-info-for-org",
350929
350972
  "externalDocs": {
@@ -350937,7 +350980,7 @@
350937
350980
  "/orgs/{org}/external-groups": {
350938
350981
  "get": {
350939
350982
  "summary": "List external groups in an organization",
350940
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350983
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350941
350984
  "tags": ["teams"],
350942
350985
  "operationId": "teams/list-external-idp-groups-for-org",
350943
350986
  "externalDocs": {
@@ -350951,7 +350994,7 @@
350951
350994
  "/orgs/{org}/failed_invitations": {
350952
350995
  "get": {
350953
350996
  "summary": "List failed organization invitations",
350954
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
350997
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350955
350998
  "tags": ["orgs"],
350956
350999
  "operationId": "orgs/list-failed-invitations",
350957
351000
  "externalDocs": {
@@ -350965,7 +351008,7 @@
350965
351008
  "/orgs/{org}/interaction-limits": {
350966
351009
  "get": {
350967
351010
  "summary": "Get interaction restrictions for an organization",
350968
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351011
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350969
351012
  "tags": ["interactions"],
350970
351013
  "operationId": "interactions/get-restrictions-for-org",
350971
351014
  "externalDocs": {
@@ -350977,7 +351020,7 @@
350977
351020
  },
350978
351021
  "put": {
350979
351022
  "summary": "Set interaction restrictions for an organization",
350980
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351023
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350981
351024
  "tags": ["interactions"],
350982
351025
  "operationId": "interactions/set-restrictions-for-org",
350983
351026
  "externalDocs": {
@@ -350989,7 +351032,7 @@
350989
351032
  },
350990
351033
  "delete": {
350991
351034
  "summary": "Remove interaction restrictions for an organization",
350992
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351035
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
350993
351036
  "tags": ["interactions"],
350994
351037
  "operationId": "interactions/remove-restrictions-for-org",
350995
351038
  "externalDocs": {
@@ -351003,7 +351046,7 @@
351003
351046
  "/orgs/{org}/invitations": {
351004
351047
  "get": {
351005
351048
  "summary": "List pending organization invitations",
351006
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351049
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351007
351050
  "tags": ["orgs"],
351008
351051
  "operationId": "orgs/list-pending-invitations",
351009
351052
  "externalDocs": {
@@ -351015,7 +351058,7 @@
351015
351058
  },
351016
351059
  "post": {
351017
351060
  "summary": "Create an organization invitation",
351018
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351061
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351019
351062
  "tags": ["orgs"],
351020
351063
  "operationId": "orgs/create-invitation",
351021
351064
  "externalDocs": {
@@ -351029,7 +351072,7 @@
351029
351072
  "/orgs/{org}/invitations/{invitation_id}": {
351030
351073
  "delete": {
351031
351074
  "summary": "Cancel an organization invitation",
351032
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351075
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351033
351076
  "tags": ["orgs"],
351034
351077
  "operationId": "orgs/cancel-invitation",
351035
351078
  "externalDocs": {
@@ -351043,7 +351086,7 @@
351043
351086
  "/orgs/{org}/invitations/{invitation_id}/teams": {
351044
351087
  "get": {
351045
351088
  "summary": "List organization invitation teams",
351046
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351089
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351047
351090
  "tags": ["orgs"],
351048
351091
  "operationId": "orgs/list-invitation-teams",
351049
351092
  "externalDocs": {
@@ -351057,7 +351100,7 @@
351057
351100
  "/orgs/{org}/members/{username}/codespaces/{codespace_name}": {
351058
351101
  "delete": {
351059
351102
  "summary": "Delete a codespace from the organization",
351060
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351103
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351061
351104
  "tags": ["codespaces"],
351062
351105
  "operationId": "codespaces/delete-from-organization",
351063
351106
  "externalDocs": {
@@ -351071,7 +351114,7 @@
351071
351114
  "/orgs/{org}/members/{username}/codespaces/{codespace_name}/stop": {
351072
351115
  "post": {
351073
351116
  "summary": "Stop a codespace for an organization user",
351074
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351117
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351075
351118
  "tags": ["codespaces"],
351076
351119
  "operationId": "codespaces/stop-in-organization",
351077
351120
  "externalDocs": {
@@ -351085,7 +351128,7 @@
351085
351128
  "/orgs/{org}/migrations/{migration_id}/archive": {
351086
351129
  "get": {
351087
351130
  "summary": "Download an organization migration archive",
351088
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351131
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351089
351132
  "tags": ["migrations"],
351090
351133
  "operationId": "migrations/download-archive-for-org",
351091
351134
  "externalDocs": {
@@ -351097,7 +351140,7 @@
351097
351140
  },
351098
351141
  "delete": {
351099
351142
  "summary": "Delete an organization migration archive",
351100
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351143
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351101
351144
  "tags": ["migrations"],
351102
351145
  "operationId": "migrations/delete-archive-for-org",
351103
351146
  "externalDocs": {
@@ -351111,7 +351154,7 @@
351111
351154
  "/orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock": {
351112
351155
  "delete": {
351113
351156
  "summary": "Unlock an organization repository",
351114
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351157
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351115
351158
  "tags": ["migrations"],
351116
351159
  "operationId": "migrations/unlock-repo-for-org",
351117
351160
  "externalDocs": {
@@ -351125,7 +351168,7 @@
351125
351168
  "/orgs/{org}/migrations/{migration_id}/repositories": {
351126
351169
  "get": {
351127
351170
  "summary": "List repositories in an organization migration",
351128
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351171
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351129
351172
  "tags": ["migrations"],
351130
351173
  "operationId": "migrations/list-repos-for-org",
351131
351174
  "externalDocs": {
@@ -351139,7 +351182,7 @@
351139
351182
  "/orgs/{org}/packages": {
351140
351183
  "get": {
351141
351184
  "summary": "List packages for an organization",
351142
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351185
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351143
351186
  "tags": ["packages"],
351144
351187
  "operationId": "packages/list-packages-for-organization",
351145
351188
  "externalDocs": {
@@ -351153,7 +351196,7 @@
351153
351196
  "/orgs/{org}/packages/{package_type}/{package_name}": {
351154
351197
  "get": {
351155
351198
  "summary": "Get a package for an organization",
351156
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351199
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351157
351200
  "tags": ["packages"],
351158
351201
  "operationId": "packages/get-package-for-organization",
351159
351202
  "externalDocs": {
@@ -351165,7 +351208,7 @@
351165
351208
  },
351166
351209
  "delete": {
351167
351210
  "summary": "Delete a package for an organization",
351168
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351211
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351169
351212
  "tags": ["packages"],
351170
351213
  "operationId": "packages/delete-package-for-org",
351171
351214
  "externalDocs": {
@@ -351179,7 +351222,7 @@
351179
351222
  "/orgs/{org}/packages/{package_type}/{package_name}/restore": {
351180
351223
  "post": {
351181
351224
  "summary": "Restore a package for an organization",
351182
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351225
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351183
351226
  "tags": ["packages"],
351184
351227
  "operationId": "packages/restore-package-for-org",
351185
351228
  "externalDocs": {
@@ -351193,7 +351236,7 @@
351193
351236
  "/orgs/{org}/packages/{package_type}/{package_name}/versions": {
351194
351237
  "get": {
351195
351238
  "summary": "Get all package versions for a package owned by an organization",
351196
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351239
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351197
351240
  "tags": ["packages"],
351198
351241
  "operationId": "packages/get-all-package-versions-for-package-owned-by-org",
351199
351242
  "externalDocs": {
@@ -351207,7 +351250,7 @@
351207
351250
  "/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}": {
351208
351251
  "get": {
351209
351252
  "summary": "Get a package version for an organization",
351210
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351253
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351211
351254
  "tags": ["packages"],
351212
351255
  "operationId": "packages/get-package-version-for-organization",
351213
351256
  "externalDocs": {
@@ -351219,7 +351262,7 @@
351219
351262
  },
351220
351263
  "delete": {
351221
351264
  "summary": "Delete package version for an organization",
351222
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351265
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351223
351266
  "tags": ["packages"],
351224
351267
  "operationId": "packages/delete-package-version-for-org",
351225
351268
  "externalDocs": {
@@ -351233,7 +351276,7 @@
351233
351276
  "/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore": {
351234
351277
  "post": {
351235
351278
  "summary": "Restore package version for an organization",
351236
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351279
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351237
351280
  "tags": ["packages"],
351238
351281
  "operationId": "packages/restore-package-version-for-org",
351239
351282
  "externalDocs": {
@@ -351247,7 +351290,7 @@
351247
351290
  "/orgs/{org}/settings/billing/actions": {
351248
351291
  "get": {
351249
351292
  "summary": "Get GitHub Actions billing for an organization",
351250
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351293
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351251
351294
  "operationId": "billing/get-github-actions-billing-org",
351252
351295
  "tags": ["billing"],
351253
351296
  "externalDocs": {
@@ -351261,7 +351304,7 @@
351261
351304
  "/orgs/{org}/settings/billing/packages": {
351262
351305
  "get": {
351263
351306
  "summary": "Get GitHub Packages billing for an organization",
351264
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351307
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351265
351308
  "operationId": "billing/get-github-packages-billing-org",
351266
351309
  "tags": ["billing"],
351267
351310
  "externalDocs": {
@@ -351275,7 +351318,7 @@
351275
351318
  "/orgs/{org}/settings/billing/shared-storage": {
351276
351319
  "get": {
351277
351320
  "summary": "Get shared storage billing for an organization",
351278
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351321
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351279
351322
  "operationId": "billing/get-shared-storage-billing-org",
351280
351323
  "tags": ["billing"],
351281
351324
  "externalDocs": {
@@ -351289,7 +351332,7 @@
351289
351332
  "/orgs/{org}/team-sync/groups": {
351290
351333
  "get": {
351291
351334
  "summary": "List IdP groups for an organization",
351292
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351335
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351293
351336
  "tags": ["teams"],
351294
351337
  "operationId": "teams/list-idp-groups-for-org",
351295
351338
  "externalDocs": {
@@ -351303,7 +351346,7 @@
351303
351346
  "/orgs/{org}/teams/{team_slug}/external-groups": {
351304
351347
  "get": {
351305
351348
  "summary": "List a connection between an external group and a team",
351306
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351349
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351307
351350
  "tags": ["teams"],
351308
351351
  "operationId": "teams/list-linked-external-idp-groups-to-team-for-org",
351309
351352
  "externalDocs": {
@@ -351315,7 +351358,7 @@
351315
351358
  },
351316
351359
  "delete": {
351317
351360
  "summary": "Remove the connection between an external group and a team",
351318
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351361
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351319
351362
  "tags": ["teams"],
351320
351363
  "operationId": "teams/unlink-external-idp-group-from-team-for-org",
351321
351364
  "externalDocs": {
@@ -351327,7 +351370,7 @@
351327
351370
  },
351328
351371
  "patch": {
351329
351372
  "summary": "Update the connection between an external group and a team",
351330
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351373
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351331
351374
  "tags": ["teams"],
351332
351375
  "operationId": "teams/link-external-idp-group-to-team-for-org",
351333
351376
  "externalDocs": {
@@ -351341,7 +351384,7 @@
351341
351384
  "/orgs/{org}/teams/{team_slug}/invitations": {
351342
351385
  "get": {
351343
351386
  "summary": "List pending team invitations",
351344
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351387
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351345
351388
  "tags": ["teams"],
351346
351389
  "operationId": "teams/list-pending-invitations-in-org",
351347
351390
  "externalDocs": {
@@ -351355,7 +351398,7 @@
351355
351398
  "/orgs/{org}/teams/{team_slug}/team-sync/group-mappings": {
351356
351399
  "get": {
351357
351400
  "summary": "List IdP groups for a team",
351358
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351401
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351359
351402
  "tags": ["teams"],
351360
351403
  "operationId": "teams/list-idp-groups-in-org",
351361
351404
  "externalDocs": {
@@ -351367,7 +351410,7 @@
351367
351410
  },
351368
351411
  "patch": {
351369
351412
  "summary": "Create or update IdP group connections",
351370
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351413
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351371
351414
  "tags": ["teams"],
351372
351415
  "operationId": "teams/create-or-update-idp-group-connections-in-org",
351373
351416
  "externalDocs": {
@@ -351381,7 +351424,7 @@
351381
351424
  "/repos/{owner}/{repo}/actions/caches": {
351382
351425
  "get": {
351383
351426
  "summary": "List GitHub Actions caches for a repository",
351384
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351427
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351385
351428
  "tags": ["actions"],
351386
351429
  "operationId": "actions/get-actions-cache-list",
351387
351430
  "externalDocs": {
@@ -351393,7 +351436,7 @@
351393
351436
  },
351394
351437
  "delete": {
351395
351438
  "summary": "Delete GitHub Actions caches for a repository (using a cache key)",
351396
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351439
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351397
351440
  "tags": ["actions"],
351398
351441
  "operationId": "actions/delete-actions-cache-by-key",
351399
351442
  "externalDocs": {
@@ -351407,7 +351450,7 @@
351407
351450
  "/repos/{owner}/{repo}/actions/caches/{cache_id}": {
351408
351451
  "delete": {
351409
351452
  "summary": "Delete a GitHub Actions cache for a repository (using a cache ID)",
351410
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351453
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351411
351454
  "tags": ["actions"],
351412
351455
  "operationId": "actions/delete-actions-cache-by-id",
351413
351456
  "externalDocs": {
@@ -351421,7 +351464,7 @@
351421
351464
  "/repos/{owner}/{repo}/actions/oidc/customization/sub": {
351422
351465
  "get": {
351423
351466
  "summary": "Get the opt-out flag of an OIDC subject claim customization for a repository",
351424
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351467
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351425
351468
  "tags": ["actions"],
351426
351469
  "operationId": "actions/get-custom-oidc-sub-claim-for-repo",
351427
351470
  "externalDocs": {
@@ -351433,7 +351476,7 @@
351433
351476
  },
351434
351477
  "put": {
351435
351478
  "summary": "Set the opt-out flag of an OIDC subject claim customization for a repository",
351436
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351479
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351437
351480
  "tags": ["actions"],
351438
351481
  "operationId": "actions/set-custom-oidc-sub-claim-for-repo",
351439
351482
  "externalDocs": {
@@ -351447,7 +351490,7 @@
351447
351490
  "/repos/{owner}/{repo}/actions/permissions/workflow": {
351448
351491
  "get": {
351449
351492
  "summary": "Get default workflow permissions for a repository",
351450
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351493
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351451
351494
  "tags": ["actions"],
351452
351495
  "operationId": "actions/get-github-actions-default-workflow-permissions-repository",
351453
351496
  "externalDocs": {
@@ -351459,7 +351502,7 @@
351459
351502
  },
351460
351503
  "put": {
351461
351504
  "summary": "Set default workflow permissions for a repository",
351462
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351505
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351463
351506
  "tags": ["actions"],
351464
351507
  "operationId": "actions/set-github-actions-default-workflow-permissions-repository",
351465
351508
  "externalDocs": {
@@ -351473,7 +351516,7 @@
351473
351516
  "/repos/{owner}/{repo}/actions/runs/{run_id}/approve": {
351474
351517
  "post": {
351475
351518
  "summary": "Approve a workflow run for a fork pull request",
351476
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351519
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351477
351520
  "tags": ["actions"],
351478
351521
  "operationId": "actions/approve-workflow-run",
351479
351522
  "externalDocs": {
@@ -351487,7 +351530,7 @@
351487
351530
  "/repos/{owner}/{repo}/actions/runs/{run_id}/timing": {
351488
351531
  "get": {
351489
351532
  "summary": "Get workflow run usage",
351490
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351533
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351491
351534
  "tags": ["actions"],
351492
351535
  "operationId": "actions/get-workflow-run-usage",
351493
351536
  "externalDocs": {
@@ -351501,7 +351544,7 @@
351501
351544
  "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing": {
351502
351545
  "get": {
351503
351546
  "summary": "Get workflow usage",
351504
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351547
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351505
351548
  "tags": ["actions"],
351506
351549
  "operationId": "actions/get-workflow-usage",
351507
351550
  "externalDocs": {
@@ -351515,7 +351558,7 @@
351515
351558
  "/repos/{owner}/{repo}/automated-security-fixes": {
351516
351559
  "put": {
351517
351560
  "summary": "Enable automated security fixes",
351518
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351561
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351519
351562
  "tags": ["repos"],
351520
351563
  "operationId": "repos/enable-automated-security-fixes",
351521
351564
  "externalDocs": {
@@ -351527,7 +351570,7 @@
351527
351570
  },
351528
351571
  "delete": {
351529
351572
  "summary": "Disable automated security fixes",
351530
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351573
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351531
351574
  "tags": ["repos"],
351532
351575
  "operationId": "repos/disable-automated-security-fixes",
351533
351576
  "externalDocs": {
@@ -351541,7 +351584,7 @@
351541
351584
  "/repos/{owner}/{repo}/codespaces": {
351542
351585
  "get": {
351543
351586
  "summary": "List codespaces in a repository for the authenticated user",
351544
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351587
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351545
351588
  "tags": ["codespaces"],
351546
351589
  "operationId": "codespaces/list-in-repository-for-authenticated-user",
351547
351590
  "externalDocs": {
@@ -351553,7 +351596,7 @@
351553
351596
  },
351554
351597
  "post": {
351555
351598
  "summary": "Create a codespace in a repository",
351556
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351599
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351557
351600
  "tags": ["codespaces"],
351558
351601
  "operationId": "codespaces/create-with-repo-for-authenticated-user",
351559
351602
  "externalDocs": {
@@ -351567,7 +351610,7 @@
351567
351610
  "/repos/{owner}/{repo}/codespaces/devcontainers": {
351568
351611
  "get": {
351569
351612
  "summary": "List devcontainer configurations in a repository for the authenticated user",
351570
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351613
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351571
351614
  "tags": ["codespaces"],
351572
351615
  "operationId": "codespaces/list-devcontainers-in-repository-for-authenticated-user",
351573
351616
  "externalDocs": {
@@ -351581,7 +351624,7 @@
351581
351624
  "/repos/{owner}/{repo}/codespaces/machines": {
351582
351625
  "get": {
351583
351626
  "summary": "List available machine types for a repository",
351584
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351627
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351585
351628
  "tags": ["codespaces"],
351586
351629
  "operationId": "codespaces/repo-machines-for-authenticated-user",
351587
351630
  "externalDocs": {
@@ -351595,7 +351638,7 @@
351595
351638
  "/repos/{owner}/{repo}/codespaces/secrets": {
351596
351639
  "get": {
351597
351640
  "summary": "List repository secrets",
351598
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351641
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351599
351642
  "tags": ["codespaces"],
351600
351643
  "operationId": "codespaces/list-repo-secrets",
351601
351644
  "externalDocs": {
@@ -351609,7 +351652,7 @@
351609
351652
  "/repos/{owner}/{repo}/codespaces/secrets/public-key": {
351610
351653
  "get": {
351611
351654
  "summary": "Get a repository public key",
351612
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351655
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351613
351656
  "tags": ["codespaces"],
351614
351657
  "operationId": "codespaces/get-repo-public-key",
351615
351658
  "externalDocs": {
@@ -351623,7 +351666,7 @@
351623
351666
  "/repos/{owner}/{repo}/codespaces/secrets/{secret_name}": {
351624
351667
  "get": {
351625
351668
  "summary": "Get a repository secret",
351626
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351669
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351627
351670
  "tags": ["codespaces"],
351628
351671
  "operationId": "codespaces/get-repo-secret",
351629
351672
  "externalDocs": {
@@ -351635,7 +351678,7 @@
351635
351678
  },
351636
351679
  "put": {
351637
351680
  "summary": "Create or update a repository secret",
351638
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351681
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351639
351682
  "tags": ["codespaces"],
351640
351683
  "operationId": "codespaces/create-or-update-repo-secret",
351641
351684
  "externalDocs": {
@@ -351647,7 +351690,7 @@
351647
351690
  },
351648
351691
  "delete": {
351649
351692
  "summary": "Delete a repository secret",
351650
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351693
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351651
351694
  "tags": ["codespaces"],
351652
351695
  "operationId": "codespaces/delete-repo-secret",
351653
351696
  "externalDocs": {
@@ -351661,7 +351704,7 @@
351661
351704
  "/repos/{owner}/{repo}/community/profile": {
351662
351705
  "get": {
351663
351706
  "summary": "Get community profile metrics",
351664
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351707
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351665
351708
  "tags": ["repos"],
351666
351709
  "operationId": "repos/get-community-profile-metrics",
351667
351710
  "externalDocs": {
@@ -351675,7 +351718,7 @@
351675
351718
  "/repos/{owner}/{repo}/dependency-graph/compare/{basehead}": {
351676
351719
  "get": {
351677
351720
  "summary": "Get a diff of the dependencies between commits",
351678
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351721
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351679
351722
  "tags": ["dependency-graph"],
351680
351723
  "operationId": "dependency-graph/diff-range",
351681
351724
  "externalDocs": {
@@ -351689,7 +351732,7 @@
351689
351732
  "/repos/{owner}/{repo}/dependency-graph/snapshots": {
351690
351733
  "post": {
351691
351734
  "summary": "Create a snapshot of dependencies for a repository",
351692
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351735
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351693
351736
  "tags": ["dependency-graph"],
351694
351737
  "operationId": "dependency-graph/create-repository-snapshot",
351695
351738
  "externalDocs": {
@@ -351703,7 +351746,7 @@
351703
351746
  "/repos/{owner}/{repo}/import": {
351704
351747
  "get": {
351705
351748
  "summary": "Get an import status",
351706
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351749
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351707
351750
  "tags": ["migrations"],
351708
351751
  "operationId": "migrations/get-import-status",
351709
351752
  "externalDocs": {
@@ -351715,7 +351758,7 @@
351715
351758
  },
351716
351759
  "put": {
351717
351760
  "summary": "Start an import",
351718
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351761
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351719
351762
  "tags": ["migrations"],
351720
351763
  "operationId": "migrations/start-import",
351721
351764
  "externalDocs": {
@@ -351727,7 +351770,7 @@
351727
351770
  },
351728
351771
  "delete": {
351729
351772
  "summary": "Cancel an import",
351730
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351773
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351731
351774
  "tags": ["migrations"],
351732
351775
  "operationId": "migrations/cancel-import",
351733
351776
  "externalDocs": {
@@ -351739,7 +351782,7 @@
351739
351782
  },
351740
351783
  "patch": {
351741
351784
  "summary": "Update an import",
351742
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351785
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351743
351786
  "tags": ["migrations"],
351744
351787
  "operationId": "migrations/update-import",
351745
351788
  "externalDocs": {
@@ -351753,7 +351796,7 @@
351753
351796
  "/repos/{owner}/{repo}/import/authors": {
351754
351797
  "get": {
351755
351798
  "summary": "Get commit authors",
351756
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351799
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351757
351800
  "tags": ["migrations"],
351758
351801
  "operationId": "migrations/get-commit-authors",
351759
351802
  "externalDocs": {
@@ -351767,7 +351810,7 @@
351767
351810
  "/repos/{owner}/{repo}/import/authors/{author_id}": {
351768
351811
  "patch": {
351769
351812
  "summary": "Map a commit author",
351770
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351813
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351771
351814
  "tags": ["migrations"],
351772
351815
  "operationId": "migrations/map-commit-author",
351773
351816
  "externalDocs": {
@@ -351781,7 +351824,7 @@
351781
351824
  "/repos/{owner}/{repo}/import/large_files": {
351782
351825
  "get": {
351783
351826
  "summary": "Get large files",
351784
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351827
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351785
351828
  "tags": ["migrations"],
351786
351829
  "operationId": "migrations/get-large-files",
351787
351830
  "externalDocs": {
@@ -351795,7 +351838,7 @@
351795
351838
  "/repos/{owner}/{repo}/import/lfs": {
351796
351839
  "patch": {
351797
351840
  "summary": "Update Git LFS preference",
351798
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351841
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351799
351842
  "tags": ["migrations"],
351800
351843
  "operationId": "migrations/set-lfs-preference",
351801
351844
  "externalDocs": {
@@ -351809,7 +351852,7 @@
351809
351852
  "/repos/{owner}/{repo}/interaction-limits": {
351810
351853
  "get": {
351811
351854
  "summary": "Get interaction restrictions for a repository",
351812
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351855
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351813
351856
  "tags": ["interactions"],
351814
351857
  "operationId": "interactions/get-restrictions-for-repo",
351815
351858
  "externalDocs": {
@@ -351821,7 +351864,7 @@
351821
351864
  },
351822
351865
  "put": {
351823
351866
  "summary": "Set interaction restrictions for a repository",
351824
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351867
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351825
351868
  "tags": ["interactions"],
351826
351869
  "operationId": "interactions/set-restrictions-for-repo",
351827
351870
  "externalDocs": {
@@ -351833,7 +351876,7 @@
351833
351876
  },
351834
351877
  "delete": {
351835
351878
  "summary": "Remove interaction restrictions for a repository",
351836
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351879
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351837
351880
  "tags": ["interactions"],
351838
351881
  "operationId": "interactions/remove-restrictions-for-repo",
351839
351882
  "externalDocs": {
@@ -351847,7 +351890,7 @@
351847
351890
  "/repos/{owner}/{repo}/pages/health": {
351848
351891
  "get": {
351849
351892
  "summary": "Get a DNS health check for GitHub Pages",
351850
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351893
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351851
351894
  "tags": ["repos"],
351852
351895
  "operationId": "repos/get-pages-health-check",
351853
351896
  "externalDocs": {
@@ -351861,7 +351904,7 @@
351861
351904
  "/repos/{owner}/{repo}/pulls/{pull_number}/codespaces": {
351862
351905
  "post": {
351863
351906
  "summary": "Create a codespace from a pull request",
351864
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351907
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351865
351908
  "tags": ["codespaces"],
351866
351909
  "operationId": "codespaces/create-with-pr-for-authenticated-user",
351867
351910
  "externalDocs": {
@@ -351875,7 +351918,7 @@
351875
351918
  "/repos/{owner}/{repo}/traffic/clones": {
351876
351919
  "get": {
351877
351920
  "summary": "Get repository clones",
351878
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351921
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351879
351922
  "tags": ["repos"],
351880
351923
  "operationId": "repos/get-clones",
351881
351924
  "externalDocs": {
@@ -351889,7 +351932,7 @@
351889
351932
  "/repos/{owner}/{repo}/traffic/popular/paths": {
351890
351933
  "get": {
351891
351934
  "summary": "Get top referral paths",
351892
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351935
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351893
351936
  "tags": ["repos"],
351894
351937
  "operationId": "repos/get-top-paths",
351895
351938
  "externalDocs": {
@@ -351903,7 +351946,7 @@
351903
351946
  "/repos/{owner}/{repo}/traffic/popular/referrers": {
351904
351947
  "get": {
351905
351948
  "summary": "Get top referral sources",
351906
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351949
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351907
351950
  "tags": ["repos"],
351908
351951
  "operationId": "repos/get-top-referrers",
351909
351952
  "externalDocs": {
@@ -351917,7 +351960,7 @@
351917
351960
  "/repos/{owner}/{repo}/traffic/views": {
351918
351961
  "get": {
351919
351962
  "summary": "Get page views",
351920
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351963
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351921
351964
  "tags": ["repos"],
351922
351965
  "operationId": "repos/get-views",
351923
351966
  "externalDocs": {
@@ -351931,7 +351974,7 @@
351931
351974
  "/repos/{owner}/{repo}/vulnerability-alerts": {
351932
351975
  "get": {
351933
351976
  "summary": "Check if vulnerability alerts are enabled for a repository",
351934
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351977
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351935
351978
  "tags": ["repos"],
351936
351979
  "operationId": "repos/check-vulnerability-alerts",
351937
351980
  "externalDocs": {
@@ -351943,7 +351986,7 @@
351943
351986
  },
351944
351987
  "put": {
351945
351988
  "summary": "Enable vulnerability alerts",
351946
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
351989
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351947
351990
  "tags": ["repos"],
351948
351991
  "operationId": "repos/enable-vulnerability-alerts",
351949
351992
  "externalDocs": {
@@ -351955,7 +351998,7 @@
351955
351998
  },
351956
351999
  "delete": {
351957
352000
  "summary": "Disable vulnerability alerts",
351958
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352001
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351959
352002
  "tags": ["repos"],
351960
352003
  "operationId": "repos/disable-vulnerability-alerts",
351961
352004
  "externalDocs": {
@@ -351969,7 +352012,7 @@
351969
352012
  "/scim/v2/enterprises/{enterprise}/Groups": {
351970
352013
  "get": {
351971
352014
  "summary": "List provisioned SCIM groups for an enterprise",
351972
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352015
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351973
352016
  "operationId": "enterprise-admin/list-provisioned-groups-enterprise",
351974
352017
  "tags": ["enterprise-admin"],
351975
352018
  "externalDocs": {
@@ -351981,7 +352024,7 @@
351981
352024
  },
351982
352025
  "post": {
351983
352026
  "summary": "Provision a SCIM enterprise group and invite users",
351984
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352027
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351985
352028
  "operationId": "enterprise-admin/provision-and-invite-enterprise-group",
351986
352029
  "tags": ["enterprise-admin"],
351987
352030
  "externalDocs": {
@@ -351995,7 +352038,7 @@
351995
352038
  "/scim/v2/enterprises/{enterprise}/Groups/{scim_group_id}": {
351996
352039
  "get": {
351997
352040
  "summary": "Get SCIM provisioning information for an enterprise group",
351998
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352041
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
351999
352042
  "operationId": "enterprise-admin/get-provisioning-information-for-enterprise-group",
352000
352043
  "tags": ["enterprise-admin"],
352001
352044
  "externalDocs": {
@@ -352007,7 +352050,7 @@
352007
352050
  },
352008
352051
  "put": {
352009
352052
  "summary": "Set SCIM information for a provisioned enterprise group",
352010
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352053
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352011
352054
  "operationId": "enterprise-admin/set-information-for-provisioned-enterprise-group",
352012
352055
  "tags": ["enterprise-admin"],
352013
352056
  "externalDocs": {
@@ -352019,7 +352062,7 @@
352019
352062
  },
352020
352063
  "delete": {
352021
352064
  "summary": "Delete a SCIM group from an enterprise",
352022
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352065
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352023
352066
  "operationId": "enterprise-admin/delete-scim-group-from-enterprise",
352024
352067
  "tags": ["enterprise-admin"],
352025
352068
  "externalDocs": {
@@ -352031,7 +352074,7 @@
352031
352074
  },
352032
352075
  "patch": {
352033
352076
  "summary": "Update an attribute for a SCIM enterprise group",
352034
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352077
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352035
352078
  "operationId": "enterprise-admin/update-attribute-for-enterprise-group",
352036
352079
  "tags": ["enterprise-admin"],
352037
352080
  "externalDocs": {
@@ -352045,7 +352088,7 @@
352045
352088
  "/scim/v2/enterprises/{enterprise}/Users": {
352046
352089
  "get": {
352047
352090
  "summary": "List SCIM provisioned identities for an enterprise",
352048
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352091
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352049
352092
  "operationId": "enterprise-admin/list-provisioned-identities-enterprise",
352050
352093
  "tags": ["enterprise-admin"],
352051
352094
  "externalDocs": {
@@ -352057,7 +352100,7 @@
352057
352100
  },
352058
352101
  "post": {
352059
352102
  "summary": "Provision and invite a SCIM enterprise user",
352060
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352103
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352061
352104
  "operationId": "enterprise-admin/provision-and-invite-enterprise-user",
352062
352105
  "tags": ["enterprise-admin"],
352063
352106
  "externalDocs": {
@@ -352071,7 +352114,7 @@
352071
352114
  "/scim/v2/enterprises/{enterprise}/Users/{scim_user_id}": {
352072
352115
  "get": {
352073
352116
  "summary": "Get SCIM provisioning information for an enterprise user",
352074
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352117
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352075
352118
  "operationId": "enterprise-admin/get-provisioning-information-for-enterprise-user",
352076
352119
  "tags": ["enterprise-admin"],
352077
352120
  "externalDocs": {
@@ -352083,7 +352126,7 @@
352083
352126
  },
352084
352127
  "put": {
352085
352128
  "summary": "Set SCIM information for a provisioned enterprise user",
352086
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352129
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352087
352130
  "operationId": "enterprise-admin/set-information-for-provisioned-enterprise-user",
352088
352131
  "tags": ["enterprise-admin"],
352089
352132
  "externalDocs": {
@@ -352095,7 +352138,7 @@
352095
352138
  },
352096
352139
  "delete": {
352097
352140
  "summary": "Delete a SCIM user from an enterprise",
352098
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352141
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352099
352142
  "operationId": "enterprise-admin/delete-user-from-enterprise",
352100
352143
  "tags": ["enterprise-admin"],
352101
352144
  "externalDocs": {
@@ -352107,7 +352150,7 @@
352107
352150
  },
352108
352151
  "patch": {
352109
352152
  "summary": "Update an attribute for a SCIM enterprise user",
352110
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352153
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352111
352154
  "operationId": "enterprise-admin/update-attribute-for-enterprise-user",
352112
352155
  "tags": ["enterprise-admin"],
352113
352156
  "externalDocs": {
@@ -352121,7 +352164,7 @@
352121
352164
  "/scim/v2/organizations/{org}/Users": {
352122
352165
  "get": {
352123
352166
  "summary": "List SCIM provisioned identities",
352124
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352167
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352125
352168
  "tags": ["scim"],
352126
352169
  "operationId": "scim/list-provisioned-identities",
352127
352170
  "externalDocs": {
@@ -352133,7 +352176,7 @@
352133
352176
  },
352134
352177
  "post": {
352135
352178
  "summary": "Provision and invite a SCIM user",
352136
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352179
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352137
352180
  "tags": ["scim"],
352138
352181
  "operationId": "scim/provision-and-invite-user",
352139
352182
  "externalDocs": {
@@ -352147,7 +352190,7 @@
352147
352190
  "/scim/v2/organizations/{org}/Users/{scim_user_id}": {
352148
352191
  "get": {
352149
352192
  "summary": "Get SCIM provisioning information for a user",
352150
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352193
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352151
352194
  "tags": ["scim"],
352152
352195
  "operationId": "scim/get-provisioning-information-for-user",
352153
352196
  "externalDocs": {
@@ -352159,7 +352202,7 @@
352159
352202
  },
352160
352203
  "put": {
352161
352204
  "summary": "Update a provisioned organization membership",
352162
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352205
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352163
352206
  "tags": ["scim"],
352164
352207
  "operationId": "scim/set-information-for-provisioned-user",
352165
352208
  "externalDocs": {
@@ -352171,7 +352214,7 @@
352171
352214
  },
352172
352215
  "delete": {
352173
352216
  "summary": "Delete a SCIM user from an organization",
352174
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352217
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352175
352218
  "tags": ["scim"],
352176
352219
  "operationId": "scim/delete-user-from-org",
352177
352220
  "externalDocs": {
@@ -352183,7 +352226,7 @@
352183
352226
  },
352184
352227
  "patch": {
352185
352228
  "summary": "Update an attribute for a SCIM user",
352186
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352229
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352187
352230
  "tags": ["scim"],
352188
352231
  "operationId": "scim/update-attribute-for-user",
352189
352232
  "externalDocs": {
@@ -352197,7 +352240,7 @@
352197
352240
  "/teams/{team_id}/invitations": {
352198
352241
  "get": {
352199
352242
  "summary": "List pending team invitations (Legacy)",
352200
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352243
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352201
352244
  "tags": ["teams"],
352202
352245
  "operationId": "teams/list-pending-invitations-legacy",
352203
352246
  "externalDocs": {
@@ -352212,7 +352255,7 @@
352212
352255
  "/teams/{team_id}/team-sync/group-mappings": {
352213
352256
  "get": {
352214
352257
  "summary": "List IdP groups for a team (Legacy)",
352215
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352258
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352216
352259
  "tags": ["teams"],
352217
352260
  "operationId": "teams/list-idp-groups-for-legacy",
352218
352261
  "externalDocs": {
@@ -352225,7 +352268,7 @@
352225
352268
  },
352226
352269
  "patch": {
352227
352270
  "summary": "Create or update IdP group connections (Legacy)",
352228
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352271
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352229
352272
  "tags": ["teams"],
352230
352273
  "operationId": "teams/create-or-update-idp-group-connections-legacy",
352231
352274
  "externalDocs": {
@@ -352240,7 +352283,7 @@
352240
352283
  "/user/blocks": {
352241
352284
  "get": {
352242
352285
  "summary": "List users blocked by the authenticated user",
352243
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352286
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352244
352287
  "tags": ["users"],
352245
352288
  "operationId": "users/list-blocked-by-authenticated-user",
352246
352289
  "externalDocs": {
@@ -352254,7 +352297,7 @@
352254
352297
  "/user/blocks/{username}": {
352255
352298
  "get": {
352256
352299
  "summary": "Check if a user is blocked by the authenticated user",
352257
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352300
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352258
352301
  "tags": ["users"],
352259
352302
  "operationId": "users/check-blocked",
352260
352303
  "externalDocs": {
@@ -352266,7 +352309,7 @@
352266
352309
  },
352267
352310
  "put": {
352268
352311
  "summary": "Block a user",
352269
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352312
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352270
352313
  "tags": ["users"],
352271
352314
  "operationId": "users/block",
352272
352315
  "externalDocs": {
@@ -352278,7 +352321,7 @@
352278
352321
  },
352279
352322
  "delete": {
352280
352323
  "summary": "Unblock a user",
352281
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352324
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352282
352325
  "tags": ["users"],
352283
352326
  "operationId": "users/unblock",
352284
352327
  "externalDocs": {
@@ -352292,7 +352335,7 @@
352292
352335
  "/user/codespaces": {
352293
352336
  "get": {
352294
352337
  "summary": "List codespaces for the authenticated user",
352295
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352338
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352296
352339
  "tags": ["codespaces"],
352297
352340
  "operationId": "codespaces/list-for-authenticated-user",
352298
352341
  "externalDocs": {
@@ -352304,7 +352347,7 @@
352304
352347
  },
352305
352348
  "post": {
352306
352349
  "summary": "Create a codespace for the authenticated user",
352307
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352350
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352308
352351
  "tags": ["codespaces"],
352309
352352
  "operationId": "codespaces/create-for-authenticated-user",
352310
352353
  "externalDocs": {
@@ -352318,7 +352361,7 @@
352318
352361
  "/user/codespaces/secrets": {
352319
352362
  "get": {
352320
352363
  "summary": "List secrets for the authenticated user",
352321
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352364
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352322
352365
  "tags": ["codespaces"],
352323
352366
  "operationId": "codespaces/list-secrets-for-authenticated-user",
352324
352367
  "externalDocs": {
@@ -352332,7 +352375,7 @@
352332
352375
  "/user/codespaces/secrets/public-key": {
352333
352376
  "get": {
352334
352377
  "summary": "Get public key for the authenticated user",
352335
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352378
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352336
352379
  "tags": ["codespaces"],
352337
352380
  "operationId": "codespaces/get-public-key-for-authenticated-user",
352338
352381
  "externalDocs": {
@@ -352346,7 +352389,7 @@
352346
352389
  "/user/codespaces/secrets/{secret_name}": {
352347
352390
  "get": {
352348
352391
  "summary": "Get a secret for the authenticated user",
352349
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352392
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352350
352393
  "tags": ["codespaces"],
352351
352394
  "operationId": "codespaces/get-secret-for-authenticated-user",
352352
352395
  "externalDocs": {
@@ -352358,7 +352401,7 @@
352358
352401
  },
352359
352402
  "put": {
352360
352403
  "summary": "Create or update a secret for the authenticated user",
352361
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352404
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352362
352405
  "tags": ["codespaces"],
352363
352406
  "operationId": "codespaces/create-or-update-secret-for-authenticated-user",
352364
352407
  "externalDocs": {
@@ -352370,7 +352413,7 @@
352370
352413
  },
352371
352414
  "delete": {
352372
352415
  "summary": "Delete a secret for the authenticated user",
352373
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352416
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352374
352417
  "tags": ["codespaces"],
352375
352418
  "operationId": "codespaces/delete-secret-for-authenticated-user",
352376
352419
  "externalDocs": {
@@ -352384,7 +352427,7 @@
352384
352427
  "/user/codespaces/secrets/{secret_name}/repositories": {
352385
352428
  "get": {
352386
352429
  "summary": "List selected repositories for a user secret",
352387
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352430
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352388
352431
  "tags": ["codespaces"],
352389
352432
  "operationId": "codespaces/list-repositories-for-secret-for-authenticated-user",
352390
352433
  "externalDocs": {
@@ -352396,7 +352439,7 @@
352396
352439
  },
352397
352440
  "put": {
352398
352441
  "summary": "Set selected repositories for a user secret",
352399
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352442
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352400
352443
  "tags": ["codespaces"],
352401
352444
  "operationId": "codespaces/set-repositories-for-secret-for-authenticated-user",
352402
352445
  "externalDocs": {
@@ -352410,7 +352453,7 @@
352410
352453
  "/user/codespaces/secrets/{secret_name}/repositories/{repository_id}": {
352411
352454
  "put": {
352412
352455
  "summary": "Add a selected repository to a user secret",
352413
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352456
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352414
352457
  "tags": ["codespaces"],
352415
352458
  "operationId": "codespaces/add-repository-for-secret-for-authenticated-user",
352416
352459
  "externalDocs": {
@@ -352422,7 +352465,7 @@
352422
352465
  },
352423
352466
  "delete": {
352424
352467
  "summary": "Remove a selected repository from a user secret",
352425
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352468
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352426
352469
  "tags": ["codespaces"],
352427
352470
  "operationId": "codespaces/remove-repository-for-secret-for-authenticated-user",
352428
352471
  "externalDocs": {
@@ -352436,7 +352479,7 @@
352436
352479
  "/user/codespaces/{codespace_name}": {
352437
352480
  "get": {
352438
352481
  "summary": "Get a codespace for the authenticated user",
352439
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352482
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352440
352483
  "tags": ["codespaces"],
352441
352484
  "operationId": "codespaces/get-for-authenticated-user",
352442
352485
  "externalDocs": {
@@ -352448,7 +352491,7 @@
352448
352491
  },
352449
352492
  "delete": {
352450
352493
  "summary": "Delete a codespace for the authenticated user",
352451
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352494
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352452
352495
  "tags": ["codespaces"],
352453
352496
  "operationId": "codespaces/delete-for-authenticated-user",
352454
352497
  "externalDocs": {
@@ -352460,7 +352503,7 @@
352460
352503
  },
352461
352504
  "patch": {
352462
352505
  "summary": "Update a codespace for the authenticated user",
352463
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352506
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352464
352507
  "tags": ["codespaces"],
352465
352508
  "operationId": "codespaces/update-for-authenticated-user",
352466
352509
  "externalDocs": {
@@ -352474,7 +352517,7 @@
352474
352517
  "/user/codespaces/{codespace_name}/exports": {
352475
352518
  "post": {
352476
352519
  "summary": "Export a codespace for the authenticated user",
352477
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352520
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352478
352521
  "tags": ["codespaces"],
352479
352522
  "operationId": "codespaces/export-for-authenticated-user",
352480
352523
  "x-octokit": { "api.github.com": "removed" },
@@ -352484,7 +352527,7 @@
352484
352527
  "/user/codespaces/{codespace_name}/exports/{export_id}": {
352485
352528
  "get": {
352486
352529
  "summary": "Get details about a codespace export",
352487
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352530
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352488
352531
  "tags": ["codespaces"],
352489
352532
  "operationId": "codespaces/get-export-details-for-authenticated-user",
352490
352533
  "x-octokit": { "api.github.com": "removed" },
@@ -352494,7 +352537,7 @@
352494
352537
  "/user/codespaces/{codespace_name}/machines": {
352495
352538
  "get": {
352496
352539
  "summary": "List machine types for a codespace",
352497
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352540
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352498
352541
  "tags": ["codespaces"],
352499
352542
  "operationId": "codespaces/codespace-machines-for-authenticated-user",
352500
352543
  "externalDocs": {
@@ -352508,7 +352551,7 @@
352508
352551
  "/user/codespaces/{codespace_name}/start": {
352509
352552
  "post": {
352510
352553
  "summary": "Start a codespace for the authenticated user",
352511
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352554
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352512
352555
  "tags": ["codespaces"],
352513
352556
  "operationId": "codespaces/start-for-authenticated-user",
352514
352557
  "externalDocs": {
@@ -352522,7 +352565,7 @@
352522
352565
  "/user/codespaces/{codespace_name}/stop": {
352523
352566
  "post": {
352524
352567
  "summary": "Stop a codespace for the authenticated user",
352525
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352568
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352526
352569
  "tags": ["codespaces"],
352527
352570
  "operationId": "codespaces/stop-for-authenticated-user",
352528
352571
  "externalDocs": {
@@ -352536,7 +352579,7 @@
352536
352579
  "/user/email/visibility": {
352537
352580
  "patch": {
352538
352581
  "summary": "Set primary email visibility for the authenticated user",
352539
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352582
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352540
352583
  "tags": ["users"],
352541
352584
  "operationId": "users/set-primary-email-visibility-for-authenticated-user",
352542
352585
  "externalDocs": {
@@ -352550,7 +352593,7 @@
352550
352593
  "/user/interaction-limits": {
352551
352594
  "get": {
352552
352595
  "summary": "Get interaction restrictions for your public repositories",
352553
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352596
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352554
352597
  "tags": ["interactions"],
352555
352598
  "operationId": "interactions/get-restrictions-for-authenticated-user",
352556
352599
  "externalDocs": {
@@ -352562,7 +352605,7 @@
352562
352605
  },
352563
352606
  "put": {
352564
352607
  "summary": "Set interaction restrictions for your public repositories",
352565
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352608
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352566
352609
  "tags": ["interactions"],
352567
352610
  "operationId": "interactions/set-restrictions-for-authenticated-user",
352568
352611
  "externalDocs": {
@@ -352574,7 +352617,7 @@
352574
352617
  },
352575
352618
  "delete": {
352576
352619
  "summary": "Remove interaction restrictions from your public repositories",
352577
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352620
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352578
352621
  "tags": ["interactions"],
352579
352622
  "operationId": "interactions/remove-restrictions-for-authenticated-user",
352580
352623
  "externalDocs": {
@@ -352588,7 +352631,7 @@
352588
352631
  "/user/marketplace_purchases": {
352589
352632
  "get": {
352590
352633
  "summary": "List subscriptions for the authenticated user",
352591
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352634
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352592
352635
  "tags": ["apps"],
352593
352636
  "operationId": "apps/list-subscriptions-for-authenticated-user",
352594
352637
  "externalDocs": {
@@ -352602,7 +352645,7 @@
352602
352645
  "/user/marketplace_purchases/stubbed": {
352603
352646
  "get": {
352604
352647
  "summary": "List subscriptions for the authenticated user (stubbed)",
352605
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352648
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352606
352649
  "tags": ["apps"],
352607
352650
  "operationId": "apps/list-subscriptions-for-authenticated-user-stubbed",
352608
352651
  "externalDocs": {
@@ -352616,7 +352659,7 @@
352616
352659
  "/user/migrations/{migration_id}": {
352617
352660
  "get": {
352618
352661
  "summary": "Get a user migration status",
352619
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352662
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352620
352663
  "tags": ["migrations"],
352621
352664
  "operationId": "migrations/get-status-for-authenticated-user",
352622
352665
  "externalDocs": {
@@ -352630,7 +352673,7 @@
352630
352673
  "/user/migrations/{migration_id}/repos/{repo_name}/lock": {
352631
352674
  "delete": {
352632
352675
  "summary": "Unlock a user repository",
352633
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352676
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352634
352677
  "tags": ["migrations"],
352635
352678
  "operationId": "migrations/unlock-repo-for-authenticated-user",
352636
352679
  "externalDocs": {
@@ -352644,7 +352687,7 @@
352644
352687
  "/user/packages": {
352645
352688
  "get": {
352646
352689
  "summary": "List packages for the authenticated user's namespace",
352647
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352690
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352648
352691
  "tags": ["packages"],
352649
352692
  "operationId": "packages/list-packages-for-authenticated-user",
352650
352693
  "externalDocs": {
@@ -352658,7 +352701,7 @@
352658
352701
  "/user/packages/{package_type}/{package_name}": {
352659
352702
  "get": {
352660
352703
  "summary": "Get a package for the authenticated user",
352661
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352704
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352662
352705
  "tags": ["packages"],
352663
352706
  "operationId": "packages/get-package-for-authenticated-user",
352664
352707
  "externalDocs": {
@@ -352670,7 +352713,7 @@
352670
352713
  },
352671
352714
  "delete": {
352672
352715
  "summary": "Delete a package for the authenticated user",
352673
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352716
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352674
352717
  "tags": ["packages"],
352675
352718
  "operationId": "packages/delete-package-for-authenticated-user",
352676
352719
  "externalDocs": {
@@ -352684,7 +352727,7 @@
352684
352727
  "/user/packages/{package_type}/{package_name}/restore": {
352685
352728
  "post": {
352686
352729
  "summary": "Restore a package for the authenticated user",
352687
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352730
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352688
352731
  "tags": ["packages"],
352689
352732
  "operationId": "packages/restore-package-for-authenticated-user",
352690
352733
  "externalDocs": {
@@ -352698,7 +352741,7 @@
352698
352741
  "/user/packages/{package_type}/{package_name}/versions": {
352699
352742
  "get": {
352700
352743
  "summary": "Get all package versions for a package owned by the authenticated user",
352701
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352744
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352702
352745
  "tags": ["packages"],
352703
352746
  "operationId": "packages/get-all-package-versions-for-package-owned-by-authenticated-user",
352704
352747
  "externalDocs": {
@@ -352712,7 +352755,7 @@
352712
352755
  "/user/packages/{package_type}/{package_name}/versions/{package_version_id}": {
352713
352756
  "get": {
352714
352757
  "summary": "Get a package version for the authenticated user",
352715
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352758
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352716
352759
  "tags": ["packages"],
352717
352760
  "operationId": "packages/get-package-version-for-authenticated-user",
352718
352761
  "externalDocs": {
@@ -352724,7 +352767,7 @@
352724
352767
  },
352725
352768
  "delete": {
352726
352769
  "summary": "Delete a package version for the authenticated user",
352727
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352770
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352728
352771
  "tags": ["packages"],
352729
352772
  "operationId": "packages/delete-package-version-for-authenticated-user",
352730
352773
  "externalDocs": {
@@ -352738,7 +352781,7 @@
352738
352781
  "/user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore": {
352739
352782
  "post": {
352740
352783
  "summary": "Restore a package version for the authenticated user",
352741
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352784
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352742
352785
  "tags": ["packages"],
352743
352786
  "operationId": "packages/restore-package-version-for-authenticated-user",
352744
352787
  "externalDocs": {
@@ -352752,7 +352795,7 @@
352752
352795
  "/users/{username}/packages": {
352753
352796
  "get": {
352754
352797
  "summary": "List packages for a user",
352755
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352798
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352756
352799
  "tags": ["packages"],
352757
352800
  "operationId": "packages/list-packages-for-user",
352758
352801
  "externalDocs": {
@@ -352766,7 +352809,7 @@
352766
352809
  "/users/{username}/packages/{package_type}/{package_name}": {
352767
352810
  "get": {
352768
352811
  "summary": "Get a package for a user",
352769
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352812
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352770
352813
  "tags": ["packages"],
352771
352814
  "operationId": "packages/get-package-for-user",
352772
352815
  "externalDocs": {
@@ -352778,7 +352821,7 @@
352778
352821
  },
352779
352822
  "delete": {
352780
352823
  "summary": "Delete a package for a user",
352781
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352824
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352782
352825
  "tags": ["packages"],
352783
352826
  "operationId": "packages/delete-package-for-user",
352784
352827
  "externalDocs": {
@@ -352792,7 +352835,7 @@
352792
352835
  "/users/{username}/packages/{package_type}/{package_name}/restore": {
352793
352836
  "post": {
352794
352837
  "summary": "Restore a package for a user",
352795
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352838
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352796
352839
  "tags": ["packages"],
352797
352840
  "operationId": "packages/restore-package-for-user",
352798
352841
  "externalDocs": {
@@ -352806,7 +352849,7 @@
352806
352849
  "/users/{username}/packages/{package_type}/{package_name}/versions": {
352807
352850
  "get": {
352808
352851
  "summary": "Get all package versions for a package owned by a user",
352809
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352852
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352810
352853
  "tags": ["packages"],
352811
352854
  "operationId": "packages/get-all-package-versions-for-package-owned-by-user",
352812
352855
  "externalDocs": {
@@ -352820,7 +352863,7 @@
352820
352863
  "/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}": {
352821
352864
  "get": {
352822
352865
  "summary": "Get a package version for a user",
352823
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352866
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352824
352867
  "tags": ["packages"],
352825
352868
  "operationId": "packages/get-package-version-for-user",
352826
352869
  "externalDocs": {
@@ -352832,7 +352875,7 @@
352832
352875
  },
352833
352876
  "delete": {
352834
352877
  "summary": "Delete package version for a user",
352835
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352878
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352836
352879
  "tags": ["packages"],
352837
352880
  "operationId": "packages/delete-package-version-for-user",
352838
352881
  "externalDocs": {
@@ -352846,7 +352889,7 @@
352846
352889
  "/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore": {
352847
352890
  "post": {
352848
352891
  "summary": "Restore package version for a user",
352849
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352892
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352850
352893
  "tags": ["packages"],
352851
352894
  "operationId": "packages/restore-package-version-for-user",
352852
352895
  "externalDocs": {
@@ -352860,7 +352903,7 @@
352860
352903
  "/users/{username}/settings/billing/actions": {
352861
352904
  "get": {
352862
352905
  "summary": "Get GitHub Actions billing for a user",
352863
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352906
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352864
352907
  "operationId": "billing/get-github-actions-billing-user",
352865
352908
  "tags": ["billing"],
352866
352909
  "externalDocs": {
@@ -352874,7 +352917,7 @@
352874
352917
  "/users/{username}/settings/billing/packages": {
352875
352918
  "get": {
352876
352919
  "summary": "Get GitHub Packages billing for a user",
352877
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352920
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352878
352921
  "operationId": "billing/get-github-packages-billing-user",
352879
352922
  "tags": ["billing"],
352880
352923
  "externalDocs": {
@@ -352888,7 +352931,7 @@
352888
352931
  "/users/{username}/settings/billing/shared-storage": {
352889
352932
  "get": {
352890
352933
  "summary": "Get shared storage billing for a user",
352891
- "description": "This endpoint does not exist ghes-3.5. It was added in api.github.com",
352934
+ "description": "This endpoint does not exist in GitHub Enterprise Server 3.5. It was added in api.github.com",
352892
352935
  "operationId": "billing/get-shared-storage-billing-user",
352893
352936
  "tags": ["billing"],
352894
352937
  "externalDocs": {